diff --git a/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 b/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 index 06fd52d6195a..0223b93ed3ca 100644 --- a/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 +++ b/src/Synapse/Synapse.Test/ScenarioTests/Common.ps1 @@ -110,4 +110,30 @@ function Invoke-HandledCmdlet throw; } } +} + +<# +.SYNOPSIS +Creates the test environment needed to perform the Sql auditing tests +#> +function Create-TestEnvironmentWithParams ($params, $location, $denyAsNetworkRuleDefaultAction = $False) +{ + Create-BasicTestEnvironmentWithParams $params $location + Wait-Seconds 10 +} + +<# +.SYNOPSIS +Creates the basic test environment needed to perform the Sql data security tests - resource group, server and database +#> +function Create-BasicTestEnvironmentWithParams ($params, $location) +{ + New-AzResourceGroup -Name $params.rgname -Location $location + New-AzStorageAccount -ResourceGroupName $params.rgname -Name $params.storageAccountName -Location $location -SkuName Standard_GRS -Kind StorageV2 -EnableHierarchicalNamespace $true + $workspaceName = $params.workspaceName + $workspaceLogin = $params.loginName + $workspacePassword = $params.pwd + $credentials = new-object System.Management.Automation.PSCredential($workspaceLogin, ($workspacePassword | ConvertTo-SecureString -asPlainText -Force)) + New-AzSynapseWorkspace -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -Location $location -SqlAdministratorLoginCredential $credentials -DefaultDataLakeStorageAccountName $params.storageAccountName -DefaultDataLakeStorageFilesystem $params.fileSystemName + New-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName -PerformanceLevel $params.perfLevel } \ No newline at end of file diff --git a/src/Synapse/Synapse.Test/ScenarioTests/DataClassificationTests.cs b/src/Synapse/Synapse.Test/ScenarioTests/DataClassificationTests.cs new file mode 100644 index 000000000000..e301df1ec466 --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/DataClassificationTests.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Synapse.Test.ScenarioTests +{ + public class DataClassificationTests : SynapseTestBase + { + public XunitTracingInterceptor _logger; + + public DataClassificationTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestDataClassificationOnSqlPool() + { + NewInstance.RunPsTest( + _logger, + "Test-DataClassificationOnSqlPool"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestEnableDisableRecommendationsOnSqlPool() + { + NewInstance.RunPsTest( + _logger, + "Test-EnableDisableRecommendationsOnSqlPool"); + } + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/DataClassificationTests.ps1 b/src/Synapse/Synapse.Test/ScenarioTests/DataClassificationTests.ps1 new file mode 100644 index 000000000000..41731a284bdd --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/DataClassificationTests.ps1 @@ -0,0 +1,362 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Tests end to end scenario of Data Classification on a SQL pool. +TODO: currently ther is no Rank property in SDK model so we +comment some assertions out for now. +#> +function Test-DataClassificationOnSqlPool +{ + # Setup + $testSuffix = getAssetName + Create-SqlDataClassificationTestEnvironment $testSuffix + $params = Get-DataClassificationTestEnvironmentParameters $testSuffix + + try + { + # Get recommended sensitivity labels, and verify. + $recommendations = Get-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + + $recommendationsCount = ($recommendations.SensitivityLabels).count + Assert-AreEqual 4 $recommendationsCount + + $firstRecommendation = ($recommendations.SensitivityLabels)[0] + $firstSchemaName = $firstRecommendation.SchemaName + $firstTableName = $firstRecommendation.TableName + $firstColumnName = $firstRecommendation.ColumnName + $firstInformationType = $firstRecommendation.InformationType + $firstSensitivityLabel = $firstRecommendation.SensitivityLabel + #$firstRank = $firstRecommendation.Rank + + Assert-AreEqual "dbo" $firstSchemaName + Assert-AreEqual "Persons" $firstTableName + Assert-NotNullOrEmpty $firstColumnName + Assert-NotNullOrEmpty $firstInformationType + Assert-NotNullOrEmpty $firstSensitivityLabel + #Assert-NotNullOrEmpty $firstRank + + $secondRecommendation = ($recommendations.SensitivityLabels)[1] + $secondSchemaName = $secondRecommendation.SchemaName + $secondTableName = $secondRecommendation.TableName + $secondColumnName = $secondRecommendation.ColumnName + $secondInformationType = $secondRecommendation.InformationType + $secondSensitivityLabel = $secondRecommendation.SensitivityLabel + #$secondRank = $secondRecommendation.Rank + + Assert-AreEqual "dbo" $secondSchemaName + Assert-AreEqual "Persons" $secondTableName + Assert-NotNullOrEmpty $secondColumnName + Assert-NotNullOrEmpty $secondInformationType + Assert-NotNullOrEmpty $secondSensitivityLabel + #Assert-NotNullOrEmpty $secondRank + + # Set first two sensitivity labels as recommended and verify. + # Second label is set using pipeline. + Set-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName -SchemaName $firstSchemaName -TableName $firstTableName -ColumnName $firstColumnName -InformationType $firstInformationType -SensitivityLabel $firstSensitivityLabel + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Set-AzSynapseSqlPoolSensitivityClassification -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName -InformationType $secondInformationType -SensitivityLabel $secondSensitivityLabel + + $allClassifications = Get-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName + $allClassificationsCount = ($allClassifications.SensitivityLabels).count + Assert-AreEqual 2 $allClassificationsCount + Assert-AreEqual $params.rgname $allClassifications.ResourceGroupName + Assert-AreEqual $params.workspaceName $allClassifications.WorkspaceName + Assert-AreEqual $params.sqlPoolName $allClassifications.SqlPoolName + + $firstClassification = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityClassification -SchemaName $firstSchemaName -TableName $firstTableName -ColumnName $firstColumnName + Assert-AreEqual 1 ($firstClassification.SensitivityLabels).count + $classification = ($firstClassification.SensitivityLabels)[0] + Assert-AreEqual $firstSchemaName $classification.SchemaName + Assert-AreEqual $firstTableName $classification.TableName + Assert-AreEqual $firstColumnName $classification.ColumnName + Assert-AreEqual $firstInformationType $classification.InformationType + Assert-AreEqual $firstSensitivityLabel $classification.SensitivityLabel + #Assert-AreEqual $firstRank $classification.Rank + + $secondClassification = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityClassification -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName + Assert-AreEqual 1 ($secondClassification.SensitivityLabels).count + $classification = ($secondClassification.SensitivityLabels)[0] + Assert-AreEqual $secondSchemaName $classification.SchemaName + Assert-AreEqual $secondTableName $classification.TableName + Assert-AreEqual $secondColumnName $classification.ColumnName + Assert-AreEqual $secondInformationType $classification.InformationType + Assert-AreEqual $secondSensitivityLabel $classification.SensitivityLabel + #Assert-AreEqual $secondRank $classification.Rank + + # Get, using pipeline, recommended sensitivity labels, and verify. + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + Assert-AreEqual 2 ($recommendations.SensitivityLabels).count + + # Remove second classification and verify + Remove-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName + + $allClassifications = Get-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName + $allClassificationsCount = ($allClassifications.SensitivityLabels).count + Assert-AreEqual 1 $allClassificationsCount + Assert-AreEqual $params.rgname $allClassifications.ResourceGroupName + Assert-AreEqual $params.workspaceName $allClassifications.WorkspaceName + Assert-AreEqual $params.sqlPoolName $allClassifications.SqlPoolName + + # Get, using pipeline, recommended sensitivity labels, and verify. + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual 3 ($recommendations.SensitivityLabels).count + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + + # Classify, using pipeline, all recommended columns, and verify. + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation | Set-AzSynapseSqlPoolSensitivityClassification + + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + Assert-AreEqual 0 ($recommendations.SensitivityLabels).count + + $allClassifications = Get-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName + $allClassificationsCount = ($allClassifications.SensitivityLabels).count + Assert-AreEqual 4 $allClassificationsCount + Assert-AreEqual $params.rgname $allClassifications.ResourceGroupName + Assert-AreEqual $params.workspaceName $allClassifications.WorkspaceName + Assert-AreEqual $params.sqlPoolName $allClassifications.SqlPoolName + + # Remove, using pipeline, second classification and verify + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Remove-AzSynapseSqlPoolSensitivityClassification -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName + + $allClassifications = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityClassification + $allClassificationsCount = ($allClassifications.SensitivityLabels).count + Assert-AreEqual 3 $allClassificationsCount + Assert-AreEqual $params.rgname $allClassifications.ResourceGroupName + Assert-AreEqual $params.workspaceName $allClassifications.WorkspaceName + Assert-AreEqual $params.sqlPoolName $allClassifications.SqlPoolName + + # Remove, using pipeline, all classifications, and verify. + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityClassification | Remove-AzSynapseSqlPoolSensitivityClassification + $allClassifications = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityClassification + $allClassificationsCount = ($allClassifications.SensitivityLabels).count + Assert-AreEqual 0 $allClassificationsCount + Assert-AreEqual $params.rgname $allClassifications.ResourceGroupName + Assert-AreEqual $params.workspaceName $allClassifications.WorkspaceName + Assert-AreEqual $params.sqlPoolName $allClassifications.SqlPoolName + } + finally + { + # Cleanup + Remove-DataClassificationTestEnvironment $testSuffix + } +} + +<# +.SYNOPSIS +Assert the given string is not null or empty +#> +function Assert-NotNullOrEmpty ($str) +{ + Assert-NotNull $str + Assert-AreNotEqual "" $str +} + +<# +.SYNOPSIS +Gets the values of the parameters used at the tests +#> +function Get-DataClassificationTestEnvironmentParameters ($testSuffix) +{ + return @{ rgname = "dc-cmdlet-test-rg" +$testSuffix; + workspaceName = "dc-ws" +$testSuffix; + sqlPoolName = "dcpool" + $testSuffix; + storageAccountName = "dccmdletstorage" + $testSuffix; + fileSystemName = "dccmdletfs" + $testSuffix; + loginName = "testlogin"; + pwd = "testp@ssMakingIt1007Longer"; + perfLevel = 'DW200c' + } +} + +<# +.SYNOPSIS +Removes the test environment that was needed to perform the tests +#> +function Remove-DataClassificationTestEnvironment ($testSuffix) +{ + $params = Get-DataClassificationTestEnvironmentParameters $testSuffix + Remove-AzResourceGroup -Name $params.rgname -Force +} + +<# +.SYNOPSIS +Creates the test environment needed to perform the tests +#> +function Create-SqlDataClassificationTestEnvironment ($testSuffix, $location = "West Central US") +{ + $params = Get-DataClassificationTestEnvironmentParameters $testSuffix + + New-AzResourceGroup -Name $params.rgname -Location $location + + New-AzStorageAccount -ResourceGroupName $params.rgname -Name $params.storageAccountName -Location $location -SkuName Standard_GRS -Kind StorageV2 -EnableHierarchicalNamespace $true + + $password = $params.pwd + $secureString = ($password | ConvertTo-SecureString -asPlainText -Force) + $credentials = new-object System.Management.Automation.PSCredential($params.loginName, $secureString) + New-AzSynapseWorkspace -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -Location $location -SqlAdministratorLoginCredential $credentials -DefaultDataLakeStorageAccountName $params.storageAccountName -DefaultDataLakeStorageFilesystem $params.fileSystemName + New-AzSynapseFirewallRule -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -StartIpAddress 0.0.0.0 -EndIpAddress 255.255.255.255 -FirewallRuleName "dcRule" + + # Enable Advanced Data Security + Enable-AzSynapseSqlAdvancedDataSecurity -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -DoNotConfigureVulnerabilityAssessment + + New-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName -PerformanceLevel $params.perfLevel + + if ([Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -eq "Record") + { + $fullWorkspaceName = $params.workspaceName + ".sql.azuresynapse.net" + $login = $params.loginName + $sqlPoolName = $params.sqlPoolName + + $connection = New-Object System.Data.SqlClient.SqlConnection + $connection.ConnectionString = "Server=$fullWorkspaceName;uid=$login;pwd=$password;Database=$sqlPoolName;Integrated Security=False;" + try + { + $connection.Open() + + $command = $connection.CreateCommand() + $command.CommandText = "CREATE TABLE Persons (PersonID int, LastName varchar(255), FirstName varchar(255), Address varchar(255), City varchar(255));" + $command.ExecuteReader() + } + finally + { + $connection.Close() + } + } +} + +<# +.SYNOPSIS +Tests enable and disable recommdations on columns in a SQL pool. +#> +function Test-EnableDisableRecommendationsOnSqlPool +{ + # Setup + $testSuffix = getAssetName + Create-SqlDataClassificationTestEnvironment $testSuffix + $params = Get-DataClassificationTestEnvironmentParameters $testSuffix + + try + { + # Get recommended sensitivity labels, and verify. + $recommendations = Get-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + + $recommendationsCount = ($recommendations.SensitivityLabels).count + Assert-AreEqual 4 $recommendationsCount + + $firstRecommendation = ($recommendations.SensitivityLabels)[0] + $firstSchemaName = $firstRecommendation.SchemaName + $firstTableName = $firstRecommendation.TableName + $firstColumnName = $firstRecommendation.ColumnName + $firstInformationType = $firstRecommendation.InformationType + $firstSensitivityLabel = $firstRecommendation.SensitivityLabel + + Assert-AreEqual "dbo" $firstSchemaName + Assert-AreEqual "Persons" $firstTableName + Assert-NotNullOrEmpty $firstColumnName + Assert-NotNullOrEmpty $firstInformationType + Assert-NotNullOrEmpty $firstSensitivityLabel + + $secondRecommendation = ($recommendations.SensitivityLabels)[1] + $secondSchemaName = $secondRecommendation.SchemaName + $secondTableName = $secondRecommendation.TableName + $secondColumnName = $secondRecommendation.ColumnName + $secondInformationType = $secondRecommendation.InformationType + $secondSensitivityLabel = $secondRecommendation.SensitivityLabel + + Assert-AreEqual "dbo" $secondSchemaName + Assert-AreEqual "Persons" $secondTableName + Assert-NotNullOrEmpty $secondColumnName + Assert-NotNullOrEmpty $secondInformationType + Assert-NotNullOrEmpty $secondSensitivityLabel + + # Disable first two recommdations, second recommdation is disabled using pipeline. + Disable-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName -SchemaName $firstSchemaName -TableName $firstTableName -ColumnName $firstColumnName + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Disable-AzSynapseSqlPoolSensitivityRecommendation -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName + + # Get, using pipeline, recommended sensitivity labels, and verify. + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + Assert-AreEqual 2 ($recommendations.SensitivityLabels).count + + # Verify disabled recommdations are not part of the new recommdations. + Assert-AreNotEqual $firstColumnName ($recommendations.SensitivityLabels)[0].ColumnName + Assert-AreNotEqual $firstColumnName ($recommendations.SensitivityLabels)[1].ColumnName + Assert-AreNotEqual $secondColumnName ($recommendations.SensitivityLabels)[0].ColumnName + Assert-AreNotEqual $secondColumnName ($recommendations.SensitivityLabels)[1].ColumnName + + # Enable second disabled recommdation. + Enable-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName + + # Get, using pipeline, recommended sensitivity labels, and verify. + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual 3 ($recommendations.SensitivityLabels).count + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + + # Verify disabled recommdation is not part of the new recommdations. + Assert-AreNotEqual $firstColumnName ($recommendations.SensitivityLabels)[0].ColumnName + Assert-AreNotEqual $firstColumnName ($recommendations.SensitivityLabels)[1].ColumnName + Assert-AreNotEqual $firstColumnName ($recommendations.SensitivityLabels)[2].ColumnName + + # Disable, using pipeline, all recommended columns. + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation | Disable-AzSynapseSqlPoolSensitivityRecommendation + + # Verify no recommdations are retrieved since all are disabled. + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + Assert-AreEqual 0 ($recommendations.SensitivityLabels).count + + # Enable, using pipeline, second disabled recommdation and verify + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Enable-AzSynapseSqlPoolSensitivityRecommendation -SchemaName $secondSchemaName -TableName $secondTableName -ColumnName $secondColumnName + + # Verify enabled recommdation is now part of the recommendations. + $recommendations = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolSensitivityRecommendation + Assert-AreEqual $params.rgname $recommendations.ResourceGroupName + Assert-AreEqual $params.workspaceName $recommendations.WorkspaceName + Assert-AreEqual $params.sqlPoolName $recommendations.SqlPoolName + Assert-AreEqual 1 ($recommendations.SensitivityLabels).count + + $recommendation = ($recommendations.SensitivityLabels)[0] + Assert-AreEqual $secondSchemaName $recommendation.SchemaName + Assert-AreEqual $secondTableName $recommendation.TableName + Assert-AreEqual $secondColumnName $recommendation.ColumnName + Assert-NotNullOrEmpty $recommendation.InformationType + Assert-NotNullOrEmpty $recommendation.SensitivityLabel + } + finally + { + # Cleanup + Remove-DataClassificationTestEnvironment $testSuffix + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/VulnerabilityAssessmentTests.cs b/src/Synapse/Synapse.Test/ScenarioTests/VulnerabilityAssessmentTests.cs new file mode 100644 index 000000000000..52e8659bdff7 --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/VulnerabilityAssessmentTests.cs @@ -0,0 +1,42 @@ +// ---------------------------------------------------------------------------------- +// +// 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.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace Microsoft.Azure.Commands.Synapse.Test.ScenarioTests +{ + public class VulnerabilityAssessmentTests : SynapseTestBase + { + public XunitTracingInterceptor _logger; + + public VulnerabilityAssessmentTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestVulnerabilityAssessmentBaseline(){ + NewInstance.RunPsTest( + _logger, + "Test-VulnerabilityAssessmentBaseline"); + } + } +} diff --git a/src/Synapse/Synapse.Test/ScenarioTests/VulnerabilityAssessmentTests.ps1 b/src/Synapse/Synapse.Test/ScenarioTests/VulnerabilityAssessmentTests.ps1 new file mode 100644 index 000000000000..dad984e5270c --- /dev/null +++ b/src/Synapse/Synapse.Test/ScenarioTests/VulnerabilityAssessmentTests.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 +Tests for vulnerability assessment baseline scenarios +#> +function Test-VulnerabilityAssessmentBaseline +{ + # Setup + $testSuffix = getAssetName + Create-VulnerabilityAssessmentTestEnvironment $testSuffix + $params = Get-SqlVulnerabilityAssessmentTestEnvironmentParameters $testSuffix + + try + { + # Turn on ATP + Enable-AzSynapseSqlAdvancedThreatProtection -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -DoNotConfigureVulnerabilityAssessment + + Update-AzSynapseSqlPoolVulnerabilityAssessmentSetting -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -StorageAccountName $params.storageAccountName + + $ruleId = "VA2108" + + # Get and remove baseline for non existing baseline + $baselineDoesntExistsErrorMessage = "Baseline does not exist for rule 'VA2108'." + Assert-ThrowsContains -script { Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId } -message $baselineDoesntExistsErrorMessage + + Assert-ThrowsContains -script { Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId } -message $baselineDoesntExistsErrorMessage + + # Set baseline + $baselineToSet = @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None'), @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -BaselineResult $baselineToSet + + # Get baseline and compare with what we sent + $baseline = Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId + + Assert-AreEqual $params.rgname $baseline.ResourceGroupName + Assert-AreEqual $params.workspaceName $baseline.WorkspaceName + Assert-AreEqual $params.sqlPoolName $baseline.SqlPoolName + Assert-AreEqual $ruleId $baseline.RuleId + Assert-AreEqual $false $baseline.RuleAppliesToMaster + Assert-AreEqualArray $baselineToSet[0] $baseline.BaselineResult[0].Result + Assert-AreEqualArray $baselineToSet[1] $baseline.BaselineResult[1].Result + + # Set baseline + $baselineToSet = @( 'Principal3', 'db_ddladmin', 'SQL_USER', 'None'), @( 'Principal4', 'db_ddladmin', 'SQL_USER', 'None') + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -BaselineResult $baselineToSet + + # Get baseline and compare with what we sent + $baseline = Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId + + Assert-AreEqual $params.rgname $baseline.ResourceGroupName + Assert-AreEqual $params.workspaceName $baseline.WorkspaceName + Assert-AreEqual $params.sqlPoolName $baseline.SqlPoolName + Assert-AreEqual $ruleId $baseline.RuleId + Assert-AreEqual $false $baseline.RuleAppliesToMaster + Assert-AreEqualArray $baselineToSet[0] $baseline.BaselineResult[0].Result + Assert-AreEqualArray $baselineToSet[1] $baseline.BaselineResult[1].Result + + # Clear baseline + Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId + + # Get and remove baseline for non existing baseline + Assert-ThrowsContains -script { Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId } -message $baselineDoesntExistsErrorMessage + + Assert-ThrowsContains -script { Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId } -message $baselineDoesntExistsErrorMessage + + # Test RuleAppliesToMaster parameter + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -BaselineResult $baselineToSet + + # We expect no baseline to be found on the master + Assert-ThrowsContains -script { Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId -RuleAppliesToMaster } -message $baselineDoesntExistsErrorMessage + + Assert-ThrowsContains -script { Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId -RuleAppliesToMaster} -message $baselineDoesntExistsErrorMessage + + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -RuleAppliesToMaster -BaselineResult $baselineToSet + + $baseline = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName` + | Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -RuleId $ruleId -RuleAppliesToMaster + Assert-AreEqual $params.rgname $baseline.ResourceGroupName + Assert-AreEqual $params.workspaceName $baseline.WorkspaceName + Assert-AreEqual $params.sqlPoolName $baseline.SqlPoolName + Assert-AreEqual $ruleId $baseline.RuleId + Assert-AreEqual $true $baseline.RuleAppliesToMaster + Assert-AreEqualArray $baselineToSet[0] $baseline.BaselineResult[0].Result + Assert-AreEqualArray $baselineToSet[1] $baseline.BaselineResult[1].Result + + Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -RuleAppliesToMaster + + # piping scenario + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -BaselineResult $baselineToSet + + Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId | Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline + + $baseline = Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -RuleId $ruleId + Assert-AreEqual $params.rgname $baseline.ResourceGroupName + Assert-AreEqual $params.workspaceName $baseline.WorkspaceName + Assert-AreEqual $params.sqlPoolName $baseline.SqlPoolName + Assert-AreEqual $ruleId $baseline.RuleId + Assert-AreEqual $false $baseline.RuleAppliesToMaster + Assert-AreEqualArray $baselineToSet[0] $baseline.BaselineResult[0].Result + Assert-AreEqualArray $baselineToSet[1] $baseline.BaselineResult[1].Result + + Get-AzSynapseSqlPool -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName | Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -RuleId $ruleId + Assert-ThrowsContains -script { Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId } -message $baselineDoesntExistsErrorMessage + + # Test WhatIf parameter of Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -BaselineResult $baselineToSet -WhatIf + + # See that exception is thrown because set settings was run with WhatIf + Assert-ThrowsContains -script { Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId } -message $baselineDoesntExistsErrorMessage + + # Test WhatIf parameter of Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline + Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId -BaselineResult $baselineToSet + + Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName ` + -SqlPoolName $params.sqlPoolName -RuleId $ruleId -WhatIf + + # See no exception is thrown because clear was run with WhatIf + Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline -ResourceGroupName $params.rgname -WorkspaceName $params.workspaceName -SqlPoolName $params.sqlPoolName ` + -RuleId $ruleId + } + finally + { + # Cleanup + Remove-VulnerabilityAssessmentTestEnvironment $testSuffix + } +} + +<# +.SYNOPSIS +Creates the test environment needed to perform the tests +#> +function Create-VulnerabilityAssessmentTestEnvironment ($testSuffix, $location = "West Central US") +{ + $params = Get-SqlVulnerabilityAssessmentTestEnvironmentParameters $testSuffix + Create-TestEnvironmentWithParams $params $location +} + +<# +.SYNOPSIS +Gets the values of the parameters used at the tests +#> +function Get-SqlVulnerabilityAssessmentTestEnvironmentParameters ($testSuffix) +{ + return @{ rgname = "sql-va-cmdlet-test-rg" +$testSuffix; + workspaceName = "sqlvaws" +$testSuffix; + sqlPoolName = "sqlvapool" + $testSuffix; + storageAccountName = "sqlvastorage" + $testSuffix; + fileSystemName = "sqlvacmdletfs" + $testSuffix; + loginName = "testlogin"; + pwd = "testp@ssMakingIt1007Longer"; + perfLevel = 'DW200c' + } +} + +<# +.SYNOPSIS +Removes the test environment that was needed to perform the tests +#> +function Remove-VulnerabilityAssessmentTestEnvironment ($testSuffix) +{ + $params = Get-SqlVulnerabilityAssessmentTestEnvironmentParameters $testSuffix + Remove-AzResourceGroup -Name $params.rgname -Force +} diff --git a/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests/TestDataClassificationOnSqlPool.json b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests/TestDataClassificationOnSqlPool.json new file mode 100644 index 000000000000..8516ac70513b --- /dev/null +++ b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests/TestDataClassificationOnSqlPool.json @@ -0,0 +1,5202 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourcegroups/dc-cmdlet-test-rgps5053?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlZ3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30e89cf8-1dfb-4a43-afd5-782020620f2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ], + "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": [ + "1ab1a001-2a63-4a4c-a848-e454d2247963" + ], + "x-ms-correlation-request-id": [ + "1ab1a001-2a63-4a4c-a848-e454d2247963" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064500Z:1ab1a001-2a63-4a4c-a848-e454d2247963" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:00 GMT" + ], + "Content-Length": [ + "206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053\",\r\n \"name\": \"dc-cmdlet-test-rgps5053\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"dccmdletstorageps5053\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e38d432-4cf1-4600-9489-9045ba39db86" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "87" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "776f6b60-1cec-4513-b3e3-96450596eb4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ea1e0644-c96f-4958-8e36-0d72c1f451de" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064501Z:ea1e0644-c96f-4958-8e36-0d72c1f451de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:00 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps5053?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvZGNjbWRsZXRzdG9yYWdlcHM1MDUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"isHnsEnabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7785728-2ff7-40ef-acd5-fb696b18bdb2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "158" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/4ec67ad9-c3cd-4233-bca6-f6ca71a7fde7?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "4ec67ad9-c3cd-4233-bca6-f6ca71a7fde7" + ], + "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": [ + "89af8a39-15eb-43e9-a63c-d63fc9fd8de2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064502Z:89af8a39-15eb-43e9-a63c-d63fc9fd8de2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:02 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/4ec67ad9-c3cd-4233-bca6-f6ca71a7fde7?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvNGVjNjdhZDktYzNjZC00MjMzLWJjYTYtZjZjYTcxYTdmZGU3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5f95fea-7c80-419f-9446-ee546a727b46" + ], + "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": [ + "6dcbeb4b-a1da-467e-b905-2729b9c5d685" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064520Z:6dcbeb4b-a1da-467e-b905-2729b9c5d685" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:20 GMT" + ], + "Content-Length": [ + "1410" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps5053\",\r\n \"name\": \"dccmdletstorageps5053\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"isHnsEnabled\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\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-12-16T06:45:02.4009305Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T06:45:02.4009305Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T06:45:02.3384275Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://dccmdletstorageps5053.dfs.core.windows.net/\",\r\n \"web\": \"https://dccmdletstorageps5053.z4.web.core.windows.net/\",\r\n \"blob\": \"https://dccmdletstorageps5053.blob.core.windows.net/\",\r\n \"queue\": \"https://dccmdletstorageps5053.queue.core.windows.net/\",\r\n \"table\": \"https://dccmdletstorageps5053.table.core.windows.net/\",\r\n \"file\": \"https://dccmdletstorageps5053.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps5053?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvZGNjbWRsZXRzdG9yYWdlcHM1MDUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa594db4-c0ff-4f94-9458-a8535578c397" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b3bc30a2-8d51-4cc0-9907-5aaf51399f23" + ], + "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": [ + "690a0150-932a-4e23-a3da-c2f1726508f2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064520Z:690a0150-932a-4e23-a3da-c2f1726508f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:20 GMT" + ], + "Content-Length": [ + "1410" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps5053\",\r\n \"name\": \"dccmdletstorageps5053\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"isHnsEnabled\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\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-12-16T06:45:02.4009305Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T06:45:02.4009305Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T06:45:02.3384275Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://dccmdletstorageps5053.dfs.core.windows.net/\",\r\n \"web\": \"https://dccmdletstorageps5053.z4.web.core.windows.net/\",\r\n \"blob\": \"https://dccmdletstorageps5053.blob.core.windows.net/\",\r\n \"queue\": \"https://dccmdletstorageps5053.queue.core.windows.net/\",\r\n \"table\": \"https://dccmdletstorageps5053.table.core.windows.net/\",\r\n \"file\": \"https://dccmdletstorageps5053.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d723eb0d-249f-4cdb-b2d8-d686e6ef1454" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c27efc84-350c-401e-bbe5-049fceabd152" + ], + "x-ms-correlation-request-id": [ + "c27efc84-350c-401e-bbe5-049fceabd152" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064520Z:c27efc84-350c-401e-bbe5-049fceabd152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "235" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/dc-wsps5053' under resource group 'dc-cmdlet-test-rgps5053' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d4f8f332-740c-4338-92a3-088a58d665d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "7270c569-b536-43e9-ae59-cb2d66b44c7e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064858Z:7270c569-b536-43e9-ae59-cb2d66b44c7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:48:58 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dc-wsps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"60a55b8e-1604-4919-b614-788883cc0eb0\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fdc-cmdlet-test-rgps5053%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fdc-wsps5053\",\r\n \"dev\": \"https://dc-wsps5053.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"dc-wsps5053-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"dc-wsps5053.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-027cdf55-d001-43f1-9d72-e47aaa8dde73\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps5053.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps5053\"\r\n },\r\n \"sqlAdministratorLogin\": \"testlogin\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"2aeec204-f609-40d5-b446-d299f47a1847\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d01bb97-1ce2-4c4a-ba36-ed7701022d1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "597f7be2-e8ef-415f-a113-26458929b745" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "eb044a38-f1db-4260-a4e3-01cc0699d44d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065001Z:eb044a38-f1db-4260-a4e3-01cc0699d44d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:00 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dc-wsps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"60a55b8e-1604-4919-b614-788883cc0eb0\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fdc-cmdlet-test-rgps5053%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fdc-wsps5053\",\r\n \"dev\": \"https://dc-wsps5053.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"dc-wsps5053-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"dc-wsps5053.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-027cdf55-d001-43f1-9d72-e47aaa8dde73\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps5053.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps5053\"\r\n },\r\n \"sqlAdministratorLogin\": \"testlogin\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"2aeec204-f609-40d5-b446-d299f47a1847\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps5053.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps5053\"\r\n },\r\n \"sqlAdministratorLoginPassword\": \"testp@ssMakingIt1007Longer\",\r\n \"sqlAdministratorLogin\": \"testlogin\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2202d1a0-d6eb-4607-8e46-270aa119a21a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "381" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "66966601-da25-4943-b978-82eb2c98ce6f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c7399474-8b40-46b6-871b-18f9c723a794" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064527Z:c7399474-8b40-46b6-871b-18f9c723a794" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:27 GMT" + ], + "Content-Length": [ + "1224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dc-wsps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"60a55b8e-1604-4919-b614-788883cc0eb0\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fdc-cmdlet-test-rgps5053%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fdc-wsps5053\",\r\n \"dev\": \"https://dc-wsps5053.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"dc-wsps5053-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"dc-wsps5053.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-027cdf55-d001-43f1-9d72-e47aaa8dde73\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps5053.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps5053\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"2aeec204-f609-40d5-b446-d299f47a1847\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bccd0655-89e7-44bc-b09c-f66cbcd16a8c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "974e85bf-c2cc-4062-aeb5-39f51621a4b2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064557Z:974e85bf-c2cc-4062-aeb5-39f51621a4b2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:45:57 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c06d78c-6a47-4d9a-9e8e-eaebc75266eb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "91aaf840-a942-4489-a7ab-83545e740c11" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064627Z:91aaf840-a942-4489-a7ab-83545e740c11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:46:27 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7e2fff8d-9e35-453c-b520-75cc349db170" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "bc95e693-82bb-4fba-8ed1-90530a900281" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064658Z:bc95e693-82bb-4fba-8ed1-90530a900281" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:46:57 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3b46321f-2d54-4e89-9a68-efd54200ea66" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3c1c29f5-2d2b-4bc3-a79d-9cea8d48054f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064728Z:3c1c29f5-2d2b-4bc3-a79d-9cea8d48054f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:47:28 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "96fc0345-c310-4f60-a548-8abaee953bd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "5e68e8a9-a41f-43af-ba99-0552d706861c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064758Z:5e68e8a9-a41f-43af-ba99-0552d706861c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:47:57 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1e8bef5-b343-42d9-9069-c5b8464dec1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "ebe46200-8107-4b9b-8943-95c98cd2d58b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064828Z:ebe46200-8107-4b9b-8943-95c98cd2d58b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:48:27 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/d142d137-94e4-4001-b817-cf7c880be367?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL2QxNDJkMTM3LTk0ZTQtNDAwMS1iODE3LWNmN2M4ODBiZTM2Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b0555a53-ebe5-4f77-a102-d60a7148e327" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "b47363a1-7c24-4f5d-8b63-f08024ed3587" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064858Z:b47363a1-7c24-4f5d-8b63-f08024ed3587" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:48:58 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/firewallRules/dcRule?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL2ZpcmV3YWxsUnVsZXMvZGNSdWxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b458aac-93dc-422d-93e7-8ecc64ed211c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87b3853b-fb71-4553-ab2f-460175eb6a18" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "9bc8bc05-ff81-4b74-948c-85eaf07b44f9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064858Z:9bc8bc05-ff81-4b74-948c-85eaf07b44f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:48:58 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"IpFirewallRuleNotFound\",\r\n \"message\": \"dc-wsps5053/dcRule\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/firewallRules/dcRule?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL2ZpcmV3YWxsUnVsZXMvZGNSdWxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a2a0448b-48de-43ab-b720-e0a9da0e4844" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "9b97b60b-96f6-46ff-8074-bc7b6916e889" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064929Z:9b97b60b-96f6-46ff-8074-bc7b6916e889" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:49:28 GMT" + ], + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/firewallRules/dcRule\",\r\n \"name\": \"dcRule\",\r\n \"type\": \"Microsoft.Synapse/workspaces/firewallRules\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/firewallRules/dcRule?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL2ZpcmV3YWxsUnVsZXMvZGNSdWxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"255.255.255.255\",\r\n \"startIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e95251bc-d8f7-490a-bc67-ceab2d7ea47c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationResults/5a99a4c9-e9fc-46bf-87cd-a7744d15aa44?api-version=2019-06-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/5a99a4c9-e9fc-46bf-87cd-a7744d15aa44?api-version=2019-06-01-preview" + ], + "Access-Control-Allow-Headers": [ + "Location" + ], + "Access-Control-Expose-Headers": [ + "Location" + ], + "x-ms-request-id": [ + "f20e1467-1441-47dd-ad11-c98d5aeaf3e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "44d34bea-f098-46d0-90c5-22dbc8f63b8d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064859Z:44d34bea-f098-46d0-90c5-22dbc8f63b8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:48:59 GMT" + ], + "Content-Length": [ + "349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/firewallRules/dcRule\",\r\n \"name\": \"dcRule\",\r\n \"type\": \"Microsoft.Synapse/workspaces/firewallRules\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/5a99a4c9-e9fc-46bf-87cd-a7744d15aa44?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzVhOTlhNGM5LWU5ZmMtNDZiZi04N2NkLWE3NzQ0ZDE1YWE0ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2526ea73-0d29-4be3-944b-c4c691794a51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "559c7e05-45d0-4a87-ad10-a1b6a79c80e0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064929Z:559c7e05-45d0-4a87-ad10-a1b6a79c80e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:49:28 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad2f472a-9b5a-4301-9696-12ef378f985c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5d25928d-f4df-4d1b-96e7-b343fe818a9a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "af198409-1571-4b70-b0a4-93e98df2249b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064929Z:af198409-1571-4b70-b0a4-93e98df2249b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:49:29 GMT" + ], + "Content-Length": [ + "468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"creationTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/securityAlertPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f70ead24-1fd7-42fb-bee6-47394451224d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "2a51540b-6eb7-4f4c-b763-2c73e63a8a55" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065001Z:2a51540b-6eb7-4f4c-b763-2c73e63a8a55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:00 GMT" + ], + "Content-Length": [ + "471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"creationTime\": \"2020-12-16T06:49:30.137Z\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/securityAlertPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0189409a-5428-4cfd-bc74-2ce38ab89d3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "233" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationResults/sql08ftr-dbf759ad-cb3e-4019-a505-fd10045172f7?api-version=2019-06-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/sql08ftr-dbf759ad-cb3e-4019-a505-fd10045172f7?api-version=2019-06-01-preview" + ], + "RetryAfter": [ + "3" + ], + "Access-Control-Allow-Headers": [ + "Location" + ], + "Access-Control-Expose-Headers": [ + "Location" + ], + "x-ms-request-id": [ + "9a7fcbc4-d021-4f41-9181-16c3257ca500" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1a52611d-5bd8-4918-bcba-f589c3714805" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T064930Z:1a52611d-5bd8-4918-bcba-f589c3714805" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:49:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/sql08ftr-dbf759ad-cb3e-4019-a505-fd10045172f7?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzL3NxbDA4ZnRyLWRiZjc1OWFkLWNiM2UtNDAxOS1hNTA1LWZkMTAwNDUxNzJmNz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7099e9db-375b-4096-95e0-aa27d91c1229" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "73e4bcae-6252-4f5f-9815-994425c057c8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065001Z:73e4bcae-6252-4f5f-9815-994425c057c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:00 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dbf759ad-cb3e-4019-a505-fd10045172f7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-12-16T06:49:30.013Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6d01b41-4c66-4b6d-8f7f-0ea3501e85b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5f0825ef-effc-42ae-8d82-9439fc50c839" + ], + "x-ms-correlation-request-id": [ + "5f0825ef-effc-42ae-8d82-9439fc50c839" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065001Z:5f0825ef-effc-42ae-8d82-9439fc50c839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "257" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053' under resource group 'dc-cmdlet-test-rgps5053' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8024d817-db58-4a24-a030-93823525e6f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "fdb156ea-823b-4364-a819-6bc96369183b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065324Z:fdb156ea-823b-4364-a819-6bc96369183b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:24 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1300552-6b1e-4e5b-b6fe-48ae41a98f11" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0b30d6e3-6274-43ee-bf97-9653d70a853b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "2b1db237-4a2f-48c0-b4db-02ba856191bd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065339Z:2b1db237-4a2f-48c0-b4db-02ba856191bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:38 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7495f21e-b06c-4823-a2dd-b88c583507a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3f3893d0-dc97-4501-a97c-c12bf6439824" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "b7a93a1b-221e-452b-bcc4-a0712af68172" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065341Z:b7a93a1b-221e-452b-bcc4-a0712af68172" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:41 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78adb2b7-20ee-4024-8e8a-3a3994e53e31" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8837d764-ecef-4fd0-aca9-22470831c45c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "255fbe8e-3e6e-4044-93aa-761de2673bd9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065342Z:255fbe8e-3e6e-4044-93aa-761de2673bd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:41 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c0a6322-16a5-4171-9000-bd6306bcb641" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "88f0454d-bb78-4e2d-a81f-bbd9bd9cb0a0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "317cd586-7d89-4d55-9df0-1eba4305104d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065342Z:317cd586-7d89-4d55-9df0-1eba4305104d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:42 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76551d9c-871d-4263-8311-9522d38935ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ca0278e-656a-4d2b-abb0-636ccbab9b79" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "68b6b317-f474-4078-9813-5aa409c34491" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065345Z:68b6b317-f474-4078-9813-5aa409c34491" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:44 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2be4fb89-91bb-4f48-8265-81037821ffb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b5a32bdd-4afb-4607-bd07-168f220befcf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "60ad0825-5597-43d8-b3cf-e6d99a137ca4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065345Z:60ad0825-5597-43d8-b3cf-e6d99a137ca4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:45 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37d2bd4c-63ff-42c6-aa97-27e91ec9be9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c9f66148-96af-4c1e-8734-95e1cc9ae876" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "2d945266-7c02-45eb-90af-bedd9614462d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065350Z:2d945266-7c02-45eb-90af-bedd9614462d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:49 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09db88c3-1063-4130-8510-0f0c296226ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94ab7738-824c-4cc0-9ab5-c68e7553e548" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "e5916acd-92ba-4d15-96d8-0630d0da226d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065351Z:e5916acd-92ba-4d15-96d8-0630d0da226d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:51 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "893fd493-44ae-46fb-929f-1836178a41ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "34b43b3e-ec0d-4fc6-8143-47d0cea76f75" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "61c289bf-6f64-4c40-a767-e1f61e70789f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065352Z:61c289bf-6f64-4c40-a767-e1f61e70789f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:51 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52812e0f-d976-42f2-bf7a-39151c000f9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "58756078-293f-4f5e-8427-da9408db6241" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "c83f2bfc-072e-47b2-9c53-2dce1ba28042" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065352Z:c83f2bfc-072e-47b2-9c53-2dce1ba28042" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:52 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5506de0-931e-4d42-9a9e-af0f8f813aaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7416059d-c2f5-426a-aa45-aa41ee816f02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "ba0daba9-709e-42ff-abfe-926c8a180028" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065355Z:ba0daba9-709e-42ff-abfe-926c8a180028" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:54 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T06:53:15.353Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1Mz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW200c\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"createMode\": \"Default\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5f60501-6a90-434b-97f5-5d88d8075ef2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "179" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationResults/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview" + ], + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "x-ms-request-id": [ + "3a6c8a3b-efb9-47b0-9035-1ed12f2f36db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "e5032f22-3382-4270-b767-624b6713e65b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065002Z:e5032f22-3382-4270-b767-624b6713e65b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:01 GMT" + ], + "Content-Length": [ + "468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"0001-01-01T00:00:00\",\r\n \"provisioningState\": \"Provisioning\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"name\": \"dcpoolps5053\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc7845f3-75a4-4747-931f-c90f8ab9b9b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "4a22dc69-6a79-4b0c-be21-7b6c012c89d1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065012Z:4a22dc69-6a79-4b0c-be21-7b6c012c89d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:11 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cef5ecc-d7e5-421c-9364-2c47aac644bc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "dab4860c-0994-4541-9728-52c80558fd68" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065022Z:dab4860c-0994-4541-9728-52c80558fd68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:22 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "885eaf86-9ec9-48cc-8d0c-47af482c0c02" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "33fd0079-4bc9-4602-9c80-9a7844e88c39" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065032Z:33fd0079-4bc9-4602-9c80-9a7844e88c39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:32 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17051a6e-704f-4dc0-a2b6-f0e963b4beb9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "c67f2aac-a5d3-42b3-abd7-e7a2c2a9f7ff" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065042Z:c67f2aac-a5d3-42b3-abd7-e7a2c2a9f7ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:42 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f917c974-c09d-462d-8c1c-fa903ffc111c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "f6ba0dad-5205-4d89-bac2-ec559c768697" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065052Z:f6ba0dad-5205-4d89-bac2-ec559c768697" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:50:52 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4c6fb833-7e2e-4ccf-b42b-17780bc40276" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "87e0187d-9fc9-42b4-9992-87e10d5cdb36" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065102Z:87e0187d-9fc9-42b4-9992-87e10d5cdb36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:51:01 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b76a880b-17d3-4a61-9c98-4523f302b181" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7bc2693d-5208-4006-942e-bca693fed483" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065112Z:7bc2693d-5208-4006-942e-bca693fed483" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:51:12 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "05cd1fc7-aef9-4ef1-8245-dbf61bebed38" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "cca6cc46-8443-4270-82dc-6f1659bca9aa" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065123Z:cca6cc46-8443-4270-82dc-6f1659bca9aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:51:22 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "32a9bbf5-fd26-465d-a5f7-d313fca0d55d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "e521e95a-cc1b-4f85-8e0e-1bb616c026ed" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065133Z:e521e95a-cc1b-4f85-8e0e-1bb616c026ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:51:32 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "305b5d71-ba1d-4d70-9c2e-4eff54a9b901" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "4970854a-08f4-4ea3-a5f6-bbbee8e5fc63" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065143Z:4970854a-08f4-4ea3-a5f6-bbbee8e5fc63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:51:42 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "52a7bd66-5e7c-4b13-b035-a059d30702fc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "9ea6813a-7707-416b-8013-bd03cbf2bcfe" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065153Z:9ea6813a-7707-416b-8013-bd03cbf2bcfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:51:52 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "030e8237-cf3f-4840-8b8f-1f6405a7ab3f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "fc3210d5-792c-43be-b2ac-e75dd9b233e7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065203Z:fc3210d5-792c-43be-b2ac-e75dd9b233e7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:52:03 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93e74ac9-5f06-4910-8f9e-076e87a712c6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "a4614605-3f25-4d2d-8bfa-b0165b048d82" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065213Z:a4614605-3f25-4d2d-8bfa-b0165b048d82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:52:13 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "483e6ebb-1839-4161-9b2a-556df9bde922" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "564b35de-d1b5-4bdb-857e-011cb1029cef" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065223Z:564b35de-d1b5-4bdb-857e-011cb1029cef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:52:23 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d6927f1-7bcd-4b2f-a3e5-5795cc7eedb9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "0812fc07-013e-4410-a71c-3cde041a6cab" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065233Z:0812fc07-013e-4410-a71c-3cde041a6cab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:52:33 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "07ddf3f8-c8b8-4f41-8f83-10f06cb78cde" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "e3c8d5d1-e26d-483f-a6c1-d2dcc70b7d62" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065243Z:e3c8d5d1-e26d-483f-a6c1-d2dcc70b7d62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:52:43 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e953c271-d0f4-43a4-b4dd-bd05c403e5d3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "5a32aa12-d4c2-4f05-b82a-2bd108d5ad08" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065253Z:5a32aa12-d4c2-4f05-b82a-2bd108d5ad08" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:52:53 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "493a6d31-df60-4082-a709-2ffbd0305595" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "2b3f451e-9e82-411b-9d08-adf9e5564052" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065303Z:2b3f451e-9e82-411b-9d08-adf9e5564052" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:03 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af879c8e-1cff-46bb-87c9-f41a1223d56d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "237c2313-a049-44b0-b6b4-eead70f5dc34" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065313Z:237c2313-a049-44b0-b6b4-eead70f5dc34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:13 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/operationStatuses/676bcd51-7a99-415e-953c-fe89077c81ff?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL29wZXJhdGlvblN0YXR1c2VzLzY3NmJjZDUxLTdhOTktNDE1ZS05NTNjLWZlODkwNzdjODFmZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6dd11e2b-1d5d-415f-9211-0b4040c20637" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "04829b3e-6e9f-4f78-b613-cfa29dfd0ce3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065324Z:04829b3e-6e9f-4f78-b613-cfa29dfd0ce3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:23 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96816add-2810-44e5-8961-0bed4c8865dd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "821ae761-c953-4291-b5d4-828accce0948" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "5f0a68a4-3e55-4b6a-80e7-a2e09f9af0ba" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065336Z:5f0a68a4-3e55-4b6a-80e7-a2e09f9af0ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:36 GMT" + ], + "Content-Length": [ + "3177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56c4a0cb-6c62-4c73-bc93-d2b267aaff3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "222e0191-9520-443f-81b3-8689dc53d6b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "7097873e-707f-408e-bdb0-b2165bd902ba" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065343Z:7097873e-707f-408e-bdb0-b2165bd902ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:43 GMT" + ], + "Content-Length": [ + "1589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef5aaa3b-58ab-409c-8ad6-7896206f5f29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "904f8aa4-2566-424d-b8d5-3e6fab4106fd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "907aa177-6ddf-4840-9281-39fe70c46530" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065345Z:907aa177-6ddf-4840-9281-39fe70c46530" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:45 GMT" + ], + "Content-Length": [ + "2384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73496340-f803-4454-a0a0-663a330a5b85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e04efe8-4768-4363-ad9c-ffa1208dfeac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "0bdb03e9-f33e-4ae2-9262-a41c4ad21b80" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065346Z:0bdb03e9-f33e-4ae2-9262-a41c4ad21b80" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:46 GMT" + ], + "Content-Length": [ + "2384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51b16fd7-ce43-40ab-8c89-9b32c343de00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b49b7310-b896-4a69-ae55-8e6113f5a545" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "471f6c6a-5d76-42d7-8f54-1e9eeaa3ffce" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065350Z:471f6c6a-5d76-42d7-8f54-1e9eeaa3ffce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:50 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0xhc3ROYW1lL3NlbnNpdGl2aXR5TGFiZWxzL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf3a1f3d-5b3e-4632-b943-94984098b343" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3917c465-76a1-42f7-87cb-9772fcdc521a", + "81f42638-dff2-4ad3-a460-479023c5636b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ce92f7ec-b9c1-44f3-81ca-06b42638a071" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065337Z:ce92f7ec-b9c1-44f3-81ca-06b42638a071" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:37 GMT" + ], + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SensitivityLabelsLabelNotFound\",\r\n \"message\": \"The specified sensitivity label could not be found\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0xhc3ROYW1lL3NlbnNpdGl2aXR5TGFiZWxzL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7de12b9a-7edd-4c5f-8326-0c5f205a4a6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9a30c5ff-ead9-4bdb-95bd-2397b80a7f18" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "50e16129-cbaf-455d-a234-72e4ed3c0002" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065342Z:50e16129-cbaf-455d-a234-72e4ed3c0002" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:41 GMT" + ], + "Content-Length": [ + "749" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0xhc3ROYW1lL3NlbnNpdGl2aXR5TGFiZWxzL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e41a6560-eb6b-42e5-9115-b51dc47d6630" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "222" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ff35ab1-681c-4e89-9a84-fad3f1fcc04d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "b05d2eee-71fe-4620-852c-9c5f0faa391c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065338Z:b05d2eee-71fe-4620-852c-9c5f0faa391c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:38 GMT" + ], + "Content-Length": [ + "749" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fe17a59-822f-4849-84ad-ddb167a65875" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "11e45109-34b8-48ba-855d-ebcad438b1fe", + "c864cc77-7de6-4170-a998-be27f564cb17" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "04a4f1df-6ba5-4972-939a-c486e046493b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065339Z:04a4f1df-6ba5-4972-939a-c486e046493b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:39 GMT" + ], + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SensitivityLabelsLabelNotFound\",\r\n \"message\": \"The specified sensitivity label could not be found\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ee9b6d7-4902-4827-b4e3-788a35d8cce3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e7df5325-dfe1-44af-a353-d2da6c6e564f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "c6285f14-8737-44e8-9ac6-2a376b50f252" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065342Z:c6285f14-8737-44e8-9ac6-2a376b50f252" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:42 GMT" + ], + "Content-Length": [ + "751" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c87fba4f-cc60-4b61-802e-e6b0335f6443" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "222" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c7d50121-3312-4ac2-97dd-f0a4b3287ce7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "b773bfe5-764d-4da7-ab94-b6018659fc5b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065340Z:b773bfe5-764d-4da7-ab94-b6018659fc5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:40 GMT" + ], + "Content-Length": [ + "751" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3165652f-9ed7-4d44-aab8-de792f7b5914" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "222" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4038b14c-0e5d-4755-9132-cd2e53515887" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "e92d812c-cb8e-4e1d-a611-9f97ac147716" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065349Z:e92d812c-cb8e-4e1d-a611-9f97ac147716" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:49 GMT" + ], + "Content-Length": [ + "751" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a88a9803-2a46-4fd4-9597-bda0a4c449fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bc5b0405-65ab-41f1-b590-37706eb71579" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "f4e825ca-219d-4354-a835-d5b99f133cea" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065341Z:f4e825ca-219d-4354-a835-d5b99f133cea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:40 GMT" + ], + "Content-Length": [ + "1513" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6eb97df9-a888-4b50-b82e-c323caea2506" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "68c93c7a-65b0-405f-a70f-8c995b9898d3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "e53314bf-a265-4dd7-99b6-1866ff473e36" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065344Z:e53314bf-a265-4dd7-99b6-1866ff473e36" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:44 GMT" + ], + "Content-Length": [ + "761" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f935c63d-bc08-4f6f-981f-58ccf66a5a07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6048c073-49a0-421d-abcd-3e599f6848b9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "3f38870f-b52e-41d2-b0b3-e9c693c43bd3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065347Z:3f38870f-b52e-41d2-b0b3-e9c693c43bd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:46 GMT" + ], + "Content-Length": [ + "761" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16e2cc0c-8e91-445e-a5cc-1985d3ee7502" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87d25c4a-7126-46f9-9ccf-18c0e3fceb5c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "6b3360e0-10c5-463b-9b1b-191ce9835a4d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065351Z:6b3360e0-10c5-463b-9b1b-191ce9835a4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:50 GMT" + ], + "Content-Length": [ + "3005" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f7b7665-1126-40f6-a79f-6d41c57d6817" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5386a78d-bc94-4445-afbe-99fa445b1dc5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "2fe16528-3326-4966-824f-571045d90e20" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065352Z:2fe16528-3326-4966-824f-571045d90e20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:52 GMT" + ], + "Content-Length": [ + "2253" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad34fc49-fbc7-47af-b573-8ab0e1278f00" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3bfdba88-5150-4f3b-b881-721467fa2699" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "16764348-83e4-4a8c-958a-86aff8063ed7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065353Z:16764348-83e4-4a8c-958a-86aff8063ed7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:52 GMT" + ], + "Content-Length": [ + "2253" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"989adc05-3f3f-0588-a635-f475b994915b\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/currentSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9jdXJyZW50U2Vuc2l0aXZpdHlMYWJlbHM/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83cc29b0-7eb7-4618-9769-906c4e356c97" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7742f576-cd14-4cec-8778-6841ee262a14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "7017b1e5-00d7-4560-954c-2ca1660445a7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065355Z:7017b1e5-00d7-4560-954c-2ca1660445a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:55 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da28f35f-1ad9-4b7a-a6fa-5d732f78034f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cd657dc6-d817-4141-834e-6f95b27d301e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "c7de802a-7150-496a-b8f6-101e2098223e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065344Z:c7de802a-7150-496a-b8f6-101e2098223e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "712a885d-3acf-43c3-98cb-7f39b6a954a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c69bda5-89fd-446d-8fb8-1c865edc87af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "f1da40b9-1fff-4ff9-b9bc-ce24f2b6f1e3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065352Z:f1da40b9-1fff-4ff9-b9bc-ce24f2b6f1e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0FkZHJlc3Mvc2Vuc2l0aXZpdHlMYWJlbHMvY3VycmVudD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8efcaca1-56c7-4cff-bfc8-27cd9875c038" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc2ed9e4-9240-4c8c-b448-fff97dbb3f11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "76710f15-40bf-49d9-9930-780a16da611f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065348Z:76710f15-40bf-49d9-9930-780a16da611f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:47 GMT" + ], + "Content-Length": [ + "748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0NpdHkvc2Vuc2l0aXZpdHlMYWJlbHMvY3VycmVudD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "419c3170-eaf8-4f67-8ad1-4b33717168e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "223" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7dde4580-e50b-481f-a21e-50afcea96970" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "889ecdb9-2198-4750-8b33-31a5dcd28e91" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065349Z:889ecdb9-2198-4750-8b33-31a5dcd28e91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:48 GMT" + ], + "Content-Length": [ + "742" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0xhc3ROYW1lL3NlbnNpdGl2aXR5TGFiZWxzL2N1cnJlbnQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55cd2b64-d5a3-40fb-b2cd-c4a4a7373507" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c266ad11-f675-450e-8b81-bf60a0b91e67" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "b859d5c8-c3bf-40ac-b232-38fdbf89afb7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065353Z:b859d5c8-c3bf-40ac-b232-38fdbf89afb7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0FkZHJlc3Mvc2Vuc2l0aXZpdHlMYWJlbHMvY3VycmVudD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "feec999d-76bb-4dfc-b540-435c0e454dc3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aaba670a-7610-40a2-948e-346e84aad188" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "9730ab72-ae28-4b54-8cb0-b38020c2f346" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065354Z:9730ab72-ae28-4b54-8cb0-b38020c2f346" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps5053/providers/Microsoft.Synapse/workspaces/dc-wsps5053/sqlPools/dcpoolps5053/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/current?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM1MDUzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM1MDUzL3NxbFBvb2xzL2RjcG9vbHBzNTA1My9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0NpdHkvc2Vuc2l0aXZpdHlMYWJlbHMvY3VycmVudD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e3dd298-1d94-4b59-acb2-b95aea27f64b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5554d1ef-cdfe-4034-951e-37a92f14998f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "7da2ca43-c67d-41a0-80c9-b73a425d8857" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T065355Z:7da2ca43-c67d-41a0-80c9-b73a425d8857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 06:53:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-DataClassificationOnSqlPool": [ + "ps5053" + ] + }, + "Variables": { + "SubscriptionId": "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3" + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests/TestEnableDisableRecommendationsOnSqlPool.json b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests/TestEnableDisableRecommendationsOnSqlPool.json new file mode 100644 index 000000000000..e31096b1abef --- /dev/null +++ b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests/TestEnableDisableRecommendationsOnSqlPool.json @@ -0,0 +1,5738 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourcegroups/dc-cmdlet-test-rgps4664?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlZ3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95697034-7cc2-4a68-baf5-653a6a675ed9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ], + "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": [ + "06d40579-7125-42dc-a138-86d3a5e3ce8a" + ], + "x-ms-correlation-request-id": [ + "06d40579-7125-42dc-a138-86d3a5e3ce8a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072631Z:06d40579-7125-42dc-a138-86d3a5e3ce8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:31 GMT" + ], + "Content-Length": [ + "206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664\",\r\n \"name\": \"dc-cmdlet-test-rgps4664\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"dccmdletstorageps4664\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ddbd3ba-1545-4a05-b786-53bb2296dd40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "87" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7ed77104-4dd1-45cd-a368-70c4bba37484" + ], + "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": [ + "f13a8186-7998-44cf-b3d7-47842f303105" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072631Z:f13a8186-7998-44cf-b3d7-47842f303105" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:31 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps4664?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvZGNjbWRsZXRzdG9yYWdlcHM0NjY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"isHnsEnabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2e2c026-cec5-441b-aaaf-91eb7ba4ba18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "158" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/13b590f3-11fa-4ee7-830c-c8bafa699518?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "13b590f3-11fa-4ee7-830c-c8bafa699518" + ], + "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": [ + "ff323e62-4825-4dae-9b3e-8cd09d9604a1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072634Z:ff323e62-4825-4dae-9b3e-8cd09d9604a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:33 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/13b590f3-11fa-4ee7-830c-c8bafa699518?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMTNiNTkwZjMtMTFmYS00ZWU3LTgzMGMtYzhiYWZhNjk5NTE4P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "554223ab-04ae-46c3-802a-c78e23e4fbf6" + ], + "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": [ + "2a8e6cbd-cd89-4000-b858-f27118b93305" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072651Z:2a8e6cbd-cd89-4000-b858-f27118b93305" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:51 GMT" + ], + "Content-Length": [ + "1410" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps4664\",\r\n \"name\": \"dccmdletstorageps4664\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"isHnsEnabled\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\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-12-16T07:26:33.7093687Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T07:26:33.7093687Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T07:26:33.6468355Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://dccmdletstorageps4664.dfs.core.windows.net/\",\r\n \"web\": \"https://dccmdletstorageps4664.z4.web.core.windows.net/\",\r\n \"blob\": \"https://dccmdletstorageps4664.blob.core.windows.net/\",\r\n \"queue\": \"https://dccmdletstorageps4664.queue.core.windows.net/\",\r\n \"table\": \"https://dccmdletstorageps4664.table.core.windows.net/\",\r\n \"file\": \"https://dccmdletstorageps4664.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps4664?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvZGNjbWRsZXRzdG9yYWdlcHM0NjY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f4b0832-a8ab-4ff9-83fb-501357c91fd6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "daa6b08a-9839-4415-9623-00eb5148f586" + ], + "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": [ + "262aa479-e7d1-468a-8b12-dd11659c56e6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072651Z:262aa479-e7d1-468a-8b12-dd11659c56e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:51 GMT" + ], + "Content-Length": [ + "1410" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Storage/storageAccounts/dccmdletstorageps4664\",\r\n \"name\": \"dccmdletstorageps4664\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"isHnsEnabled\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\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-12-16T07:26:33.7093687Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T07:26:33.7093687Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T07:26:33.6468355Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://dccmdletstorageps4664.dfs.core.windows.net/\",\r\n \"web\": \"https://dccmdletstorageps4664.z4.web.core.windows.net/\",\r\n \"blob\": \"https://dccmdletstorageps4664.blob.core.windows.net/\",\r\n \"queue\": \"https://dccmdletstorageps4664.queue.core.windows.net/\",\r\n \"table\": \"https://dccmdletstorageps4664.table.core.windows.net/\",\r\n \"file\": \"https://dccmdletstorageps4664.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "165195db-e24d-4de9-97f5-83a50db21d53" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "276bd9b9-b1ba-4939-8964-06b621789719" + ], + "x-ms-correlation-request-id": [ + "276bd9b9-b1ba-4939-8964-06b621789719" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T072652Z:276bd9b9-b1ba-4939-8964-06b621789719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "235" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/dc-wsps4664' under resource group 'dc-cmdlet-test-rgps4664' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0750f2fa-6b53-43d2-bd3d-a8233cf5717b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "f4a17689-dd6c-499c-9e7d-56de55a2d64b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073021Z:f4a17689-dd6c-499c-9e7d-56de55a2d64b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:20 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dc-wsps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"69a77e52-9c7c-4c9b-bb3f-d5c6ed0c6b79\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fdc-cmdlet-test-rgps4664%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fdc-wsps4664\",\r\n \"dev\": \"https://dc-wsps4664.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"dc-wsps4664-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"dc-wsps4664.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-a55fe774-d956-4d18-97ce-42a177091db6\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps4664.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps4664\"\r\n },\r\n \"sqlAdministratorLogin\": \"testlogin\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"a9af2325-501e-4660-8666-5f0f222ea729\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "647b8792-3cba-4284-9633-20f02e59c45f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3135cfa0-28a3-4e83-9214-4d9d954b1716" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "0ceee037-aef4-4d39-a24a-dc0049adb0c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073123Z:0ceee037-aef4-4d39-a24a-dc0049adb0c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:22 GMT" + ], + "Content-Length": [ + "1257" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dc-wsps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"69a77e52-9c7c-4c9b-bb3f-d5c6ed0c6b79\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fdc-cmdlet-test-rgps4664%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fdc-wsps4664\",\r\n \"dev\": \"https://dc-wsps4664.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"dc-wsps4664-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"dc-wsps4664.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-a55fe774-d956-4d18-97ce-42a177091db6\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps4664.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps4664\"\r\n },\r\n \"sqlAdministratorLogin\": \"testlogin\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"a9af2325-501e-4660-8666-5f0f222ea729\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps4664.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps4664\"\r\n },\r\n \"sqlAdministratorLoginPassword\": \"testp@ssMakingIt1007Longer\",\r\n \"sqlAdministratorLogin\": \"testlogin\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2af54c05-7ec0-4b12-9f48-34637592c39c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "381" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "ecfa981a-12e2-4940-a450-7cef63f631ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9d3eec35-ec6b-400f-8d68-9e8fe39ed51a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T072658Z:9d3eec35-ec6b-400f-8d68-9e8fe39ed51a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:26:58 GMT" + ], + "Content-Length": [ + "1224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dc-wsps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"69a77e52-9c7c-4c9b-bb3f-d5c6ed0c6b79\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fdc-cmdlet-test-rgps4664%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fdc-wsps4664\",\r\n \"dev\": \"https://dc-wsps4664.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"dc-wsps4664-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"dc-wsps4664.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-a55fe774-d956-4d18-97ce-42a177091db6\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://dccmdletstorageps4664.dfs.core.windows.net\",\r\n \"filesystem\": \"dccmdletfsps4664\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"a9af2325-501e-4660-8666-5f0f222ea729\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzc1NWY0YzlkLTBhZmItNDFjOS05ZDEyLTE1MDMyODQ3MTk4OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69ac4a12-bda9-42a6-b12f-ccc9d4ce541d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f6a8c123-fffe-476d-86e8-f07474471b40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072750Z:f6a8c123-fffe-476d-86e8-f07474471b40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:27:49 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzc1NWY0YzlkLTBhZmItNDFjOS05ZDEyLTE1MDMyODQ3MTk4OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd6b6aa4-eeea-4973-9eb0-7cdd15c6368e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e76538d3-ae40-4f41-bc42-33738d6fed38" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072820Z:e76538d3-ae40-4f41-bc42-33738d6fed38" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:28:19 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzc1NWY0YzlkLTBhZmItNDFjOS05ZDEyLTE1MDMyODQ3MTk4OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "16c33bf4-21e9-4030-8ca6-2494c42e9aa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "c5308df9-a860-448e-9c6b-cf62c79dc1fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072850Z:c5308df9-a860-448e-9c6b-cf62c79dc1fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:28:49 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzc1NWY0YzlkLTBhZmItNDFjOS05ZDEyLTE1MDMyODQ3MTk4OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6e12f49c-c90b-48b5-8fe1-df5e9a6f0cd7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a7a9fe52-12ad-44e3-b6ed-0ee26b7446af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072920Z:a7a9fe52-12ad-44e3-b6ed-0ee26b7446af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:29:20 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzc1NWY0YzlkLTBhZmItNDFjOS05ZDEyLTE1MDMyODQ3MTk4OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5ec89481-51c7-443e-8529-0e3e9cf310f5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5b68ee45-e44e-4e03-93be-c0d5606e5825" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T072950Z:5b68ee45-e44e-4e03-93be-c0d5606e5825" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:29:50 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/755f4c9d-0afb-41c9-9d12-150328471989?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzc1NWY0YzlkLTBhZmItNDFjOS05ZDEyLTE1MDMyODQ3MTk4OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "557fd658-37b5-4241-b253-3abf8b17ed08" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "00418c2b-3819-4516-989b-c71b2c49b3d7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073020Z:00418c2b-3819-4516-989b-c71b2c49b3d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:20 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/firewallRules/dcRule?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L2ZpcmV3YWxsUnVsZXMvZGNSdWxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72b6ca6b-fa35-4676-b0ab-f2781895221e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "09311513-7736-45c2-91c6-eab917f4d479" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "f868863b-80bf-4a4b-80f8-59f7f7036cfb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073021Z:f868863b-80bf-4a4b-80f8-59f7f7036cfb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:20 GMT" + ], + "Content-Length": [ + "74" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"IpFirewallRuleNotFound\",\r\n \"message\": \"dc-wsps4664/dcRule\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/firewallRules/dcRule?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L2ZpcmV3YWxsUnVsZXMvZGNSdWxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60387753-7f9f-4db1-bd6f-c377f548e62a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "786f5b9e-25ed-4a80-9ee8-b9797a9df6f6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073052Z:786f5b9e-25ed-4a80-9ee8-b9797a9df6f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:51 GMT" + ], + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/firewallRules/dcRule\",\r\n \"name\": \"dcRule\",\r\n \"type\": \"Microsoft.Synapse/workspaces/firewallRules\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/firewallRules/dcRule?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L2ZpcmV3YWxsUnVsZXMvZGNSdWxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"endIpAddress\": \"255.255.255.255\",\r\n \"startIpAddress\": \"0.0.0.0\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a037f712-fec3-40cb-9326-7aad11cf4fa0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationResults/43144d5d-da7c-4c38-8b52-266a7e532e52?api-version=2019-06-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/43144d5d-da7c-4c38-8b52-266a7e532e52?api-version=2019-06-01-preview" + ], + "Access-Control-Allow-Headers": [ + "Location" + ], + "Access-Control-Expose-Headers": [ + "Location" + ], + "x-ms-request-id": [ + "934bc295-7ca8-4e9d-8fdc-419170edb610" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e2b817cd-51ff-49e3-8fbf-532699c46a3b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073021Z:e2b817cd-51ff-49e3-8fbf-532699c46a3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:21 GMT" + ], + "Content-Length": [ + "349" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Provisioning\",\r\n \"startIpAddress\": \"0.0.0.0\",\r\n \"endIpAddress\": \"255.255.255.255\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/firewallRules/dcRule\",\r\n \"name\": \"dcRule\",\r\n \"type\": \"Microsoft.Synapse/workspaces/firewallRules\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/43144d5d-da7c-4c38-8b52-266a7e532e52?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzQzMTQ0ZDVkLWRhN2MtNGMzOC04YjUyLTI2NmE3ZTUzMmU1Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3ae4850e-5960-4094-bb97-1f95525c9f2a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "375e9d8d-f810-41e5-b41b-89bd0ee87e81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073051Z:375e9d8d-f810-41e5-b41b-89bd0ee87e81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:51 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9ef0d55-f6a3-48b0-b227-5aad3299c5e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "67d405d1-0187-42c1-8a9a-f154ea5bad59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "0e2493c4-88a2-473f-ac81-8f948006b34c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073052Z:0e2493c4-88a2-473f-ac81-8f948006b34c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:51 GMT" + ], + "Content-Length": [ + "468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"creationTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/securityAlertPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5690148-218f-439c-abbc-98361634e8b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "25a9b184-8db4-47da-960a-8d3a4c0e3133" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073123Z:25a9b184-8db4-47da-960a-8d3a4c0e3133" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:22 GMT" + ], + "Content-Length": [ + "471" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"creationTime\": \"2020-12-16T07:30:52.807Z\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/securityAlertPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "594663f3-69a1-4161-abc9-723e244d8d55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "233" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationResults/sql08ftr-c6b86d8b-ffc9-4a86-9397-1cbbd2eaab52?api-version=2019-06-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/sql08ftr-c6b86d8b-ffc9-4a86-9397-1cbbd2eaab52?api-version=2019-06-01-preview" + ], + "RetryAfter": [ + "3" + ], + "Access-Control-Allow-Headers": [ + "Location" + ], + "Access-Control-Expose-Headers": [ + "Location" + ], + "x-ms-request-id": [ + "801436d0-f504-4cca-8a81-798d44d72d6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "020a9146-ae0b-496d-9a9e-639ea250b429" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073052Z:020a9146-ae0b-496d-9a9e-639ea250b429" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:30:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/sql08ftr-c6b86d8b-ffc9-4a86-9397-1cbbd2eaab52?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzL3NxbDA4ZnRyLWM2Yjg2ZDhiLWZmYzktNGE4Ni05Mzk3LTFjYmJkMmVhYWI1Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "53090e92-c398-40ba-8f4a-d98aa9dc6ce1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "504c524e-a572-4ebe-a740-a6f32dc29d00" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073123Z:504c524e-a572-4ebe-a740-a6f32dc29d00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:22 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c6b86d8b-ffc9-4a86-9397-1cbbd2eaab52\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-12-16T07:30:52.683Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87884c55-f29e-4b3c-9c85-a0a9b0515863" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5fb63d40-6e19-4f4f-8569-e9a2f1566dd6" + ], + "x-ms-correlation-request-id": [ + "5fb63d40-6e19-4f4f-8569-e9a2f1566dd6" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073123Z:5fb63d40-6e19-4f4f-8569-e9a2f1566dd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "257" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664' under resource group 'dc-cmdlet-test-rgps4664' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f49a4e93-ed6f-4f4d-8f9e-2435a1eb3d74" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "114aef7b-eba7-4edd-908f-7707778460d5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073457Z:114aef7b-eba7-4edd-908f-7707778460d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:57 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e387aae1-8417-4843-9a63-5bda7ca3130b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "308d54bf-9e46-41d3-938b-79dfd42f60ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "1c6928eb-4aca-452b-b72a-e0e172eae733" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073514Z:1c6928eb-4aca-452b-b72a-e0e172eae733" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:13 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01d8f825-e7eb-4a4e-b96e-0bf45f0d0e37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3a0650f-d9c5-4ff8-8cba-7080a37a9e53" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "79b9cb16-e8c9-4597-99fe-455205dd3ef2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073514Z:79b9cb16-e8c9-4597-99fe-455205dd3ef2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:14 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96797398-b6e5-4ee0-929b-e32b8d970478" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94726c49-304c-4009-80a6-3dde44b69472" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "b3cfed1a-81a2-4768-8af3-f5db85ea0c4e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073518Z:b3cfed1a-81a2-4768-8af3-f5db85ea0c4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:17 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8c194ae-a7c8-44f2-bcc5-532526c53110" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ea14bb7b-8a9d-4d97-a479-fbdaa5ef9812" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "41caaffc-d2b4-4000-8031-d1d94ac61da0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073520Z:41caaffc-d2b4-4000-8031-d1d94ac61da0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:20 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6d80163-e46c-4335-8e80-4aceb1ea6d04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e5ae813f-4f4b-4362-a3e9-fe8136b234b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "9812f26c-63e8-4880-8c2b-0a28ee4ca320" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073523Z:9812f26c-63e8-4880-8c2b-0a28ee4ca320" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:22 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "706e682c-b48f-4ffc-9ab9-1ea0dd35bb8d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "11e48a7d-f359-4317-a832-2262898082f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "3aed5a6f-686a-4daf-89b8-d9fc52efe6db" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073526Z:3aed5a6f-686a-4daf-89b8-d9fc52efe6db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:25 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a02ae38-5e18-4f47-a85a-4298518b9981" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e5eae29-bb91-4697-86f9-bd9507448793" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "c8b7f5b6-ce56-42c7-bfa0-1ebfe832c912" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073526Z:c8b7f5b6-ce56-42c7-bfa0-1ebfe832c912" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:26 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T07:34:35.327Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2ND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW200c\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"createMode\": \"Default\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50771809-00e5-4f79-81e8-1c9a49aa4d3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "179" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationResults/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview" + ], + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "x-ms-request-id": [ + "573d9316-4025-4e2b-aa7d-e0d82d200955" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3664a292-7842-47b4-b7e9-608199426d0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073125Z:3664a292-7842-47b4-b7e9-608199426d0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:24 GMT" + ], + "Content-Length": [ + "468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"0001-01-01T00:00:00\",\r\n \"provisioningState\": \"Provisioning\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"name\": \"dcpoolps4664\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "459c00b0-517c-461a-8d59-23cd9f677907" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "3d706d2c-c39b-4ddc-9eb7-6f3e60e44b81" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073135Z:3d706d2c-c39b-4ddc-9eb7-6f3e60e44b81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:34 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6215f575-5015-4667-840e-63c56997ebb7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "aaa05266-e775-4514-9171-775aaef61c03" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073145Z:aaa05266-e775-4514-9171-775aaef61c03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:44 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fdd86ae1-016d-440b-8598-2ceb45a85a44" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "aa49bba7-abee-4152-9fba-1e6869be9157" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073155Z:aa49bba7-abee-4152-9fba-1e6869be9157" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:31:54 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "decb05b3-d90d-49d0-8a60-6470247cc9d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "1dacf0cf-1feb-4d2e-a129-a7b95a568706" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073205Z:1dacf0cf-1feb-4d2e-a129-a7b95a568706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:32:04 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e3e49324-1e17-4a6a-bfcd-21ff73e6342b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "c0b8ad2f-af87-41e3-ba9e-e16b537b1cd3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073215Z:c0b8ad2f-af87-41e3-ba9e-e16b537b1cd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:32:15 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "547f6123-6410-4717-87d4-4fe0ca5596b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "858f58bc-573e-4355-beb9-11b7f810d41f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073225Z:858f58bc-573e-4355-beb9-11b7f810d41f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:32:25 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3306cf28-5f5d-4b7a-8fc6-286b13f605a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "c570820b-89e6-400e-b3b6-c87b8d350dfc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073235Z:c570820b-89e6-400e-b3b6-c87b8d350dfc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:32:35 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "14f90c66-4e95-4310-b5b9-a6cd9cf886a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "25fec382-b49f-4df8-bc7d-8ad518855001" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073246Z:25fec382-b49f-4df8-bc7d-8ad518855001" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:32:45 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ddb2f7a4-c6ad-42f0-b2f9-c4f4d180764e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "8cd96a9c-d4b3-4755-a5f6-cf3686bc782a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073256Z:8cd96a9c-d4b3-4755-a5f6-cf3686bc782a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:32:55 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d1887d7-e013-48bb-ac20-4e9b8e2f82aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "54717a00-e647-4971-80a3-f4b9e5d113ce" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073306Z:54717a00-e647-4971-80a3-f4b9e5d113ce" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:33:05 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9727c0ed-c3a7-4175-91f9-fe6b549b26f0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "1699236c-d948-47b1-8b82-a6921d2a563a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073316Z:1699236c-d948-47b1-8b82-a6921d2a563a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:33:15 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "176d6c3d-2f32-49c0-84c5-151c0654d1d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "0638091e-9c6f-4848-a78a-01d061d29948" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073326Z:0638091e-9c6f-4848-a78a-01d061d29948" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:33:26 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fa33e887-c4dc-40ac-b2df-c4db8944f9c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "cf27c260-6aff-4a29-9e67-d9df35e7f22f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073336Z:cf27c260-6aff-4a29-9e67-d9df35e7f22f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:33:36 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d583f683-6e9a-48b0-aac8-d04798065ff3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "42f1dcd5-bdd3-47bf-b1ca-b644babdbecf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073346Z:42f1dcd5-bdd3-47bf-b1ca-b644babdbecf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:33:46 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f000030-d9d3-49d2-8b30-1982969bbca8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "8b69d39c-e3a8-44a1-b868-e6de060be1ed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073356Z:8b69d39c-e3a8-44a1-b868-e6de060be1ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:33:56 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8c97932-262d-499a-acca-e1efa1eb89d1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "aa143023-10d4-4d96-a157-7e8b236bd7d0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073406Z:aa143023-10d4-4d96-a157-7e8b236bd7d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:06 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "06fc3828-143c-465b-a47d-163e34ed78c8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "ebdb128a-7885-437d-94e4-1d9d19a6efef" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073416Z:ebdb128a-7885-437d-94e4-1d9d19a6efef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:16 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "35a105ec-3d31-4975-9c18-ede802b1324d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "47f87dc1-1044-45cc-bcbb-36a0b7e9ef97" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073427Z:47f87dc1-1044-45cc-bcbb-36a0b7e9ef97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:26 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "399eced8-2f92-4b75-a76d-a1354f526c01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "d4f8cd57-763d-4d5a-8136-29c7ffe68646" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073437Z:d4f8cd57-763d-4d5a-8136-29c7ffe68646" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:36 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "289442ec-9a25-4ef1-9afb-325e06c33496" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "a85fcb5e-a8f3-446e-a186-fc229e32ac0d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073447Z:a85fcb5e-a8f3-446e-a186-fc229e32ac0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:46 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/operationStatuses/2bd82f99-ed68-4bc6-93bc-fa1db0f73634?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L29wZXJhdGlvblN0YXR1c2VzLzJiZDgyZjk5LWVkNjgtNGJjNi05M2JjLWZhMWRiMGY3MzYzND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "593949b5-ad51-4a0b-b90c-4187aa0feef9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "a70d31f3-4e7b-4fe1-8ac7-50f28ff74ae2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073457Z:a70d31f3-4e7b-4fe1-8ac7-50f28ff74ae2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:34:56 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce3f9dcd-4e11-4f87-bc25-6c71f6ce96ea" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a096056-baef-4fed-8521-ad6ae499fd93" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "4cbad15d-929c-49f8-a0f8-84edda298c0b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073513Z:4cbad15d-929c-49f8-a0f8-84edda298c0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:12 GMT" + ], + "Content-Length": [ + "3177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"LastName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5229e304-86bb-4ce4-8178-de49d140e58e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dd0034f1-f544-4ab6-9e86-fb3ef6b67e79" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "e2d5fa4e-13e7-4c8a-a899-550dc7cddb51" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073517Z:e2d5fa4e-13e7-4c8a-a899-550dc7cddb51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:16 GMT" + ], + "Content-Length": [ + "1589" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27ea9f05-ef98-4867-81c2-578e0a14716d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "57e2f38a-b502-4129-850a-2869c66022ec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "9594f8d7-3402-4f41-ad14-447d19026634" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073520Z:9594f8d7-3402-4f41-ad14-447d19026634" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:20 GMT" + ], + "Content-Length": [ + "2384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43b4101a-8164-4dec-8982-cd235c52124d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d56538b0-e1e1-4a42-8d5a-e0013e37b8de" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "fec37d9e-8e61-423d-a3a3-113689e1bbb2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073521Z:fec37d9e-8e61-423d-a3a3-113689e1bbb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:21 GMT" + ], + "Content-Length": [ + "2384" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"Address\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n },\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"City\",\r\n \"labelName\": \"Confidential\",\r\n \"labelId\": \"05e6eaa1-075a-4fb4-a732-a92215a2444a\",\r\n \"informationType\": \"Contact Info\",\r\n \"informationTypeId\": \"5c503e21-22c6-81fa-620b-f369b8ec38d1\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "efc8822a-64ed-4355-907e-9ee640946eef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "290a5325-9116-4643-8616-d74e54ce9648" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "be3f9c1a-1342-4732-8ccc-c3515a8db10f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073526Z:be3f9c1a-1342-4732-8ccc-c3515a8db10f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:25 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/recommendedSensitivityLabels?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9yZWNvbW1lbmRlZFNlbnNpdGl2aXR5TGFiZWxzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8eb5d4d-f009-4e2e-9097-1f8a897116b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e87d45c8-86eb-4c5d-9f3f-7a3b09524534" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "f29daed0-3bcd-465d-9267-332bc9191a26" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073527Z:f29daed0-3bcd-465d-9267-332bc9191a26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:27 GMT" + ], + "Content-Length": [ + "806" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"managedBy\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664\",\r\n \"properties\": {\r\n \"schemaName\": \"dbo\",\r\n \"tableName\": \"Persons\",\r\n \"columnName\": \"FirstName\",\r\n \"labelName\": \"Confidential - GDPR\",\r\n \"labelId\": \"bf91e08c-f4f0-478a-b016-25164b2a65ff\",\r\n \"informationType\": \"Name\",\r\n \"informationTypeId\": \"57845286-7598-22f5-9659-15b24aeb125e\",\r\n \"isDisabled\": false,\r\n \"rank\": \"Medium\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended\",\r\n \"name\": \"recommended\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/sensitivityLabels\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/LastName/sensitivityLabels/recommended/disable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0xhc3ROYW1lL3NlbnNpdGl2aXR5TGFiZWxzL3JlY29tbWVuZGVkL2Rpc2FibGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa5433e4-b141-47ed-887d-dfe403b61e40" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd488430-1940-4d23-969b-c9a513608540" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "eb8365ea-74ce-49b7-ab56-237e9989f4c8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073514Z:eb8365ea-74ce-49b7-ab56-237e9989f4c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended/disable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9yZWNvbW1lbmRlZC9kaXNhYmxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52b179fa-6dc2-46df-b89b-5aa6c8afcff1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f0f433de-15ac-4492-b988-8b45e6a05ca9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "36aeb7d4-a1fe-4756-b171-cd32707c50cc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073514Z:36aeb7d4-a1fe-4756-b171-cd32707c50cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended/disable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9yZWNvbW1lbmRlZC9kaXNhYmxlP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adff36ab-2ba8-4a5c-8717-00f44b33d0c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d8c6cc0e-78b1-47a4-a73f-b7fff6187556" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "8dbd50fb-0693-4d6c-8888-49c45a540524" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073522Z:8dbd50fb-0693-4d6c-8888-49c45a540524" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended/enable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9yZWNvbW1lbmRlZC9lbmFibGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bf24250-a3c1-4ff3-ab79-3a6e74a615e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d5cd87a-23f9-490f-8a4b-ce76b699aeec" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "b150b93e-70a9-46aa-96b7-4d09af20d4b8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073517Z:b150b93e-70a9-46aa-96b7-4d09af20d4b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:17 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/FirstName/sensitivityLabels/recommended/enable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0ZpcnN0TmFtZS9zZW5zaXRpdml0eUxhYmVscy9yZWNvbW1lbmRlZC9lbmFibGU/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5917ac9-550c-4679-9132-9d9300e2bc01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "35e88c5e-a496-4851-b279-948c9ca3baaa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "03510d71-a962-4085-8920-1885657fa298" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073526Z:03510d71-a962-4085-8920-1885657fa298" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/Address/sensitivityLabels/recommended/disable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0FkZHJlc3Mvc2Vuc2l0aXZpdHlMYWJlbHMvcmVjb21tZW5kZWQvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e87c1b57-8cca-468f-8e0d-65265f98baa5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a4acc37-ba67-4064-aefd-9fd4f6b90ccb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "e430b3d0-fa23-4d38-85bf-257e30de256f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073522Z:e430b3d0-fa23-4d38-85bf-257e30de256f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dc-cmdlet-test-rgps4664/providers/Microsoft.Synapse/workspaces/dc-wsps4664/sqlPools/dcpoolps4664/schemas/dbo/tables/Persons/columns/City/sensitivityLabels/recommended/disable?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3luYXBzZS93b3Jrc3BhY2VzL2RjLXdzcHM0NjY0L3NxbFBvb2xzL2RjcG9vbHBzNDY2NC9zY2hlbWFzL2Riby90YWJsZXMvUGVyc29ucy9jb2x1bW5zL0NpdHkvc2Vuc2l0aXZpdHlMYWJlbHMvcmVjb21tZW5kZWQvZGlzYWJsZT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94221421-a8c7-4028-b622-b71b2cd12194" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c9ec9c64-8062-4d6a-8814-302f8fc594cf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f270f77e-8f6b-4bbb-92b7-075359d98030" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T073523Z:f270f77e-8f6b-4bbb-92b7-075359d98030" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourcegroups/dc-cmdlet-test-rgps4664?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlZ3JvdXBzL2RjLWNtZGxldC10ZXN0LXJncHM0NjY0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "275ae3c8-b58a-4711-b6da-066bb996b593" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "05cc4777-c5a6-4f50-b6e3-2384567e4097" + ], + "x-ms-correlation-request-id": [ + "05cc4777-c5a6-4f50-b6e3-2384567e4097" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073528Z:05cc4777-c5a6-4f50-b6e3-2384567e4097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9289d29c-f4c9-4035-92e5-3bf3a46e7805" + ], + "x-ms-correlation-request-id": [ + "9289d29c-f4c9-4035-92e5-3bf3a46e7805" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073543Z:9289d29c-f4c9-4035-92e5-3bf3a46e7805" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d4fef453-79fb-4c55-8119-b34265626fa8" + ], + "x-ms-correlation-request-id": [ + "d4fef453-79fb-4c55-8119-b34265626fa8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073558Z:d4fef453-79fb-4c55-8119-b34265626fa8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:35:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "00176f10-6c63-42c3-aaae-0dbf8dac8c64" + ], + "x-ms-correlation-request-id": [ + "00176f10-6c63-42c3-aaae-0dbf8dac8c64" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073613Z:00176f10-6c63-42c3-aaae-0dbf8dac8c64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:36:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9b24e81c-f0e2-4e97-9078-080f33952fe1" + ], + "x-ms-correlation-request-id": [ + "9b24e81c-f0e2-4e97-9078-080f33952fe1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073628Z:9b24e81c-f0e2-4e97-9078-080f33952fe1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:36:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "9869666d-c6f8-4cbd-98b2-3e0d9a6f5f3e" + ], + "x-ms-correlation-request-id": [ + "9869666d-c6f8-4cbd-98b2-3e0d9a6f5f3e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073643Z:9869666d-c6f8-4cbd-98b2-3e0d9a6f5f3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:36:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "0030f2dd-701c-4e4f-830a-495cf77e7f75" + ], + "x-ms-correlation-request-id": [ + "0030f2dd-701c-4e4f-830a-495cf77e7f75" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073658Z:0030f2dd-701c-4e4f-830a-495cf77e7f75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:36:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "a59438da-8464-4c55-899e-a08fe3780b13" + ], + "x-ms-correlation-request-id": [ + "a59438da-8464-4c55-899e-a08fe3780b13" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073713Z:a59438da-8464-4c55-899e-a08fe3780b13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:37:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "6fdc7e0a-0826-4908-816c-52671022e9a2" + ], + "x-ms-correlation-request-id": [ + "6fdc7e0a-0826-4908-816c-52671022e9a2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073728Z:6fdc7e0a-0826-4908-816c-52671022e9a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:37:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "ac867833-36d0-4dec-a550-9de871033870" + ], + "x-ms-correlation-request-id": [ + "ac867833-36d0-4dec-a550-9de871033870" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073743Z:ac867833-36d0-4dec-a550-9de871033870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:37:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "090728f7-3622-4afd-9595-fab6397b4c03" + ], + "x-ms-correlation-request-id": [ + "090728f7-3622-4afd-9595-fab6397b4c03" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073758Z:090728f7-3622-4afd-9595-fab6397b4c03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:37:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "eb45c1eb-afda-4b02-b4b7-e651e4c15dee" + ], + "x-ms-correlation-request-id": [ + "eb45c1eb-afda-4b02-b4b7-e651e4c15dee" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073813Z:eb45c1eb-afda-4b02-b4b7-e651e4c15dee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:38:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "4d682a45-b571-4f1a-863a-d6ecab5b518d" + ], + "x-ms-correlation-request-id": [ + "4d682a45-b571-4f1a-863a-d6ecab5b518d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073828Z:4d682a45-b571-4f1a-863a-d6ecab5b518d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:38:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "706cbf98-5b7e-4962-952f-e10d4737b140" + ], + "x-ms-correlation-request-id": [ + "706cbf98-5b7e-4962-952f-e10d4737b140" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073843Z:706cbf98-5b7e-4962-952f-e10d4737b140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:38:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "3f44a176-d055-44a9-a8fe-67622e74dbe9" + ], + "x-ms-correlation-request-id": [ + "3f44a176-d055-44a9-a8fe-67622e74dbe9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073858Z:3f44a176-d055-44a9-a8fe-67622e74dbe9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:38:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "51f0c628-23b9-4a17-b975-60633445ab5f" + ], + "x-ms-correlation-request-id": [ + "51f0c628-23b9-4a17-b975-60633445ab5f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073913Z:51f0c628-23b9-4a17-b975-60633445ab5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:39:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "4828a565-75ad-42c1-aebf-cafb10c9b633" + ], + "x-ms-correlation-request-id": [ + "4828a565-75ad-42c1-aebf-cafb10c9b633" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073928Z:4828a565-75ad-42c1-aebf-cafb10c9b633" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:39:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "3ca2232b-e8c5-406f-b81d-4229c4ef164f" + ], + "x-ms-correlation-request-id": [ + "3ca2232b-e8c5-406f-b81d-4229c4ef164f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073943Z:3ca2232b-e8c5-406f-b81d-4229c4ef164f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:39:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "33c61afe-f2f5-4d72-94d3-ea842db64bca" + ], + "x-ms-correlation-request-id": [ + "33c61afe-f2f5-4d72-94d3-ea842db64bca" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T073959Z:33c61afe-f2f5-4d72-94d3-ea842db64bca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:39:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "a79198c3-0875-42ca-ac2d-0bcbb15c0443" + ], + "x-ms-correlation-request-id": [ + "a79198c3-0875-42ca-ac2d-0bcbb15c0443" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074014Z:a79198c3-0875-42ca-ac2d-0bcbb15c0443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:40:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "0ae5cdc4-9b90-4bf3-aff1-fb96bfd428af" + ], + "x-ms-correlation-request-id": [ + "0ae5cdc4-9b90-4bf3-aff1-fb96bfd428af" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074029Z:0ae5cdc4-9b90-4bf3-aff1-fb96bfd428af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:40:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "0d2b9e32-57c1-4920-8081-d714fc1d0250" + ], + "x-ms-correlation-request-id": [ + "0d2b9e32-57c1-4920-8081-d714fc1d0250" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074044Z:0d2b9e32-57c1-4920-8081-d714fc1d0250" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:40:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "f7886d97-289a-42e0-bd70-a94d6ed4c361" + ], + "x-ms-correlation-request-id": [ + "f7886d97-289a-42e0-bd70-a94d6ed4c361" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074059Z:f7886d97-289a-42e0-bd70-a94d6ed4c361" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:40:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "5cf6c626-9079-4932-8b3e-15e0e444dc61" + ], + "x-ms-correlation-request-id": [ + "5cf6c626-9079-4932-8b3e-15e0e444dc61" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074114Z:5cf6c626-9079-4932-8b3e-15e0e444dc61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:41:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "c514a4b4-e6f6-420e-abe7-29026919b4a1" + ], + "x-ms-correlation-request-id": [ + "c514a4b4-e6f6-420e-abe7-29026919b4a1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074129Z:c514a4b4-e6f6-420e-abe7-29026919b4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:41:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "528a0775-815d-46cd-bd64-d4e6bc6e4d8f" + ], + "x-ms-correlation-request-id": [ + "528a0775-815d-46cd-bd64-d4e6bc6e4d8f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074144Z:528a0775-815d-46cd-bd64-d4e6bc6e4d8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:41:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "df65a2ff-c0c4-4d8c-b794-a921fec48efa" + ], + "x-ms-correlation-request-id": [ + "df65a2ff-c0c4-4d8c-b794-a921fec48efa" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074159Z:df65a2ff-c0c4-4d8c-b794-a921fec48efa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:41:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "a6b4e2a5-1af9-485d-8fda-e764bbba0eae" + ], + "x-ms-correlation-request-id": [ + "a6b4e2a5-1af9-485d-8fda-e764bbba0eae" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074214Z:a6b4e2a5-1af9-485d-8fda-e764bbba0eae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:42:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1EQzoyRENNRExFVDoyRFRFU1Q6MkRSR1BTNDY2NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFUXpveVJFTk5SRXhGVkRveVJGUkZVMVE2TWtSU1IxQlRORFkyTkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "65782518-8c43-4667-ab41-48157c3bee25" + ], + "x-ms-correlation-request-id": [ + "65782518-8c43-4667-ab41-48157c3bee25" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T074214Z:65782518-8c43-4667-ab41-48157c3bee25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 07:42:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-EnableDisableRecommendationsOnSqlPool": [ + "ps4664" + ] + }, + "Variables": { + "SubscriptionId": "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3" + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.VulnerabilityAssessmentTests/TestVulnerabilityAssessmentBaseline.json b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.VulnerabilityAssessmentTests/TestVulnerabilityAssessmentBaseline.json new file mode 100644 index 000000000000..3df2f6230551 --- /dev/null +++ b/src/Synapse/Synapse.Test/SessionRecords/Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.VulnerabilityAssessmentTests/TestVulnerabilityAssessmentBaseline.json @@ -0,0 +1,6480 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourcegroups/sql-va-cmdlet-test-rgps7914?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlZ3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "53e5fb88-fba0-4027-b12e-e27e4bb0e64c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ], + "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": [ + "cff11ea6-3afe-4ff1-8a6b-70b3f96ff84a" + ], + "x-ms-correlation-request-id": [ + "cff11ea6-3afe-4ff1-8a6b-70b3f96ff84a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134448Z:cff11ea6-3afe-4ff1-8a6b-70b3f96ff84a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:44:48 GMT" + ], + "Content-Length": [ + "214" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914\",\r\n \"name\": \"sql-va-cmdlet-test-rgps7914\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sqlvastorageps7914\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c72ebee1-8e98-4ef7-8fb3-f5c2b26ceb36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "84" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dcc516e4-d0f7-45a0-bf5d-c8f84050698c" + ], + "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": [ + "2bc61b2c-83e4-4f2e-9392-5ce182acc249" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134448Z:2bc61b2c-83e4-4f2e-9392-5ce182acc249" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:44:47 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NxbHZhc3RvcmFnZXBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"isHnsEnabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28ccfa61-6e62-41fb-aceb-439154f42d30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "158" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/81f67938-c85e-4aac-842e-000e493a28e5?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "81f67938-c85e-4aac-842e-000e493a28e5" + ], + "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": [ + "593d24c9-bbc4-4cae-9320-4083e6a25f5a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134451Z:593d24c9-bbc4-4cae-9320-4083e6a25f5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:44:50 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/81f67938-c85e-4aac-842e-000e493a28e5?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvODFmNjc5MzgtYzg1ZS00YWFjLTg0MmUtMDAwZTQ5M2EyOGU1P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e1da2fe9-bbd4-43d3-97f4-8d94506fb041" + ], + "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": [ + "7e8e8a38-2936-4f77-a424-98e291bc6d12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134508Z:7e8e8a38-2936-4f77-a424-98e291bc6d12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:45:07 GMT" + ], + "Content-Length": [ + "1390" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914\",\r\n \"name\": \"sqlvastorageps7914\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"isHnsEnabled\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\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-12-16T13:44:50.6315683Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T13:44:50.6315683Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T13:44:50.53781Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sqlvastorageps7914.dfs.core.windows.net/\",\r\n \"web\": \"https://sqlvastorageps7914.z4.web.core.windows.net/\",\r\n \"blob\": \"https://sqlvastorageps7914.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvastorageps7914.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvastorageps7914.table.core.windows.net/\",\r\n \"file\": \"https://sqlvastorageps7914.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NxbHZhc3RvcmFnZXBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50603996-9297-4f04-a241-0930eb362352" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cbafae52-25e9-402c-89e1-edb3b31be1ce" + ], + "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": [ + "6091fc9b-87be-4c49-b796-c433b1698c67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134508Z:6091fc9b-87be-4c49-b796-c433b1698c67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:45:07 GMT" + ], + "Content-Length": [ + "1390" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914\",\r\n \"name\": \"sqlvastorageps7914\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"isHnsEnabled\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\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-12-16T13:44:50.6315683Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T13:44:50.6315683Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T13:44:50.53781Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://sqlvastorageps7914.dfs.core.windows.net/\",\r\n \"web\": \"https://sqlvastorageps7914.z4.web.core.windows.net/\",\r\n \"blob\": \"https://sqlvastorageps7914.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvastorageps7914.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvastorageps7914.table.core.windows.net/\",\r\n \"file\": \"https://sqlvastorageps7914.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d08da0e5-a9fe-439c-b383-448fc0ef7fce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7aac4f1c-13c3-42d6-9203-966881b25a12" + ], + "x-ms-correlation-request-id": [ + "7aac4f1c-13c3-42d6-9203-966881b25a12" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134508Z:7aac4f1c-13c3-42d6-9203-966881b25a12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:45:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "241" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/sqlvawsps7914' under resource group 'sql-va-cmdlet-test-rgps7914' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1de6f85e-dfb6-429b-9f5b-6d36cfa4e342" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "6fe717d2-9c9f-42e3-8172-9fea8d4e755a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134847Z:6fe717d2-9c9f-42e3-8172-9fea8d4e755a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:47 GMT" + ], + "Content-Length": [ + "1277" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sqlvawsps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"dc129242-e9eb-49e5-9842-d3d61a1ae84f\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsql-va-cmdlet-test-rgps7914%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fsqlvawsps7914\",\r\n \"dev\": \"https://sqlvawsps7914.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"sqlvawsps7914-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"sqlvawsps7914.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-cf8f909e-1d34-4ced-8988-cf2ae31a63ee\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://sqlvastorageps7914.dfs.core.windows.net\",\r\n \"filesystem\": \"sqlvacmdletfsps7914\"\r\n },\r\n \"sqlAdministratorLogin\": \"testlogin\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"a70a602c-0c67-4773-bd25-2687f4e080d1\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "842b7774-4f54-445f-87a4-a88ca11c15a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5a32c324-80c0-43b7-b557-bb10c6ea61a8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "8ef757f0-9dab-4e00-9e90-a5a743b6e3ac" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134847Z:8ef757f0-9dab-4e00-9e90-a5a743b6e3ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:47 GMT" + ], + "Content-Length": [ + "1277" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sqlvawsps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"dc129242-e9eb-49e5-9842-d3d61a1ae84f\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsql-va-cmdlet-test-rgps7914%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fsqlvawsps7914\",\r\n \"dev\": \"https://sqlvawsps7914.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"sqlvawsps7914-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"sqlvawsps7914.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-cf8f909e-1d34-4ced-8988-cf2ae31a63ee\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://sqlvastorageps7914.dfs.core.windows.net\",\r\n \"filesystem\": \"sqlvacmdletfsps7914\"\r\n },\r\n \"sqlAdministratorLogin\": \"testlogin\",\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"a70a602c-0c67-4773-bd25-2687f4e080d1\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://sqlvastorageps7914.dfs.core.windows.net\",\r\n \"filesystem\": \"sqlvacmdletfsps7914\"\r\n },\r\n \"sqlAdministratorLoginPassword\": \"testp@ssMakingIt1007Longer\",\r\n \"sqlAdministratorLogin\": \"testlogin\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0546eb2b-3552-4769-8a17-fbe380cabb6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "381" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview" + ], + "x-ms-request-id": [ + "7160a50e-43c3-4f5e-87e7-db2d12f7394a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "fa0a1b33-95b9-4df9-82b0-770dd1854e4b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134516Z:fa0a1b33-95b9-4df9-82b0-770dd1854e4b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:45:16 GMT" + ], + "Content-Length": [ + "1244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914\",\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sqlvawsps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"dc129242-e9eb-49e5-9842-d3d61a1ae84f\"\r\n },\r\n \"properties\": {\r\n \"connectivityEndpoints\": {\r\n \"web\": \"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsql-va-cmdlet-test-rgps7914%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fsqlvawsps7914\",\r\n \"dev\": \"https://sqlvawsps7914.dev.azuresynapse.net\",\r\n \"sqlOnDemand\": \"sqlvawsps7914-ondemand.sql.azuresynapse.net\",\r\n \"sql\": \"sqlvawsps7914.sql.azuresynapse.net\"\r\n },\r\n \"managedResourceGroupName\": \"synapseworkspace-managedrg-cf8f909e-1d34-4ced-8988-cf2ae31a63ee\",\r\n \"defaultDataLakeStorage\": {\r\n \"accountUrl\": \"https://sqlvastorageps7914.dfs.core.windows.net\",\r\n \"filesystem\": \"sqlvacmdletfsps7914\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"workspaceUID\": \"a70a602c-0c67-4773-bd25-2687f4e080d1\",\r\n \"extraProperties\": {\r\n \"IsScopeEnabled\": false,\r\n \"WorkspaceType\": \"Normal\"\r\n },\r\n \"encryption\": {\r\n \"doubleEncryptionEnabled\": false\r\n },\r\n \"provisioningState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "921f2178-30a9-48a7-bf55-9468d4be8008" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c8aaf0e2-55ad-4e43-82da-746c27a4eae1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134546Z:c8aaf0e2-55ad-4e43-82da-746c27a4eae1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:45:46 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "86ac1856-3e5a-4e34-8e15-bc8ac2de9018" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "11219d0c-8d32-4a3a-a13b-8ea7bf02892e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134616Z:11219d0c-8d32-4a3a-a13b-8ea7bf02892e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:46:16 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4442b462-7deb-41db-a3dd-4032ce39b672" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "cb1dab8c-987f-4174-9f2c-2fb2df76f878" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134647Z:cb1dab8c-987f-4174-9f2c-2fb2df76f878" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:46:46 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "829cdd1a-34a5-437d-9f56-24118b59b9dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "a01123b0-e82d-44ea-8557-70aac3644cf2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134717Z:a01123b0-e82d-44ea-8557-70aac3644cf2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:47:16 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b108135a-6f77-44d3-8076-ef40e7fecc4f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "f649a156-bfca-4f22-a15a-e4070ced807f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134747Z:f649a156-bfca-4f22-a15a-e4070ced807f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:47:47 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bb47b13f-866e-4689-9382-a163b2cd10f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "c815707b-6794-4479-82d7-b923cb997873" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134817Z:c815707b-6794-4479-82d7-b923cb997873" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:17 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/1240757c-5ecd-4d3e-baee-4d05a18f20cc?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzEyNDA3NTdjLTVlY2QtNGQzZS1iYWVlLTRkMDVhMThmMjBjYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e20def22-db51-47e4-83fd-6a83b67a9a45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "5e85134d-cb71-4570-8b8a-b6b7544377fb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134847Z:5e85134d-cb71-4570-8b8a-b6b7544377fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:46 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b987b7a7-b067-44c6-999c-1c6b8f924a4d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "49a5cacf-fb32-40cd-8501-c840986bccaa" + ], + "x-ms-correlation-request-id": [ + "49a5cacf-fb32-40cd-8501-c840986bccaa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134847Z:49a5cacf-fb32-40cd-8501-c840986bccaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "266" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914' under resource group 'sql-va-cmdlet-test-rgps7914' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bf8ff1d1-eae1-49a9-9eeb-bf2a74cb482c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "6a18d0b2-cd02-411e-a1d5-8776b8f7d63f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135303Z:6a18d0b2-cd02-411e-a1d5-8776b8f7d63f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:03 GMT" + ], + "Content-Length": [ + "541" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T13:52:53.033Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914\",\r\n \"name\": \"sqlvapoolps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17356c7-1223-47ae-9d2f-d7ef68dba806" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "00c4cd17-5f99-41bc-9c62-85bc376a6070" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "76668bb6-3de2-477b-9c8c-34874382bdbd" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135356Z:76668bb6-3de2-477b-9c8c-34874382bdbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:55 GMT" + ], + "Content-Length": [ + "541" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T13:52:53.033Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914\",\r\n \"name\": \"sqlvapoolps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b800428-443f-42c1-9a61-2008f91aae30" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6f9ec825-1738-4816-a618-7e58ffe521df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "50773170-42fe-404b-8e49-67c1a9ffa3e2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135359Z:50773170-42fe-404b-8e49-67c1a9ffa3e2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:59 GMT" + ], + "Content-Length": [ + "541" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T13:52:53.033Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914\",\r\n \"name\": \"sqlvapoolps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d465766-1e5c-427d-9088-1e5e47f3cf5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "50eeb694-b600-498f-81d3-1a6865f6a503" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "326d10ca-c7d5-4e48-9329-10cf6799b051" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135400Z:326d10ca-c7d5-4e48-9329-10cf6799b051" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:59 GMT" + ], + "Content-Length": [ + "541" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"status\": \"Online\",\r\n \"maxSizeBytes\": 263882790666240,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"2020-12-16T13:52:53.033Z\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914\",\r\n \"name\": \"sqlvapoolps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\",\r\n \"location\": \"westcentralus\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxND9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"DW200c\"\r\n },\r\n \"properties\": {\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"createMode\": \"Default\"\r\n },\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f4d8065-6efd-4f00-93ae-0764ce4760d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "179" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationResults/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview" + ], + "Retry-After": [ + "10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview" + ], + "Access-Control-Allow-Headers": [ + "Location", + "Retry-After" + ], + "Access-Control-Expose-Headers": [ + "Location", + "Retry-After" + ], + "x-ms-request-id": [ + "89d3368b-9359-4d0b-bc2d-6d970b6bb13c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "fd151c90-6fbc-4618-9761-4aacc4e80987" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134849Z:fd151c90-6fbc-4618-9761-4aacc4e80987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:48 GMT" + ], + "Content-Length": [ + "480" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"maxSizeBytes\": 0,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"restorePointInTime\": \"0001-01-01T00:00:00\",\r\n \"creationDate\": \"0001-01-01T00:00:00\",\r\n \"provisioningState\": \"Provisioning\"\r\n },\r\n \"sku\": {\r\n \"name\": \"DW200c\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914\",\r\n \"name\": \"sqlvapoolps7914\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "257edf64-75d2-4c2c-9dff-abbc23e2122c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "cbc042f4-9c92-4604-8e7e-ea5beb4978fa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134859Z:cbc042f4-9c92-4604-8e7e-ea5beb4978fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:48:58 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a3fcbbe1-4303-42cd-84d3-202e81b13b2a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "12b13909-ec1e-4e75-971e-387526026cee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134909Z:12b13909-ec1e-4e75-971e-387526026cee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:49:08 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a1d68299-ebdf-46fa-b630-589ee5cdd855" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "7620331a-7e4c-4951-a5ff-3c6ac94b60af" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134919Z:7620331a-7e4c-4951-a5ff-3c6ac94b60af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:49:18 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0c6008ac-77bc-4f96-96dd-5fc24ebbc441" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "48abf2a5-befd-429c-81f6-4b11f4788841" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134929Z:48abf2a5-befd-429c-81f6-4b11f4788841" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:49:28 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b89b251-9980-450b-84db-85879e968591" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "767d24ff-4e9f-44b0-9e40-e8489b1d01d9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134939Z:767d24ff-4e9f-44b0-9e40-e8489b1d01d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:49:38 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fdf7fa2d-951a-44f5-816e-ba8c90289f4f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "dd558170-aee0-4f7f-8f7f-208b6b48e2c1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T134949Z:dd558170-aee0-4f7f-8f7f-208b6b48e2c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:49:48 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad376a07-bb6d-44b3-aaad-15a344b37265" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0b50c52f-2ac7-45e1-80c4-44053f84e86f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135021Z:0b50c52f-2ac7-45e1-80c4-44053f84e86f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:50:21 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "58d90d84-eefb-49f8-ad6c-3ab44a9ed4ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5e832b23-1791-4a60-94f3-4fea4811ac42" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135031Z:5e832b23-1791-4a60-94f3-4fea4811ac42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:50:31 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "075268b7-6cea-4db5-8c1a-5944e705f281" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "487ab053-cc9d-442a-bdfe-ef6017dd52cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135041Z:487ab053-cc9d-442a-bdfe-ef6017dd52cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:50:41 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d1e080b-78cd-46fc-ae16-1a463aa95a26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "3a7c484e-8687-4022-accd-76a1e58a7045" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135051Z:3a7c484e-8687-4022-accd-76a1e58a7045" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:50:51 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a050ebb-d550-4c38-99d5-e295afadeab1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2242a686-93a9-4c85-a14f-ea77dbde24da" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135101Z:2242a686-93a9-4c85-a14f-ea77dbde24da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:51:01 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0da11671-9706-4388-b62f-3d7b8384e626" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9ab9acb6-912a-44f2-aeed-3334616dc577" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135111Z:9ab9acb6-912a-44f2-aeed-3334616dc577" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:51:11 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0abe0cf-4bcd-4792-93f4-4f2f81a9d200" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "25945ae9-5ca3-48f8-ba9b-bbb29790142b" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135122Z:25945ae9-5ca3-48f8-ba9b-bbb29790142b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:51:21 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cc2fcc99-e1c1-40c3-bf41-612071a05992" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "477b24e0-ea8e-45c9-b662-c8f3c3a09024" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135132Z:477b24e0-ea8e-45c9-b662-c8f3c3a09024" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:51:31 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b1a4dea4-9e4a-47a2-b8f1-0bdf61620d6a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "54b214cf-c3ea-4acf-a8fa-70aa6af063b9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135142Z:54b214cf-c3ea-4acf-a8fa-70aa6af063b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:51:41 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da2e62e4-d11f-4f8e-a9e1-c7c58a5f2342" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "32af3863-bbf1-4805-bbbd-ce14f93eb3a4" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135152Z:32af3863-bbf1-4805-bbbd-ce14f93eb3a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:51:51 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "32525439-41dc-4ed7-a350-2a7028dfb6b3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "75e6ff43-9034-4df9-9ddb-afd4aa9f9c95" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135202Z:75e6ff43-9034-4df9-9ddb-afd4aa9f9c95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:52:01 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9b631b94-2605-4ab7-a67e-c75578dc8872" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "8425c605-d63e-4e6a-88c1-66902679574d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135212Z:8425c605-d63e-4e6a-88c1-66902679574d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:52:11 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "db3e88e4-d7c1-40f1-8cc1-21da0c3961f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "34b217f8-5a45-47a2-aa7b-32afcf26217a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135222Z:34b217f8-5a45-47a2-aa7b-32afcf26217a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:52:21 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0ab4946-ec66-45f3-aac1-5fb2acbd88d1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "c38df8bc-aec1-4d8b-b7db-e56dee057b5e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135232Z:c38df8bc-aec1-4d8b-b7db-e56dee057b5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:52:31 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "af03e316-5c44-4588-8fdf-3fc4075f1a0b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "00ae917a-cde1-40f8-a492-484eccf92c9d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135242Z:00ae917a-cde1-40f8-a492-484eccf92c9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:52:41 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0a185bf6-cc4d-4628-97ba-08d2592a30b8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "f09b9ae4-88e2-4411-a68f-83e61562ef03" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135252Z:f09b9ae4-88e2-4411-a68f-83e61562ef03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:52:52 GMT" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/22d2f66c-d32f-4c58-8655-9d0d69fe2daf?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzLzIyZDJmNjZjLWQzMmYtNGM1OC04NjU1LTlkMGQ2OWZlMmRhZj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "550ccef0-ee80-4213-adb2-f29e3fa36e0b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "93bd3c04-5c1e-497d-94fd-7f0ecaff441f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135303Z:93bd3c04-5c1e-497d-94fd-7f0ecaff441f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:02 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "debbce5f-6622-4bda-8eea-be0db569fd41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "e930189e-9a7d-475b-894c-dc1d7cf82fcb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "734024e5-b30e-4522-b83b-78f4b901e8ca" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135313Z:734024e5-b30e-4522-b83b-78f4b901e8ca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:13 GMT" + ], + "Content-Length": [ + "474" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"creationTime\": \"0001-01-01T00:00:00Z\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/securityAlertPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "29c18b3e-5086-4d3c-be10-0b952c35ebeb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "d212142e-4b3f-4b6c-833f-dca446dabffa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135344Z:d212142e-4b3f-4b6c-833f-dca446dabffa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:44 GMT" + ], + "Content-Length": [ + "476" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageEndpoint\": \"\",\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0,\r\n \"creationTime\": \"2020-12-16T13:53:14.31Z\"\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/securityAlertPolicies\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/securityAlertPolicies/Default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": [\r\n \"\"\r\n ],\r\n \"emailAddresses\": [\r\n \"\"\r\n ],\r\n \"emailAccountAdmins\": false,\r\n \"storageAccountAccessKey\": \"\",\r\n \"retentionDays\": 0\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5210c9f9-555a-4f83-b51d-3b5c8542c655" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "233" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationResults/sql08ftr-45bedcfa-0f0f-4a6c-a528-ce2a2452c1ec?api-version=2019-06-01-preview" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/sql08ftr-45bedcfa-0f0f-4a6c-a528-ce2a2452c1ec?api-version=2019-06-01-preview" + ], + "RetryAfter": [ + "3" + ], + "Access-Control-Allow-Headers": [ + "Location" + ], + "Access-Control-Expose-Headers": [ + "Location" + ], + "x-ms-request-id": [ + "56b67c85-9b73-400a-9037-7b0d83b46974" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b4bbdd92-97b3-4bef-8b6e-476c712e4e74" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135314Z:b4bbdd92-97b3-4bef-8b6e-476c712e4e74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/operationStatuses/sql08ftr-45bedcfa-0f0f-4a6c-a528-ce2a2452c1ec?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L29wZXJhdGlvblN0YXR1c2VzL3NxbDA4ZnRyLTQ1YmVkY2ZhLTBmMGYtNGE2Yy1hNTI4LWNlMmEyNDUyYzFlYz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fd2438db-07d7-47af-8449-f49e9b1e4a72" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "2a403f28-358c-4637-8475-a6194269ab0d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135344Z:2a403f28-358c-4637-8475-a6194269ab0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:44 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"45bedcfa-0f0f-4a6c-a528-ce2a2452c1ec\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-12-16T13:53:14.153Z\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb2fa15c-034d-4966-8f3a-f15ea308ce1f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f992ad9e-326d-4953-92f3-c94a6de2df70" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "4726a1d6-6550-4867-8be2-0f9e5b6a195a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135344Z:4726a1d6-6550-4867-8be2-0f9e5b6a195a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:44 GMT" + ], + "Content-Length": [ + "386" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"recurringScans\": {\r\n \"isEnabled\": false,\r\n \"emailSubscriptionAdmins\": true\r\n }\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba66c4e-e48e-4a80-b01f-26022a9a058d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b92fc210-16de-4a0b-b861-30ecd5c80d56" + ], + "x-ms-correlation-request-id": [ + "b92fc210-16de-4a0b-b861-30ecd5c80d56" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135345Z:b92fc210-16de-4a0b-b861-30ecd5c80d56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50b957c6-28a6-40f0-b22a-c69b9afc12f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "865805ba-0b6b-4fc1-b50e-875443afcd1b" + ], + "x-ms-correlation-request-id": [ + "865805ba-0b6b-4fc1-b50e-875443afcd1b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135345Z:865805ba-0b6b-4fc1-b50e-875443afcd1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "75006" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Accessibility/providers/Microsoft.Storage/storageAccounts/accessibilitytest\",\r\n \"name\": \"accessibilitytest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/afnan-arcadia-rg/providers/Microsoft.Storage/storageAccounts/afnanadlg2ig2\",\r\n \"name\": \"afnanadlg2ig2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/afnan-arcadia-rg/providers/Microsoft.Storage/storageAccounts/afnanadlg2ignite\",\r\n \"name\": \"afnanadlg2ignite\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ammishra-wslite-move-rg/providers/Microsoft.Storage/storageAccounts/docsdemo\",\r\n \"name\": \"docsdemo\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ammishra-wslite-move-rg/providers/Microsoft.Storage/storageAccounts/sqlvacbwtqadqlma7s\",\r\n \"name\": \"sqlvacbwtqadqlma7s\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ammishra-wslite-rg/providers/Microsoft.Storage/storageAccounts/antbugbash\",\r\n \"name\": \"antbugbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ammishra-wslite-rg/providers/Microsoft.Storage/storageAccounts/anvangbash\",\r\n \"name\": \"anvangbash\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Anvangcsa/providers/Microsoft.Storage/storageAccounts/anvangcsa\",\r\n \"name\": \"anvangcsa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Anvangcsa/providers/Microsoft.Storage/storageAccounts/anvangmark1\",\r\n \"name\": \"anvangmark1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Anvangcsa/providers/Microsoft.Storage/storageAccounts/anvangrun1\",\r\n \"name\": \"anvangrun1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/anvangcustomertraining/providers/Microsoft.Storage/storageAccounts/anvangcctest\",\r\n \"name\": \"anvangcctest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/anvanglitetest/providers/Microsoft.Storage/storageAccounts/adobepocdiag\",\r\n \"name\": \"adobepocdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/anvanglitetest/providers/Microsoft.Storage/storageAccounts/anvanglite3\",\r\n \"name\": \"anvanglite3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/anvangrestore/providers/Microsoft.Storage/storageAccounts/anvangrestore\",\r\n \"name\": \"anvangrestore\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzygen2\",\r\n \"name\": \"zzygen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/arcadia-ps-test-group/providers/Microsoft.Storage/storageAccounts/zzystoragegen2\",\r\n \"name\": \"zzystoragegen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/fengqitestvnet\",\r\n \"name\": \"fengqitestvnet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/lirsun\",\r\n \"name\": \"lirsun\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/lirsungen2\",\r\n \"name\": \"lirsungen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/meitestdisable\",\r\n \"name\": \"meitestdisable\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/qingtest001\",\r\n \"name\": \"qingtest001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/storageexplorergen2test\",\r\n \"name\": \"storageexplorergen2test\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/weishutestgen2\",\r\n \"name\": \"weishutestgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/weishutestgen22\",\r\n \"name\": \"weishutestgen22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/westworkspacegen2\",\r\n \"name\": \"westworkspacegen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/zesjupytertest4246921908\",\r\n \"name\": \"zesjupytertest4246921908\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/zhaohhgen2\",\r\n \"name\": \"zhaohhgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/beijingtest/providers/Microsoft.Storage/storageAccounts/zhaotestgen2\",\r\n \"name\": \"zhaotestgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/bigdataqaml3402241348\",\r\n \"name\": \"bigdataqaml3402241348\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/blobstorageqingtest\",\r\n \"name\": \"blobstorageqingtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/blobstorageqingtest1\",\r\n \"name\": \"blobstorageqingtest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/blobstoragews\",\r\n \"name\": \"blobstoragews\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/depgen2\",\r\n \"name\": \"depgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/depgen23\",\r\n \"name\": \"depgen23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhao0917gen2\",\r\n \"name\": \"hozhao0917gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhao0924gen2\",\r\n \"name\": \"hozhao0924gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhao1128gen2\",\r\n \"name\": \"hozhao1128gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhao11gen2\",\r\n \"name\": \"hozhao11gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhao1209gen2\",\r\n \"name\": \"hozhao1209gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhaoblob\",\r\n \"name\": \"hozhaoblob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/hozhaotestgen2\",\r\n \"name\": \"hozhaotestgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/jennyhivetesthdistorage\",\r\n \"name\": \"jennyhivetesthdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/meiblob\",\r\n \"name\": \"meiblob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/storagegen1qingtest\",\r\n \"name\": \"storagegen1qingtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/storagegen2qingtest\",\r\n \"name\": \"storagegen2qingtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/storagev2hierarchical\",\r\n \"name\": \"storagev2hierarchical\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/synapsebigdataqa\",\r\n \"name\": \"synapsebigdataqa\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/wsliteaccount05\",\r\n \"name\": \"wsliteaccount05\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/zhao1217gen2\",\r\n \"name\": \"zhao1217gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"australiacentral\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bigdataqa/providers/Microsoft.Storage/storageAccounts/zhaogen1224\",\r\n \"name\": \"zhaogen1224\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/bjtest/providers/Microsoft.Storage/storageAccounts/zeshitest\",\r\n \"name\": \"zeshitest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/catestAWTeus/providers/Microsoft.Storage/storageAccounts/hdispark1113hdistorage\",\r\n \"name\": \"hdispark1113hdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/catestAWTeus/providers/Microsoft.Storage/storageAccounts/testzeshdi082hdistorage\",\r\n \"name\": \"testzeshdi082hdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chaxu-test/providers/Microsoft.Storage/storageAccounts/chaxuamleus5165950242\",\r\n \"name\": \"chaxuamleus5165950242\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chaxu-test/providers/Microsoft.Storage/storageAccounts/chaxustorageeus\",\r\n \"name\": \"chaxustorageeus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chaxu-test/providers/Microsoft.Storage/storageAccounts/chaxutesthdi2hdistorage\",\r\n \"name\": \"chaxutesthdi2hdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chaxu-test/providers/Microsoft.Storage/storageAccounts/chaxutesthdihdistorage\",\r\n \"name\": \"chaxutesthdihdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chaxu-test/providers/Microsoft.Storage/storageAccounts/chaxuwus\",\r\n \"name\": \"chaxuwus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chaxu-test/providers/Microsoft.Storage/storageAccounts/storageaccountchaxu9f90\",\r\n \"name\": \"storageaccountchaxu9f90\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/beijingtest\",\r\n \"name\": \"beijingtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/chayangstoragewestus2\",\r\n \"name\": \"chayangstoragewestus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/highwayspringtest1209\",\r\n \"name\": \"highwayspringtest1209\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/moderncityzesstor\",\r\n \"name\": \"moderncityzesstor\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/sqlvaqcu7h7wwxy3t6\",\r\n \"name\": \"sqlvaqcu7h7wwxy3t6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/sqlvaz2wpfe3e4dxku\",\r\n \"name\": \"sqlvaz2wpfe3e4dxku\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/testzeshi1203hdistorage\",\r\n \"name\": \"testzeshi1203hdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/testzeshiwatehdistorage\",\r\n \"name\": \"testzeshiwatehdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/woodcitystorage\",\r\n \"name\": \"woodcitystorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/chayang-test-rg/providers/Microsoft.Storage/storageAccounts/zestestwinterred\",\r\n \"name\": \"zestestwinterred\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1051ddeca1ed6x4d8bxba6\",\r\n \"name\": \"cs1051ddeca1ed6x4d8bxba6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003000098732c66\",\r\n \"name\": \"cs11003000098732c66\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000ab4ebe04\",\r\n \"name\": \"cs110032000ab4ebe04\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110033fff98f34073\",\r\n \"name\": \"cs110033fff98f34073\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110037ffe801baec6\",\r\n \"name\": \"cs110037ffe801baec6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003bffda25e795d\",\r\n \"name\": \"cs11003bffda25e795d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs410030000954fea44\",\r\n \"name\": \"cs410030000954fea44\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Dansynapse/providers/Microsoft.Storage/storageAccounts/dansynapsestoragev2\",\r\n \"name\": \"dansynapsestoragev2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"Type\": \"Synapse Data Lake Storage\",\r\n \"Created with\": \"Synapse Azure Resource Manager deploment template\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Dansynapse/providers/Microsoft.Storage/storageAccounts/dansynapsestroage\",\r\n \"name\": \"dansynapsestroage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/Dansynapse/providers/Microsoft.Storage/storageAccounts/gen2foraadtest\",\r\n \"name\": \"gen2foraadtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-dan2log-kvz2235fdavck/providers/Microsoft.Storage/storageAccounts/dbstoragekx7j6jvfudp3y\",\r\n \"name\": \"dbstoragekx7j6jvfudp3y\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-Dandatabrick-iyn2mtpg2dbuc/providers/Microsoft.Storage/storageAccounts/dbstoragesknqistpxmd7w\",\r\n \"name\": \"dbstoragesknqistpxmd7w\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-JennyDBTEST-6ong3xzhb5uvy/providers/Microsoft.Storage/storageAccounts/dbstoragejitvcyzt6x3se\",\r\n \"name\": \"dbstoragejitvcyzt6x3se\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-jezheng-dbx-i7ihr26om3wsw/providers/Microsoft.Storage/storageAccounts/dbstorage3xjeeynljrx2i\",\r\n \"name\": \"dbstorage3xjeeynljrx2i\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-test-databricks-hz3qcltqrrrh2/providers/Microsoft.Storage/storageAccounts/dbstorage6rfeb37b7sb4g\",\r\n \"name\": \"dbstorage6rfeb37b7sb4g\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-yifsodatabricks-olst7vw6gjjla/providers/Microsoft.Storage/storageAccounts/dbstorageyjtezdpyxpmju\",\r\n \"name\": \"dbstorageyjtezdpyxpmju\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-zhli_db-cidz4q4mywdm2/providers/Microsoft.Storage/storageAccounts/dbstoragen36kww6oucbg2\",\r\n \"name\": \"dbstoragen36kww6oucbg2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/databricks-rg-zhwe201023wus2-uxckpvz4zimo4/providers/Microsoft.Storage/storageAccounts/dbstorage7agrzegt37cf2\",\r\n \"name\": \"dbstorage7agrzegt37cf2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"application\": \"databricks\",\r\n \"databricks-environment\": \"true\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dongwwarg/providers/Microsoft.Storage/storageAccounts/dongwwademos\",\r\n \"name\": \"dongwwademos\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/dongwwarg/providers/Microsoft.Storage/storageAccounts/sqlvad6xexr4r2ssu6\",\r\n \"name\": \"sqlvad6xexr4r2ssu6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/fengqi-synapse-rg/providers/Microsoft.Storage/storageAccounts/fengqiblobstorage\",\r\n \"name\": \"fengqiblobstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/fielddemos/providers/Microsoft.Storage/storageAccounts/fielddemos02\",\r\n \"name\": \"fielddemos02\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1203936104xt\",\r\n \"name\": \"gsm1203936104xt\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"GenevaWPAccountName\": \"YifsoTest\",\r\n \"GenevaWPNamespaceName\": \"YifsoTest\",\r\n \"GenevaWPMonikerName\": \"yifsotestauditusw\",\r\n \"GenevaWPStorageGroupName\": \"yifsotestaudit\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1972128207xt\",\r\n \"name\": \"gsm1972128207xt\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"GenevaWPAccountName\": \"YifsoTest\",\r\n \"GenevaWPNamespaceName\": \"YifsoTest\",\r\n \"GenevaWPMonikerName\": \"yifsotestsecurityusw\",\r\n \"GenevaWPStorageGroupName\": \"yifsotestsecurity\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm921131648xt\",\r\n \"name\": \"gsm921131648xt\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"GenevaWPAccountName\": \"YifsoTest\",\r\n \"GenevaWPNamespaceName\": \"YifsoTest\",\r\n \"GenevaWPMonikerName\": \"yifsotestdiagusw\",\r\n \"GenevaWPStorageGroupName\": \"yifsotestdiag\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/gyytest/providers/Microsoft.Storage/storageAccounts/gyyblobstorage\",\r\n \"name\": \"gyyblobstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/gyytest/providers/Microsoft.Storage/storageAccounts/gyyeastusgen2\",\r\n \"name\": \"gyyeastusgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/gyytest/providers/Microsoft.Storage/storageAccounts/gyywsgen2\",\r\n \"name\": \"gyywsgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/haas-storage-vnet/providers/Microsoft.Storage/storageAccounts/hmsaasstorage\",\r\n \"name\": \"hmsaasstorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/historyservertest/providers/Microsoft.Storage/storageAccounts/hivetestzhlihdistorage\",\r\n \"name\": \"hivetestzhlihdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/HMSaaS/providers/Microsoft.Storage/storageAccounts/hmsaasvnettest\",\r\n \"name\": \"hmsaasvnettest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/HMSaaS/providers/Microsoft.Storage/storageAccounts/hmsaasvnettesting\",\r\n \"name\": \"hmsaasvnettesting\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-ml-eu/providers/Microsoft.Storage/storageAccounts/jezheng0ml0eus0763806826\",\r\n \"name\": \"jezheng0ml0eus0763806826\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-sf/providers/Microsoft.Storage/storageAccounts/jezheng0cloudshell\",\r\n \"name\": \"jezheng0cloudshell\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-sf/providers/Microsoft.Storage/storageAccounts/jezheng0privatelink\",\r\n \"name\": \"jezheng0privatelink\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-sf/providers/Microsoft.Storage/storageAccounts/sfdgjezheng0sf0eastu4672\",\r\n \"name\": \"sfdgjezheng0sf0eastu4672\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"jezheng0sf0eastus2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-sf/providers/Microsoft.Storage/storageAccounts/sflogsjezheng0sf0eas5129\",\r\n \"name\": \"sflogsjezheng0sf0eas5129\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"jezheng0sf0eastus2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-sf/providers/Microsoft.Storage/storageAccounts/sqlva7vlwhrfo4v6m4\",\r\n \"name\": \"sqlva7vlwhrfo4v6m4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-synapse/providers/Microsoft.Storage/storageAccounts/jezheng0adls0eastus2\",\r\n \"name\": \"jezheng0adls0eastus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-synapse/providers/Microsoft.Storage/storageAccounts/jezheng0adls1eastus2\",\r\n \"name\": \"jezheng0adls1eastus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-synapse/providers/Microsoft.Storage/storageAccounts/jezheng0storage\",\r\n \"name\": \"jezheng0storage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-synapse-vnet/providers/Microsoft.Storage/storageAccounts/jezheng0adls0eastus2vnet\",\r\n \"name\": \"jezheng0adls0eastus2vnet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jezheng-test-synapse-vnet/providers/Microsoft.Storage/storageAccounts/jezheng0adls1eastus2vnet\",\r\n \"name\": \"jezheng0adls1eastus2vnet\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/jiaminresource/providers/Microsoft.Storage/storageAccounts/jiamin\",\r\n \"name\": \"jiamin\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/kazheng_a365/providers/Microsoft.Storage/storageAccounts/kazhenggen2eastus\",\r\n \"name\": \"kazhenggen2eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ltianrg/providers/Microsoft.Storage/storageAccounts/ltianamlworksp5424875671\",\r\n \"name\": \"ltianamlworksp5424875671\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ltianrg/providers/Microsoft.Storage/storageAccounts/ltianeastusadlsgen2\",\r\n \"name\": \"ltianeastusadlsgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ltianrg/providers/Microsoft.Storage/storageAccounts/ltianwesteuropegen2\",\r\n \"name\": \"ltianwesteuropegen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ltianrg/providers/Microsoft.Storage/storageAccounts/ltianwestus2gen2\",\r\n \"name\": \"ltianwestus2gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ltianrg/providers/Microsoft.Storage/storageAccounts/unravelhdistorage\",\r\n \"name\": \"unravelhdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/madhu-0605rg/providers/Microsoft.Storage/storageAccounts/mrebbsarcadiastorage\",\r\n \"name\": \"mrebbsarcadiastorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/mandywtest/providers/Microsoft.Storage/storageAccounts/mandywtestdiag\",\r\n \"name\": \"mandywtestdiag\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/mandywtest/providers/Microsoft.Storage/storageAccounts/xiaoqiao\",\r\n \"name\": \"xiaoqiao\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/pierosynapse/providers/Microsoft.Storage/storageAccounts/azuresynapsepiero\",\r\n \"name\": \"azuresynapsepiero\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/pierosynapse/providers/Microsoft.Storage/storageAccounts/kncenter\",\r\n \"name\": \"kncenter\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/pierosynapse/providers/Microsoft.Storage/storageAccounts/pierosynapse\",\r\n \"name\": \"pierosynapse\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/pierowebtooling/providers/Microsoft.Storage/storageAccounts/pierowebtooling1\",\r\n \"name\": \"pierowebtooling1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ps7483/providers/Microsoft.Storage/storageAccounts/ps2849\",\r\n \"name\": \"ps2849\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ps9677/providers/Microsoft.Storage/storageAccounts/ps6791\",\r\n \"name\": \"ps6791\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/rufan0723rg01/providers/Microsoft.Storage/storageAccounts/rufanblob072301\",\r\n \"name\": \"rufanblob072301\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/rufanSynapseRG1/providers/Microsoft.Storage/storageAccounts/rufangen2\",\r\n \"name\": \"rufangen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ruxurg/providers/Microsoft.Storage/storageAccounts/ruxuadlsgen1\",\r\n \"name\": \"ruxuadlsgen1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ruxurg/providers/Microsoft.Storage/storageAccounts/ruxuwestus201\",\r\n \"name\": \"ruxuwestus201\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/samplenb/providers/Microsoft.Storage/storageAccounts/ruxublobne\",\r\n \"name\": \"ruxublobne\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/samplenb/providers/Microsoft.Storage/storageAccounts/ruxune\",\r\n \"name\": \"ruxune\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {\r\n \"cleanup\": \"keep\",\r\n \"pointOfContact\": \"ruxu\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/samplenb/providers/Microsoft.Storage/storageAccounts/samplenbblob\",\r\n \"name\": \"samplenbblob\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"BlobStorage\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/samplenbeastus/providers/Microsoft.Storage/storageAccounts/samplenbadlsgen2eastus\",\r\n \"name\": \"samplenbadlsgen2eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/shangwei-synapse/providers/Microsoft.Storage/storageAccounts/clitestadlsgen2\",\r\n \"name\": \"clitestadlsgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/shangwei-synapse/providers/Microsoft.Storage/storageAccounts/shangweiadlsgen2\",\r\n \"name\": \"shangweiadlsgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/shangwei-synapse-vnet/providers/Microsoft.Storage/storageAccounts/shangweiadlsv2\",\r\n \"name\": \"shangweiadlsv2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/shangwei-test-ws/providers/Microsoft.Storage/storageAccounts/shangweitestwsadls\",\r\n \"name\": \"shangweitestwsadls\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/shuaitest/providers/Microsoft.Storage/storageAccounts/shuai2gen2\",\r\n \"name\": \"shuai2gen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/silahuhilotest2/providers/Microsoft.Storage/storageAccounts/silahuhilotestscgen2\",\r\n \"name\": \"silahuhilotestscgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/silahutesthilo/providers/Microsoft.Storage/storageAccounts/silahuhiloadlgen2\",\r\n \"name\": \"silahuhiloadlgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/silahutesthilo/providers/Microsoft.Storage/storageAccounts/silahutesthilosc\",\r\n \"name\": \"silahutesthilosc\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/silahutesthilo/providers/Microsoft.Storage/storageAccounts/silahutesthiloscgen2\",\r\n \"name\": \"silahutesthiloscgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/silahutesthilo/providers/Microsoft.Storage/storageAccounts/silahutesthiloscgen22\",\r\n \"name\": \"silahutesthiloscgen22\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/silahutesthilo/providers/Microsoft.Storage/storageAccounts/silahutesthiloscgen23\",\r\n \"name\": \"silahutesthiloscgen23\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps1656/providers/Microsoft.Storage/storageAccounts/sqlvastorageps1656\",\r\n \"name\": \"sqlvastorageps1656\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914\",\r\n \"name\": \"sqlvastorageps7914\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sqlgen3/providers/Microsoft.Storage/storageAccounts/sqlgen3adlsgen2\",\r\n \"name\": \"sqlgen3adlsgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sqlgen3eastus2/providers/Microsoft.Storage/storageAccounts/sqlgen3cloudshell\",\r\n \"name\": \"sqlgen3cloudshell\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"ms-resource-usage\": \"azure-cloud-shell\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/synapse-clizbusf/providers/Microsoft.Storage/storageAccounts/adlsgen2mioondq6\",\r\n \"name\": \"adlsgen2mioondq6\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/synapse-e2e/providers/Microsoft.Storage/storageAccounts/e2etestgen2\",\r\n \"name\": \"e2etestgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/synapse-e2e/providers/Microsoft.Storage/storageAccounts/e2ewestus2adlsgen2\",\r\n \"name\": \"e2ewestus2adlsgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/testuaenorth/providers/Microsoft.Storage/storageAccounts/testuaenorthnhdistorage\",\r\n \"name\": \"testuaenorthnhdistorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/cssdemoant01\",\r\n \"name\": \"cssdemoant01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount01\",\r\n \"name\": \"wsliteaccount01\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount02\",\r\n \"name\": \"wsliteaccount02\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount03\",\r\n \"name\": \"wsliteaccount03\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount04\",\r\n \"name\": \"wsliteaccount04\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount06\",\r\n \"name\": \"wsliteaccount06\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount07\",\r\n \"name\": \"wsliteaccount07\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteBugbashRG/providers/Microsoft.Storage/storageAccounts/wsliteaccount08\",\r\n \"name\": \"wsliteaccount08\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/WSLiteCSSTraining/providers/Microsoft.Storage/storageAccounts/cssant\",\r\n \"name\": \"cssant\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/xqctest/providers/Microsoft.Storage/storageAccounts/xqctest\",\r\n \"name\": \"xqctest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-aml-eus-rg/providers/Microsoft.Storage/storageAccounts/yifsoamleus1801034583\",\r\n \"name\": \"yifsoamleus1801034583\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-aml-rg/providers/Microsoft.Storage/storageAccounts/yifsoaml2321579348\",\r\n \"name\": \"yifsoaml2321579348\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-aml-wcus-rg/providers/Microsoft.Storage/storageAccounts/yifsoamlwcus5376265459\",\r\n \"name\": \"yifsoamlwcus5376265459\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-aml-wus-rg/providers/Microsoft.Storage/storageAccounts/yifsoamlwus4287277154\",\r\n \"name\": \"yifsoamlwus4287277154\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-workspace/providers/Microsoft.Storage/storageAccounts/lanjuntestgen2\",\r\n \"name\": \"lanjuntestgen2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-workspace/providers/Microsoft.Storage/storageAccounts/yifsoadlsgen2westus2\",\r\n \"name\": \"yifsoadlsgen2westus2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-workspace/providers/Microsoft.Storage/storageAccounts/yifsoadlsgen2weu\",\r\n \"name\": \"yifsoadlsgen2weu\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/yifso-workspace/providers/Microsoft.Storage/storageAccounts/yifsoadlsgen2ws\",\r\n \"name\": \"yifsoadlsgen2ws\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen22am5xcmv\",\r\n \"name\": \"adlsgen22am5xcmv\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen232qutmiw\",\r\n \"name\": \"adlsgen232qutmiw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen23crz3oxu\",\r\n \"name\": \"adlsgen23crz3oxu\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen26dbzchm7\",\r\n \"name\": \"adlsgen26dbzchm7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2a45tv5m4\",\r\n \"name\": \"adlsgen2a45tv5m4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2b5oqanx7\",\r\n \"name\": \"adlsgen2b5oqanx7\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2cf6vefzr\",\r\n \"name\": \"adlsgen2cf6vefzr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2daweqi2x\",\r\n \"name\": \"adlsgen2daweqi2x\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2gopcc27k\",\r\n \"name\": \"adlsgen2gopcc27k\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2iphckqb2\",\r\n \"name\": \"adlsgen2iphckqb2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2j5sobobk\",\r\n \"name\": \"adlsgen2j5sobobk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2jf2oqs5a\",\r\n \"name\": \"adlsgen2jf2oqs5a\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2jyshazyz\",\r\n \"name\": \"adlsgen2jyshazyz\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2kimgygwf\",\r\n \"name\": \"adlsgen2kimgygwf\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2kwtfcslw\",\r\n \"name\": \"adlsgen2kwtfcslw\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2mipheyt3\",\r\n \"name\": \"adlsgen2mipheyt3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2nsfhak2w\",\r\n \"name\": \"adlsgen2nsfhak2w\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2of56nebl\",\r\n \"name\": \"adlsgen2of56nebl\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2p5br56t4\",\r\n \"name\": \"adlsgen2p5br56t4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2qg5wiics\",\r\n \"name\": \"adlsgen2qg5wiics\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2rhoiyi5t\",\r\n \"name\": \"adlsgen2rhoiyi5t\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2u5bvguoh\",\r\n \"name\": \"adlsgen2u5bvguoh\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2wbbepiis\",\r\n \"name\": \"adlsgen2wbbepiis\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2xzs5hlkr\",\r\n \"name\": \"adlsgen2xzs5hlkr\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2yzwma7kv\",\r\n \"name\": \"adlsgen2yzwma7kv\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/adlsgen2zzl6wztm\",\r\n \"name\": \"adlsgen2zzl6wztm\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps2468\",\r\n \"name\": \"ps2468\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps2705\",\r\n \"name\": \"ps2705\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps3950\",\r\n \"name\": \"ps3950\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps4487\",\r\n \"name\": \"ps4487\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps7658\",\r\n \"name\": \"ps7658\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps7951\",\r\n \"name\": \"ps7951\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps8507\",\r\n \"name\": \"ps8507\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps9217\",\r\n \"name\": \"ps9217\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps972\",\r\n \"name\": \"ps972\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ps9923\",\r\n \"name\": \"ps9923\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/sqlva2otatinb3kqa4\",\r\n \"name\": \"sqlva2otatinb3kqa4\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/sqlvaa45wgknnz4ojk\",\r\n \"name\": \"sqlvaa45wgknnz4ojk\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/sqlvaa4y76hu6ni6uq\",\r\n \"name\": \"sqlvaa4y76hu6ni6uq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywsqlstorageaccount\",\r\n \"name\": \"ywsqlstorageaccount\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywtestaccount\",\r\n \"name\": \"ywtestaccount\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/ywtest/providers/Microsoft.Storage/storageAccounts/ywtestcreateaccoutn\",\r\n \"name\": \"ywtestcreateaccoutn\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zexutest/providers/Microsoft.Storage/storageAccounts/zexuml0976507063\",\r\n \"name\": \"zexuml0976507063\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zexutest/providers/Microsoft.Storage/storageAccounts/zexustorage\",\r\n \"name\": \"zexustorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhejuntest/providers/Microsoft.Storage/storageAccounts/zhejuntests\",\r\n \"name\": \"zhejuntests\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhlitest/providers/Microsoft.Storage/storageAccounts/rdbtest\",\r\n \"name\": \"rdbtest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhlitest/providers/Microsoft.Storage/storageAccounts/rdbtest2\",\r\n \"name\": \"rdbtest2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhlitest/providers/Microsoft.Storage/storageAccounts/rdbtest3\",\r\n \"name\": \"rdbtest3\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhlitest/providers/Microsoft.Storage/storageAccounts/sfdgzhlisf9900\",\r\n \"name\": \"sfdgzhlisf9900\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zhlisf\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhlitest/providers/Microsoft.Storage/storageAccounts/sflogszhlisf8640\",\r\n \"name\": \"sflogszhlisf8640\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zhlisf\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhouyu-rg/providers/Microsoft.Storage/storageAccounts/sqlvajudfwlnn3pomq\",\r\n \"name\": \"sqlvajudfwlnn3pomq\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhouyu-rg/providers/Microsoft.Storage/storageAccounts/synapsestreaming\",\r\n \"name\": \"synapsestreaming\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhwe-arc/providers/Microsoft.Storage/storageAccounts/zhwe8wcus\",\r\n \"name\": \"zhwe8wcus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhwe-arc/providers/Microsoft.Storage/storageAccounts/zhwegen2eastus\",\r\n \"name\": \"zhwegen2eastus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhwe-arc/providers/Microsoft.Storage/storageAccounts/zhwewus\",\r\n \"name\": \"zhwewus\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zhwe-eus2-euap-synapse/providers/Microsoft.Storage/storageAccounts/zhweeus2e\",\r\n \"name\": \"zhweeus2e\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzystorageforsynapse\",\r\n \"name\": \"zzystorageforsynapse\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NxbHZhc3RvcmFnZXBzNzkxND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba498f23-9dc8-4efc-bdb8-929c91b08d4c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "eb4229e2-838d-4616-82a5-76f8a0d2f2f9" + ], + "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": [ + "4d3214d8-a095-40eb-ac04-a9ae73b61f84" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135345Z:4d3214d8-a095-40eb-ac04-a9ae73b61f84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:45 GMT" + ], + "Content-Length": [ + "1181" + ], + "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/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914\",\r\n \"name\": \"sqlvastorageps7914\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T13:44:50.6315683Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-12-16T13:44:50.6315683Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-12-16T13:44:50.53781Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sqlvastorageps7914.blob.core.windows.net/\",\r\n \"queue\": \"https://sqlvastorageps7914.queue.core.windows.net/\",\r\n \"table\": \"https://sqlvastorageps7914.table.core.windows.net/\",\r\n \"file\": \"https://sqlvastorageps7914.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Storage/storageAccounts/sqlvastorageps7914/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NxbHZhc3RvcmFnZXBzNzkxNC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a08f7a7-ec05-459b-88e1-a03028ea5091" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "865a7ae2-62fd-4e8b-89ad-6d041cf3caff" + ], + "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-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "4df04a31-e200-4185-ac21-326f0eac4bb0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135345Z:4df04a31-e200-4185-ac21-326f0eac4bb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:45 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"jHYYpD0BeGYjgfBpA6R1X9YoWg9JArkRGbbN9Nkx5BmVRMNFzK5woQoNfyOJHbFMbO8xWx7DApQOacDhP2JoXQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"99tA1RTnlxaUDb4xVYgn6QzzXQDqGyotFenaENPOZt+1UGoApp590YME79eENcEu5YjA/At00TmGhGl42TmOfA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"storageContainerPath\": \"https://sqlvastorageps7914.blob.core.windows.net/vulnerability-assessment\",\r\n \"storageAccountAccessKey\": \"jHYYpD0BeGYjgfBpA6R1X9YoWg9JArkRGbbN9Nkx5BmVRMNFzK5woQoNfyOJHbFMbO8xWx7DApQOacDhP2JoXQ==\",\r\n \"recurringScans\": {\r\n \"isEnabled\": false,\r\n \"emailSubscriptionAdmins\": true\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "194cd8d0-b394-4375-befb-979c0d4b29ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "356" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a6ad36e5-396f-499a-9762-e6450b06024c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c524a1eb-fdfe-4bf3-a376-385b09cbc142" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135346Z:c524a1eb-fdfe-4bf3-a376-385b09cbc142" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:46 GMT" + ], + "Content-Length": [ + "486" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"storageContainerPath\": \"https://sqlvastorageps7914.blob.core.windows.net/vulnerability-assessment/\",\r\n \"recurringScans\": {\r\n \"isEnabled\": false,\r\n \"emailSubscriptionAdmins\": true\r\n }\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21d41cd5-80f4-4dd0-85c4-211503253c07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee2ab695-e0a2-4f68-b57a-e858b6877006", + "d3eca378-f2fe-4c87-acbc-89f39dc1d145" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "bd8039ba-ee38-4199-b26c-69e1e970052e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135348Z:bd8039ba-ee38-4199-b26c-69e1e970052e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:47 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3808a07-e5c4-4f10-acf7-bab875fdee44" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5118d84a-2995-405f-881a-da57f085e821" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "8f27554a-94cd-41da-8d6c-1df91ace0358" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135350Z:8f27554a-94cd-41da-8d6c-1df91ace0358" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:50 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal1\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal2\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6073cb76-ad91-453a-a57c-45955fd7b251" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "67af36e5-79e4-4c69-83b5-38da9631761a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "b4abc5dd-17ac-45d1-b043-661c022797f3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135352Z:b4abc5dd-17ac-45d1-b043-661c022797f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:51 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a1158a3-d904-4c46-a52c-eb34edbb26b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f3a77086-6492-4b3f-b05c-7b5368da1c3a", + "bc0617b9-4eea-4bfa-9984-5eaf30aeb889" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "69be7389-82bc-4239-b64a-f6ba5d8cd710" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135353Z:69be7389-82bc-4239-b64a-f6ba5d8cd710" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:52 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "859b993c-a4e9-415a-9712-e49ec871a8a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1f8823c2-6eb5-4a89-aab1-e9a3f1b9de4f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "ea6b89e2-4ee2-4cf6-bb12-22a4530ee268" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135358Z:ea6b89e2-4ee2-4cf6-bb12-22a4530ee268" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:58 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7394dc15-4b9b-4b57-80bf-773a624e0b61" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1420ddf1-dbe9-4691-ae62-810a7e5b2be4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "a7a11542-3d91-473e-a434-73b57f646d0d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135400Z:a7a11542-3d91-473e-a434-73b57f646d0d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:59 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2dd1932-73db-4fad-ac4b-083efaf33ded" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ddc961e5-8dde-4477-a81a-877aca57f741", + "0256a101-eaca-49a2-9dfc-3e17140a2f71" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "e9cc146d-6f63-4b3f-b02e-7e865314b9a2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135401Z:e9cc146d-6f63-4b3f-b02e-7e865314b9a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:01 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ae37a6a-1010-4f39-b885-bd7f19e0da75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "55a94a81-bae7-404f-82ad-d3e22ec2d8d0", + "be7b2dd9-4bf5-4570-96e2-2ff3cc6859b0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6cf4a8dc-beba-4568-afc3-ceac601d8a50" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135348Z:6cf4a8dc-beba-4568-afc3-ceac601d8a50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:48 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2d165efa-4f73-4ffb-b66c-3f6a48623c0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a0e79d84-f08e-4cd8-9ca7-905bef0681dd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "20d23e64-c245-4ae4-941c-d4231de4843d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135352Z:20d23e64-c245-4ae4-941c-d4231de4843d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e6b207c-011e-4269-974a-4067469b123b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0311bb60-98a8-42cb-b972-f3854e5868c5", + "7882c75b-2aca-4d87-ba9e-9b98936a331b" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "d2212030-7e65-4c7f-bb83-ee393658d5c4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135353Z:d2212030-7e65-4c7f-bb83-ee393658d5c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:53 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35d2fff2-8597-4294-aea4-c556bef725f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ac384e95-b6ef-45dd-be7c-f4e352dd0a21" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "1b58fe4c-f5fc-41ec-b9be-6237aea0ab1a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135401Z:1b58fe4c-f5fc-41ec-b9be-6237aea0ab1a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "107c9df5-a470-4ded-a459-e414debcd740" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ec66adb2-243c-46f9-8aa2-3602ff400945", + "a6eccb3c-4255-4bb0-b897-61ff9d3a9d44" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "c77f9af0-e9ce-4971-bd0f-77effb36834a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135402Z:c77f9af0-e9ce-4971-bd0f-77effb36834a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:01 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b69f0ff5-b7ec-41f9-9664-2e37754d74cf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1c684b5f-9da6-4805-b855-6585f3e5e96e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14992" + ], + "x-ms-correlation-request-id": [ + "9cb88fe0-50f3-47f9-af00-86e1b28ca057" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135403Z:9cb88fe0-50f3-47f9-af00-86e1b28ca057" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal1\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal2\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fde1351-f51d-4e46-a312-b9e0171c5c68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2d3794e5-59a3-421c-8c5a-f4f099aa500a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "03db18bf-d99d-4f67-9435-fa35ec47aa87" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135349Z:03db18bf-d99d-4f67-9435-fa35ec47aa87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:49 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal1\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal2\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55575d4b-7ef6-471a-aa7e-c2674030946f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2045a94d-0571-49ff-9295-035d7a84d830" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "297a1828-ce15-4f16-a722-1f9db8a248c7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135351Z:297a1828-ce15-4f16-a722-1f9db8a248c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:51 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a38933d1-7abc-494d-af67-d2e482890bdc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c08f20e-91f8-462d-8168-52e6ad5eebb3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "48e26f68-8ea6-4584-8b9c-671792eaa214" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135354Z:48e26f68-8ea6-4584-8b9c-671792eaa214" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:54 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2acb674d-6c4f-4b45-9c6d-241b3471bf73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1d3e83c4-f768-4574-a718-3f3f21483a11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "a7d77799-c164-4477-a0b9-121d19dac6a7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135358Z:a7d77799-c164-4477-a0b9-121d19dac6a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:57 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "472f4dc5-1c00-4744-8358-35a3deb8cf6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "be5b1ae5-a1d7-4ba8-b4d2-db16101878f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "34a04d43-b684-4804-8d28-f5bd2e6629eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135359Z:34a04d43-b684-4804-8d28-f5bd2e6629eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:59 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/default?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxOS0wNi0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d8650af-ec37-44c9-b07e-0e722a7b2c64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d66b552-a5b2-48da-829a-c1f712dc9209" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "7423603e-a930-4196-b4e9-6ceabe70c840" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135403Z:7423603e-a930-4196-b4e9-6ceabe70c840" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:02 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/master?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL21hc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5dfd19d-d6cf-4aab-bb20-3d543c7a9a85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d02d7576-6bc2-4d4f-8d23-ad3dd8e20927", + "c549c0fb-4d03-4ef5-bff6-6bcbdaa6a79f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "47c7c0f0-dca4-487d-aa33-45e198763dc6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135355Z:47c7c0f0-dca4-487d-aa33-45e198763dc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:54 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/master?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL21hc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f66e3cbe-6aad-4e1e-b462-d538871eace4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2e383927-594b-4b52-9f47-a583bf35841d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "6684a56c-1e5f-478c-82ef-b1d01910ae6c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135356Z:6684a56c-1e5f-478c-82ef-b1d01910ae6c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:56 GMT" + ], + "Content-Length": [ + "500" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/master\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/master?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL21hc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "342ab449-2e0a-41d6-acbe-c19a71ecd004" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "833cd177-ea49-4917-869a-78efcb8567df", + "7598d5e3-5a1f-4f49-bf9d-1bede9c7faee" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "c30fc80b-b97c-4788-91a3-4f642796752b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135355Z:c30fc80b-b97c-4788-91a3-4f642796752b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:55 GMT" + ], + "Content-Length": [ + "119" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"VulnerabilityAssessmentBaselineDoesNotExists\",\r\n \"message\": \"Baseline does not exist for rule 'VA2108'\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/master?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL21hc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a51ea4fc-bb51-4832-be84-35486e5a2add" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6d48ac11-9dcf-44bf-bbb1-e70efe27dd77" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "c1095a1b-eab2-4592-859b-85efb79ccf48" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135357Z:c1095a1b-eab2-4592-859b-85efb79ccf48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/default/rules/VA2108/baselines/master?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlR3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN5bmFwc2Uvd29ya3NwYWNlcy9zcWx2YXdzcHM3OTE0L3NxbFBvb2xzL3NxbHZhcG9vbHBzNzkxNC92dWxuZXJhYmlsaXR5QXNzZXNzbWVudHMvZGVmYXVsdC9ydWxlcy9WQTIxMDgvYmFzZWxpbmVzL21hc3Rlcj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6de82a2-6f27-4156-af48-265af47de299" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Synapse.SynapseManagementClient/1.0.0.preview.4" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "346" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0d2a6b41-9902-4b72-90d2-7600b16388d2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "ca914592-46f0-459c-8237-312f99baa442" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201216T135356Z:ca914592-46f0-459c-8237-312f99baa442" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:53:55 GMT" + ], + "Content-Length": [ + "500" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"baselineResults\": [\r\n {\r\n \"result\": [\r\n \"Principal3\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n },\r\n {\r\n \"result\": [\r\n \"Principal4\",\r\n \"db_ddladmin\",\r\n \"SQL_USER\",\r\n \"None\"\r\n ]\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourceGroups/sql-va-cmdlet-test-rgps7914/providers/Microsoft.Synapse/workspaces/sqlvawsps7914/sqlPools/sqlvapoolps7914/vulnerabilityAssessments/Default/rules/VA2108/baselines/master\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Synapse/workspaces/sqlPools/vulnerabilityAssessments/rules/baselines\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/resourcegroups/sql-va-cmdlet-test-rgps7914?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL3Jlc291cmNlZ3JvdXBzL3NxbC12YS1jbWRsZXQtdGVzdC1yZ3BzNzkxND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804c818f-5000-4559-832b-523a8b56da12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "844d75c0-2066-492b-917b-da1c355a2bfc" + ], + "x-ms-correlation-request-id": [ + "844d75c0-2066-492b-917b-da1c355a2bfc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135404Z:844d75c0-2066-492b-917b-da1c355a2bfc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "05bae312-8e2b-47fa-b395-f9fca242031f" + ], + "x-ms-correlation-request-id": [ + "05bae312-8e2b-47fa-b395-f9fca242031f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135419Z:05bae312-8e2b-47fa-b395-f9fca242031f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "03d378a2-94b1-4f18-ba6c-eb4133999f1e" + ], + "x-ms-correlation-request-id": [ + "03d378a2-94b1-4f18-ba6c-eb4133999f1e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135434Z:03d378a2-94b1-4f18-ba6c-eb4133999f1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "89e78f03-63c0-4c90-bd24-3fa2d13f7008" + ], + "x-ms-correlation-request-id": [ + "89e78f03-63c0-4c90-bd24-3fa2d13f7008" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135449Z:89e78f03-63c0-4c90-bd24-3fa2d13f7008" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:54:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "0ec586ee-faa8-4534-a15a-9152163a7447" + ], + "x-ms-correlation-request-id": [ + "0ec586ee-faa8-4534-a15a-9152163a7447" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135504Z:0ec586ee-faa8-4534-a15a-9152163a7447" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:55:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "ead1c98b-02c2-4487-b899-3bcc067cb5ee" + ], + "x-ms-correlation-request-id": [ + "ead1c98b-02c2-4487-b899-3bcc067cb5ee" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135519Z:ead1c98b-02c2-4487-b899-3bcc067cb5ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:55:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "4284b67d-71ad-4b0a-84e9-cc2905accb94" + ], + "x-ms-correlation-request-id": [ + "4284b67d-71ad-4b0a-84e9-cc2905accb94" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135534Z:4284b67d-71ad-4b0a-84e9-cc2905accb94" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:55:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "aeff5a72-7020-4949-a862-9d919277cee2" + ], + "x-ms-correlation-request-id": [ + "aeff5a72-7020-4949-a862-9d919277cee2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135549Z:aeff5a72-7020-4949-a862-9d919277cee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:55:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "a43710e8-c21c-4b07-bfcc-8c2d1544461a" + ], + "x-ms-correlation-request-id": [ + "a43710e8-c21c-4b07-bfcc-8c2d1544461a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135604Z:a43710e8-c21c-4b07-bfcc-8c2d1544461a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:56:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "40e79886-77be-4290-8b9e-53a88eff4256" + ], + "x-ms-correlation-request-id": [ + "40e79886-77be-4290-8b9e-53a88eff4256" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135619Z:40e79886-77be-4290-8b9e-53a88eff4256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:56:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "907398d3-fc74-4933-8f29-1cfd130a9f85" + ], + "x-ms-correlation-request-id": [ + "907398d3-fc74-4933-8f29-1cfd130a9f85" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135634Z:907398d3-fc74-4933-8f29-1cfd130a9f85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:56:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "3b04c0b3-b920-4275-ae86-e7f859af00cf" + ], + "x-ms-correlation-request-id": [ + "3b04c0b3-b920-4275-ae86-e7f859af00cf" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135649Z:3b04c0b3-b920-4275-ae86-e7f859af00cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:56:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "d6870a1a-1fd1-4174-a116-754c5c69aeac" + ], + "x-ms-correlation-request-id": [ + "d6870a1a-1fd1-4174-a116-754c5c69aeac" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135704Z:d6870a1a-1fd1-4174-a116-754c5c69aeac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:57:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "91a493b7-86cb-4744-98b9-7581a5c93d21" + ], + "x-ms-correlation-request-id": [ + "91a493b7-86cb-4744-98b9-7581a5c93d21" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135720Z:91a493b7-86cb-4744-98b9-7581a5c93d21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:57:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "48ae7c25-3469-403d-ad15-b64692229493" + ], + "x-ms-correlation-request-id": [ + "48ae7c25-3469-403d-ad15-b64692229493" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135735Z:48ae7c25-3469-403d-ad15-b64692229493" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:57:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "619a3b1a-b69d-4d20-9116-aa3a16dcd8bd" + ], + "x-ms-correlation-request-id": [ + "619a3b1a-b69d-4d20-9116-aa3a16dcd8bd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135750Z:619a3b1a-b69d-4d20-9116-aa3a16dcd8bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:57:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "9fdb0189-83f5-4f7f-9037-2bb5f683cf55" + ], + "x-ms-correlation-request-id": [ + "9fdb0189-83f5-4f7f-9037-2bb5f683cf55" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135805Z:9fdb0189-83f5-4f7f-9037-2bb5f683cf55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:58:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "b3dae6ab-e70e-465b-a8b6-90c35ed35d06" + ], + "x-ms-correlation-request-id": [ + "b3dae6ab-e70e-465b-a8b6-90c35ed35d06" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135820Z:b3dae6ab-e70e-465b-a8b6-90c35ed35d06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:58:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "563891bc-974c-4111-8db0-09c7f5040bb0" + ], + "x-ms-correlation-request-id": [ + "563891bc-974c-4111-8db0-09c7f5040bb0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135835Z:563891bc-974c-4111-8db0-09c7f5040bb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:58:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "d4161a1d-876d-431c-85da-73acde13e666" + ], + "x-ms-correlation-request-id": [ + "d4161a1d-876d-431c-85da-73acde13e666" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135850Z:d4161a1d-876d-431c-85da-73acde13e666" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:58:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "ef00b284-d774-4949-8182-23028b59da73" + ], + "x-ms-correlation-request-id": [ + "ef00b284-d774-4949-8182-23028b59da73" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135905Z:ef00b284-d774-4949-8182-23028b59da73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:59:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "b0cfc189-c004-4e06-8563-455a3cf762e7" + ], + "x-ms-correlation-request-id": [ + "b0cfc189-c004-4e06-8563-455a3cf762e7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135920Z:b0cfc189-c004-4e06-8563-455a3cf762e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:59:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "27f44bc5-d6dd-436e-b207-c8061bd50544" + ], + "x-ms-correlation-request-id": [ + "27f44bc5-d6dd-436e-b207-c8061bd50544" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135935Z:27f44bc5-d6dd-436e-b207-c8061bd50544" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:59:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "409bed83-067b-41fc-b0bd-2714b0a0dae9" + ], + "x-ms-correlation-request-id": [ + "409bed83-067b-41fc-b0bd-2714b0a0dae9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T135950Z:409bed83-067b-41fc-b0bd-2714b0a0dae9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 13:59:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "88ba2b7e-1f7a-4cff-baea-b36b4d740022" + ], + "x-ms-correlation-request-id": [ + "88ba2b7e-1f7a-4cff-baea-b36b4d740022" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T140005Z:88ba2b7e-1f7a-4cff-baea-b36b4d740022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 14:00:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "3cc52cf3-27e0-45ce-a861-8eaa4f2b657d" + ], + "x-ms-correlation-request-id": [ + "3cc52cf3-27e0-45ce-a861-8eaa4f2b657d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T140020Z:3cc52cf3-27e0-45ce-a861-8eaa4f2b657d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 14:00:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "a93e82e9-7e7d-4d4a-b7d1-9398eb5149e8" + ], + "x-ms-correlation-request-id": [ + "a93e82e9-7e7d-4d4a-b7d1-9398eb5149e8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T140035Z:a93e82e9-7e7d-4d4a-b7d1-9398eb5149e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 14:00:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUw6MkRWQToyRENNRExFVDoyRFRFU1Q6MkRSR1BTNzkxNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDUxZGRlY2EtMWVkNi00ZDhiLWJhNmYtMWZmNTYxZTVmM2IzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFUVVV3Nk1rUldRVG95UkVOTlJFeEZWRG95UkZSRlUxUTZNa1JTUjFCVE56a3hOQzFYUlZOVVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "d1ade804-c098-46cf-b792-08dac1d35a64" + ], + "x-ms-correlation-request-id": [ + "d1ade804-c098-46cf-b792-08dac1d35a64" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20201216T140035Z:d1ade804-c098-46cf-b792-08dac1d35a64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 16 Dec 2020 14:00:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VulnerabilityAssessmentBaseline": [ + "ps7914" + ] + }, + "Variables": { + "SubscriptionId": "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3" + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Az.Synapse.psd1 b/src/Synapse/Synapse/Az.Synapse.psd1 index 6421f48b95d4..d8365088d279 100644 --- a/src/Synapse/Synapse/Az.Synapse.psd1 +++ b/src/Synapse/Synapse/Az.Synapse.psd1 @@ -125,6 +125,15 @@ CmdletsToExport = 'Get-AzSynapseSparkJob', 'Stop-AzSynapseSparkJob', 'Get-AzSynapseRoleDefinition', 'Get-AzSynapseSqlDatabase', 'New-AzSynapseSqlDatabase', 'Remove-AzSynapseSqlDatabase', 'Update-AzSynapseSqlDatabase', 'Test-AzSynapseSqlDatabase', + 'Disable-AzSynapseSqlPoolSensitivityRecommendation', + 'Enable-AzSynapseSqlPoolSensitivityRecommendation', + 'Get-AzSynapseSqlPoolSensitivityRecommendation', + 'Get-AzSynapseSqlPoolSensitivityClassification', + 'Remove-AzSynapseSqlPoolSensitivityClassification', + 'Set-AzSynapseSqlPoolSensitivityClassification', + 'Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline', + 'Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline', + 'Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline', 'Get-AzSynapseIntegrationRuntime', 'Get-AzSynapseIntegrationRuntimeKey', 'Get-AzSynapseIntegrationRuntimeMetric', diff --git a/src/Synapse/Synapse/ChangeLog.md b/src/Synapse/Synapse/ChangeLog.md index 1ed91c4acbae..04edf7815b45 100644 --- a/src/Synapse/Synapse/ChangeLog.md +++ b/src/Synapse/Synapse/ChangeLog.md @@ -33,6 +33,17 @@ * Added support for operation of Transparent Data Encryption in SqlPool-level - Add `Get-AzSynapseSqlPoolTransparentDataEncryption` cmdlet - Add `Set-AzSynapseSqlPoolTransparentDataEncryption` cmdlet +* Added support for operation of Data Classification in SqlPool-level + - Add `Disable-AzSynapseSqlPoolSensitivityRecommendation` cmdlet + - Add `Enable-AzSynapseSqlPoolSensitivityRecommendation` cmdlet + - Add `Get-AzSynapseSqlPoolSensitivityRecommendation` cmdlet + - Add `Get-AzSynapseSqlPoolSensitivityClassification` cmdlet + - Add `Remove-AzSynapseSqlPoolSensitivityClassification` cmdlet + - Add `Set-AzSynapseSqlPoolSensitivityClassification` cmdlet +* Added support for operation of Vulnerability Assessment Baseline in SqlPool-level + - Add `Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline` cmdlet + - Add `Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline` cmdlet + - Add `Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline` cmdlet * Fixed deserialization error when create Pipeline/Dataset/Trigger through DefinitionFile * Added polling for artifacts cmdlets diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/DisableAzureSynapseSqlPoolSensitivityRecommendation.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/DisableAzureSynapseSqlPoolSensitivityRecommendation.cs new file mode 100644 index 000000000000..907c8c7a1573 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/DisableAzureSynapseSqlPoolSensitivityRecommendation.cs @@ -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. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet( + VerbsLifecycle.Disable, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + DataClassificationCommon.SqlPoolSensitivityRecommendation, + DefaultParameterSetName = DataClassificationCommon.InputObjectParameterSet, + SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class DisableAzureSynapseSqlPoolSensitivityRecommendation : ModifyAzureSynapseSqlPoolSensitivityRecommendationCmdlet + { + protected override SqlPoolSensitivityClassificationModel GetEntity() + { + if (InputObject != null) + { + return InputObject; + } + else if (SqlPoolObject != null) + { + var resourceIdentifier = new ResourceIdentifier(SqlPoolObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.SqlPoolName = resourceIdentifier.ResourceName; + } + + return new SqlPoolSensitivityClassificationModel + { + ResourceGroupName = ResourceGroupName, + WorkspaceName = WorkspaceName, + SqlPoolName = SqlPoolName, + SensitivityLabels = new List() + { + new SensitivityLabelModel + { + SchemaName = SchemaName, + TableName = TableName, + ColumnName = ColumnName + } + } + }; + } + + protected override SqlPoolSensitivityClassificationModel PersistChanges(SqlPoolSensitivityClassificationModel entity) + { + ModelAdapter.DisableSensitivityRecommendations(entity); + return null; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/EnableAzureSynapseSqlPoolSensitivityRecommendation.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/EnableAzureSynapseSqlPoolSensitivityRecommendation.cs new file mode 100644 index 000000000000..563b48b0401f --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/EnableAzureSynapseSqlPoolSensitivityRecommendation.cs @@ -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. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet( + VerbsLifecycle.Enable, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + DataClassificationCommon.SqlPoolSensitivityRecommendation, + DefaultParameterSetName = DataClassificationCommon.InputObjectParameterSet, + SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class EnableAzureSynapseSqlPoolSensitivityRecommendation : ModifyAzureSynapseSqlPoolSensitivityRecommendationCmdlet + { + protected override SqlPoolSensitivityClassificationModel GetEntity() + { + if (InputObject != null) + { + return InputObject; + } + else if (SqlPoolObject != null) + { + var resourceIdentifier = new ResourceIdentifier(SqlPoolObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.SqlPoolName = resourceIdentifier.ResourceName; + } + + return new SqlPoolSensitivityClassificationModel + { + ResourceGroupName = ResourceGroupName, + WorkspaceName = WorkspaceName, + SqlPoolName = SqlPoolName, + SensitivityLabels = new List() + { + new SensitivityLabelModel + { + SchemaName = SchemaName, + TableName = TableName, + ColumnName = ColumnName + } + } + }; + } + + protected override SqlPoolSensitivityClassificationModel PersistChanges(SqlPoolSensitivityClassificationModel entity) + { + ModelAdapter.EnableSensitivityRecommendations(entity); + return null; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/GetAzureSynapseSqlPoolSensitivityClassification.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/GetAzureSynapseSqlPoolSensitivityClassification.cs new file mode 100644 index 000000000000..6907a96783ca --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/GetAzureSynapseSqlPoolSensitivityClassification.cs @@ -0,0 +1,164 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Commands.Synaspe.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + DataClassificationCommon.SqlPoolSensitivityClassification, + DefaultParameterSetName = DataClassificationCommon.SqlPoolObjectParameterSet), + OutputType(typeof(SqlPoolSensitivityClassificationModel))] + public class GetAzureSynapseSqlPoolSensitivityClassification : AzureSynapseSqlPoolManagementCmdletBase + { + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = DataClassificationCommon.ResourceGroupNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = DataClassificationCommon.ResourceGroupNameHelpMessage)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = DataClassificationCommon.WorkspaceNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = DataClassificationCommon.WorkspaceNameHelpMessage)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string WorkspaceName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = DataClassificationCommon.SqlPoolNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = DataClassificationCommon.SqlPoolNameHelpMessage)] + [ResourceNameCompleter(ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public override string SqlPoolName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = DataClassificationCommon.SqlPoolObjectHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = DataClassificationCommon.SqlPoolObjectHelpMessage)] + [ValidateNotNullOrEmpty] + public PSSynapseSqlPool SqlPoolObject { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.SchemaNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.SchemaNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string SchemaName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.TableNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.TableNameHelpMessage)] + public string TableName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.ColumnNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.ColumnNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string ColumnName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = DataClassificationCommon.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + protected override SqlPoolSensitivityClassificationModel GetEntity() + { + if (SqlPoolObject != null) + { + var resourceIdentifier = new ResourceIdentifier(SqlPoolObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.SqlPoolName = resourceIdentifier.ResourceName; + } + + return new SqlPoolSensitivityClassificationModel() + { + ResourceGroupName = ResourceGroupName, + WorkspaceName = WorkspaceName, + SqlPoolName = SqlPoolName, + SensitivityLabels = ParameterSetName == DataClassificationCommon.ColumnParameterSet || + ParameterSetName == DataClassificationCommon.SqlPoolObjectColumnParameterSet + ? ModelAdapter.GetCurrentSensitivityLabel( + ResourceGroupName, WorkspaceName, SqlPoolName, SchemaName, TableName, ColumnName) + : ModelAdapter.GetCurrentSensitivityLabels(ResourceGroupName, WorkspaceName, SqlPoolName) + }; + } + + protected override DataClassificationAdapter InitModelAdapter() + { + return new DataClassificationAdapter(DefaultProfile.DefaultContext); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/GetAzureSynapseSqlPoolSensitivityRecommendation.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/GetAzureSynapseSqlPoolSensitivityRecommendation.cs new file mode 100644 index 000000000000..1d0c907df853 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/GetAzureSynapseSqlPoolSensitivityRecommendation.cs @@ -0,0 +1,99 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using System.Management.Automation; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Commands.Synaspe.Models; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet( + VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + DataClassificationCommon.SqlPoolSensitivityRecommendation, + DefaultParameterSetName = DataClassificationCommon.SqlPoolObjectParameterSet), + OutputType(typeof(SqlPoolSensitivityClassificationModel))] + public class GetAzureSynapseSqlPoolSensitivityRecommendation : AzureSynapseSqlPoolManagementCmdletBase + { + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = DataClassificationCommon.ResourceGroupNameHelpMessage)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = DataClassificationCommon.WorkspaceNameHelpMessage)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string WorkspaceName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = DataClassificationCommon.SqlPoolNameHelpMessage)] + [ResourceNameCompleter(ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public override string SqlPoolName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = DataClassificationCommon.SqlPoolObjectHelpMessage)] + [ValidateNotNull] + public PSSynapseSqlPool SqlPoolObject { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = DataClassificationCommon.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + protected override SqlPoolSensitivityClassificationModel GetEntity() + { + if (SqlPoolObject != null) + { + var resourceIdentifier = new ResourceIdentifier(SqlPoolObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.SqlPoolName = resourceIdentifier.ResourceName; + } + + return new SqlPoolSensitivityClassificationModel() + { + ResourceGroupName = ResourceGroupName, + WorkspaceName = WorkspaceName, + SqlPoolName = SqlPoolName, + SensitivityLabels = ModelAdapter.GetRecommendedSensitivityLabels(ResourceGroupName, WorkspaceName, SqlPoolName) + }; + } + + protected override DataClassificationAdapter InitModelAdapter() + { + return new DataClassificationAdapter(DefaultProfile.DefaultContext); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSqlPoolSensitivityClassificationCmdlet.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSqlPoolSensitivityClassificationCmdlet.cs new file mode 100644 index 000000000000..8f843d0ea311 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSqlPoolSensitivityClassificationCmdlet.cs @@ -0,0 +1,29 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models.DataClassification; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + public abstract class ModifyAzureSqlPoolSensitivityClassificationCmdlet : ModifyAzureSynapseSqlPoolSensitivityCmdlet + { + [Parameter( + ParameterSetName = DataClassificationCommon.ClassificationObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = DataClassificationCommon.SqlPoolSensitivityClassificationObjectHelpMessage)] + [ValidateNotNull] + public SqlPoolSensitivityClassificationModel ClassificationObject { get; set; } + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSynapseSqlPoolSensitivityCmdlet.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSynapseSqlPoolSensitivityCmdlet.cs new file mode 100644 index 000000000000..f4d7570fae09 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSynapseSqlPoolSensitivityCmdlet.cs @@ -0,0 +1,117 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Commands.Synaspe.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + public abstract class ModifyAzureSynapseSqlPoolSensitivityCmdlet : AzureSynapseSqlPoolManagementCmdletBase + { + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = DataClassificationCommon.ResourceGroupNameHelpMessage)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public override string ResourceGroupName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = DataClassificationCommon.WorkspaceNameHelpMessage)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public override string WorkspaceName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = DataClassificationCommon.SqlPoolNameHelpMessage)] + [ResourceNameCompleter(ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public override string SqlPoolName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = DataClassificationCommon.SqlPoolObjectHelpMessage)] + [ValidateNotNull] + public PSSynapseSqlPool SqlPoolObject { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.SchemaNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.SchemaNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string SchemaName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.TableNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.TableNameHelpMessage)] + public string TableName { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.ColumnNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.ColumnNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string ColumnName { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = DataClassificationCommon.PassThruHelpMessage)] + public SwitchParameter PassThru { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = DataClassificationCommon.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + protected override DataClassificationAdapter InitModelAdapter() => new DataClassificationAdapter(DefaultProfile.DefaultContext); + + protected override bool WriteResult() => PassThru; + + protected override object TransformModelToOutputObject(SqlPoolSensitivityClassificationModel model) => true; + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSynapseSqlPoolSensitivityRecommendationCmdlet.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSynapseSqlPoolSensitivityRecommendationCmdlet.cs new file mode 100644 index 000000000000..c84c8ff38b86 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/ModifyAzureSynapseSqlPoolSensitivityRecommendationCmdlet.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + public abstract class ModifyAzureSynapseSqlPoolSensitivityRecommendationCmdlet : ModifyAzureSynapseSqlPoolSensitivityCmdlet + { + [Parameter( + ParameterSetName = DataClassificationCommon.InputObjectParameterSet, + Mandatory = true, + ValueFromPipeline = true, + HelpMessage = DataClassificationCommon.SqlPoolSensitivityClassificationObjectHelpMessage)] + [ValidateNotNull] + [Alias(DataClassificationCommon.InputObjectParameterAlias)] + public SqlPoolSensitivityClassificationModel InputObject { get; set; } + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/RemoveAzureSynapseSqlPoolSensitivityClassification.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/RemoveAzureSynapseSqlPoolSensitivityClassification.cs new file mode 100644 index 000000000000..47c024a8d0f4 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/RemoveAzureSynapseSqlPoolSensitivityClassification.cs @@ -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. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet( + VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + DataClassificationCommon.SqlPoolSensitivityClassification, + DefaultParameterSetName = DataClassificationCommon.ClassificationObjectParameterSet, + SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class RemoveAzureSynapseSqlPoolSensitivityClassification : ModifyAzureSqlPoolSensitivityClassificationCmdlet + { + protected override SqlPoolSensitivityClassificationModel GetEntity() + { + if (ClassificationObject != null) + { + return ClassificationObject; + } + else if (SqlPoolObject != null) + { + var resourceIdentifier = new ResourceIdentifier(SqlPoolObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.SqlPoolName = resourceIdentifier.ResourceName; + } + + return new SqlPoolSensitivityClassificationModel + { + ResourceGroupName = ResourceGroupName, + WorkspaceName = WorkspaceName, + SqlPoolName = SqlPoolName, + SensitivityLabels = new List() + { + new SensitivityLabelModel + { + SchemaName = SchemaName, + TableName = TableName, + ColumnName = ColumnName + } + } + }; + } + + protected override SqlPoolSensitivityClassificationModel PersistChanges(SqlPoolSensitivityClassificationModel entity) + { + ModelAdapter.RemoveSensitivityLabels(entity); + return null; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/SetAzureSynapseSqlPoolSensitivityClassification.cs b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/SetAzureSynapseSqlPoolSensitivityClassification.cs new file mode 100644 index 000000000000..404879747f99 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/DataClassification/SetAzureSynapseSqlPoolSensitivityClassification.cs @@ -0,0 +1,136 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Rest.Azure; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Net; + +namespace Microsoft.Azure.Commands.Synapse +{ + [Cmdlet( + VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + DataClassificationCommon.SqlPoolSensitivityClassification, + DefaultParameterSetName = DataClassificationCommon.ClassificationObjectParameterSet, + SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class SetAzureSynapseSqlPoolSensitivityClassification : ModifyAzureSqlPoolSensitivityClassificationCmdlet + { + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.LabelNameHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.LabelNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string SensitivityLabel { get; set; } + + [Parameter( + ParameterSetName = DataClassificationCommon.ColumnParameterSet, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.InformationTypeHelpMessage)] + [Parameter( + ParameterSetName = DataClassificationCommon.SqlPoolObjectColumnParameterSet, + Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = DataClassificationCommon.InformationTypeHelpMessage)] + [ValidateNotNullOrEmpty] + public string InformationType { get; set; } + + protected override SqlPoolSensitivityClassificationModel GetEntity() + { + if (ClassificationObject != null) + { + ResourceGroupName = ClassificationObject.ResourceGroupName; + WorkspaceName = ClassificationObject.WorkspaceName; + SqlPoolName = ClassificationObject.SqlPoolName; + } + else if (SqlPoolObject != null) + { + var resourceIdentifier = new ResourceIdentifier(SqlPoolObject.Id); + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + this.WorkspaceName = resourceIdentifier.ParentResource; + this.WorkspaceName = this.WorkspaceName.Substring(this.WorkspaceName.LastIndexOf('/') + 1); + this.SqlPoolName = resourceIdentifier.ResourceName; + } + + List sensitivityLabels = null; + try + { + sensitivityLabels = ParameterSetName == DataClassificationCommon.ColumnParameterSet + || ParameterSetName == DataClassificationCommon.SqlPoolObjectColumnParameterSet + ? ModelAdapter.GetCurrentSensitivityLabel(ResourceGroupName, WorkspaceName, SqlPoolName, SchemaName, TableName, ColumnName) + : ModelAdapter.GetCurrentSensitivityLabels(ResourceGroupName, WorkspaceName, SqlPoolName); + } + catch (CloudException e) + { + if (e.Response.StatusCode != HttpStatusCode.NotFound || e.Message != "The specified sensitivity label could not be found") + { + throw; + } + } + + return new SqlPoolSensitivityClassificationModel + { + ResourceGroupName = ResourceGroupName, + WorkspaceName = WorkspaceName, + SqlPoolName = SqlPoolName, + SensitivityLabels = sensitivityLabels ?? new List() + }; + } + + protected override SqlPoolSensitivityClassificationModel ApplyUserInputToModel(SqlPoolSensitivityClassificationModel model) + { + InformationProtectionPolicy informationProtectionPolicy = ModelAdapter.RetrieveInformationProtectionPolicyAsync().Result; + if (ParameterSetName == DataClassificationCommon.ColumnParameterSet || + ParameterSetName == DataClassificationCommon.SqlPoolObjectColumnParameterSet) + { + SensitivityLabelModel sensitivityLabelModel = model.SensitivityLabels.FirstOrDefault(); + if (sensitivityLabelModel == null) + { + sensitivityLabelModel = new SensitivityLabelModel + { + SchemaName = SchemaName, + TableName = TableName, + ColumnName = ColumnName, + }; + + model.SensitivityLabels.Add(sensitivityLabelModel); + } + + sensitivityLabelModel.ApplyInput(InformationType, SensitivityLabel, informationProtectionPolicy); + } + else + { + model.ApplyModel(ClassificationObject, informationProtectionPolicy); + } + + return model; + } + + protected override SqlPoolSensitivityClassificationModel PersistChanges(SqlPoolSensitivityClassificationModel entity) + { + ModelAdapter.SetSensitivityLabels(entity); + return null; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool Backup/RestoreAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool Backup/RestoreAzureSynapseSqlPool.cs index 528929a706f5..fb80fa706510 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool Backup/RestoreAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool Backup/RestoreAzureSynapseSqlPool.cs @@ -313,7 +313,7 @@ public override void ExecuteCmdlet() if (this.ShouldProcess(this.Name, string.Format(Resources.RestoringSynapseSqlPool, this.BackupSqlPoolName, this.ResourceGroupName, this.WorkspaceName, this.Name))) { - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.CreateSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); + var result = new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.SynapseAnalyticsClient.CreateSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); WriteObject(result); } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs index 0372af1accac..e5c3ff05e8ed 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/GetAzureSynapseSqlPool.cs @@ -35,6 +35,7 @@ public class GetAzureSynapseSqlPool : SynapseManagementCmdletBase ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } @@ -84,12 +85,12 @@ public override void ExecuteCmdlet() { if (!string.IsNullOrEmpty(this.Name)) { - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); + var result = new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); WriteObject(result); } else { - var result = this.SynapseAnalyticsClient.ListSqlPools(this.ResourceGroupName, this.WorkspaceName).Select(r => new PSSynapseSqlPool(r)); + var result = this.SynapseAnalyticsClient.ListSqlPools(this.ResourceGroupName, this.WorkspaceName).Select(r => new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, r)); WriteObject(result, true); } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs index 7ffe54853121..50b459f14ada 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/NewAzureSynapseSqlPool.cs @@ -7,7 +7,6 @@ using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.Azure.Management.Synapse.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; -using System; using System.Collections; using System.Management.Automation; using Sku = Microsoft.Azure.Management.Synapse.Models.Sku; @@ -39,6 +38,7 @@ public class NewAzureSynapseSqlPool : SynapseManagementCmdletBase public PSSynapseWorkspace WorkspaceObject { get; set; } [Parameter(Mandatory = true, HelpMessage = HelpMessages.SqlPoolName)] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } @@ -140,7 +140,7 @@ public override void ExecuteCmdlet() if (this.ShouldProcess(this.Name, string.Format(Resources.CreatingSynapseSqlPool, this.ResourceGroupName, this.WorkspaceName, this.Name))) { - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.CreateSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); + var result = new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.SynapseAnalyticsClient.CreateSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, createParams)); WriteObject(result); } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs index 788353e56dfa..4d83e319a315 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/RemoveAzureSynapseSqlPool.cs @@ -33,6 +33,7 @@ public class RemoveAzureSynapseSqlPool : SynapseManagementCmdletBase ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/ResumeAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/ResumeAzureSynapseSqlPool.cs index d3442894ae3f..2e59ff5bfdd4 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/ResumeAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/ResumeAzureSynapseSqlPool.cs @@ -36,6 +36,7 @@ public class ResumeAzureSynapseSqlPool : SynapseManagementCmdletBase ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } @@ -109,7 +110,7 @@ public override void ExecuteCmdlet() if (this.ShouldProcess(this.Name, string.Format(Resources.ResumingSynapseSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName))) { this.SynapseAnalyticsClient.ResumeSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name); - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); + var result = new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); WriteObject(result); } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/SuspendAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/SuspendAzureSynapseSqlPool.cs index 225a7723b115..3c57d972135b 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/SuspendAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/SuspendAzureSynapseSqlPool.cs @@ -36,6 +36,7 @@ public class SuspendAzureSynapseSqlPool : SynapseManagementCmdletBase ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } @@ -109,7 +110,7 @@ public override void ExecuteCmdlet() if (this.ShouldProcess(this.Name, string.Format(Resources.SuspendingSynapseSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName))) { this.SynapseAnalyticsClient.PauseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name); - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); + var result = new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name)); WriteObject(result); } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs index 71953381a01e..c0ef24b0e4fb 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/TestAzureSynapseSqlPool.cs @@ -32,6 +32,7 @@ public class TestAzureSynapseSqlPool : SynapseManagementCmdletBase ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs index dad372a39f49..a47fe8b09e32 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SqlPool/UpdateAzureSynapseSqlPool.cs @@ -43,6 +43,7 @@ public class UpdateAzureSynapseSqlPool : SynapseManagementCmdletBase ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } @@ -243,7 +244,7 @@ private void RenameSqlPool() if (this.ShouldProcess(this.Name, string.Format(Resources.UpdatingSynapseSqlPool, this.Name, this.ResourceGroupName, this.WorkspaceName))) { this.SynapseAnalyticsClient.RenameSqlPool(this.ResourceGroupName, this.WorkspaceName, this.Name, this.NewName); - var result = new PSSynapseSqlPool(this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.NewName)); + var result = new PSSynapseSqlPool(this.ResourceGroupName, this.WorkspaceName, this.SynapseAnalyticsClient.GetSqlPool(this.ResourceGroupName, this.WorkspaceName, this.NewName)); WriteObject(result); } } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/SqlVulnerabilityAssessmentAtpCmdletBase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/SqlVulnerabilityAssessmentAtpCmdletBase.cs new file mode 100644 index 000000000000..18ea246698c5 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/SqlVulnerabilityAssessmentAtpCmdletBase.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models.VulnerabilityAssessment +{ + /// + /// The base class for set policy Azure Sql Pool Vulnerability Assessment Management Cmdlet + /// + public abstract class SqlVulnerabilityAssessmentAtpCmdletBase : AzureSynapseSqlManagementCmdletBase where A : BaseSqlVulnerabilityAssessmentAdapter + { + /// + /// Gets the resource group name + /// + protected virtual string GetResourceGroupName() + { + return ResourceGroupName; + } + + /// + /// Gets the workspace name + /// + protected abstract string GetWorkspaceName(); + + /// + /// Gets the SQL pool name + /// + protected abstract string GetSqlPoolName(); + + /// + /// Gets the resource type that VA applies to (VA could be applied on SQL pool or workspace) + /// + protected abstract ApplyToType GetResourceTypeVaAppliesTo(); + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentCommon.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentCommon.cs new file mode 100644 index 000000000000..3c7bbc132728 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentCommon.cs @@ -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. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Synapse.Common; + +namespace Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment +{ + public static class VulnerabilityAssessmentCommon + { + internal const string ClearByParentResourceParameterSet = "ClearByParentResourceParameterSet"; + internal const string ClearByNameParameterSet = "ClearByNameParameterSet"; + internal const string GetByParentResourceParameterSet = "GetByParentResourceParameterSet"; + internal const string GetByNameParameterSet = "GetByNameParameterSet"; + internal const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + internal const string SetByNameParameterSet = "SetByNameParameterSet"; + internal const string SqlPoolVulnerabilityAssessmentRuleBaseline = nameof(SqlPoolVulnerabilityAssessmentRuleBaseline); + + internal const string ResourceGroupNameHelpMessage = HelpMessages.ResourceGroupName; + internal const string WorkspaceNameHelpMessage = HelpMessages.WorkspaceName; + internal const string SqlPoolNameHelpMessage = HelpMessages.SqlPoolName; + internal const string SqlPoolObjectHelpMessage = HelpMessages.SqlPoolObject; + internal const string RuleBaselineObjectHelpMessage = "The Vulnerability Assessment rule baseline object to set"; + internal const string BaselineResultHelpMessage = "The results to set as baseline for the rule in all future scans"; + internal const string RuleIdHelpMessage = "The rule ID which identifies the rule to set the baseline results to."; + internal const string RuleAppliesToMasterHelpMessage = "Specifies whether the baseline results should apply on a workspace level rule identified by the RuleId"; + internal const string PassThruHelpMessage = HelpMessages.PassThru; + internal const string AsJobHelpMessage = HelpMessages.AsJob; + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/ClearSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/ClearSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs new file mode 100644 index 000000000000..67356cb56903 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/ClearSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs @@ -0,0 +1,103 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// Clears the baseline on a specific rule. + /// + [Cmdlet(VerbsCommon.Clear, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + VulnerabilityAssessmentCommon.SqlPoolVulnerabilityAssessmentRuleBaseline, + SupportsShouldProcess = true), + OutputType(typeof(SqlPoolVulnerabilityAssessmentRuleBaselineModel))] + public class ClearSynapseSqlPoolVulnerabilityAssessmentRuleBaseline : ClearSynapseSqlVulnerabilityAssessmentRuleBaselineBase + { + /// + /// Gets or sets the name of the workspace to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = VulnerabilityAssessmentCommon.WorkspaceNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the name of the SQL pool to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = VulnerabilityAssessmentCommon.SqlPoolNameHelpMessage)] + [Alias(nameof(SynapseConstants.SqlPoolName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + /// + /// SQL pool resource + /// + [Parameter(ParameterSetName = VulnerabilityAssessmentCommon.ClearByParentResourceParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = VulnerabilityAssessmentCommon.SqlPoolObjectHelpMessage)] + [ValidateNotNullOrEmpty] + public PSSynapseSqlPool InputObject { get; set; } + + protected override string GetResourceGroupName() + { + return base.GetResourceGroupName(); + } + + protected override string GetWorkspaceName() + { + return this.WorkspaceName; + } + + protected override string GetSqlPoolName() + { + return this.Name; + } + + protected override ApplyToType GetResourceTypeVaAppliesTo() + { + return ApplyToType.SqlPool; + } + + protected override VulnerabilityAssessmentRuleBaselineModel GetEntity() + { + if (InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.WorkspaceName = this.InputObject.WorkspaceName; + this.Name = this.InputObject.SqlPoolName; + } + + return base.GetEntity(); + } + + /// + /// Transforms the given model object to be an object that is written out + /// + /// The about to be written model object + /// The prepared object to be written out + protected override object TransformModelToOutputObject(VulnerabilityAssessmentRuleBaselineModel model) + { + return new SqlPoolVulnerabilityAssessmentRuleBaselineModel(model, GetWorkspaceName(), GetSqlPoolName()); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/ClearSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/ClearSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs new file mode 100644 index 000000000000..ffc3af0e9425 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/ClearSynapseSqlVulnerabilityAssessmentRuleBaselineBase.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.Synapse.Models.VulnerabilityAssessment; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// Clears the baseline on a specific rule. + /// + public abstract class ClearSynapseSqlVulnerabilityAssessmentRuleBaselineBase : SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase + { + /// + /// Returns true if the model object that was constructed by this cmdlet should be written out + /// + /// True if the model object should be written out, False otherwise + protected override bool WriteResult() { return false; } + + /// + /// Provides the model element that this cmdlet operates on + /// + /// A model object + protected override VulnerabilityAssessmentRuleBaselineModel GetEntity() + { + // No need to get the entity from the backend + return new VulnerabilityAssessmentRuleBaselineModel() + { + ResourceGroupName = GetResourceGroupName(), + RuleId = RuleId, + RuleAppliesToMaster = RuleAppliesToMaster.IsPresent || GetSqlPoolName() == "master" + }; + } + + /// + /// No sending is needed as this is a Get cmdlet + /// + /// The model object with the data to be sent to the REST endpoints + protected override VulnerabilityAssessmentRuleBaselineModel PersistChanges(VulnerabilityAssessmentRuleBaselineModel model) + { + ModelAdapter.ClearVulnerabilityAssessmentRuleBaseline(model, GetWorkspaceName(), GetSqlPoolName(), GetResourceTypeVaAppliesTo()); + return model; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/GetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/GetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs new file mode 100644 index 000000000000..572ff6bb88fd --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/GetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs @@ -0,0 +1,102 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// Returns the Vulnerability Assessment Rule Baseline of a specific SQL pool. + /// + [Cmdlet(VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + VulnerabilityAssessmentCommon.SqlPoolVulnerabilityAssessmentRuleBaseline), + OutputType(typeof(SqlPoolVulnerabilityAssessmentRuleBaselineModel))] + public class GetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline : GetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase + { + /// + /// Gets or sets the name of the workspace to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = VulnerabilityAssessmentCommon.WorkspaceNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the name of the SQL pool to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = VulnerabilityAssessmentCommon.SqlPoolNameHelpMessage)] + [Alias(nameof(SynapseConstants.SqlPoolName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + /// + /// SQL pool resource + /// + [Parameter(ParameterSetName = VulnerabilityAssessmentCommon.GetByParentResourceParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = VulnerabilityAssessmentCommon.SqlPoolObjectHelpMessage)] + [ValidateNotNullOrEmpty] + public PSSynapseSqlPool InputObject { get; set; } + + protected override string GetResourceGroupName() + { + return base.GetResourceGroupName(); + } + + protected override string GetWorkspaceName() + { + return this.WorkspaceName; + } + + protected override string GetSqlPoolName() + { + return this.Name; + } + + protected override ApplyToType GetResourceTypeVaAppliesTo() + { + return ApplyToType.SqlPool; + } + + protected override VulnerabilityAssessmentRuleBaselineModel GetEntity() + { + if (InputObject != null) + { + this.ResourceGroupName = this.InputObject.ResourceGroupName; + this.WorkspaceName = this.InputObject.WorkspaceName; + this.Name = this.InputObject.SqlPoolName; + } + + return base.GetEntity(); + } + + /// + /// Transforms the given model object to be an object that is written out + /// + /// The about to be written model object + /// The prepared object to be written out + protected override object TransformModelToOutputObject(VulnerabilityAssessmentRuleBaselineModel model) + { + return new SqlPoolVulnerabilityAssessmentRuleBaselineModel(model, GetWorkspaceName(), GetSqlPoolName()); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/GetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/GetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs new file mode 100644 index 000000000000..b6aeb1e371e0 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/GetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs @@ -0,0 +1,45 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models.VulnerabilityAssessment; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// Returns the Vulnerability Assessment Rule Baseline of a specific SQL pool. + /// + public abstract class GetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase : SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase + { + /// + /// Provides the model element that this cmdlet operates on + /// + /// A model object + protected override VulnerabilityAssessmentRuleBaselineModel GetEntity() + { + string ruleId = RuleId; + bool ruleAppliesToMaster = RuleAppliesToMaster.IsPresent; + + return ModelAdapter.GetVulnerabilityAssessmentRuleBaseline(GetResourceGroupName(), GetWorkspaceName(), GetSqlPoolName(), ruleId, ruleAppliesToMaster, GetResourceTypeVaAppliesTo()); + } + + /// + /// No sending is needed as this is a Get cmdlet + /// + /// The model object with the data to be sent to the REST endpoints + protected override VulnerabilityAssessmentRuleBaselineModel PersistChanges(VulnerabilityAssessmentRuleBaselineModel model) + { + return model; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs new file mode 100644 index 000000000000..5becd321e3c0 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.cs @@ -0,0 +1,118 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Management.Automation; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// Sets the Vulnerability Assessment baseline properties for a specific rule. + /// + [Cmdlet(VerbsCommon.Set, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + SynapseConstants.SynapsePrefix + VulnerabilityAssessmentCommon.SqlPoolVulnerabilityAssessmentRuleBaseline, + SupportsShouldProcess = true), + OutputType(typeof(SqlPoolVulnerabilityAssessmentRuleBaselineModel))] + public class SetAzureSynapseSqlPoolVulnerabilityAssessmentRuleBaseline : SetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase + { + /// + /// Gets or sets the name of the workspace to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = VulnerabilityAssessmentCommon.WorkspaceNameHelpMessage)] + [ValidateNotNullOrEmpty] + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the name of the SQL pool to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = VulnerabilityAssessmentCommon.SqlPoolNameHelpMessage)] + [Alias(nameof(SynapseConstants.SqlPoolName))] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + protected override string GetResourceGroupName() + { + if (string.Equals(this.ParameterSetName, VulnerabilityAssessmentCommon.SetByInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + SqlPoolVulnerabilityAssessmentRuleBaselineModel sqlPoolInputObject = InputObject as SqlPoolVulnerabilityAssessmentRuleBaselineModel; + + if (sqlPoolInputObject == null) + { + throw new Exception(Properties.Resources.VulnerabilityAssessmentWrongParameterType); + } + + return sqlPoolInputObject.ResourceGroupName; + } + + return base.GetResourceGroupName(); + } + + protected override string GetWorkspaceName() + { + if (string.Equals(this.ParameterSetName, VulnerabilityAssessmentCommon.SetByInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + SqlPoolVulnerabilityAssessmentRuleBaselineModel sqlPoolInputObject = InputObject as SqlPoolVulnerabilityAssessmentRuleBaselineModel; + + if (sqlPoolInputObject == null) + { + throw new Exception(Properties.Resources.VulnerabilityAssessmentWrongParameterType); + } + + return sqlPoolInputObject.WorkspaceName; + } + + return WorkspaceName; + } + + protected override string GetSqlPoolName() + { + if (string.Equals(this.ParameterSetName, VulnerabilityAssessmentCommon.SetByInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + SqlPoolVulnerabilityAssessmentRuleBaselineModel sqlPoolInputObject = InputObject as SqlPoolVulnerabilityAssessmentRuleBaselineModel; + + if (sqlPoolInputObject == null) + { + throw new Exception(Properties.Resources.VulnerabilityAssessmentWrongParameterType); + } + + return sqlPoolInputObject.SqlPoolName; + } + + return Name; + } + + protected override ApplyToType GetResourceTypeVaAppliesTo() + { + return ApplyToType.SqlPool; + } + + /// + /// Transforms the given model object to be an object that is written out + /// + /// The about to be written model object + /// The prepared object to be written out + protected override object TransformModelToOutputObject(VulnerabilityAssessmentRuleBaselineModel model) + { + return new SqlPoolVulnerabilityAssessmentRuleBaselineModel(model, GetWorkspaceName(), GetSqlPoolName()); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs new file mode 100644 index 000000000000..a27db0365248 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase.cs @@ -0,0 +1,117 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment; +using System; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// Sets the Vulnerability Assessment baseline properties for a specific rule. + /// + public abstract class SetAzureSynapseSqlVulnerabilityAssessmentRuleBaselineBase : SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase + { + /// + /// Vulnerability Assessment rule baseline object to set + /// + [Parameter(ParameterSetName = VulnerabilityAssessmentCommon.SetByInputObjectParameterSet, + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = VulnerabilityAssessmentCommon.RuleBaselineObjectHelpMessage)] + [ValidateNotNullOrEmpty] + public VulnerabilityAssessmentRuleBaselineModel InputObject { get; set; } + + /// + /// Gets or sets the Vulnerability Assessment Baseline result + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = VulnerabilityAssessmentCommon.BaselineResultHelpMessage)] + [ValidateNotNullOrEmpty] + public string[][] BaselineResult { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = VulnerabilityAssessmentCommon.AsJobHelpMessage)] + public SwitchParameter AsJob { get; set; } + + /// + /// Updates the given model element with the cmdlet specific operation + /// + /// A model object + protected override VulnerabilityAssessmentRuleBaselineModel ApplyUserInputToModel(VulnerabilityAssessmentRuleBaselineModel model) + { + base.ApplyUserInputToModel(model); + + if (string.Equals(this.ParameterSetName, VulnerabilityAssessmentCommon.SetByInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + model.BaselineResult = InputObject.BaselineResult; + model.RuleId = InputObject.RuleId; + return model; + } + + model.BaselineResult = new List(); + foreach (var baselineResult in BaselineResult) + { + var ruleBaselineItem = new VulnerabilityAssessmentRuleBaselineRowModel() + { + Result = baselineResult + }; + + model.BaselineResult.Add(ruleBaselineItem); + } + + model.RuleId = RuleId; + model.RuleAppliesToMaster = RuleAppliesToMaster.IsPresent || GetSqlPoolName() == "master"; + return model; + } + + /// + /// Provides the model element that this cmdlet operates on + /// + /// A model object + protected override VulnerabilityAssessmentRuleBaselineModel GetEntity() + { + if (string.Equals(this.ParameterSetName, VulnerabilityAssessmentCommon.SetByInputObjectParameterSet, StringComparison.OrdinalIgnoreCase)) + { + return new VulnerabilityAssessmentRuleBaselineModel() + { + ResourceGroupName = InputObject.ResourceGroupName, + RuleId = InputObject.RuleId, + RuleAppliesToMaster = InputObject.RuleAppliesToMaster + }; + } + + // No need to get the entity from the backend + return new VulnerabilityAssessmentRuleBaselineModel() + { + ResourceGroupName = ResourceGroupName, + RuleId = RuleId, + RuleAppliesToMaster = RuleAppliesToMaster.IsPresent + }; + } + + /// + /// This method is responsible to call the right API in the communication layer that will eventually send the information in the + /// object to the REST endpoint + /// + /// The model object with the data to be sent to the REST endpoints + protected override VulnerabilityAssessmentRuleBaselineModel PersistChanges(VulnerabilityAssessmentRuleBaselineModel model) + { + ModelAdapter.SetVulnerabilityAssessmentRuleBaseline(model, GetWorkspaceName(), GetSqlPoolName(), GetResourceTypeVaAppliesTo()); + return model; + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase.cs new file mode 100644 index 000000000000..4078ea1deb64 --- /dev/null +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaseline/SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase.cs @@ -0,0 +1,51 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models.VulnerabilityAssessment; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synapse +{ + /// + /// The base class for all Azure Sql SQL pool Vulnerability Assessment Rule Baseline Management Cmdlets + /// + public abstract class SqlPoolVulnerabilityAssessmentRuleBaselineCmdletBase : SqlVulnerabilityAssessmentAtpCmdletBase + { + /// + /// Gets or sets the rule ID which identifies the rule to set the baseline results to. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = VulnerabilityAssessmentCommon.RuleIdHelpMessage)] + [ValidateNotNullOrEmpty] + public string RuleId { get; set; } + + /// + /// Gets or sets a value indicating whether the baseline results should apply on a workspace level rule identified by the RuleId + /// + [Parameter(Mandatory = false, + ValueFromPipelineByPropertyName = true, + HelpMessage = VulnerabilityAssessmentCommon.RuleAppliesToMasterHelpMessage)] + public SwitchParameter RuleAppliesToMaster { get; set; } + + /// + /// Creation and initialization of the ModelAdapter object + /// + /// An initialized and ready to use ModelAdapter object + protected override SqlVulnerabilityAssessmentRuleBaselineAdapter InitModelAdapter() + { + return new SqlVulnerabilityAssessmentRuleBaselineAdapter(DefaultProfile.DefaultContext); + } + } +} diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/ClearAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/ClearAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs index 5d9cf004317f..51b734685d54 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/ClearAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/ClearAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs @@ -35,6 +35,7 @@ public class ClearAzureSynapseSqlPoolVulnerabilityAssessmentSetting : SynapseMan ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/GetAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/GetAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs index 39bc8b14c3bb..c9c873f3744e 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/GetAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/GetAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs @@ -32,6 +32,7 @@ public class GetAzureSynapseSqlPoolVulnerabilityAssessmentSetting : SynapseManag ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/UpdateAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/UpdateAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs index 7e5edadc6e8b..8168c82f5778 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/UpdateAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/VulnerabilityAssessment/VulnerabilityAssessmentSettings/UpdateAzureSynapseSqlPoolVulnerabilityAssessmentSetting.cs @@ -43,6 +43,7 @@ public class UpdateAzureSynapseSqlPoolVulnerabilityAssessmentSetting : SynapseMa ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [Alias(nameof(SynapseConstants.SqlPoolName))] [ValidateNotNullOrEmpty] public string Name { get; set; } diff --git a/src/Synapse/Synapse/Common/AzureEndpointsCommunicator.cs b/src/Synapse/Synapse/Common/AzureEndpointsCommunicator.cs new file mode 100644 index 000000000000..fdf68ab0f6d7 --- /dev/null +++ b/src/Synapse/Synapse/Common/AzureEndpointsCommunicator.cs @@ -0,0 +1,560 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Synapse.Models; +using Microsoft.Azure.Commands.Synapse.Models.DataClassification; +using Microsoft.Azure.Management.Internal.Resources; +using Microsoft.Azure.Management.Internal.Resources.Models; +using Microsoft.Azure.Management.Storage.Version2017_10_01; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Text; +using System.Threading; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Synapse.Common +{ + /// + /// This class is responsible for all the REST communication with the management libraries + /// + public class AzureEndpointsCommunicator + { + /// + /// The storage management client used by this communicator + /// + private static StorageManagementClient StorageV2Client { get; set; } + + /// + /// Gets or sets the Azure subscription + /// + private static IAzureSubscription Subscription { get; set; } + + /// + /// The resources management client used by this communicator + /// + private static ResourceManagementClient ResourcesClient { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + /// + /// Default Constructor. + /// + /// The Azure context + public AzureEndpointsCommunicator(IAzureContext context) + { + Context = context; + if (context?.Subscription != Subscription) + { + Subscription = context?.Subscription; + ResourcesClient = null; + StorageV2Client = null; + } + } + + private static class StorageAccountType + { + public const string ClassicStorage = "Microsoft.ClassicStorage/storageAccounts"; + public const string Storage = "Microsoft.Storage/storageAccounts"; + } + + /// + /// Lazy creation of a single instance of a storage client + /// + public static StorageManagementClient GetStorageV2Client(IAzureContext context) + { + // TODO: Remove IfDef +#if NETSTANDARD + return AzureSession.Instance.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); +#else + return AzureSession.Instance.ClientFactory.CreateClient(context, AzureEnvironment.Endpoint.ResourceManager); +#endif + } + + /// + /// Provides the storage keys for the storage account within the given resource group + /// + /// A dictionary with two entries, one for each possible key type with the appropriate key + public async Task> GetStorageKeysAsync(string resourceGroupName, string storageAccountName) + { + var client = GetCurrentStorageV2Client(); + + var url = Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager).ToString(); + if (!url.EndsWith("/")) + { + url = url + "/"; + } + // TODO: Remove IfDef +#if NETSTANDARD + url = url + "subscriptions/" + (client.SubscriptionId != null ? client.SubscriptionId.Trim() : ""); +#else + url = url + "subscriptions/" + (client.Credentials.SubscriptionId != null ? client.Credentials.SubscriptionId.Trim() : ""); +#endif + url = url + "/resourceGroups/" + resourceGroupName; + url = url + "/providers/Microsoft.ClassicStorage/storageAccounts/" + storageAccountName; + url = url + "/listKeys?api-version=2014-06-01"; + + var httpRequest = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri(url) }; + + await client.Credentials.ProcessHttpRequestAsync(httpRequest, CancellationToken.None).ConfigureAwait(false); + var httpResponse = await client.HttpClient.SendAsync(httpRequest, CancellationToken.None).ConfigureAwait(false); + var responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + var result = new Dictionary(); + try + { + var responseDoc = JToken.Parse(responseContent); + var primaryKey = (string)responseDoc["primaryKey"]; + var secondaryKey = (string)responseDoc["secondaryKey"]; + if (string.IsNullOrEmpty(primaryKey) || string.IsNullOrEmpty(secondaryKey)) + { + throw new Exception(); // this is caught by the synced wrapper + } + + result.Add(StorageKeyKind.Primary, primaryKey); + result.Add(StorageKeyKind.Secondary, secondaryKey); + return result; + } + catch + { + return GetV2Keys(resourceGroupName, storageAccountName); + } + } + + private Dictionary GetV2Keys(string resourceGroupName, string storageAccountName) + { + var storageClient = GetCurrentStorageV2Client(); + var r = storageClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName); + // TODO: Remove IfDef +#if NETSTANDARD + var k1 = r.Keys[0].Value; + var k2 = r.Keys[1].Value; +#else + string k1 = r.StorageAccountKeys.Key1; + string k2 = r.StorageAccountKeys.Key2; +#endif + var result = new Dictionary + { + {StorageKeyKind.Primary, k1}, {StorageKeyKind.Secondary, k2} + }; + return result; + } + + /// + /// Gets the storage keys for the given storage account. + /// + public Dictionary GetStorageKeys(string resourceGroupName, string storageAccountName) + { + try + { + return GetStorageKeysAsync(resourceGroupName, storageAccountName).GetAwaiter().GetResult(); + } + catch (Exception e) + { + throw new Exception(string.Format(Properties.Resources.StorageAccountNotFound, storageAccountName), e); + } + } + + /// + /// Returns the resource group of the provided storage account + /// + public string GetStorageResourceGroup(string storageAccountName) + { + var resourcesClient = GetCurrentResourcesClient(Context); + + foreach (var storageAccountType in new[] { StorageAccountType.ClassicStorage, StorageAccountType.Storage }) + { + var resourceGroup = GetStorageResourceGroup( + resourcesClient, + storageAccountName, + storageAccountType); + + if (resourceGroup != null) + { + return resourceGroup; + } + } + + throw new Exception(string.Format(Properties.Resources.StorageAccountNotFound, storageAccountName)); + } + + private static string GetStorageResourceGroup( + ResourceManagementClient resourcesClient, + string storageAccountName, + string resourceType) + { + var query = new Rest.Azure.OData.ODataQuery(r => r.ResourceType == resourceType); + var res = resourcesClient.Resources.List(query); + var allResources = new List(res); + var account = allResources.Find(r => r.Name == storageAccountName); + if (account == null) + { + return null; + } + + var resId = account.Id; + var segments = resId.Split('/'); + var indexOfResourceGroup = new List(segments).IndexOf("resourceGroups") + 1; + return segments[indexOfResourceGroup]; + } + + public Dictionary GetStorageKeys(string storageName) + { + var resourceGroup = GetStorageResourceGroup(storageName); + return GetStorageKeys(resourceGroup, storageName); + } + + /// + /// Lazy creation of a single instance of a storage client + /// + private StorageManagementClient GetCurrentStorageV2Client() + { + return StorageV2Client ?? (StorageV2Client = GetStorageV2Client(Context)); + } + + /// + /// Lazy creation of a single instance of a resources client + /// + private ResourceManagementClient GetCurrentResourcesClient(IAzureContext context) + { + return ResourcesClient ?? (ResourcesClient = + AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager)); + } + + /// + /// Retrieves storage account keys. + /// + /// Storage account id + /// Dictionary containing storage keys + internal async Task> RetrieveStorageKeysAsync(string storageAccountId) + { + var isClassicStorage = IsClassicStorage(storageAccountId); + + // Build a URI for calling corresponding REST-API + // + var uriBuilder = new StringBuilder(Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager).ToString()); + uriBuilder.AppendFormat("{0}/listKeys?api-version={1}", + storageAccountId, + isClassicStorage ? ClassicStorageListKeysApiVersion : NonClassicStorageListKeysApiVersion); + + // Define an exception to be thrown on failure. + // + var exception = new Exception(string.Format(Properties.Resources.RetrievingStorageAccountKeysFailed, storageAccountId)); + + // Call the URI and get storage account keys. + // + var storageAccountKeysResponse = await SendAsync(uriBuilder.ToString(), HttpMethod.Post, exception); + + // Extract keys out of response. + // + var storageAccountKeys = new Dictionary(); + string primaryKey; + string secondaryKey; + if (isClassicStorage) + { + primaryKey = (string)storageAccountKeysResponse[PrimaryKey]; + secondaryKey = (string)storageAccountKeysResponse[SecondaryKey]; + } + else + { + var storageAccountKeysArray = (JArray)storageAccountKeysResponse["keys"]; + if (storageAccountKeysArray == null) + { + throw exception; + } + + primaryKey = (string)storageAccountKeysArray[0]["value"]; + secondaryKey = (string)storageAccountKeysArray[1]["value"]; + } + + if (string.IsNullOrEmpty(primaryKey) || string.IsNullOrEmpty(secondaryKey)) + { + throw exception; + } + + storageAccountKeys.Add(StorageKeyKind.Primary, primaryKey); + storageAccountKeys.Add(StorageKeyKind.Secondary, secondaryKey); + return storageAccountKeys; + } + + /// + /// Retrieves id of a storage account + /// + /// Storage account subscription id + /// Storage account name + /// Id of the storage account + internal async Task RetrieveStorageAccountIdAsync(Guid storageAccountSubscriptionId, string storageAccountName) + { + // Build a URI for calling corresponding REST-API. + // + var uriBuilder = new StringBuilder(Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager).ToString()); + uriBuilder.AppendFormat("/resources?api-version=2018-05-01&$filter=(subscriptionId%20eq%20'{0}')%20and%20((resourceType%20eq%20'microsoft.storage/storageaccounts')%20or%20(resourceType%20eq%20'microsoft.classicstorage/storageaccounts'))%20and%20(name%20eq%20'{1}')", + storageAccountSubscriptionId, + storageAccountName); + + var nextLink = uriBuilder.ToString(); + string id = null; + while (!string.IsNullOrEmpty(nextLink)) + { + JToken response = await SendAsync(nextLink, HttpMethod.Get, new Exception(string.Format(Properties.Resources.RetrievingStorageAccountIdUnderSubscriptionFailed, storageAccountName, storageAccountSubscriptionId))); + var valuesArray = (JArray)response["value"]; + if (valuesArray.HasValues) + { + var idValueToken = valuesArray[0]; + id = (string)idValueToken["id"]; + if (string.IsNullOrEmpty(id)) + { + throw new Exception(string.Format(Properties.Resources.RetrievingStorageAccountIdUnderSubscriptionFailed, storageAccountName, storageAccountSubscriptionId)); + } + } + nextLink = (string)response["nextLink"]; + } + + if (string.IsNullOrEmpty(id)) + { + throw new Exception(string.Format(Properties.Resources.StorageAccountNotFound, storageAccountName)); + } + + return id; + } + + internal async Task RetrieveInformationProtectionPolicyAsync(Guid tenantId) + { + string endpoint = Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager).ToString(); + string uri = $"{endpoint}providers/Microsoft.Management/managementGroups/{tenantId}/providers/Microsoft.Security/informationprotectionpolicies/effective?api-version=2017-08-01-preview"; + Exception exception = new Exception( + string.Format(Properties.Resources.DataClassificationFailedToRetrieveInformationProtectionPolicy, + tenantId)); + JToken policyToken = await SendAsync(uri, HttpMethod.Get, exception); + return InformationProtectionPolicy.ToInformationProtectionPolicy(policyToken); + } + + internal void AssignRoleForWorkspaceIdentityOnStorageIfNotAssigned(string storageAccountResourceId, Guid principalId, Guid roleAssignmentId) + { + if (IsRoleAssignedForWorkspaceIdentitiyOnStorage(storageAccountResourceId, principalId)) + { + return; + } + + roleAssignmentId = roleAssignmentId == default(Guid) ? Guid.NewGuid() : roleAssignmentId; + Uri endpoint = Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager); + string uri = $"{endpoint}/{storageAccountResourceId}/providers/Microsoft.Authorization/roleAssignments/{roleAssignmentId}?api-version=2018-01-01-preview"; + + string roleDefinitionId = $"/subscriptions/{GetStorageAccountSubscription(storageAccountResourceId)}/providers/Microsoft.Authorization/roleDefinitions/{StorageBlobDataContributorId}"; + string content = $"{{\"properties\": {{ \"roleDefinitionId\": \"{roleDefinitionId}\", \"principalId\": \"{principalId}\", \"principalType\": \"ServicePrincipal\"}}}}"; + + int numberOfTries = 20; + const int SecondsToWaitBetweenTries = 20; + var client = GetCurrentResourcesClient(Context); + HttpResponseMessage response = null; + bool isARetry = false; + System.Net.HttpStatusCode responseStatusCode; + string responseContent = null; + do + { + if (isARetry) + { + Thread.Sleep(TimeSpan.FromSeconds(SecondsToWaitBetweenTries)); + } + + HttpRequestMessage httpRequest = new HttpRequestMessage + { + Method = HttpMethod.Put, + RequestUri = new Uri(uri), + Content = new StringContent(content, Encoding.UTF8, "application/json") + }; + client.Credentials.ProcessHttpRequestAsync(httpRequest, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult(); + response = client.HttpClient.SendAsync(httpRequest, CancellationToken.None).ConfigureAwait(false).GetAwaiter().GetResult(); + if (response.IsSuccessStatusCode) + { + return; + } + else if (response.StatusCode == System.Net.HttpStatusCode.Forbidden) + { + throw new Exception(string.Format(Properties.Resources.AddingStorageBlobDataContributorRoleForStorageAccountIsForbidden, storageAccountResourceId)); + } + + responseStatusCode = response.StatusCode; + responseContent = response.Content.ReadAsStringAsync().Result; + numberOfTries--; + isARetry = true; + } while (numberOfTries > 0); + + throw new Exception(string.Format(Properties.Resources.FailedToAddRoleAssignmentForStorageAccount, storageAccountResourceId, responseStatusCode.ToString(), responseContent)); + } + + private bool IsRoleAssignedForWorkspaceIdentitiyOnStorage(string storageAccountResourceId, Guid principalId) + { + Uri endpoint = Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager); + string uri = $"{endpoint}/{storageAccountResourceId}/providers/Microsoft.Authorization/roleAssignments/?api-version=2018-01-01-preview&$filter=assignedTo('{principalId}')"; + JToken roleDefinitionsToken = SendAsync(uri, HttpMethod.Get, + new Exception(string.Format(Properties.Resources.FailedToGetRoleAssignmentsForStorageAccount, storageAccountResourceId))).Result; + try + { + JArray roleDefinitionsArray = (JArray)roleDefinitionsToken["value"]; + return roleDefinitionsArray.Any((token => + { + JToken roleDefinitionId = token["properties"]["roleDefinitionId"]; + return roleDefinitionId != null && roleDefinitionId.ToString().Contains(StorageBlobDataContributorId); + })); + } + catch (Exception) { } + + return false; + } + + internal bool IsStorageAccountInVNet(string storageAccountResourceId) + { + if (IsClassicStorage(storageAccountResourceId)) + { + return false; + } + + string uri = $"{Context.Environment.GetEndpointAsUri(AzureEnvironment.Endpoint.ResourceManager).ToString()}{storageAccountResourceId}?api-version=2019-06-01"; + Exception exception = new Exception( + string.Format(Properties.Resources.RetrievingStorageAccountPropertiesFailed, + storageAccountResourceId)); + JToken storageAccountPropertiesToken = SendAsync(uri, HttpMethod.Get, exception).Result; + return GetNetworkAclsDefaultAction(storageAccountPropertiesToken, exception).Equals("Deny"); + } + + /// + /// Deploys an ARM template at resource group level + /// + /// The resource group name + /// The deployment name + /// The deployment + public void DeployArmTemplate(string resourceGroupName, string deploymentName, Deployment deployment) + { + GetCurrentResourcesClient(Context).Deployments.BeginCreateOrUpdate(resourceGroupName, deploymentName, deployment); + + WaitForDeployment(resourceGroupName, deploymentName); + } + + /// + /// Waits for ARM template deployment to finish + /// + /// The resource group name + /// The deployment name + private void WaitForDeployment(string resourceGroupName, string deploymentName) + { + DeploymentExtended deployment; + string[] status = { "Canceled", "Succeeded", "Failed" }; + + // Poll deployment state and deployment operations after RetryAfter. + // If no RetryAfter provided: In phase one, poll every 5 seconds. Phase one + // takes 400 seconds. In phase two, poll every 60 seconds. + const int counterUnit = 1000; + int step = 5; + int phaseOne = 400; + + do + { + TestMockSupport.Delay(step * counterUnit); + + if (phaseOne > 0) + { + phaseOne -= step; + } + + var getDeploymentTask = GetCurrentResourcesClient(Context).Deployments.GetWithHttpMessagesAsync(resourceGroupName, deploymentName); + + using (var getResult = getDeploymentTask.ConfigureAwait(false).GetAwaiter().GetResult()) + { + deployment = getResult.Body; + var response = getResult.Response; + if (response != null && response.Headers.RetryAfter != null && response.Headers.RetryAfter.Delta.HasValue) + { + step = response.Headers.RetryAfter.Delta.Value.Seconds; + } + else + { + step = phaseOne > 0 ? 5 : 60; + } + } + } while (!status.Any(s => s.Equals(deployment.Properties.ProvisioningState, StringComparison.OrdinalIgnoreCase))); + } + + /// + /// Sends an async HTTP request. + /// + /// URL of the request. + /// Http method. + /// Exception to be thrown if request did not succeed. + /// Response of the request. + private async Task SendAsync(string url, HttpMethod method, Exception exceptionToThrowOnFailure) + { + var client = GetCurrentResourcesClient(Context); + var httpRequest = new HttpRequestMessage { Method = method, RequestUri = new Uri(url) }; + await client.Credentials.ProcessHttpRequestAsync(httpRequest, CancellationToken.None).ConfigureAwait(false); + var httpResponse = await client.HttpClient.SendAsync(httpRequest, CancellationToken.None).ConfigureAwait(false); + if (!httpResponse.IsSuccessStatusCode) + { + throw exceptionToThrowOnFailure; + } + + return JToken.Parse(await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false)); + } + + private string GetNetworkAclsDefaultAction(JToken storageAccountPropertiesToken, Exception exceptionToThrowOnFailure) + { + JToken value; + try + { + value = storageAccountPropertiesToken["properties"]["networkAcls"]["defaultAction"]; + } + catch (Exception) + { + throw exceptionToThrowOnFailure; + } + + return value?.ToString(); + } + + private static bool IsClassicStorage(string storageAccountResourceId) + { + return storageAccountResourceId.Contains("Microsoft.ClassicStorage/storageAccounts"); + } + + private static string GetStorageAccountSubscription(string storageAccountResourceId) + { + const string separator = "subscriptions/"; + int subscriptionStartIndex = storageAccountResourceId.IndexOf(separator) + separator.Length; + return storageAccountResourceId.Substring(subscriptionStartIndex, Guid.Empty.ToString().Length); + } + + /// + /// Version of classic storage listKeys REST-API. + /// + private const string ClassicStorageListKeysApiVersion = "2016-11-01"; + + /// + /// Version of non classic storage listKeys REST-API. + /// + private const string NonClassicStorageListKeysApiVersion = "2017-06-01"; + + private const string PrimaryKey = "primaryKey"; + + private const string SecondaryKey = "secondaryKey"; + + private const string StorageBlobDataContributorId = "ba92f5b4-2d11-453d-a403-e96b0029c9fe"; + } +} diff --git a/src/Synapse/Synapse/Models/AzureSynapseSqlManagementCmdletBase.cs b/src/Synapse/Synapse/Models/AzureSynapseSqlManagementCmdletBase.cs new file mode 100644 index 000000000000..c20196fe94c5 --- /dev/null +++ b/src/Synapse/Synapse/Models/AzureSynapseSqlManagementCmdletBase.cs @@ -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. +// ---------------------------------------------------------------------------------- + +using System.Management.Automation; +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; + +namespace Microsoft.Azure.Commands.Synapse.Models +{ + /// + /// The base class for all Azure Synapse Sql management cmdlets + /// + public abstract class AzureSynapseSqlManagementCmdletBase : SynapseManagementCmdletBase + { + protected virtual string GetResourceId(M model) + { + var workspaceNameProperty = model.GetType().GetProperty(SynapseConstants.WorkspaceName); + var workspaceName = (workspaceNameProperty == null)? string.Empty: workspaceNameProperty.GetValue(model).ToString(); + + var sqlPoolNameProperty = model.GetType().GetProperty(SynapseConstants.SqlPoolName); + var sqlPoolName = (sqlPoolNameProperty == null) ? string.Empty : sqlPoolNameProperty.GetValue(model).ToString(); + + if (!string.IsNullOrEmpty(workspaceName)) + { + if (!string.IsNullOrEmpty(sqlPoolName)) + { + return string.Format("{0}.{1}", workspaceName, sqlPoolName); + } + return workspaceName; + } + if (!string.IsNullOrEmpty(sqlPoolName)) + { + return sqlPoolName; + } + return string.Empty; + } + + /// + /// Gets or sets the name of the resource group to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 0, + HelpMessage = HelpMessages.ResourceGroupName)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public virtual string ResourceGroupName { get; set; } + + /// + /// The ModelAdapter object used by this cmdlet + /// + public A ModelAdapter { get; internal set; } + + /// + /// Gets an entity from the service + /// + /// A model object + protected abstract M GetEntity(); + + /// + /// Updates the given model element with the cmdlet specific operation + /// + /// A model object + protected virtual M ApplyUserInputToModel(M model) { return model; } + + /// + /// This method is responsible to call the right API in the communication layer that will eventually send the information in the + /// object to the REST endpoint + /// + /// The model object with the data to be sent to the REST endpoints + protected virtual M PersistChanges(M entity) { return default(M); } + + /// + /// Returns true if the model object that was constructed by this cmdlet should be written out + /// + /// True if the model object should be written out, False otherwise + protected virtual bool WriteResult() { return true; } + + /// + /// Creation and initialization of the ModelAdapter object + /// + /// An initialized and ready to use ModelAdapter object + protected abstract A InitModelAdapter(); + + /// + /// Transforms the given model object to be an object that is written out + /// + /// The about to be written model object + /// The prepared object to be written out + protected virtual object TransformModelToOutputObject(M model) + { + return model; + } + + protected virtual string GetConfirmActionProcessMessage() + { + return Properties.Resources.BaseConfirmActionProcessMessage; + } + + /// + /// Executes the cmdlet + /// + public override void ExecuteCmdlet() + { + ModelAdapter = InitModelAdapter(); + M model = GetEntity(); + M updatedModel = ApplyUserInputToModel(model); + M responseModel = default(M); + ConfirmAction(GetConfirmActionProcessMessage(), GetResourceId(updatedModel), () => + { + responseModel = PersistChanges(updatedModel); + }); + + if (responseModel != null) + { + if (WriteResult()) + { + WriteObject(TransformModelToOutputObject(responseModel), true); + } + } + else + { + if (WriteResult()) + { + WriteObject(TransformModelToOutputObject(updatedModel)); + } + } + } + } +} diff --git a/src/Synapse/Synapse/Models/AzureSynapseSqlPoolManagementCmdletBase.cs b/src/Synapse/Synapse/Models/AzureSynapseSqlPoolManagementCmdletBase.cs new file mode 100644 index 000000000000..a97a88bd90de --- /dev/null +++ b/src/Synapse/Synapse/Models/AzureSynapseSqlPoolManagementCmdletBase.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Commands.Synapse.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Synaspe.Models +{ + /// + /// The base class for all Azure Sql pool management cmdlets + /// + public abstract class AzureSynapseSqlPoolManagementCmdletBase : AzureSynapseSqlManagementCmdletBase + { + /// + /// Gets or sets the name of the workspace to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 1, + HelpMessage = HelpMessages.WorkspaceName)] + [ResourceNameCompleter(ResourceTypes.Workspace, nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public virtual string WorkspaceName { get; set; } + + /// + /// Gets or sets the name of the pool to use. + /// + [Parameter(Mandatory = true, + ValueFromPipelineByPropertyName = true, + Position = 2, + HelpMessage = HelpMessages.SqlPoolName)] + [ResourceNameCompleter(ResourceTypes.SqlPool, nameof(ResourceGroupName), nameof(WorkspaceName))] + [ValidateNotNullOrEmpty] + public virtual string SqlPoolName { get; set; } + } +} diff --git a/src/Synapse/Synapse/Models/DataClassification/DataClassificationAdapter.cs b/src/Synapse/Synapse/Models/DataClassification/DataClassificationAdapter.cs new file mode 100644 index 000000000000..627953c9a189 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/DataClassificationAdapter.cs @@ -0,0 +1,190 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Management.Synapse.Models; +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + public class DataClassificationAdapter + { + private readonly IAzureContext Context; + private readonly DataClassificationEndpointsCommunicator Communicator; + private readonly AzureEndpointsCommunicator AzureCommunicator; + + public DataClassificationAdapter(IAzureContext context) + { + Context = context; + Communicator = new DataClassificationEndpointsCommunicator(context); + AzureCommunicator = new AzureEndpointsCommunicator(Context); + } + + internal void SetSensitivityLabels(SqlPoolSensitivityClassificationModel model) + { + SplitSensitivityLabelsIntoListsAndPatch(model.SensitivityLabels, + list => list.ForEach(sensitivityLabelModel => Communicator.SetSensitivityLabel( + model.ResourceGroupName, + model.WorkspaceName, + model.SqlPoolName, + sensitivityLabelModel.SchemaName, + sensitivityLabelModel.TableName, + sensitivityLabelModel.ColumnName, + ToSensitivityLabel(sensitivityLabelModel) + ))); + } + + internal void EnableSensitivityRecommendations(SqlPoolSensitivityClassificationModel model) + { + SplitSensitivityLabelsIntoListsAndPatch(model.SensitivityLabels, + list => list.ForEach(sensitivityLabelModel => Communicator.EnableSensitivityRecommendation( + model.ResourceGroupName, + model.WorkspaceName, + model.SqlPoolName, + sensitivityLabelModel.SchemaName, + sensitivityLabelModel.TableName, + sensitivityLabelModel.ColumnName + ))); + } + + internal void DisableSensitivityRecommendations(SqlPoolSensitivityClassificationModel model) + { + SplitSensitivityLabelsIntoListsAndPatch(model.SensitivityLabels, + list => list.ForEach(sensitivityLabelModel => Communicator.DisableSensitivityRecommendation( + model.ResourceGroupName, + model.WorkspaceName, + model.SqlPoolName, + sensitivityLabelModel.SchemaName, + sensitivityLabelModel.TableName, + sensitivityLabelModel.ColumnName + ))); + } + + internal List GetCurrentSensitivityLabel( + string resourceGroupName, string workspaceName, string sqlPoolName, + string schemaName, string tableName, string columnName) + { + return ToSensitivityLabelModelList(Communicator.GetSensitivityLabel(resourceGroupName, workspaceName, sqlPoolName, + schemaName, tableName, columnName)); + } + + internal List GetCurrentSensitivityLabels( + string resourceGroupName, string workspaceName, string sqlPoolName) + { + return ToSensitivityLabelModelList(Communicator.GetCurrentSensitivityLabels(resourceGroupName, workspaceName, sqlPoolName)); + } + + internal void RemoveSensitivityLabels(SqlPoolSensitivityClassificationModel model) + { + SplitSensitivityLabelsIntoListsAndPatch(model.SensitivityLabels, + list => list.ForEach(sensitivityLabelModel => Communicator.DeleteSensitivityLabel( + model.ResourceGroupName, + model.WorkspaceName, + model.SqlPoolName, + sensitivityLabelModel.SchemaName, + sensitivityLabelModel.TableName, + sensitivityLabelModel.ColumnName + ))); + } + + internal async Task RetrieveInformationProtectionPolicyAsync() + { + return Context.Environment.Name == EnvironmentName.AzureCloud || + Context.Environment.Name == EnvironmentName.AzureUSGovernment + ? await AzureCommunicator.RetrieveInformationProtectionPolicyAsync(Context.Tenant.GetId()) + : InformationProtectionPolicy.DefaultInformationProtectionPolicy; + } + + internal void SplitSensitivityLabelsIntoListsAndPatch(List sensitivityLabelsToModify, + Action> patchSensitivityLabels) + { + ConcurrentQueue exceptions = new ConcurrentQueue(); + Parallel.ForEach(SplitList(sensitivityLabelsToModify), + sensitivityLabelsList => + { + try + { + patchSensitivityLabels(sensitivityLabelsList); + } + catch (Exception e) + { + exceptions.Enqueue(e); + } + }); + + if (!exceptions.IsEmpty) + { + int exceptionsCount = exceptions.Count; + Exception lastException = exceptions.Last(); + throw (exceptionsCount == 1) ? lastException : + new Exception($"Operation failed for {exceptionsCount} sensitivity classifications", lastException); + } + } + + internal List GetRecommendedSensitivityLabels( + string resourceGroupName, string workspaceName, string sqlPoolName) + { + return ToSensitivityLabelModelList(Communicator.GetRecommendedSensitivityLabels(resourceGroupName, workspaceName, sqlPoolName)); + } + + private List ToSensitivityLabelModelList(List sensitivityLabels) + { + return sensitivityLabels.Select(l => ToSensitivityLabelModel(l)).ToList(); + } + + private static SensitivityLabel ToSensitivityLabel(SensitivityLabelModel sensitivityLabelModel) + { + return new SensitivityLabel + { + LabelName = sensitivityLabelModel.SensitivityLabel, + LabelId = sensitivityLabelModel.SensitivityLabelId, + InformationType = sensitivityLabelModel.InformationType, + InformationTypeId = sensitivityLabelModel.InformationTypeId, + }; + } + + private static SensitivityLabelModel ToSensitivityLabelModel(SensitivityLabel sensitivityLabel) + { + string[] idComponents = sensitivityLabel.Id.Split('/'); + return new SensitivityLabelModel + { + SchemaName = idComponents[12], + TableName = idComponents[14], + ColumnName = idComponents[16], + SensitivityLabel = NullifyStringIfEmpty(sensitivityLabel.LabelName), + SensitivityLabelId = NullifyStringIfEmpty(sensitivityLabel.LabelId), + InformationType = NullifyStringIfEmpty(sensitivityLabel.InformationType), + InformationTypeId = NullifyStringIfEmpty(sensitivityLabel.InformationTypeId) + }; + } + + private static string NullifyStringIfEmpty(string s) + { + return string.IsNullOrEmpty(s) ? null : s; + } + + private static IEnumerable> SplitList(List elements) + { + const int ListSize = 5000; + for (int i = 0; i < elements.Count; i += ListSize) + { + yield return elements.GetRange(i, Math.Min(ListSize, elements.Count - i)); + } + } + } +} diff --git a/src/Synapse/Synapse/Models/DataClassification/DataClassificationCommon.cs b/src/Synapse/Synapse/Models/DataClassification/DataClassificationCommon.cs new file mode 100644 index 000000000000..e798e1b418e0 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/DataClassificationCommon.cs @@ -0,0 +1,44 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Synapse.Common; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + public static class DataClassificationCommon + { + internal const string SqlPoolObjectColumnParameterSet = "SqlPoolObjectColumnParameterSet"; + internal const string ColumnParameterSet = "ColumnParameterSet"; + internal const string SqlPoolObjectParameterSet = "SqlPoolObjectParameterSet"; + internal const string ClassificationObjectParameterSet = "ClassificationObjectParameterSet"; + internal const string SqlPoolParameterSet = "SqlPoolParameterSet"; + internal const string InputObjectParameterSet = "InputObjectParameterSet"; + internal const string SqlPoolSensitivityRecommendation = nameof(SqlPoolSensitivityRecommendation); + internal const string SqlPoolSensitivityClassification = nameof(SqlPoolSensitivityClassification); + + internal const string ResourceGroupNameHelpMessage = HelpMessages.ResourceGroupName; + internal const string WorkspaceNameHelpMessage = HelpMessages.WorkspaceName; + internal const string SqlPoolNameHelpMessage = HelpMessages.SqlPoolName; + internal const string LabelNameHelpMessage = "A name that describes the sensitivity of the data stored in the column."; + internal const string InformationTypeHelpMessage = "A name that describes the information type of the data stored in the column."; + internal const string SqlPoolObjectHelpMessage = HelpMessages.SqlPoolObject; + internal const string SqlPoolSensitivityClassificationObjectHelpMessage = "An object representing a SQL Pool Sensitivity Classification."; + internal const string PassThruHelpMessage = HelpMessages.PassThru; + internal const string AsJobHelpMessage = HelpMessages.AsJob; + internal const string SchemaNameHelpMessage = "Name of schema."; + internal const string TableNameHelpMessage = "Name of table."; + internal const string ColumnNameHelpMessage = "Name of column."; + internal const string InputObjectParameterAlias = "ClassificationObject"; + } +} diff --git a/src/Synapse/Synapse/Models/DataClassification/DataClassificationEndpointsCommunicator.cs b/src/Synapse/Synapse/Models/DataClassification/DataClassificationEndpointsCommunicator.cs new file mode 100644 index 000000000000..f0174643f600 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/DataClassificationEndpointsCommunicator.cs @@ -0,0 +1,160 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Management.Synapse; +using Microsoft.Azure.Management.Synapse.Models; +using Microsoft.Rest.Azure; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + internal class DataClassificationEndpointsCommunicator + { + private SynapseManagementClient SynapseManagementClient { get; set; } + + private IAzureSubscription Subscription { get; set; } + + private IAzureContext Context { get; set; } + + internal DataClassificationEndpointsCommunicator(IAzureContext context) + { + Context = context; + if (context?.Subscription != Subscription) + { + Subscription = context?.Subscription; + SynapseManagementClient = GetCurrentSynapseManagementClient(); + } + } + + internal void SetSensitivityLabel(string resourceGroupName, string workspaceName, string sqlPoolName, + string schemaName, string tableName, string columnName, SensitivityLabel sensitivityLabel) + { + GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.CreateOrUpdate(resourceGroupName, workspaceName, sqlPoolName, + schemaName, tableName, columnName, sensitivityLabel); + } + + internal void DeleteSensitivityLabel(string resourceGroupName, string workspaceName, string sqlPoolName, + string schemaName, string tableName, string columnName) + { + GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.Delete(resourceGroupName, workspaceName, sqlPoolName, + schemaName, tableName, columnName); + } + + internal List GetRecommendedSensitivityLabels(string resourceGroupName, + string workspaceName, string sqlPoolName) + { + return IterateOverPages( + () => GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.ListRecommended( + resourceGroupName, workspaceName, sqlPoolName), + nextPageLink => GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.ListRecommendedNext(nextPageLink)); + } + + internal void EnableSensitivityRecommendation(string resourceGroupName, string workspaceName, string sqlPoolName, + string schemaName, string tableName, string columnName) + { + GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.EnableRecommendation(resourceGroupName, workspaceName, sqlPoolName, + schemaName, tableName, columnName); + } + + internal void DisableSensitivityRecommendation(string resourceGroupName, string workspaceName, string sqlPoolName, + string schemaName, string tableName, string columnName) + { + GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.DisableRecommendation(resourceGroupName, workspaceName, sqlPoolName, + schemaName, tableName, columnName); + } + + internal List GetSensitivityLabel(string resourceGroupName, string workspaceName, string sqlPoolName, + string schemaName, string tableName, string columnName) + { + SensitivityLabel sensitivityLabel = GetSensitivityLabel(() => + GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.Get( + resourceGroupName, workspaceName, sqlPoolName, schemaName, tableName, columnName, + SensitivityLabelSource.Current)); + + return ToList(sensitivityLabel); + } + + private SensitivityLabel GetSensitivityLabel(Func getSensitivityLabelFromWorkspace) + { + SensitivityLabel sensitivityLabel = null; + try + { + sensitivityLabel = getSensitivityLabelFromWorkspace(); + } + catch (CloudException e) + { + if (!(e.Body.Code == "SensitivityLabelsLabelNotFound" && + e.Body.Message == "The specified sensitivity label could not be found")) + { + throw; + } + } + + return sensitivityLabel; + } + + internal List GetCurrentSensitivityLabels(string resourceGroupName, + string workspaceName, string sqlPoolName) + { + return IterateOverPages( + () => GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.ListCurrent( + resourceGroupName, workspaceName, sqlPoolName), + nextPageLink => GetCurrentSynapseManagementClient().SqlPoolSensitivityLabels.ListCurrentNext(nextPageLink)); + } + + private List IterateOverPages( + Func> listByPool, + Func> listByNextPageLink) + { + IPage sensitivityLabelsPage = listByPool(); + List sensitivityLabelsList = ToList(sensitivityLabelsPage); + + string nextPageLink = sensitivityLabelsPage?.NextPageLink; + while (!string.IsNullOrEmpty(nextPageLink)) + { + sensitivityLabelsPage = listByNextPageLink(nextPageLink); + nextPageLink = sensitivityLabelsPage?.NextPageLink; + sensitivityLabelsList.AddRange(ToList(sensitivityLabelsPage)); + } + + return sensitivityLabelsList; + } + + private static List ToList(IPage sensitivityLabelsPage) + { + return sensitivityLabelsPage == null ? + new List() : + sensitivityLabelsPage.ToList(); + } + + private static List ToList(SensitivityLabel sensitivityLabel) + { + return sensitivityLabel == null ? + new List() : + new List { sensitivityLabel }; + } + + private SynapseManagementClient GetCurrentSynapseManagementClient() + { + if (SynapseManagementClient == null) + { + SynapseManagementClient = SynapseCmdletBase.CreateSynapseClient(Context, AzureEnvironment.Endpoint.ResourceManager); + } + + return SynapseManagementClient; + } + } +} diff --git a/src/Synapse/Synapse/Models/DataClassification/InformationProtectionPolicy.cs b/src/Synapse/Synapse/Models/DataClassification/InformationProtectionPolicy.cs new file mode 100644 index 000000000000..9086fdaced61 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/InformationProtectionPolicy.cs @@ -0,0 +1,71 @@ +// ---------------------------------------------------------------------------------- +// +// 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 Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + internal class InformationProtectionPolicy + { + public IDictionary> SensitivityLabels { get; private set; } + public IDictionary InformationTypes { get; private set; } + + public static InformationProtectionPolicy ToInformationProtectionPolicy(JToken policyToken) + { + + InformationProtectionPolicy policy = new InformationProtectionPolicy(); + JToken propertiesToken = policyToken["properties"]; + + IDictionary dictionary = (JObject)propertiesToken["informationTypes"]; + policy.InformationTypes = dictionary.ToDictionary(pair => pair.Value["displayName"].ToString(), pair => Guid.Parse(pair.Key)); + + dictionary = (JObject)propertiesToken["labels"]; + policy.SensitivityLabels = dictionary.ToDictionary( + pair => pair.Value["displayName"].ToString(), + pair => Tuple.Create(Guid.Parse(pair.Key), (SensitivityRank)Enum.Parse(typeof(SensitivityRank), pair.Value["rank"]?.ToString()))); + + return policy; + } + + public static InformationProtectionPolicy DefaultInformationProtectionPolicy => new InformationProtectionPolicy + { + SensitivityLabels = new Dictionary>() + { + { "Public", Tuple.Create(Guid.Parse("1866CA45-1973-4C28-9D12-04D407F147AD") , SensitivityRank.None) }, + { "General", Tuple.Create(Guid.Parse("684A0DB2-D514-49D8-8C0C-DF84A7B083EB"), SensitivityRank.Low) }, + { "Confidential", Tuple.Create(Guid.Parse("331F0B13-76B5-2F1B-A77B-DEF5A73C73C2"), SensitivityRank.Medium) }, + { "Confidential - GDPR", Tuple.Create(Guid.Parse("989ADC05-3F3F-0588-A635-F475B994915B"), SensitivityRank.Medium) }, + { "Highly Confidential", Tuple.Create(Guid.Parse("B82CE05B-60A9-4CF3-8A8A-D6A0BB76E903"), SensitivityRank.High)}, + { "Highly Confidential - GDPR", Tuple.Create(Guid.Parse("3302AE7F-B8AC-46BC-97F8-378828781EFD"), SensitivityRank.High) } + }, + InformationTypes = new Dictionary() + { + { "Networking", Guid.Parse("B40AD280-0F6A-6CA8-11BA-2F1A08651FCF") }, + { "Contact Info", Guid.Parse("5C503E21-22C6-81FA-620B-F369B8EC38D1") }, + { "Credentials", Guid.Parse("C64ABA7B-3A3E-95B6-535D-3BC535DA5A59") }, + { "Credit Card", Guid.Parse("D22FA6E9-5EE4-3BDE-4C2B-A409604C4646") }, + { "Banking", Guid.Parse("8A462631-4130-0A31-9A52-C6A9CA125F92") }, + { "Financial", Guid.Parse("C44193E1-0E58-4B2A-9001-F7D6E7BC1373") }, + { "Other", Guid.Parse("9C5B4809-0CCC-0637-6547-91A6F8BB609D") }, + { "Name", Guid.Parse("57845286-7598-22F5-9659-15B24AEB125E") }, + { "National ID", Guid.Parse("6F5A11A7-08B1-19C3-59E5-8C89CF4F8444") }, + { "SSN", Guid.Parse("D936EC2C-04A4-9CF7-44C2-378A96456C61") }, + { "Health", Guid.Parse("6E2C5B18-97CF-3073-27AB-F12F87493DA7") }, + { "Date Of Birth", Guid.Parse("3DE7CC52-710D-4E96-7E20-4D5188D2590C") } + } + }; + } +} \ No newline at end of file diff --git a/src/Synapse/Synapse/Models/DataClassification/SensitivityClassificationModel.cs b/src/Synapse/Synapse/Models/DataClassification/SensitivityClassificationModel.cs new file mode 100644 index 000000000000..be83525a8384 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/SensitivityClassificationModel.cs @@ -0,0 +1,114 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System.Collections.Generic; +using System.Linq; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + public abstract class SensitivityClassificationModel + { + [Ps1Xml(Target = ViewControl.List, Position = 0)] + public string ResourceGroupName { get; set; } + + [Ps1Xml(Target = ViewControl.List, Position = 2)] + public string SqlPoolName { get; set; } + + [Ps1Xml(Target = ViewControl.List)] + public List SensitivityLabels { get; set; } + + internal void ApplyModel(SensitivityClassificationModel model, InformationProtectionPolicy policy) + { + SensitivityLabels = MergeSensitivityLabels(SensitivityLabels, model.SensitivityLabels, policy); + } + + private static List MergeSensitivityLabels( + List existingLabels, + List newLabels, + InformationProtectionPolicy informationProtectionPolicy) + { + List mergedLabels = new List(); + if (newLabels == null) + { + return mergedLabels; + } + + if (existingLabels == null) + { + return newLabels; + } + + IComparer comparer = new SortComparer(); + existingLabels.Sort(comparer); + newLabels.Sort(comparer); + + + int existingLabelsIndex = 0; + int existingLabelsCount = existingLabels.Count(); + + int newLabelsIndex = 0; + int newLabelsCount = newLabels.Count(); + + while (existingLabelsIndex < existingLabelsCount && newLabelsIndex < newLabelsCount) + { + SensitivityLabelModel existingLabel = existingLabels.ElementAt(existingLabelsIndex); + SensitivityLabelModel newLabel = newLabels.ElementAt(newLabelsIndex); + int labelsCompared = comparer.Compare(existingLabel, newLabel); + if (labelsCompared < 0) + { + existingLabelsIndex++; + } + else if (labelsCompared > 0) + { + mergedLabels.Add(newLabel); + newLabelsIndex++; + } + else + { + existingLabel.ApplyModel(newLabel, informationProtectionPolicy); + mergedLabels.Add(existingLabel); + existingLabelsIndex++; + newLabelsIndex++; + } + } + + while (newLabelsIndex < newLabelsCount) + { + mergedLabels.Add(newLabels.ElementAt(newLabelsIndex++)); + } + + return mergedLabels; + } + + private class SortComparer : IComparer + { + public int Compare(SensitivityLabelModel x, SensitivityLabelModel y) + { + int schemaNamesCompared = string.Compare(x.SchemaName, y.SchemaName); + if (schemaNamesCompared != 0) + { + return schemaNamesCompared; + } + + int tableNamesCompared = string.Compare(x.TableName, y.TableName); + if (tableNamesCompared != 0) + { + return tableNamesCompared; + } + + return string.Compare(x.ColumnName, y.ColumnName); + } + } + } +} diff --git a/src/Synapse/Synapse/Models/DataClassification/SensitivityLabelModel.cs b/src/Synapse/Synapse/Models/DataClassification/SensitivityLabelModel.cs new file mode 100644 index 000000000000..0610cfc4e277 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/SensitivityLabelModel.cs @@ -0,0 +1,147 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using System.Text; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + public class SensitivityLabelModel + { + [Ps1Xml(Target = ViewControl.List)] + public string SchemaName { get; set; } + + [Ps1Xml(Target = ViewControl.List)] + public string TableName { get; set; } + + [Ps1Xml(Target = ViewControl.List)] + public string ColumnName { get; set; } + + [Ps1Xml(Target = ViewControl.List)] + public string SensitivityLabel { get; set; } + + [Ps1Xml(Target = ViewControl.List)] + public string InformationType { get; set; } + + [Ps1Xml(Target = ViewControl.List)] + public SensitivityRank? Rank { get; set; } + + [Hidden] + public string SensitivityLabelId { get; set; } + + [Hidden] + public string InformationTypeId { get; set; } + + public override string ToString() + { + List valuesPerPropertyName = new List(); + foreach (var property in this.GetType().GetProperties()) + { + string name = property.Name; + if (name == "InformationTypeId" || name == "SensitivityLabelId") + { + continue; + } + + object value = property.GetValue(this); + if (value != null) + { + valuesPerPropertyName.Add($"\t{name}: {value}"); + } + } + + StringBuilder builder = new StringBuilder(); + builder.AppendLine("{"); + builder.AppendLine(string.Join($",{Environment.NewLine}", valuesPerPropertyName)); + builder.Append("}"); + + return builder.ToString(); + } + + internal void ApplyModel(SensitivityLabelModel sensitivityLabel, InformationProtectionPolicy informationProtectionPolicy) + { + ApplyInput(sensitivityLabel.InformationType, sensitivityLabel.SensitivityLabel, informationProtectionPolicy); + } + + internal void ApplyInput(string informationType, string sensitivityLabel, InformationProtectionPolicy informationProtectionPolicy) + { + if (string.IsNullOrEmpty(informationType) && string.IsNullOrEmpty(sensitivityLabel)) + { + throw new Exception("Value is not specified neither for InformationType parameter nor for SensitivityLabel parameter"); + } + + ApplyInformationType(informationType, informationProtectionPolicy); + ApplySensitivityLabel(sensitivityLabel, informationProtectionPolicy); + } + + private void ApplyInformationType(string newInformationType, InformationProtectionPolicy informationProtectionPolicy) + { + if (!string.IsNullOrEmpty(newInformationType) && + !string.Equals(InformationType, newInformationType)) + { + if (informationProtectionPolicy.InformationTypes.TryGetValue(newInformationType, out Guid informationTypeId)) + { + InformationType = newInformationType; + InformationTypeId = informationTypeId.ToString(); + } + else + { + throw new Exception($"Information Type '{newInformationType}' is not part of Information Protection Policy. Please add '{newInformationType}' to the Information Protection Policy, or use one of the following: {ToString(informationProtectionPolicy.InformationTypes.Keys)}"); + } + } + } + private void ApplySensitivityLabel(string newSensitivityLabel, InformationProtectionPolicy informationProtectionPolicy) + { + if (!string.IsNullOrEmpty(newSensitivityLabel) && + !string.Equals(SensitivityLabel, newSensitivityLabel)) + { + if (informationProtectionPolicy.SensitivityLabels.TryGetValue(newSensitivityLabel, out Tuple idRankTuple)) + { + SensitivityLabel = newSensitivityLabel; + SensitivityLabelId = idRankTuple.Item1.ToString(); + Rank = idRankTuple.Item2; + } + else + { + throw new Exception($"Sensitivity Label '{newSensitivityLabel}' is not part of Information Protection Policy. Please add '{newSensitivityLabel}' to the Information Protection Policy, or use one of the following: {ToString(informationProtectionPolicy.SensitivityLabels.Keys)}"); + } + } + } + + private void ApplySensitivityRank(SensitivityRank? newSensitivityRank) + { + if (newSensitivityRank != null && newSensitivityRank != Rank) + { + Rank = newSensitivityRank; + } + } + + private static string ToString(ICollection collection) + { + return string.Join(", ", collection.Select(s => $"'{s}'")); + } + } + + public enum SensitivityRank + { + None, + Low, + Medium, + High, + Critical + } +} diff --git a/src/Synapse/Synapse/Models/DataClassification/SqlPoolSensitivityClassificationModel.cs b/src/Synapse/Synapse/Models/DataClassification/SqlPoolSensitivityClassificationModel.cs new file mode 100644 index 000000000000..50308c457a99 --- /dev/null +++ b/src/Synapse/Synapse/Models/DataClassification/SqlPoolSensitivityClassificationModel.cs @@ -0,0 +1,23 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- +using Microsoft.WindowsAzure.Commands.Common.Attributes; + +namespace Microsoft.Azure.Commands.Synapse.Models.DataClassification +{ + public class SqlPoolSensitivityClassificationModel : SensitivityClassificationModel + { + [Ps1Xml(Target = ViewControl.List, Position = 1)] + public string WorkspaceName { get; set; } + } +} diff --git a/src/Synapse/Synapse/Models/PSSynapseResource.cs b/src/Synapse/Synapse/Models/PSSynapseResource.cs index e856c283a329..6281c9125152 100644 --- a/src/Synapse/Synapse/Models/PSSynapseResource.cs +++ b/src/Synapse/Synapse/Models/PSSynapseResource.cs @@ -13,12 +13,12 @@ public abstract class PSSynapseResource /// Gets fully qualified resource Id for the resource. Ex - /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// - public string Id { get; private set; } + public virtual string Id { get; protected set; } /// /// Gets the name of the resource /// - public string Name { get; private set; } + public virtual string Name { get; protected set; } /// /// Gets the type of the resource. Ex- diff --git a/src/Synapse/Synapse/Models/PSSynapseSqlPool.cs b/src/Synapse/Synapse/Models/PSSynapseSqlPool.cs index 62ae931aebd5..c7b9497c81b8 100644 --- a/src/Synapse/Synapse/Models/PSSynapseSqlPool.cs +++ b/src/Synapse/Synapse/Models/PSSynapseSqlPool.cs @@ -1,13 +1,16 @@ using Microsoft.Azure.Management.Synapse.Models; using System; +using System.Management.Automation; namespace Microsoft.Azure.Commands.Synapse.Models { public class PSSynapseSqlPool : PSSynapseTrackedResource { - public PSSynapseSqlPool(SqlPool sqlPool) + public PSSynapseSqlPool(string resourceGroupName, string workspaceName, SqlPool sqlPool) : base(sqlPool?.Location, sqlPool?.Id, sqlPool?.Name, sqlPool?.Type, sqlPool?.Tags) { + this.ResourceGroupName = resourceGroupName; + this.WorkspaceName = workspaceName; this.Sku = sqlPool?.Sku != null ? new PSSynapseSku(sqlPool.Sku) : null; this.MaxSizeBytes = sqlPool?.MaxSizeBytes; this.Collation = sqlPool?.Collation; @@ -24,54 +27,86 @@ public PSSynapseSqlPool(SqlPool sqlPool) } } + /// + /// Gets or sets the name of the resource group + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the name of the workspace + /// + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the name of the SQL pool + /// + public string SqlPoolName + { + get + { + return this.Name; + } + + set + { + this.Name = value; + } + } + + /// + /// Gets the name of the SQL pool + /// + [Hidden] + public override string Name { get; protected set; } + /// /// Gets SQL pool SKU /// - public PSSynapseSku Sku { get; private set; } + public PSSynapseSku Sku { get; set; } /// /// Gets maximum size in bytes /// - public long? MaxSizeBytes { get; private set; } + public long? MaxSizeBytes { get; set; } /// /// Gets collation mode /// - public string Collation { get; private set; } + public string Collation { get; set; } /// /// Gets source database to create from /// - public string SourceDatabaseId { get; private set; } + public string SourceDatabaseId { get; set; } /// /// Gets backup database to restore from /// - public string RecoverableDatabaseId { get; private set; } + public string RecoverableDatabaseId { get; set; } /// /// Gets resource state /// - public string ProvisioningState { get; private set; } + public string ProvisioningState { get; set; } /// /// Gets resource status /// - public string Status { get; private set; } + public string Status { get; set; } /// /// Gets snapshot time to restore /// - public System.DateTime? RestorePointInTime { get; private set; } + public System.DateTime? RestorePointInTime { get; set; } /// /// Gets what is this? /// - public string CreateMode { get; private set; } + public string CreateMode { get; set; } /// /// Gets date the SQL pool was created /// - public System.DateTime? CreationDate { get; private set; } + public System.DateTime? CreationDate { get; set; } } } \ No newline at end of file diff --git a/src/Synapse/Synapse/Models/SynapseConstants.cs b/src/Synapse/Synapse/Models/SynapseConstants.cs index 1b3c9f4f296e..7f76d89a5365 100644 --- a/src/Synapse/Synapse/Models/SynapseConstants.cs +++ b/src/Synapse/Synapse/Models/SynapseConstants.cs @@ -32,6 +32,8 @@ public static class SynapseConstants public const string SqlPool = nameof(SqlPool); + public const string SqlPoolName = nameof(SqlPoolName); + public const string RestorePoint = nameof(RestorePoint); public const string Sql = nameof(Sql); @@ -131,6 +133,8 @@ public static class SynapseConstants public const string DataFlow = nameof(DataFlow); + public const string SensitivityRecommendation = nameof(SensitivityRecommendation); + public static Dictionary ComputeNodeSizes = new Dictionary { { diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/BaseSqlVulnerabilityAssessmentAdapter.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/BaseSqlVulnerabilityAssessmentAdapter.cs new file mode 100644 index 000000000000..a35863a2a4f9 --- /dev/null +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/BaseSqlVulnerabilityAssessmentAdapter.cs @@ -0,0 +1,46 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; + +namespace Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment +{ + /// + /// The base SqlVulnerabilityAssessmentAdapter class is responsible for transforming the data that was received form the endpoints to the cmdlets model of vulnerability assessment and vice versa + /// + public class BaseSqlVulnerabilityAssessmentAdapter + { + /// + /// Gets or sets the Azure subscription + /// + protected IAzureSubscription Subscription { get; set; } + + /// + /// The Vulnerability Assessment endpoints communicator used by this adapter + /// + protected VulnerabilityAssessmentEndpointsCommunicator VulnerabilityAssessmentCommunicator { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + public BaseSqlVulnerabilityAssessmentAdapter(IAzureContext context) + { + Context = context; + Subscription = context?.Subscription; + VulnerabilityAssessmentCommunicator = new VulnerabilityAssessmentEndpointsCommunicator(Context); + } + } +} diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/SqlPoolVulnerabilityAssessmentRuleBaselineModel.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/SqlPoolVulnerabilityAssessmentRuleBaselineModel.cs new file mode 100644 index 000000000000..dc5a3d84b9b4 --- /dev/null +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/SqlPoolVulnerabilityAssessmentRuleBaselineModel.cs @@ -0,0 +1,43 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Synapse.Models.VulnerabilityAssessment +{ + /// + /// A class representing a SQL pool Vulnerability Assessment rule baseline + /// + public class SqlPoolVulnerabilityAssessmentRuleBaselineModel : VulnerabilityAssessmentRuleBaselineModel + { + /// + /// Gets or sets the workspace name + /// + public string WorkspaceName { get; set; } + + /// + /// Gets or sets the SQL pool name + /// + public string SqlPoolName { get; set; } + + public SqlPoolVulnerabilityAssessmentRuleBaselineModel(VulnerabilityAssessmentRuleBaselineModel model, string workspaceName, string sqlPoolName) + { + ResourceGroupName = model.ResourceGroupName; + RuleId = model.RuleId; + RuleAppliesToMaster = model.RuleAppliesToMaster; + BaselineResult = model.BaselineResult; + + WorkspaceName = workspaceName; + SqlPoolName = sqlPoolName; + } + } +} diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/SqlVulnerabilityAssessmentRuleBaselineAdapter.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/SqlVulnerabilityAssessmentRuleBaselineAdapter.cs new file mode 100644 index 000000000000..288b932730ed --- /dev/null +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/SqlVulnerabilityAssessmentRuleBaselineAdapter.cs @@ -0,0 +1,113 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Synapse.Properties; +using Microsoft.Azure.Management.Synapse.Models; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment +{ + /// + /// The SqlVulnerabilityAssessmentRuleBaselineAdapter class is responsible for transforming the data that was received form the endpoints to the cmdlets model of vulnerability assessment baseline and vice versa + /// + public class SqlVulnerabilityAssessmentRuleBaselineAdapter : BaseSqlVulnerabilityAssessmentAdapter + { + public SqlVulnerabilityAssessmentRuleBaselineAdapter(IAzureContext context) :base(context) + { + Context = context; + Subscription = context?.Subscription; + VulnerabilityAssessmentCommunicator = new VulnerabilityAssessmentEndpointsCommunicator(Context); + } + + /// + /// Remove the Vulnerability Assessment Rule Baseline + /// + public void ClearVulnerabilityAssessmentRuleBaseline(VulnerabilityAssessmentRuleBaselineModel model, string workspaceName, string sqlPoolName, ApplyToType applyToType) + { + if (applyToType == ApplyToType.SqlPool) + { + VulnerabilityAssessmentCommunicator.ClearSqlPoolVulnerabilityAssessmentRuleBaseline(model.ResourceGroupName, workspaceName, sqlPoolName, model.RuleId, model.RuleAppliesToMaster); + } + else + { + throw new NotSupportedException(Resources.VulnerabilityAssessmentTypeNotSupported); + } + } + + /// + /// Provides a SQL pool Vulnerability Assessment Rule Baseline model for the given SQL pool + /// + public VulnerabilityAssessmentRuleBaselineModel GetVulnerabilityAssessmentRuleBaseline(string resourceGroup, string workspaceName, + string sqlPoolName, string ruleId, bool ruleAppliesToMaster, ApplyToType applyToType) + { + var vulnerabilityAssessmentRuleBaseline = (applyToType == ApplyToType.SqlPool) + ? VulnerabilityAssessmentCommunicator.GetSqlPoolVulnerabilityAssessmentRuleBaseline(resourceGroup, workspaceName, sqlPoolName, ruleId, ruleAppliesToMaster) + : throw new NotSupportedException(Resources.VulnerabilityAssessmentTypeNotSupported); + + var ruleBaselineModel = new VulnerabilityAssessmentRuleBaselineModel() + { + ResourceGroupName = resourceGroup, + RuleId = ruleId, + RuleAppliesToMaster = ruleAppliesToMaster || sqlPoolName == "master" + }; + + ruleBaselineModel.BaselineResult = new List(); + + foreach (var baselineResult in vulnerabilityAssessmentRuleBaseline.BaselineResults) + { + var ruleBaselineItem = new VulnerabilityAssessmentRuleBaselineRowModel() + { + Result = baselineResult.Result + }; + + ruleBaselineModel.BaselineResult.Add(ruleBaselineItem); + } + + return ruleBaselineModel; + } + + /// + /// Transforms the given model to its endpoints acceptable structure and sends it to the endpoint + /// + public void SetVulnerabilityAssessmentRuleBaseline(VulnerabilityAssessmentRuleBaselineModel model, string workspaceName, string sqlPoolName, ApplyToType applyToType) + { + var ruleBaseline = new SqlPoolVulnerabilityAssessmentRuleBaseline() + { + BaselineResults = new List() + }; + + foreach (var baselineResult in model.BaselineResult) + { + var ruleBaselineItem = new SqlPoolVulnerabilityAssessmentRuleBaselineItem() + { + Result = baselineResult.Result + }; + + ruleBaseline.BaselineResults.Add(ruleBaselineItem); + } + + if (applyToType == ApplyToType.SqlPool) + { + VulnerabilityAssessmentCommunicator.SetSqlPoolVulnerabilityAssessmentRuleBaseline(model.ResourceGroupName, workspaceName, + sqlPoolName, model.RuleId, model.RuleAppliesToMaster, ruleBaseline); + } + else + { + throw new NotSupportedException(Resources.VulnerabilityAssessmentTypeNotSupported); + } + } + } +} diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentEndpointsCommunicator.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentEndpointsCommunicator.cs new file mode 100644 index 000000000000..8d3e41ef203a --- /dev/null +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentEndpointsCommunicator.cs @@ -0,0 +1,132 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Synapse.Common; +using Microsoft.Azure.Management.Storage.Version2017_10_01; +using Microsoft.Azure.Management.Synapse; +using Microsoft.Azure.Management.Synapse.Models; +using System.Linq; + +namespace Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment +{ + /// + /// This class is responsible for all the REST communication with the Vulnerability Assessment REST endpoints + /// + public class VulnerabilityAssessmentEndpointsCommunicator + { + /// + /// The Synapse client to be used by this end points communicator + /// + private static SynapseManagementClient SynapseClient { get; set; } + + /// + /// The Storage client to be used by this end points communicator + /// + private static StorageManagementClient StorageClient { get; set; } + + /// + /// Gets or set the Azure subscription + /// + private static IAzureSubscription Subscription { get; set; } + + /// + /// Gets or sets the Azure profile + /// + public IAzureContext Context { get; set; } + + public VulnerabilityAssessmentEndpointsCommunicator(IAzureContext context) + { + Context = context; + if (context?.Subscription != Subscription) + { + Subscription = context?.Subscription; + SynapseClient = null; + StorageClient = null; + } + } + + /// + /// Gets the SQL pool Vulnerability Assessment rule baseline for the given rule in the given SQL pool in the given workspace in the given resource group + /// + public SqlPoolVulnerabilityAssessmentRuleBaseline GetSqlPoolVulnerabilityAssessmentRuleBaseline(string resourceGroupName, string workspaceName, + string sqlPoolName, string ruleId, bool ruleAppliesToMaster) + { + return GetCurrentSynapseClient().SqlPoolVulnerabilityAssessmentRuleBaselines.Get(resourceGroupName, workspaceName, sqlPoolName, ruleId, + ruleAppliesToMaster ? VulnerabilityAssessmentPolicyBaselineName.Master : VulnerabilityAssessmentPolicyBaselineName.Default); + } + + /// + /// Removes the SQL pool Vulnerability Assessment rule baseline for the given rule in the given SQL pool in the given workspace in the given resource group + /// + public void ClearSqlPoolVulnerabilityAssessmentRuleBaseline(string resourceGroupName, string workspaceName, string sqlPoolName, string ruleId, + bool ruleAppliesToMaster) + { + GetCurrentSynapseClient().SqlPoolVulnerabilityAssessmentRuleBaselines.Delete(resourceGroupName, workspaceName, sqlPoolName, ruleId, + ruleAppliesToMaster ? VulnerabilityAssessmentPolicyBaselineName.Master : VulnerabilityAssessmentPolicyBaselineName.Default); + } + + /// + /// Calls the set Vulnerability Assessment APIs for the SQL pool Vulnerability Assessment rule baseline for the given rule in the given SQL pool in the given workspace in the given resource group + /// + public void SetSqlPoolVulnerabilityAssessmentRuleBaseline(string resourceGroupName, string workspaceName, string sqlPoolName, string ruleId, + bool ruleAppliesToMaster, SqlPoolVulnerabilityAssessmentRuleBaseline parameters) + { + GetCurrentSynapseClient().SqlPoolVulnerabilityAssessmentRuleBaselines.CreateOrUpdate(resourceGroupName, workspaceName, sqlPoolName, ruleId, + ruleAppliesToMaster ? VulnerabilityAssessmentPolicyBaselineName.Master : VulnerabilityAssessmentPolicyBaselineName.Default, parameters); + } + + public struct StorageContainerInfo + { + public string StorageAccountAccessKey; + public string StorageContainerPath; + } + + /// + /// Get Storage Container Info + /// + public StorageContainerInfo GetStorageContainerInfo(string resourceGroupName, string storageAccountName, string containerName) + { + var storageClient = GetCurrentStorageClient(); + var storageAccountObject = storageClient.StorageAccounts.GetProperties(resourceGroupName, storageAccountName); + var keysObject = storageClient.StorageAccounts.ListKeys(resourceGroupName, storageAccountName); + // TODO: Remove IfDef +#if NETSTANDARD + var storageAccountBlobPrimaryEndpoints = storageAccountObject.PrimaryEndpoints.Blob; + var key = keysObject.Keys.FirstOrDefault().Value; +#else + var storageAccountBlobPrimaryEndpoints = storageAccountObject.StorageAccount.PrimaryEndpoints.Blob; + var key = keysObject.StorageAccountKeys.Key1; +#endif + return new StorageContainerInfo + { + StorageAccountAccessKey = key, + StorageContainerPath = string.Format("{0}{1}", storageAccountBlobPrimaryEndpoints, containerName) + }; + } + + /// + /// Retrieve the Synapse Management client for the currently selected subscription, adding the session and request + /// id tracing headers for the current cmdlet invocation. + /// + /// The SQL Management client for the currently selected subscription. + private SynapseManagementClient GetCurrentSynapseClient() => SynapseClient ?? (SynapseClient = AzureSession.Instance.ClientFactory.CreateArmClient(Context, AzureEnvironment.Endpoint.ResourceManager)); + + /// + /// Lazy creation of a single instance of a storage client + /// + private StorageManagementClient GetCurrentStorageClient() => StorageClient ?? (StorageClient = AzureEndpointsCommunicator.GetStorageV2Client(Context)); + } +} diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaselineModel.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaselineModel.cs new file mode 100644 index 000000000000..c96ca62573d3 --- /dev/null +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaselineModel.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment +{ + /// + /// A class representing a Vulnerability Assessment rule baseline + /// + public class VulnerabilityAssessmentRuleBaselineModel + { + /// + /// Gets or sets the resource group + /// + public string ResourceGroupName { get; set; } + + /// + /// Gets or sets the rule ID + /// + [Ps1Xml(Label = "Rule ID", Target = ViewControl.Table)] + public string RuleId { get; set; } + + /// + /// Gets or sets a value to indicate whether th rule applies to master (workspace level rule) + /// + [Ps1Xml(Label = "Rule Applies To Master", Target = ViewControl.Table)] + public bool RuleAppliesToMaster { get; set; } + + /// + /// Gets or sets the rule baseline value + /// + [Ps1Xml(Label = "Baseline Results", Target = ViewControl.Table)] + public IList BaselineResult { get; set; } + } +} diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaselineRowModel.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaselineRowModel.cs new file mode 100644 index 000000000000..8c4444e71ed6 --- /dev/null +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentRuleBaselineRowModel.cs @@ -0,0 +1,38 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment +{ + /// + /// A class representing a Vulnerability Assessment Rule Baseline Row Model + /// + public class VulnerabilityAssessmentRuleBaselineRowModel + { + /// + /// Gets or sets the result + /// + [Ps1Xml(Label = "Result", Target = ViewControl.Table)] + public IList Result { get; internal set; } + + public override string ToString() + { + return Result == null + ? string.Empty + : string.Join(";", Result); + } + } +} diff --git a/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentSettingsModel.cs b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentSettingsModel.cs index 897f2a0d2a98..7587428c1708 100644 --- a/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentSettingsModel.cs +++ b/src/Synapse/Synapse/Models/VulnerabilityAssessment/VulnerabilityAssessmentSettingsModel.cs @@ -10,6 +10,14 @@ public enum RecurringScansInterval Weekly }; + /// + /// The type of resource that VA applies to + /// + public enum ApplyToType + { + SqlPool + } + public class VulnerabilityAssessmentSettingsModel { public VulnerabilityAssessmentSettingsModel(dynamic assessment, string resourceGroupName, string workspaceName) diff --git a/src/Synapse/Synapse/Properties/Resources.Designer.cs b/src/Synapse/Synapse/Properties/Resources.Designer.cs index 0084c411982f..0d3686fedf37 100644 --- a/src/Synapse/Synapse/Properties/Resources.Designer.cs +++ b/src/Synapse/Synapse/Properties/Resources.Designer.cs @@ -132,6 +132,15 @@ internal static string ADUserMoreThanOneFound { } } + /// + /// Looks up a localized string similar to About to process resource. + /// + internal static string BaseConfirmActionProcessMessage { + get { + return ResourceManager.GetString("BaseConfirmActionProcessMessage", resourceCulture); + } + } + /// /// Looks up a localized string similar to Are you sure you want to remove the Azure Sql Server Active Directory Administrator on workspace '{0}'?. /// @@ -259,6 +268,15 @@ internal static string CreatingSynapseWorkspace { } } + /// + /// Looks up a localized string similar to Failed to retrieve information protection policy of tenant {0}.. + /// + internal static string DataClassificationFailedToRetrieveInformationProtectionPolicy { + get { + return ResourceManager.GetString("DataClassificationFailedToRetrieveInformationProtectionPolicy", resourceCulture); + } + } + /// /// Looks up a localized string similar to Disabling Advanced Data Security on workspace '{0}'.. /// @@ -1539,6 +1557,24 @@ internal static string UserNameDoesNotExist { } } + /// + /// Looks up a localized string similar to Requested type is not supported by Vulnerability Assessment.. + /// + internal static string VulnerabilityAssessmentTypeNotSupported { + get { + return ResourceManager.GetString("VulnerabilityAssessmentTypeNotSupported", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wrong parameter type. + /// + internal static string VulnerabilityAssessmentWrongParameterType { + get { + return ResourceManager.GetString("VulnerabilityAssessmentWrongParameterType", resourceCulture); + } + } + /// /// Looks up a localized string similar to Job is not yet done. Current job state: '{0}'. /// diff --git a/src/Synapse/Synapse/Properties/Resources.resx b/src/Synapse/Synapse/Properties/Resources.resx index 7f58f52a7399..80e9649618f6 100644 --- a/src/Synapse/Synapse/Properties/Resources.resx +++ b/src/Synapse/Synapse/Properties/Resources.resx @@ -621,4 +621,16 @@ Are you sure you want to continue? Setting transparent data encryption protector in SQL pool '{0}' under workspace '{1}'. + + About to process resource + + + Failed to retrieve information protection policy of tenant {0}. + + + Requested type is not supported by Vulnerability Assessment. + + + Wrong parameter type + \ No newline at end of file diff --git a/src/Synapse/Synapse/help/Az.Synapse.md b/src/Synapse/Synapse/help/Az.Synapse.md index 9cabb821f108..7bdd71b2c2da 100644 --- a/src/Synapse/Synapse/help/Az.Synapse.md +++ b/src/Synapse/Synapse/help/Az.Synapse.md @@ -14,12 +14,21 @@ The topics in this section document the Azure PowerShell cmdlets for Azure Synap ### [Add-AzSynapseTriggerSubscription](Add-AzSynapseTriggerSubscription.md) Subscribe the event trigger to external service events. +### [Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline](Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md) +Clears the vulnerability assessment rule baseline. + ### [Disable-AzSynapseSqlAdvancedDataSecurity](Disable-AzSynapseSqlAdvancedDataSecurity.md) Disables Advanced Data Security on a workspace. +### [Disable-AzSynapseSqlPoolSensitivityRecommendation](Disable-AzSynapseSqlPoolSensitivityRecommendation.md) +Disables (dismisses) sensitivity recommendations on columns in the SQL pool. + ### [Enable-AzSynapseSqlAdvancedDataSecurity](Enable-AzSynapseSqlAdvancedDataSecurity.md) Enables Advanced Data Security on a workspace. +### [Enable-AzSynapseSqlPoolSensitivityRecommendation](Enable-AzSynapseSqlPoolSensitivityRecommendation.md) +Enables sensitivity recommendations on columns (recommendations are enabled by default on all columns) in the SQL pool. + ### [Export-AzSynapseNotebook](Export-AzSynapseNotebook.md) Exports notbooks. @@ -104,9 +113,18 @@ Gets the auditing settings of an Azure Synapse Analytics SQL pool. ### [Get-AzSynapseSqlPoolRestorePoint](Get-AzSynapseSqlPoolRestorePoint.md) Retrieves the distinct restore points from which a Synapse Analytics SQL pool can be restored. +### [Get-AzSynapseSqlPoolSensitivityClassification](Get-AzSynapseSqlPoolSensitivityClassification.md) +Gets the current information types and sensitivity labels of columns in the SQL pool. + +### [Get-AzSynapseSqlPoolSensitivityRecommendation](Get-AzSynapseSqlPoolSensitivityRecommendation.md) +Gets the recommended information types and sensitivity labels of columns in the SQL pool. + ### [Get-AzSynapseSqlPoolTransparentDataEncryption](Get-AzSynapseSqlPoolTransparentDataEncryption.md) Gets the TDE state for a SQL pool. +### [Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline](Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md) +Gets the vulnerability assessment rule baseline. + ### [Get-AzSynapseSqlPoolVulnerabilityAssessmentSetting](Get-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md) Gets the vulnerability assessment settings of a SQL pool. @@ -197,6 +215,12 @@ This feature is in a limited preview, initially accessible only to certain subsc ### [Remove-AzSynapseSqlPool](Remove-AzSynapseSqlPool.md) Deletes a Synapse Analytics SQL pool. +### [Remove-AzSynapseSqlPoolRestorePoint](Remove-AzSynapseSqlPoolRestorePoint.md) +Deletes a Synapse Analytics SQL pool restore point. + +### [Remove-AzSynapseSqlPoolSensitivityClassification](Remove-AzSynapseSqlPoolSensitivityClassification.md) +Removes the information types and sensitivity labels of columns in the SQL pool. + ### [Remove-AzSynapseTrigger](Remove-AzSynapseTrigger.md) Removes a trigger from a workspace. @@ -260,9 +284,15 @@ Changes the auditing settings of an Azure Synapse Analytics Workspace. ### [Set-AzSynapseSqlPoolAuditSetting](Set-AzSynapseSqlPoolAuditSetting.md) Changes the auditing settings for an Azure Synapse Analytics SQL pool. +### [Set-AzSynapseSqlPoolSensitivityClassification](Set-AzSynapseSqlPoolSensitivityClassification.md) +Sets the information types and sensitivity labels of columns in the SQL pool. + ### [Set-AzSynapseSqlPoolTransparentDataEncryption](Set-AzSynapseSqlPoolTransparentDataEncryption.md) Modifies TDE property for a SQL pool. +### [Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline](Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md) +Sets the vulnerability assessment rule baseline. + ### [Set-AzSynapseTrigger](Set-AzSynapseTrigger.md) Creates a trigger in a workspace. diff --git a/src/Synapse/Synapse/help/Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md b/src/Synapse/Synapse/help/Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md new file mode 100644 index 000000000000..a6f51cffbdac --- /dev/null +++ b/src/Synapse/Synapse/help/Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md @@ -0,0 +1,202 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/clear-azsynapsesqlpoolvulnerabilityassessmentrulebaseline +schema: 2.0.0 +--- + +# Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline + +## SYNOPSIS +Clears the vulnerability assessment rule baseline. + +## SYNTAX + +``` +Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline [-WorkspaceName] [-Name] + [-InputObject ] -RuleId [-RuleAppliesToMaster] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline** cmdlet removes the vulnerability assessment rule baseline. +Note that you need to run *Enable-AzSynapseSqlAdvancedDataSecurity* and *Update-AzSynapseSqlVulnerabilityAssessmentSetting* cmdlet as a prerequisite for using this cmdlets. + +## EXAMPLES + +### Example 1: Clears the vulnerability assessment rule baseline +```powershell +PS C:\> Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -SqlPoolName "ContosoSqlPool" ` + -RuleId "VA2108" +``` + +### Example 2: Clears the vulnerability assessment rule baseline from a SQL pool object +```powershell +PS C:\> Get-AzSynapseSqlPool ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -Name "ContosoSqlPool" ` + | Clear-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -RuleId "VA2108" ` + -AppliesToMaster +``` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SqlPoolName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RuleAppliesToMaster +Specifies whether the baseline results should apply on a workspace level rule identified by the RuleId + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RuleId +The rule ID which identifies the rule to set the baseline results to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Disable-AzSynapseSqlPoolSensitivityRecommendation.md b/src/Synapse/Synapse/help/Disable-AzSynapseSqlPoolSensitivityRecommendation.md new file mode 100644 index 000000000000..94e994296e68 --- /dev/null +++ b/src/Synapse/Synapse/help/Disable-AzSynapseSqlPoolSensitivityRecommendation.md @@ -0,0 +1,271 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/disable-azsynapsesqlpoolsensitivityrecommendation +schema: 2.0.0 +--- + +# Disable-AzSynapseSqlPoolSensitivityRecommendation + +## SYNOPSIS +Disables (dismisses) sensitivity recommendations on columns in the SQL pool. + +## SYNTAX + +### InputObjectParameterSet (Default) +``` +Disable-AzSynapseSqlPoolSensitivityRecommendation -InputObject + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ColumnParameterSet +``` +Disable-AzSynapseSqlPoolSensitivityRecommendation [-ResourceGroupName] [-WorkspaceName] + [-SqlPoolName] -SchemaName -TableName -ColumnName [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SqlPoolObjectColumnParameterSet +``` +Disable-AzSynapseSqlPoolSensitivityRecommendation -SqlPoolObject -SchemaName + -TableName -ColumnName [-PassThru] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Disable-AzSynapseSqlPoolSensitivityRecommendation cmdlet disables (dismisses) sensitivity recommendations on columns in the SQL pool. + +## EXAMPLES + +### Example 1: Disable sensitivity recommendations on a given column in an Azure Synapse SQL pool. +```powershell +PS C:\> Disable-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool -SchemaName schema -TableName table -ColumnName column +``` + +### Example 2: Disable sensitivity recommendations on columns which have sensitivity recommendations in an Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool | Disable-AzSynapseSqlPoolSensitivityRecommendation +``` + +### Example 3: Disable sensitivity recommendations on a given column in an Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Disable-AzSynapseSqlPoolSensitivityRecommendation -SchemaName schema -TableName table -ColumnName column +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnName +Name of column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +An object representing a SQL Pool Sensitivity Classification. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel +Parameter Sets: InputObjectParameterSet +Aliases: ClassificationObject + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru +This Cmdlet does not return an object by default. +If this switch is specified, it returns true if successful. + +```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 +Resource group name. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SchemaName +Name of schema. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolName +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TableName +Name of table. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Enable-AzSynapseSqlPoolSensitivityRecommendation.md b/src/Synapse/Synapse/help/Enable-AzSynapseSqlPoolSensitivityRecommendation.md new file mode 100644 index 000000000000..fe704ff6df34 --- /dev/null +++ b/src/Synapse/Synapse/help/Enable-AzSynapseSqlPoolSensitivityRecommendation.md @@ -0,0 +1,266 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/enable-azsynapsesqlpoolsensitivityrecommendation +schema: 2.0.0 +--- + +# Enable-AzSynapseSqlPoolSensitivityRecommendation + +## SYNOPSIS +Enables sensitivity recommendations on columns (recommendations are enabled by default on all columns) in the SQL pool. + +## SYNTAX + +### InputObjectParameterSet (Default) +``` +Enable-AzSynapseSqlPoolSensitivityRecommendation -InputObject + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ColumnParameterSet +``` +Enable-AzSynapseSqlPoolSensitivityRecommendation [-ResourceGroupName] [-WorkspaceName] + [-SqlPoolName] -SchemaName -TableName -ColumnName [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SqlPoolObjectColumnParameterSet +``` +Enable-AzSynapseSqlPoolSensitivityRecommendation -SqlPoolObject -SchemaName + -TableName -ColumnName [-PassThru] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Enable-AzSynapseSqlPoolSensitivityRecommendation cmdlet enables sensitivity recommendations on columns in the SQL pool. + +## EXAMPLES + +### Example 1: Enable sensitivity recommendations on a given column in an Azure Synapse SQL pool. +```powershell +PS C:\> Enable-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool -SchemaName schema -TableName table -ColumnName column +``` + +### Example 2: Enable sensitivity recommendations on a given column Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Enable-AzSynapseSqlPoolSensitivityRecommendation -SchemaName schema -TableName table -ColumnName column +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnName +Name of column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +An object representing a SQL Pool Sensitivity Classification. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel +Parameter Sets: InputObjectParameterSet +Aliases: ClassificationObject + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PassThru +This Cmdlet does not return an object by default. +If this switch is specified, it returns true if successful. + +```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 +Resource group name. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SchemaName +Name of schema. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolName +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TableName +Name of table. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md index 1c01d7771ebd..aaf61f8b59b0 100644 --- a/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlPool.md @@ -87,7 +87,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: GetByNameParameterSet, GetByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: False Position: Named diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolSensitivityClassification.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolSensitivityClassification.md new file mode 100644 index 000000000000..43edaae0e9b4 --- /dev/null +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolSensitivityClassification.md @@ -0,0 +1,288 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/get-azsynapsesqlpoolsensitivityclassification +schema: 2.0.0 +--- + +# Get-AzSynapseSqlPoolSensitivityClassification + +## SYNOPSIS +Gets the current information types and sensitivity labels of columns in the SQL pool. + +## SYNTAX + +### SqlPoolObjectParameterSet (Default) +``` +Get-AzSynapseSqlPoolSensitivityClassification -SqlPoolObject [-AsJob] + [-DefaultProfile ] [] +``` + +### SqlPoolParameterSet +``` +Get-AzSynapseSqlPoolSensitivityClassification [-ResourceGroupName] [-WorkspaceName] + [-SqlPoolName] [-AsJob] [-DefaultProfile ] [] +``` + +### ColumnParameterSet +``` +Get-AzSynapseSqlPoolSensitivityClassification [-ResourceGroupName] [-WorkspaceName] + [-SqlPoolName] -SchemaName -TableName -ColumnName [-AsJob] + [-DefaultProfile ] [] +``` + +### SqlPoolObjectColumnParameterSet +``` +Get-AzSynapseSqlPoolSensitivityClassification -SqlPoolObject -SchemaName + -TableName -ColumnName [-AsJob] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The Get-AzSynapseSqlPoolSensitivityClassification cmdlet returns the current information types and sensitivity labels of columns in the Azure Synapse SQL pool. + +## EXAMPLES + +### Example 1: Get current information types and sensitivity labels of an Azure Synapse SQL pool. +```powershell +PS C:\> Get-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +SensitivityLabels : {{ + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailBody, + InformationType: Contact Info + }, { + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailSubject, + SensitivityLabel: Confidential, + Rank: Medium + }, { + SchemaName: dbo, + TableName: EMailLog, + ColumnName: BounceEmailSubject, + SensitivityLabel: Confidential, + InformationType: Contact Info, + Rank: Medium + }} +``` + +### Example 2: Get current information types and sensitivity labels of an Azure Synapse SQL pool with Piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool | Get-AzSynapseSqlPoolSensitivityClassification + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +SensitivityLabels : {{ + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailBody, + InformationType: Contact Info + }, { + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailSubject, + SensitivityLabel: Confidential, + Rank: Medium + }, { + SchemaName: dbo, + TableName: EMailLog, + ColumnName: BounceEmailSubject, + SensitivityLabel: Confidential, + InformationType: Contact Info, + Rank: Medium + }} +``` + +### Example 3: Get current information type and sensitivity label of a specific column of an Azure Synapse SQL pool. +```powershell +PS C:\> Get-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool -SchemaName dbo -TableName EMailLog -ColumnName BounceEmailSubject + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +SensitivityLabels : {{ + SchemaName: dbo, + TableName: EMailLog, + ColumnName: BounceEmailSubject, + SensitivityLabel: Confidential, + InformationType: Contact Info, + Rank: Medium + }} +``` + +### Example 4: Get current information type and sensitivity label of a specific column of an Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Get-AzSynapseSqlPoolSensitivityClassification -SchemaName dbo -TableName EMailLog -ColumnName BounceEmailSubject + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +SensitivityLabels : {{ + SchemaName: dbo, + TableName: EMailLog, + ColumnName: BounceEmailSubject, + SensitivityLabel: Confidential, + InformationType: Contact Info, + Rank: Medium + }} +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnName +Name of column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: SqlPoolParameterSet, ColumnParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SchemaName +Name of schema. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolName +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: SqlPoolParameterSet, ColumnParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: SqlPoolObjectParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TableName +Name of table. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: SqlPoolParameterSet, ColumnParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolSensitivityRecommendation.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolSensitivityRecommendation.md new file mode 100644 index 000000000000..27826d1c58be --- /dev/null +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolSensitivityRecommendation.md @@ -0,0 +1,195 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/get-azsynapsesqlpoolsensitivityrecommendation +schema: 2.0.0 +--- + +# Get-AzSynapseSqlPoolSensitivityRecommendation + +## SYNOPSIS +Gets the recommended information types and sensitivity labels of columns in the SQL pool. + +## SYNTAX + +### SqlPoolObjectParameterSet (Default) +``` +Get-AzSynapseSqlPoolSensitivityRecommendation -SqlPoolObject [-AsJob] + [-DefaultProfile ] [] +``` + +### SqlPoolParameterSet +``` +Get-AzSynapseSqlPoolSensitivityRecommendation [-ResourceGroupName] [-WorkspaceName] + [-SqlPoolName] [-AsJob] [-DefaultProfile ] [] +``` + +## DESCRIPTION +The Get-AzSynapseSqlPoolSensitivityRecommendation cmdlet returns the recommended information types and sensitivity labels of columns in the SQL pool. + +## EXAMPLES + +### Example 1: Get recommended information types and sensitivity labels of an Azure Synapse SQL pool. +```powershell +PS C:\> Get-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +SensitivityLabels : {{ + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailBody, + InformationType: Contact Info + }, { + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailSubject, + SensitivityLabel: Confidential, + Rank: Medium + }, { + SchemaName: dbo, + TableName: EMailLog, + ColumnName: BounceEmailSubject, + SensitivityLabel: Confidential, + InformationType: Contact Info, + Rank: Medium + }} +``` + +### Example 2: Get recommended information types and sensitivity labels of an Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Get-AzSynapseSqlPoolSensitivityRecommendation + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +SensitivityLabels : {{ + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailBody, + InformationType: Contact Info + }, { + SchemaName: dbo, + TableName: Report, + ColumnName: ReportEmailSubject, + SensitivityLabel: Confidential, + Rank: Medium + }, { + SchemaName: dbo, + TableName: EMailLog, + ColumnName: BounceEmailSubject, + SensitivityLabel: Confidential, + InformationType: Contact Info, + Rank: Medium + }} +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: SqlPoolParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolName +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: SqlPoolParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: SqlPoolObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: SqlPoolParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md new file mode 100644 index 000000000000..d6a1e6810b3e --- /dev/null +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md @@ -0,0 +1,185 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/get-azsynapsesqlpoolvulnerabilityassessmentrulebaseline +schema: 2.0.0 +--- + +# Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline + +## SYNOPSIS +Gets the vulnerability assessment rule baseline. + +## SYNTAX + +``` +Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline [-WorkspaceName] [-Name] + [-InputObject ] -RuleId [-RuleAppliesToMaster] [-ResourceGroupName] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The **Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline** cmdlet gets the vulnerability assessment rule baseline. +Note that you need to run *Enable-AzSynapseSqlAdvancedDataSecurity* and *Update-AzSynapseSqlVulnerabilityAssessmentSetting* cmdlets as a prerequisite for using this cmdlet. + +## EXAMPLES + +### Example 1: Get the vulnerability assessment rule baseline +```powershell +PS C:\> Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -SqlPoolName "ContosoSqlPool" ` + -RuleId "VA2108" ` + -RuleAppliesToMaster + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +RuleId : VA2108 +RuleAppliesToMaster : True +BaselineResult : @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') +``` + +### Example 2: Get the vulnerability assessment rule baseline from a SQL pool object +```powershell +PS C:\> Get-AzSynapseSqlPool ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -Name "ContosoSqlPool" ` + | Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -RuleId "VA2108" + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +RuleId : VA2108 +RuleAppliesToMaster : False +BaselineResult : @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') +``` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SqlPoolName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RuleAppliesToMaster +Specifies whether the baseline results should apply on a workspace level rule identified by the RuleId + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RuleId +The rule ID which identifies the rule to set the baseline results to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md index 38afdf462bc4..c946b59a8c80 100644 --- a/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md +++ b/src/Synapse/Synapse/help/Get-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md @@ -94,7 +94,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: GetByNameParameterSet, GetByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md index b137135b7426..906cd9d363a8 100644 --- a/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/New-AzSynapseSqlPool.md @@ -92,7 +92,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md index 438b4546abf3..66dea2812577 100644 --- a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPool.md @@ -140,7 +140,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: DeleteByNameParameterSet, DeleteByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolRestorePoint.md b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolRestorePoint.md index 1c9c247e19eb..2f0fcf19ad80 100644 --- a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolRestorePoint.md +++ b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolRestorePoint.md @@ -1,4 +1,4 @@ ---- +--- external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml Module Name: Az.Synapse online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/remove-azsynapsesqlpoolrestorepoint @@ -14,14 +14,16 @@ Deletes a Synapse Analytics SQL pool restore point. ### DeleteByNameParameterSet (Default) ``` -Remove-AzSynapseSqlPoolRestorePoint [-ResourceGroupName ] -WorkspaceName -SqlPoolName -Name -[-PassThru] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzSynapseSqlPoolRestorePoint [-ResourceGroupName ] -WorkspaceName -SqlPoolName + -RestorePointCreationDate [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### DeleteByParentObjectParameterSet ``` -Remove-AzSynapseSqlPoolRestorePoint -Name -SqlPoolObject [-PassThru] - [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Remove-AzSynapseSqlPoolRestorePoint -RestorePointCreationDate -SqlPoolObject + [-PassThru] [-AsJob] [-Force] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### DeleteByInputObjectParameterSet @@ -88,13 +90,14 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Force -Do not ask for confirmation. +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) -Aliases: +Aliases: AzContext, AzureRmContext, AzureCredential + Required: False Position: Named Default value: None @@ -102,34 +105,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` - -### -InputObject -SQL pool restore point creation time input object, usually passed through the pipeline. +### -Force +Do not ask for confirmation. ```yaml -Type: Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint -Parameter Sets: DeleteByInputObjectParameterSet +Type: System.Management.Automation.SwitchParameter +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 ``` -### -RestorePointCreationDate -Name of Synapse SQL Restore Point Creation Date . +### -InputObject +SQL pool restore point creation time input object, usually passed through the pipeline. ```yaml -Type: System.String -Parameter Sets: DeleteByNameParameterSet, DeleteByParentObjectParameterSet +Type: Microsoft.Azure.Commands.Synapse.Models.PSRestorePoint +Parameter Sets: DeleteByInputObjectParameterSet Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -178,6 +180,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -RestorePointCreationDate +Name of Synapse SQL Restore Point Creation Date . + +```yaml +Type: System.DateTime +Parameter Sets: DeleteByNameParameterSet, DeleteByParentObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SqlPoolName Name of Synapse Sql pool. @@ -223,21 +240,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -WorkspaceObject -workspace input object, usually passed through the pipeline. - -```yaml -Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseWorkspace -Parameter Sets: DeleteByParentObjectParameterSet -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolSensitivityClassification.md b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolSensitivityClassification.md new file mode 100644 index 000000000000..5590fafbb678 --- /dev/null +++ b/src/Synapse/Synapse/help/Remove-AzSynapseSqlPoolSensitivityClassification.md @@ -0,0 +1,271 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/remove-azsynapsesqlpoolsensitivityclassification +schema: 2.0.0 +--- + +# Remove-AzSynapseSqlPoolSensitivityClassification + +## SYNOPSIS +Removes the information types and sensitivity labels of columns in the SQL pool. + +## SYNTAX + +### ClassificationObjectParameterSet (Default) +``` +Remove-AzSynapseSqlPoolSensitivityClassification -ClassificationObject + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ColumnParameterSet +``` +Remove-AzSynapseSqlPoolSensitivityClassification [-ResourceGroupName] [-WorkspaceName] + [-SqlPoolName] -SchemaName -TableName -ColumnName [-PassThru] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SqlPoolObjectColumnParameterSet +``` +Remove-AzSynapseSqlPoolSensitivityClassification -SqlPoolObject -SchemaName + -TableName -ColumnName [-PassThru] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Remove-AzSynapseSqlPoolSensitivityClassification cmdlet removes the information types and sensitivity labels of columns in the SQL pool. + +## EXAMPLES + +### Example 1: Remove information type and sensitivity label of a column in an Azure Synapse SQL pool. +```powershell +PS C:\> Remove-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool -SchemaName schema -TableName table -ColumnName column +``` + +### Example 2: Remove current information types and sensitivity labels of columns in an Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool | Remove-AzSynapseSqlPoolSensitivityClassification +``` + +### Example 3: Remove information type and sensitivity label of a column in an Azure Synapse SQL pool using Piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Remove-AzSynapseSqlPoolSensitivityClassification -SchemaName schema -TableName table -ColumnName column +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClassificationObject +An object representing a SQL Pool Sensitivity Classification. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel +Parameter Sets: ClassificationObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ColumnName +Name of column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 +``` + +### -PassThru +This Cmdlet does not return an object by default. +If this switch is specified, it returns true if successful. + +```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 +Resource group name. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SchemaName +Name of schema. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolName +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TableName +Name of table. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Reset-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md b/src/Synapse/Synapse/help/Reset-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md index 55a851c9eb51..96f3312130aa 100644 --- a/src/Synapse/Synapse/help/Reset-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md +++ b/src/Synapse/Synapse/help/Reset-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md @@ -110,7 +110,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: ClearByNameParameterSet, ClearByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Resume-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Resume-AzSynapseSqlPool.md index 6d02b8f66768..bf5d1f1b3c30 100644 --- a/src/Synapse/Synapse/help/Resume-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Resume-AzSynapseSqlPool.md @@ -101,7 +101,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: ResumeByNameParameterSet, ResumeByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Set-AzSynapseSqlPoolSensitivityClassification.md b/src/Synapse/Synapse/help/Set-AzSynapseSqlPoolSensitivityClassification.md new file mode 100644 index 000000000000..e99951d669d0 --- /dev/null +++ b/src/Synapse/Synapse/help/Set-AzSynapseSqlPoolSensitivityClassification.md @@ -0,0 +1,302 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/set-azsynapsesqlpoolsensitivityclassification +schema: 2.0.0 +--- + +# Set-AzSynapseSqlPoolSensitivityClassification + +## SYNOPSIS +Sets the information types and sensitivity labels of columns in the SQL pool. + +## SYNTAX + +### ClassificationObjectParameterSet (Default) +``` +Set-AzSynapseSqlPoolSensitivityClassification -ClassificationObject + [-PassThru] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ColumnParameterSet +``` +Set-AzSynapseSqlPoolSensitivityClassification [-SensitivityLabel ] [-InformationType ] + [-ResourceGroupName] [-WorkspaceName] [-SqlPoolName] -SchemaName + -TableName -ColumnName [-PassThru] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### SqlPoolObjectColumnParameterSet +``` +Set-AzSynapseSqlPoolSensitivityClassification [-SensitivityLabel ] [-InformationType ] + -SqlPoolObject -SchemaName -TableName -ColumnName [-PassThru] + [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The Set-AzSynapseSqlPoolSensitivityClassification cmdlet sets the information types and sensitivity labels of columns in the SQL pool. + +## EXAMPLES + +### Example 1: Set information type and sensitivity label of a column in an Azure Synapse SQL pool. +```powershell +PS C:\> Set-AzSynapseSqlPoolSensitivityClassification -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -SqlPoolName ContosoSqlPool -SchemaName schema -TableName table -ColumnName column -InformationType informationType -SensitivityLabel label +``` + +### Example 2: Set recommended information types and sensitivity labels of columns in an Azure Synapse SQL pool. +```powershell +PS C:\> Get-AzSynapseSqlPoolSensitivityRecommendation -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Set-AzSynapseSqlPoolSensitivityClassification +``` + +### Example 3: Set information type and sensitivity label of a column in an Azure Synapse SQL pool, using piping. +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName ContosoResourceGroup -WorkspaceName ContosoWorkspace -Name ContosoSqlPool | Set-AzSynapseSqlPoolSensitivityClassification -SchemaName schema -TableName table -ColumnName column -InformationType informationType -SensitivityLabel label +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClassificationObject +An object representing a SQL Pool Sensitivity Classification. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel +Parameter Sets: ClassificationObjectParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ColumnName +Name of column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +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 +``` + +### -InformationType +A name that describes the information type of the data stored in the column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PassThru +This Cmdlet does not return an object by default. +If this switch is specified, it returns true if successful. + +```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 +Resource group name. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SchemaName +Name of schema. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SensitivityLabel +A name that describes the sensitivity of the data stored in the column. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolName +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SqlPoolObject +SQL pool input object, usually passed through the pipeline. + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool +Parameter Sets: SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TableName +Name of table. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet, SqlPoolObjectColumnParameterSet +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: ColumnParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.DataClassification.SqlPoolSensitivityClassificationModel + +### Microsoft.Azure.Commands.Synapse.Models.PSSynapseSqlPool + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md b/src/Synapse/Synapse/help/Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md new file mode 100644 index 000000000000..5bee63fa97d2 --- /dev/null +++ b/src/Synapse/Synapse/help/Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline.md @@ -0,0 +1,288 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml +Module Name: Az.Synapse +online version: https://docs.microsoft.com/en-us/powershell/module/az.synapse/set-azsynapsesqlpoolvulnerabilityassessmentrulebaseline +schema: 2.0.0 +--- + +# Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline + +## SYNOPSIS +Sets the vulnerability assessment rule baseline. + +## SYNTAX + +``` +Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline [-WorkspaceName] [-Name] + [-InputObject ] -BaselineResult [-AsJob] + -RuleId [-RuleAppliesToMaster] [-ResourceGroupName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline** cmdlet sets the vulnerability assessment rule baseline. +As you review your assessment results, you can mark specific results as being an acceptable Baseline in your environment. The baseline is essentially a customization of how the results are reported. Results that match the baseline are considered as passing in subsequent scans. Once you have established your baseline security state, vulnerability assessment only reports on deviations from the baseline, and you can focus your attention on the relevant issues. +Note that you need to run *Enable-AzSynapseSqlAdvancedDataSecurity* and *Update-AzSynapseSqlVulnerabilityAssessmentSetting* cmdlet as a prerequisite for using this cmdlet. + +## EXAMPLES + +### Example 1: Set a vulnerability assessment rule baseline +```powershell +PS C:\> Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -SqlPoolName "ContosoSqlPool" ` + -RuleId "VA2108" ` + -RuleAppliesToMaster ` + -BaselineResult @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +RuleId : VA2108 +RuleAppliesToMaster : True +BaselineResult : @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') +``` + +BaselineResult value is a composition of several sub arrays that described the T-SQL results that will be added to the baseline. +You may find the Scan results under the storage defined by the Update-AzSynapseSqlVulnerabilityAssessmentSetting cmdlet, under scans/{WorkspaceName}/{SqlPoolName}/scan_{ScanId}.json + +### Example 2: Set a vulnerability assessment rule baseline from a baseline object +```powershell +PS C:\> Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -SqlPoolName "ContosoSqlPool" ` + -RuleId "VA2108" ` + -BaselineResult @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') + +PS C:\> Get-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + -SqlPoolName "ContosoSqlPool" ` + -RuleId "VA2108" ` + | Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -ResourceGroupName "ResourceGroup02" ` + -WorkspaceName "Server02" ` + -SqlPoolName "ContosoSqlPool02" + +ResourceGroupName : ResourceGroup02 +WorkspaceName : Server02 +SqlPoolName : ContosoSqlPool02 +RuleId : VA2108 +RuleAppliesToMaster : False +BaselineResult : @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') +``` + +### Example 3: Set a vulnerability assessment rule baseline on all the SQL pools under a workspace +```powershell +PS C:\> Get-AzSynapseSqlPool -ResourceGroupName "ContosoResourceGroup" ` + -WorkspaceName "ContosoWorkspace" ` + | where {$_.Name -ne "master"} ` + | Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline ` + -RuleId "VA2108" ` + -BaselineResult @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool +RuleId : VA2108 +RuleAppliesToMaster : False +BaselineResult : @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') + +ResourceGroupName : ContosoResourceGroup +WorkspaceName : ContosoWorkspace +SqlPoolName : ContosoSqlPool02 +RuleId : VA2108 +RuleAppliesToMaster : False +BaselineResult : @( 'Principal1', 'db_ddladmin', 'SQL_USER', 'None') , @( 'Principal2', 'db_ddladmin', 'SQL_USER', 'None') +``` + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BaselineResult +The results to set as baseline for the rule in all future scans + +```yaml +Type: System.String[][] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The Vulnerability Assessment rule baseline object to set + +```yaml +Type: Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Name of Synapse SQL pool. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: SqlPoolName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource group name. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RuleAppliesToMaster +Specifies whether the baseline results should apply on a workspace level rule identified by the RuleId + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -RuleId +The rule ID which identifies the rule to set the baseline results to. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceName +Name of Synapse workspace. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.VulnerabilityAssessmentRuleBaselineModel + +### System.String[][] + +### System.Management.Automation.SwitchParameter + +## OUTPUTS + +### Microsoft.Azure.Commands.Synapse.Models.VulnerabilityAssessment.SqlPoolVulnerabilityAssessmentRuleBaselineModel + +## NOTES + +## RELATED LINKS diff --git a/src/Synapse/Synapse/help/Suspend-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Suspend-AzSynapseSqlPool.md index 21e28b668732..4a1bde8f1926 100644 --- a/src/Synapse/Synapse/help/Suspend-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Suspend-AzSynapseSqlPool.md @@ -101,7 +101,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: SuspendByNameParameterSet, SuspendByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md index 1eaeaa2d99d3..a04e1c63813f 100644 --- a/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Test-AzSynapseSqlPool.md @@ -59,7 +59,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: (All) -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md b/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md index 311032fa8bff..5643e4b32e94 100644 --- a/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md +++ b/src/Synapse/Synapse/help/Update-AzSynapseSqlPool.md @@ -127,7 +127,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: UpdateByNameParameterSet, UpdateByParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Update-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md b/src/Synapse/Synapse/help/Update-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md index e1b7b77e1681..ebae5729bfc8 100644 --- a/src/Synapse/Synapse/help/Update-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md +++ b/src/Synapse/Synapse/help/Update-AzSynapseSqlPoolVulnerabilityAssessmentSetting.md @@ -182,7 +182,7 @@ Name of Synapse SQL pool. ```yaml Type: System.String Parameter Sets: UpdateByStorageAccountNameAndNameParameterSet, UpdateByBlobStorageSasUriAndNameParameterSet, UpdateByStorageAccountNameAndParentObjectParameterSet, UpdateByBlobStorageSasUriAndParentObjectParameterSet -Aliases: +Aliases: SqlPoolName Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Update-AzSynapseSqlVulnerabilityAssessmentSetting.md b/src/Synapse/Synapse/help/Update-AzSynapseSqlVulnerabilityAssessmentSetting.md index ed32175239fc..1272205f7954 100644 --- a/src/Synapse/Synapse/help/Update-AzSynapseSqlVulnerabilityAssessmentSetting.md +++ b/src/Synapse/Synapse/help/Update-AzSynapseSqlVulnerabilityAssessmentSetting.md @@ -80,7 +80,7 @@ This command updates Vulnerability Assessment settings with storage account name ### Example 2 ```powershell PS C:\> Update-AzSynapseSqlVulnerabilityAssessmentSetting ` - -ServerName "ContosoWorkspace"` + -WorkspaceName "ContosoWorkspace"` -BlobStorageSasUri "https://mystorage.blob.core.windows.net/vulnerability-assessment?st=XXXXXX" ` -RecurringScansInterval Weekly ` -EmailAdmins $true ` diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json index 2d7824617e98..7ce643874d17 100644 --- a/tools/SecurityTools/CredScanSuppressions.json +++ b/tools/SecurityTools/CredScanSuppressions.json @@ -1229,6 +1229,18 @@ "file": "src\\Synapse\\Synapse.Test\\SessionRecords\\Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.WorkspaceTests\\TestSynapseWorkspaceSecurity.json", "_justification": "storage account deleted after the test run" }, + { + "file": "src\\Synapse\\Synapse.Test\\SessionRecords\\Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.VulnerabilityAssessmentTests\\TestVulnerabilityAssessmentBaseline.json", + "_justification": "storage account deleted after the test run" + }, + { + "file": "src\\Synapse\\Synapse.Test\\SessionRecords\\Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests\\TestDataClassificationOnSqlPool.json", + "_justification": "storage account deleted after the test run" + }, + { + "file": "src\\Synapse\\Synapse.Test\\SessionRecords\\Microsoft.Azure.Commands.Synapse.Test.ScenarioTests.DataClassificationTests\\TestEnableDisableRecommendationsOnSqlPool.json", + "_justification": "storage account deleted after the test run" + }, { "file": "\\src\\RedisEnterpriseCache\\test\\Get-AzRedisEnterpriseCacheDatabaseKey.Recording.json", "_justification": "Legitimate session record. Test resource is deleted."