diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1
index 395971a5ec24..cea2a8d16601 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/DataMaskingTests.ps1
@@ -245,7 +245,7 @@ function Test-DatabaseDataMaskingNumberRuleLifecycle
Assert-AreEqual $rule.NumberTo 56
- Set-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -AliasName "AliasNumber" -NumberFrom 67.26 -NumberTo 78.91
+ Set-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -TableName "TableNumber1" -ColumnName "ColumnNumber1" -NumberFrom 67.26 -NumberTo 78.91
$rule = Get-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId
# Assert
@@ -254,7 +254,8 @@ function Test-DatabaseDataMaskingNumberRuleLifecycle
Assert-AreEqual $rule.DatabaseName $params.databaseName
Assert-AreEqual $rule.RuleId $ruleId
Assert-AreEqual $rule.MaskingFunction "Number"
- Assert-AreEqual $rule.AliasName "AliasNumber"
+ Assert-AreEqual $rule.TableName "TableNumber1"
+ Assert-AreEqual $rule.ColumnName "ColumnNumber1"
Assert-AreEqual $rule.NumberFrom 67.26
Assert-AreEqual $rule.NumberTo 78.91
@@ -316,7 +317,7 @@ function Test-DatabaseDataMaskingTextRuleLifecycle
Assert-AreEqual $rule.ReplacementString "AAA"
Assert-AreEqual $rule.SuffixSize 3
- Set-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -AliasName "AliasText" -PrefixSize 4 -ReplacementString "BBB" -SuffixSize 2
+ Set-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -TableName "TableText1" -ColumnName "ColumnText1" -PrefixSize 4 -ReplacementString "BBB" -SuffixSize 2
$rule = Get-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId
# Assert
@@ -325,7 +326,8 @@ function Test-DatabaseDataMaskingTextRuleLifecycle
Assert-AreEqual $rule.DatabaseName $params.databaseName
Assert-AreEqual $rule.RuleId $ruleId
Assert-AreEqual $rule.MaskingFunction "Text"
- Assert-AreEqual $rule.AliasName "AliasText"
+ Assert-AreEqual $rule.TableName "TableText1"
+ Assert-AreEqual $rule.ColumnName "ColumnText1"
Assert-AreEqual $rule.PrefixSize 4
Assert-AreEqual $rule.ReplacementString "BBB"
Assert-AreEqual $rule.SuffixSize 2
@@ -371,16 +373,13 @@ function Test-DatabaseDataMaskingRuleCreationFailures
Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -MaskingFunction "Default" -TableName "T1" -ColumnName "C1"}
Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "NONEXISTING" -TableName "T1" -ColumnName "C1"}
Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default"}
- Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -ColumnName "C1" -AliasName "A1"}
- Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -TableName "T1" -AliasName "A1"}
- Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -TableName "T1" -ColumnName "C1" -AliasName "A1"}
+ Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -ColumnName "C1"}
+ Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -TableName "T1"}
Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Number" -TableName "T1" -ColumnName "C1" -NumberFrom 2 -NumberTo 1}
New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -TableName "TT1" -ColumnName "CC1"
Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -TableName "TT2" -ColumnName "CC2" }
Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId "SHOULD-FAIL" -MaskingFunction "Default" -TableName "TT1" -ColumnName "CC1"}
- Set-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -MaskingFunction "Default" -AliasName "AA1"
- Assert-Throws { New-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId "SHOULD-FAIL" -MaskingFunction -AliasName "AA1"}
Remove-AzureSqlDatabaseDataMaskingRule -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -RuleId $ruleId -Force
}
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json
index 55ce20c6bab2..c21a6bb722ca 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingBasicRuleLifecycle.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31999"
+ "14993"
],
"x-ms-request-id": [
- "8d33bed5-050a-438e-bcf2-43bebbfc272f"
+ "04b3ebdb-fd67-4c32-960f-073c8c29e4c8"
],
"x-ms-correlation-request-id": [
- "8d33bed5-050a-438e-bcf2-43bebbfc272f"
+ "04b3ebdb-fd67-4c32-960f-073c8c29e4c8"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102731Z:8d33bed5-050a-438e-bcf2-43bebbfc272f"
+ "WESTEUROPE:20150522T085357Z:04b3ebdb-fd67-4c32-960f-073c8c29e4c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:31 GMT"
+ "Fri, 22 May 2015 08:53:56 GMT"
]
},
"StatusCode": 404
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-request-id": [
- "8d6e3dca-c02f-4e87-8e25-4898966c8662"
+ "37443edb-d4b6-460a-86e0-5722683429d3"
],
"x-ms-correlation-request-id": [
- "8d6e3dca-c02f-4e87-8e25-4898966c8662"
+ "37443edb-d4b6-460a-86e0-5722683429d3"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102733Z:8d6e3dca-c02f-4e87-8e25-4898966c8662"
+ "WESTEUROPE:20150522T085359Z:37443edb-d4b6-460a-86e0-5722683429d3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:33 GMT"
+ "Fri, 22 May 2015 08:53:58 GMT"
]
},
"StatusCode": 201
@@ -121,7 +121,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:27:34.4628221Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"98d9fe0f-e304-4f22-aa1d-3f14d4127fdc\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:54:00.1150171Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"78687b61-69c0-4b4d-951c-cc14f4e10724\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1632"
@@ -136,16 +136,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-request-id": [
- "98d9fe0f-e304-4f22-aa1d-3f14d4127fdc"
+ "78687b61-69c0-4b4d-951c-cc14f4e10724"
],
"x-ms-correlation-request-id": [
- "98d9fe0f-e304-4f22-aa1d-3f14d4127fdc"
+ "78687b61-69c0-4b4d-951c-cc14f4e10724"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102734Z:98d9fe0f-e304-4f22-aa1d-3f14d4127fdc"
+ "WESTEUROPE:20150522T085400Z:78687b61-69c0-4b4d-951c-cc14f4e10724"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:33 GMT"
+ "Fri, 22 May 2015 08:53:59 GMT"
]
},
"StatusCode": 200
@@ -175,10 +175,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:27:36.4149966Z\",\r\n \"duration\": \"PT1.2773563S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:54:02.288115Z\",\r\n \"duration\": \"PT1.1125317S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1640"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -190,16 +190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1194"
],
"x-ms-request-id": [
- "f0f2141b-6b48-4c0e-a839-48c764e3d014"
+ "6a2ed5c4-5eb5-4539-b0dd-e425f04480d9"
],
"x-ms-correlation-request-id": [
- "f0f2141b-6b48-4c0e-a839-48c764e3d014"
+ "6a2ed5c4-5eb5-4539-b0dd-e425f04480d9"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102737Z:f0f2141b-6b48-4c0e-a839-48c764e3d014"
+ "WESTEUROPE:20150522T085402Z:6a2ed5c4-5eb5-4539-b0dd-e425f04480d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:36 GMT"
+ "Fri, 22 May 2015 08:54:01 GMT"
]
},
"StatusCode": 201
@@ -238,16 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31998"
+ "14992"
],
"x-ms-request-id": [
- "b0141419-32f9-46e0-bd40-afd3b0ccb157"
+ "686614b3-d809-46cd-af4c-be1b715edac4"
],
"x-ms-correlation-request-id": [
- "b0141419-32f9-46e0-bd40-afd3b0ccb157"
+ "686614b3-d809-46cd-af4c-be1b715edac4"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102737Z:b0141419-32f9-46e0-bd40-afd3b0ccb157"
+ "WESTEUROPE:20150522T085403Z:686614b3-d809-46cd-af4c-be1b715edac4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -256,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:37 GMT"
+ "Fri, 22 May 2015 08:54:02 GMT"
]
},
"StatusCode": 200
@@ -286,16 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31996"
+ "14990"
],
"x-ms-request-id": [
- "3e679c96-fd7b-43f3-aef8-765a093f97e4"
+ "70e1657d-4131-4828-912a-e9fe337f806f"
],
"x-ms-correlation-request-id": [
- "3e679c96-fd7b-43f3-aef8-765a093f97e4"
+ "70e1657d-4131-4828-912a-e9fe337f806f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102740Z:3e679c96-fd7b-43f3-aef8-765a093f97e4"
+ "WESTEUROPE:20150522T085406Z:70e1657d-4131-4828-912a-e9fe337f806f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -304,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:40 GMT"
+ "Fri, 22 May 2015 08:54:05 GMT"
]
},
"StatusCode": 200
@@ -334,16 +334,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31994"
+ "14988"
],
"x-ms-request-id": [
- "d4f88400-a6f4-403e-abbe-5918e1baa884"
+ "cd15f906-fa1f-4a7e-afd5-0a82d986d14f"
],
"x-ms-correlation-request-id": [
- "d4f88400-a6f4-403e-abbe-5918e1baa884"
+ "cd15f906-fa1f-4a7e-afd5-0a82d986d14f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102743Z:d4f88400-a6f4-403e-abbe-5918e1baa884"
+ "WESTEUROPE:20150522T085409Z:cd15f906-fa1f-4a7e-afd5-0a82d986d14f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +352,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:43 GMT"
+ "Fri, 22 May 2015 08:54:08 GMT"
]
},
"StatusCode": 200
@@ -367,10 +367,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:27:44.410613Z\",\r\n \"duration\": \"PT6.5552439S\",\r\n \"trackingId\": \"51b79574-2e19-4431-be73-2036e781709c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:12.2826992Z\",\r\n \"duration\": \"PT9.3543685S\",\r\n \"trackingId\": \"7a104562-1769-4512-ac9f-f4c07cb02a27\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "662"
+ "663"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -382,16 +382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31992"
+ "14986"
],
"x-ms-request-id": [
- "2ef883e8-e41f-496b-ab1a-080bcf1f17f1"
+ "f34e1592-731b-41ac-b110-039eb2204b13"
],
"x-ms-correlation-request-id": [
- "2ef883e8-e41f-496b-ab1a-080bcf1f17f1"
+ "f34e1592-731b-41ac-b110-039eb2204b13"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102746Z:2ef883e8-e41f-496b-ab1a-080bcf1f17f1"
+ "WESTEUROPE:20150522T085412Z:f34e1592-731b-41ac-b110-039eb2204b13"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:46 GMT"
+ "Fri, 22 May 2015 08:54:11 GMT"
]
},
"StatusCode": 200
@@ -415,10 +415,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:27:47.1274848Z\",\r\n \"duration\": \"PT2.6534229S\",\r\n \"trackingId\": \"06452133-fef5-4ba7-9a51-5d454953aa88\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:27:44.410613Z\",\r\n \"duration\": \"PT6.5552439S\",\r\n \"trackingId\": \"51b79574-2e19-4431-be73-2036e781709c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:12.2826992Z\",\r\n \"duration\": \"PT9.3543685S\",\r\n \"trackingId\": \"7a104562-1769-4512-ac9f-f4c07cb02a27\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1378"
+ "663"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,16 +430,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31990"
+ "14984"
],
"x-ms-request-id": [
- "8c05e258-40ea-45b6-9da0-72099faeb23c"
+ "6dbf7762-aae1-4f36-a029-a1ae63e3892c"
],
"x-ms-correlation-request-id": [
- "8c05e258-40ea-45b6-9da0-72099faeb23c"
+ "6dbf7762-aae1-4f36-a029-a1ae63e3892c"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102749Z:8c05e258-40ea-45b6-9da0-72099faeb23c"
+ "WESTEUROPE:20150522T085415Z:6dbf7762-aae1-4f36-a029-a1ae63e3892c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:49 GMT"
+ "Fri, 22 May 2015 08:54:14 GMT"
]
},
"StatusCode": 200
@@ -463,10 +463,106 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:27:47.1274848Z\",\r\n \"duration\": \"PT2.6534229S\",\r\n \"trackingId\": \"06452133-fef5-4ba7-9a51-5d454953aa88\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:27:44.410613Z\",\r\n \"duration\": \"PT6.5552439S\",\r\n \"trackingId\": \"51b79574-2e19-4431-be73-2036e781709c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:18.1492417Z\",\r\n \"duration\": \"PT5.2330931S\",\r\n \"trackingId\": \"e8eda9d3-0c1b-4d98-9880-497fd7e2d8d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:12.2826992Z\",\r\n \"duration\": \"PT9.3543685S\",\r\n \"trackingId\": \"7a104562-1769-4512-ac9f-f4c07cb02a27\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1379"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14982"
+ ],
+ "x-ms-request-id": [
+ "dc382c7d-4fb7-4c04-9bee-e6e4710c5bc2"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc382c7d-4fb7-4c04-9bee-e6e4710c5bc2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085418Z:dc382c7d-4fb7-4c04-9bee-e6e4710c5bc2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:54:18 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/0BFA2D09CCA07F2F\",\r\n \"operationId\": \"0BFA2D09CCA07F2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:18.1492417Z\",\r\n \"duration\": \"PT5.2330931S\",\r\n \"trackingId\": \"e8eda9d3-0c1b-4d98-9880-497fd7e2d8d0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup/operations/4697E309BA82CFAE\",\r\n \"operationId\": \"4697E309BA82CFAE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:12.2826992Z\",\r\n \"duration\": \"PT9.3543685S\",\r\n \"trackingId\": \"7a104562-1769-4512-ac9f-f4c07cb02a27\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1379"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14980"
+ ],
+ "x-ms-request-id": [
+ "520bba1d-bc71-4e5c-88cf-e2ea62f80c24"
+ ],
+ "x-ms-correlation-request-id": [
+ "520bba1d-bc71-4e5c-88cf-e2ea62f80c24"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085421Z:520bba1d-bc71-4e5c-88cf-e2ea62f80c24"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:54:21 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzQwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:54:02.8632044Z\",\r\n \"duration\": \"PT1.6876211S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1378"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -478,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31988"
+ "14991"
],
"x-ms-request-id": [
- "00edaa57-7fb2-4f81-b244-7ede6bc5f130"
+ "2b6029b9-1dfc-44c0-9fbd-ee8f127338d8"
],
"x-ms-correlation-request-id": [
- "00edaa57-7fb2-4f81-b244-7ede6bc5f130"
+ "2b6029b9-1dfc-44c0-9fbd-ee8f127338d8"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102753Z:00edaa57-7fb2-4f81-b244-7ede6bc5f130"
+ "WESTEUROPE:20150522T085403Z:2b6029b9-1dfc-44c0-9fbd-ee8f127338d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -496,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:52 GMT"
+ "Fri, 22 May 2015 08:54:02 GMT"
]
},
"StatusCode": 200
@@ -511,10 +607,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:27:37.7930643Z\",\r\n \"duration\": \"PT2.655424S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:54:02.8632044Z\",\r\n \"duration\": \"PT1.6876211S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31997"
+ "14989"
],
"x-ms-request-id": [
- "2ceee169-7311-4b89-9f46-67dbc1f3bce6"
+ "508d0ac3-5f42-4ed7-a1f0-656de64bb040"
],
"x-ms-correlation-request-id": [
- "2ceee169-7311-4b89-9f46-67dbc1f3bce6"
+ "508d0ac3-5f42-4ed7-a1f0-656de64bb040"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102738Z:2ceee169-7311-4b89-9f46-67dbc1f3bce6"
+ "WESTEUROPE:20150522T085406Z:508d0ac3-5f42-4ed7-a1f0-656de64bb040"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -544,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:37 GMT"
+ "Fri, 22 May 2015 08:54:05 GMT"
]
},
"StatusCode": 200
@@ -559,10 +655,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:27:37.7930643Z\",\r\n \"duration\": \"PT2.655424S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:54:02.8632044Z\",\r\n \"duration\": \"PT1.6876211S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -574,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31995"
+ "14987"
],
"x-ms-request-id": [
- "54b600d7-33a1-42b8-9dde-cf4ce693e269"
+ "aa5ae97b-bd2e-46ea-b810-27ef95a62597"
],
"x-ms-correlation-request-id": [
- "54b600d7-33a1-42b8-9dde-cf4ce693e269"
+ "aa5ae97b-bd2e-46ea-b810-27ef95a62597"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102741Z:54b600d7-33a1-42b8-9dde-cf4ce693e269"
+ "WESTEUROPE:20150522T085409Z:aa5ae97b-bd2e-46ea-b810-27ef95a62597"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -592,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:40 GMT"
+ "Fri, 22 May 2015 08:54:09 GMT"
]
},
"StatusCode": 200
@@ -607,10 +703,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:27:37.7930643Z\",\r\n \"duration\": \"PT2.655424S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:54:02.8632044Z\",\r\n \"duration\": \"PT1.6876211S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -622,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31993"
+ "14985"
],
"x-ms-request-id": [
- "aa9ba0ba-8849-4683-afba-e57f736c52d4"
+ "d49e33db-ceb7-49a9-a595-1d2d129d9c23"
],
"x-ms-correlation-request-id": [
- "aa9ba0ba-8849-4683-afba-e57f736c52d4"
+ "d49e33db-ceb7-49a9-a595-1d2d129d9c23"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102744Z:aa9ba0ba-8849-4683-afba-e57f736c52d4"
+ "WESTEUROPE:20150522T085412Z:d49e33db-ceb7-49a9-a595-1d2d129d9c23"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -640,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:43 GMT"
+ "Fri, 22 May 2015 08:54:11 GMT"
]
},
"StatusCode": 200
@@ -655,10 +751,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:27:37.7930643Z\",\r\n \"duration\": \"PT2.655424S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:54:02.8632044Z\",\r\n \"duration\": \"PT1.6876211S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -670,16 +766,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31991"
+ "14983"
],
"x-ms-request-id": [
- "106a6d08-7683-42aa-a905-b8fa2ecfb2ec"
+ "2d9d9d0f-8c56-41e8-8d00-9ea04175c573"
],
"x-ms-correlation-request-id": [
- "106a6d08-7683-42aa-a905-b8fa2ecfb2ec"
+ "2d9d9d0f-8c56-41e8-8d00-9ea04175c573"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102747Z:106a6d08-7683-42aa-a905-b8fa2ecfb2ec"
+ "WESTEUROPE:20150522T085416Z:2d9d9d0f-8c56-41e8-8d00-9ea04175c573"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -688,7 +784,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:46 GMT"
+ "Fri, 22 May 2015 08:54:16 GMT"
]
},
"StatusCode": 200
@@ -703,10 +799,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:27:37.7930643Z\",\r\n \"duration\": \"PT2.655424S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:54:02.8632044Z\",\r\n \"duration\": \"PT1.6876211S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -718,16 +814,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31989"
+ "14981"
],
"x-ms-request-id": [
- "75527983-f33d-4745-ac52-f375fd20cf96"
+ "99b3a445-2fe3-43b7-ba23-26e64f776058"
],
"x-ms-correlation-request-id": [
- "75527983-f33d-4745-ac52-f375fd20cf96"
+ "99b3a445-2fe3-43b7-ba23-26e64f776058"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102750Z:75527983-f33d-4745-ac52-f375fd20cf96"
+ "WESTEUROPE:20150522T085419Z:99b3a445-2fe3-43b7-ba23-26e64f776058"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +832,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:49 GMT"
+ "Fri, 22 May 2015 08:54:19 GMT"
]
},
"StatusCode": 200
@@ -751,7 +847,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:27:50.1685494Z\",\r\n \"duration\": \"PT15.0309091S\",\r\n \"correlationId\": \"f0f2141b-6b48-4c0e-a839-48c764e3d014\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db40222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:54:19.6956446Z\",\r\n \"duration\": \"PT18.5200613S\",\r\n \"correlationId\": \"6a2ed5c4-5eb5-4539-b0dd-e425f04480d9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1642"
@@ -766,16 +862,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31987"
+ "14979"
],
"x-ms-request-id": [
- "54e35e08-7837-431c-a911-6e9c0ac3c09f"
+ "28781216-0d4f-4335-802c-849ceea721a3"
],
"x-ms-correlation-request-id": [
- "54e35e08-7837-431c-a911-6e9c0ac3c09f"
+ "28781216-0d4f-4335-802c-849ceea721a3"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102753Z:54e35e08-7837-431c-a911-6e9c0ac3c09f"
+ "WESTEUROPE:20150522T085422Z:28781216-0d4f-4335-802c-849ceea721a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +880,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:53 GMT"
+ "Fri, 22 May 2015 08:54:22 GMT"
]
},
"StatusCode": 200
@@ -799,10 +895,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"name\": \"sql-dm-cmdlet-server40222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"name\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222\",\r\n \"name\": \"sql-dm-cmdlet-server40222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222\",\r\n \"name\": \"sql-dm-cmdlet-server40222/sql-dm-cmdlet-db40222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "569"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -814,16 +910,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31986"
+ "14978"
],
"x-ms-request-id": [
- "a831e3b2-66d6-4320-96d2-d31e99153a80"
+ "5c5aaa93-a91e-478c-8ec8-03c0d42ca1ff"
],
"x-ms-correlation-request-id": [
- "a831e3b2-66d6-4320-96d2-d31e99153a80"
+ "5c5aaa93-a91e-478c-8ec8-03c0d42ca1ff"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102755Z:a831e3b2-66d6-4320-96d2-d31e99153a80"
+ "WESTEUROPE:20150522T085424Z:5c5aaa93-a91e-478c-8ec8-03c0d42ca1ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +928,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:55 GMT"
+ "Fri, 22 May 2015 08:54:24 GMT"
]
},
"StatusCode": 200
@@ -865,16 +961,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "northeurope:51ff7fb1-922f-41c3-8a92-8f694635dd48"
+ "westeurope:86c15607-458d-49d3-8252-df42862ad9e4"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31999"
+ "14999"
],
"x-ms-correlation-request-id": [
- "7ed7e1f1-b090-4760-8c27-79d4af0f7295"
+ "cb9ef00b-4577-424c-97fc-a2ccd33c65ed"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102756Z:7ed7e1f1-b090-4760-8c27-79d4af0f7295"
+ "WESTEUROPE:20150522T085425Z:cb9ef00b-4577-424c-97fc-a2ccd33c65ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -883,7 +979,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:56 GMT"
+ "Fri, 22 May 2015 08:54:25 GMT"
]
},
"StatusCode": 200
@@ -898,7 +994,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4db36739-81b9-4483-9a0c-1f1c4805b511"
+ "24666946-eb91-443d-a813-325378d0b3c9"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -910,7 +1006,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "1b37144c-0057-4082-84bd-440acd36b2ad"
+ "4330dcc1-a2b9-4c0b-950e-3b9f902cf9db"
],
"X-Content-Type-Options": [
"nosniff"
@@ -919,13 +1015,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31983"
+ "14962"
],
"x-ms-correlation-request-id": [
- "06a45245-f714-4e74-8bf4-072c1f7bf869"
+ "f93164ae-cabe-45fb-b4f5-7317f7ed380d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102758Z:06a45245-f714-4e74-8bf4-072c1f7bf869"
+ "WESTEUROPE:20150522T085427Z:f93164ae-cabe-45fb-b4f5-7317f7ed380d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -934,7 +1030,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:27:58 GMT"
+ "Fri, 22 May 2015 08:54:26 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -958,7 +1054,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4db36739-81b9-4483-9a0c-1f1c4805b511"
+ "24666946-eb91-443d-a813-325378d0b3c9"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -970,7 +1066,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "dc2acf46-6568-45c3-8354-1c73336b0002"
+ "3bc8e520-347e-4ae5-bed0-bb486107abcf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -982,13 +1078,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1193"
],
"x-ms-correlation-request-id": [
- "9cf8e024-1310-4b13-9bf9-e4a8bf0c377a"
+ "0a8a07fa-930c-4804-96f9-ff8d9c348139"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102800Z:9cf8e024-1310-4b13-9bf9-e4a8bf0c377a"
+ "WESTEUROPE:20150522T085428Z:0a8a07fa-930c-4804-96f9-ff8d9c348139"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -997,7 +1093,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:00 GMT"
+ "Fri, 22 May 2015 08:54:27 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1015,7 +1111,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "61d42bd2-441e-4b46-a56a-0db85ac40310"
+ "7e7e0eab-ae5a-470c-9cf6-6817fd0a3595"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1027,7 +1123,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "5e5d00e8-1e98-49b3-a330-4b6cc1781417"
+ "a33f0c09-3d51-4606-bcdc-6077501ea99a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1036,13 +1132,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31982"
+ "14961"
],
"x-ms-correlation-request-id": [
- "b83ce9d0-bc22-48dd-abf2-b0f54e0d7c42"
+ "d695fe20-4ef5-4295-937d-d775c45fcfc1"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102802Z:b83ce9d0-bc22-48dd-abf2-b0f54e0d7c42"
+ "WESTEUROPE:20150522T085430Z:d695fe20-4ef5-4295-937d-d775c45fcfc1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1051,7 +1147,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:02 GMT"
+ "Fri, 22 May 2015 08:54:29 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1069,7 +1165,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e3c26914-2979-470e-a5de-a0f9ddaf1e12"
+ "af2e35e9-99ae-4320-9b44-af48f85a0d8f"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1081,7 +1177,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "227a5b00-4e56-4478-af33-d0ec12cee6b0"
+ "a499b142-fbd2-477e-b28b-686f6b623027"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1090,13 +1186,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31981"
+ "14960"
],
"x-ms-correlation-request-id": [
- "366b279d-7ef5-47df-935f-5ef31cb1d46e"
+ "2ee3183a-67e8-40a2-b292-bddeaeb0da8e"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102803Z:366b279d-7ef5-47df-935f-5ef31cb1d46e"
+ "WESTEUROPE:20150522T085431Z:2ee3183a-67e8-40a2-b292-bddeaeb0da8e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1105,7 +1201,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:03 GMT"
+ "Fri, 22 May 2015 08:54:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1123,7 +1219,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "5fda891a-6804-4b13-ae1d-7abace69278e"
+ "03623a10-ffb9-4d47-8099-c7840a7ef060"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table1\",\r\n \"columnName\": \"Column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1135,7 +1231,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "61ef0757-3e6d-428a-aa61-7452440e1944"
+ "3759e657-f641-45a4-9719-c747060e20da"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1144,13 +1240,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31980"
+ "14959"
],
"x-ms-correlation-request-id": [
- "7b96a7ee-5061-4bf5-b477-2af3d5494e80"
+ "48c5bbbf-39e0-4884-b099-f1a5b67529e8"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102806Z:7b96a7ee-5061-4bf5-b477-2af3d5494e80"
+ "WESTEUROPE:20150522T085434Z:48c5bbbf-39e0-4884-b099-f1a5b67529e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1159,7 +1255,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:06 GMT"
+ "Fri, 22 May 2015 08:54:34 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1177,7 +1273,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b1cb4633-10cc-4296-ab1e-6ece1b81b8da"
+ "6e77b837-c6db-4116-aa20-867ed6681314"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table1\",\r\n \"columnName\": \"Column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1189,7 +1285,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "c5a4f81b-226f-42d9-baab-51d037d5fbd3"
+ "3a0f6a97-2d37-4818-a8a6-a3269ca427d9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1198,13 +1294,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31979"
+ "14958"
],
"x-ms-correlation-request-id": [
- "2f462f9c-508b-41a2-b43f-23e54388a144"
+ "ede15b78-d857-433f-aa14-ed0945be2a44"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102807Z:2f462f9c-508b-41a2-b43f-23e54388a144"
+ "WESTEUROPE:20150522T085436Z:ede15b78-d857-433f-aa14-ed0945be2a44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1213,7 +1309,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:07 GMT"
+ "Fri, 22 May 2015 08:54:36 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1231,7 +1327,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "12d6c7ed-cd10-4f57-a233-92c53c63d612"
+ "f2519ff5-ba4d-4ab1-bf91-fde577d32bb9"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table1\",\r\n \"columnName\": \"Column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1243,7 +1339,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "d85a35c2-4734-485a-ada4-0a7f66eb4122"
+ "c24ae66f-e24a-4cf5-aaa2-9c6077a6405c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1252,13 +1348,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31978"
+ "14957"
],
"x-ms-correlation-request-id": [
- "e9d8e3c4-933c-445a-9008-6b4abed15667"
+ "4e883a4a-82e8-4472-806d-08609c546981"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102809Z:e9d8e3c4-933c-445a-9008-6b4abed15667"
+ "WESTEUROPE:20150522T085437Z:4e883a4a-82e8-4472-806d-08609c546981"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1267,7 +1363,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:08 GMT"
+ "Fri, 22 May 2015 08:54:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1285,7 +1381,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "09ff6cae-a92f-45b4-9a0d-ad022cbe42a5"
+ "0fe61c4a-f25a-4888-88d1-626f638bbe61"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table2\",\r\n \"columnName\": \"Column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1297,7 +1393,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "7ede8e23-21ac-46e8-ab4f-8a2aa4f8e362"
+ "a1735624-ed86-4fd2-9fb1-7021f2523246"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1306,13 +1402,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31977"
+ "14956"
],
"x-ms-correlation-request-id": [
- "dee9c6ec-ffd4-40ee-afb6-44435dcece45"
+ "1606eb20-4fd2-4eda-afba-4ccf7c01e280"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102812Z:dee9c6ec-ffd4-40ee-afb6-44435dcece45"
+ "WESTEUROPE:20150522T085440Z:1606eb20-4fd2-4eda-afba-4ccf7c01e280"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1321,7 +1417,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:11 GMT"
+ "Fri, 22 May 2015 08:54:40 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1339,7 +1435,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0d37bfcf-2856-4ee6-985e-6f95bb8abe18"
+ "42c59ace-364a-4784-b3e5-b28304504649"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table2\",\r\n \"columnName\": \"Column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1351,7 +1447,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "624f6d40-c07d-4f36-b7ba-658b24f15c1c"
+ "dbe04e6b-bcf3-4fb1-90df-fe73d0c885b7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1360,13 +1456,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31976"
+ "14955"
],
"x-ms-correlation-request-id": [
- "c1f0ea2d-21f6-4eff-9a1c-fb77149f62c5"
+ "c4efcad3-872e-4ef4-a538-7c07aabf7caa"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102813Z:c1f0ea2d-21f6-4eff-9a1c-fb77149f62c5"
+ "WESTEUROPE:20150522T085442Z:c4efcad3-872e-4ef4-a538-7c07aabf7caa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1375,7 +1471,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:13 GMT"
+ "Fri, 22 May 2015 08:54:42 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1393,7 +1489,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0c423265-2187-42f8-8683-6bd2fd52d86b"
+ "7444f119-2a93-4feb-8de8-131a3ba4e949"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table2\",\r\n \"columnName\": \"Column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1405,7 +1501,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "7759519a-e2da-4746-8b13-a773d72942a5"
+ "23d4b30e-c4a5-448c-9d76-e50904408b8c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1414,13 +1510,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31975"
+ "14954"
],
"x-ms-correlation-request-id": [
- "f3746093-e549-4698-bc19-ff8142c2420c"
+ "690b8dc9-b560-4bf8-9e79-970949836caf"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102815Z:f3746093-e549-4698-bc19-ff8142c2420c"
+ "WESTEUROPE:20150522T085443Z:690b8dc9-b560-4bf8-9e79-970949836caf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1429,7 +1525,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:14 GMT"
+ "Fri, 22 May 2015 08:54:43 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1447,7 +1543,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "63146350-f7db-400b-983e-c1064bdb4133"
+ "95a07ec3-0472-4897-9732-730a22b1ed60"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1459,7 +1555,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "328ed1c5-8398-45f4-ac98-4f5a379ae71d"
+ "0d575aeb-809e-47ce-babd-147391b791eb"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1468,13 +1564,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31974"
+ "14953"
],
"x-ms-correlation-request-id": [
- "28637a41-9463-48b1-869d-fb16376283d8"
+ "5926dc9e-9390-465b-a6fa-5216b89a4c01"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102817Z:28637a41-9463-48b1-869d-fb16376283d8"
+ "WESTEUROPE:20150522T085446Z:5926dc9e-9390-465b-a6fa-5216b89a4c01"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1483,7 +1579,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:17 GMT"
+ "Fri, 22 May 2015 08:54:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1501,7 +1597,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "c822c61c-74cb-450e-801c-fe0dc7c6fe27"
+ "d8de3255-89cf-4a9d-a415-99b9f3a80c29"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1513,7 +1609,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "722d0924-3213-44fb-8575-cc8645f1757a"
+ "daba7410-eb69-4c09-b9d1-d49ffa2696ce"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1522,13 +1618,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31973"
+ "14952"
],
"x-ms-correlation-request-id": [
- "ffc2370c-c7c8-4cc4-9638-f3f326c7ed54"
+ "dfaf4902-6ad4-491c-bd3c-3aba1f33aa34"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102819Z:ffc2370c-c7c8-4cc4-9638-f3f326c7ed54"
+ "WESTEUROPE:20150522T085447Z:dfaf4902-6ad4-491c-bd3c-3aba1f33aa34"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1537,7 +1633,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:18 GMT"
+ "Fri, 22 May 2015 08:54:47 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1561,7 +1657,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e3c26914-2979-470e-a5de-a0f9ddaf1e12"
+ "af2e35e9-99ae-4320-9b44-af48f85a0d8f"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table1\",\r\n \"columnName\": \"Column1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
@@ -1573,7 +1669,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "d3e64654-4bc0-4bd8-a18e-d7c03d3f0ed5"
+ "5e0f1d21-f376-445f-8030-4bd9a559d68d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1585,13 +1681,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1192"
],
"x-ms-correlation-request-id": [
- "d017b3a0-fdee-4114-9546-f0eb44d32f2b"
+ "6d2d3396-d1fe-442e-aabe-5bd2b12c5a0c"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102805Z:d017b3a0-fdee-4114-9546-f0eb44d32f2b"
+ "WESTEUROPE:20150522T085433Z:6d2d3396-d1fe-442e-aabe-5bd2b12c5a0c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1600,7 +1696,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:05 GMT"
+ "Fri, 22 May 2015 08:54:32 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1624,7 +1720,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "12d6c7ed-cd10-4f57-a233-92c53c63d612"
+ "f2519ff5-ba4d-4ab1-bf91-fde577d32bb9"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg40222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server40222/databases/sql-dm-cmdlet-db40222/dataMaskingPolicies/Default/rules/rule1\",\r\n \"name\": \"rule1\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule1\",\r\n \"ruleState\": null,\r\n \"tableName\": \"Table2\",\r\n \"columnName\": \"Column2\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Email\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
@@ -1636,7 +1732,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "67dbd842-1d7e-474d-832c-4c1cbe479cd0"
+ "39d18f5e-624c-4c0c-b359-7d7c34dc3ac9"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1648,13 +1744,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1191"
],
"x-ms-correlation-request-id": [
- "dc276781-7aa8-42bb-b924-71253113630d"
+ "7674db95-6ad1-4404-a7d0-c8daa2311499"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102810Z:dc276781-7aa8-42bb-b924-71253113630d"
+ "WESTEUROPE:20150522T085439Z:7674db95-6ad1-4404-a7d0-c8daa2311499"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1663,7 +1759,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:10 GMT"
+ "Fri, 22 May 2015 08:54:39 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1681,7 +1777,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0c423265-2187-42f8-8683-6bd2fd52d86b"
+ "7444f119-2a93-4feb-8de8-131a3ba4e949"
]
},
"ResponseBody": "",
@@ -1690,7 +1786,7 @@
"0"
],
"x-ms-request-id": [
- "b2e47420-b21e-43b9-a1cd-2d3dcc34f9b5"
+ "d07f701c-9732-46cb-806e-a4fad7cdf14b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1699,13 +1795,13 @@
"1.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1190"
],
"x-ms-correlation-request-id": [
- "1d9fb75f-8c36-4a59-bf29-34848ff52310"
+ "67683d3e-c798-4933-81f4-64bb86f07f65"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102816Z:1d9fb75f-8c36-4a59-bf29-34848ff52310"
+ "WESTEUROPE:20150522T085445Z:67683d3e-c798-4933-81f4-64bb86f07f65"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1714,7 +1810,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:28:16 GMT"
+ "Fri, 22 May 2015 08:54:44 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingLevelChanges.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingLevelChanges.json
index 0db00252404e..1f43561f310c 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingLevelChanges.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingLevelChanges.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31914"
+ "14977"
],
"x-ms-request-id": [
- "f4b5b0ce-11c1-4541-afc6-b607830dcfed"
+ "5f6fda8b-f18d-42f1-95cb-8faf4baaecd4"
],
"x-ms-correlation-request-id": [
- "f4b5b0ce-11c1-4541-afc6-b607830dcfed"
+ "5f6fda8b-f18d-42f1-95cb-8faf4baaecd4"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103337Z:f4b5b0ce-11c1-4541-afc6-b607830dcfed"
+ "WESTEUROPE:20150522T085543Z:5f6fda8b-f18d-42f1-95cb-8faf4baaecd4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:37 GMT"
+ "Fri, 22 May 2015 08:55:42 GMT"
]
},
"StatusCode": 404
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1193"
],
"x-ms-request-id": [
- "9fcc907d-7a07-454b-b647-3853380fb4e8"
+ "cd9cc332-4ce6-45ae-9b80-95b0789ab7d8"
],
"x-ms-correlation-request-id": [
- "9fcc907d-7a07-454b-b647-3853380fb4e8"
+ "cd9cc332-4ce6-45ae-9b80-95b0789ab7d8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103339Z:9fcc907d-7a07-454b-b647-3853380fb4e8"
+ "WESTEUROPE:20150522T085545Z:cd9cc332-4ce6-45ae-9b80-95b0789ab7d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:39 GMT"
+ "Fri, 22 May 2015 08:55:44 GMT"
]
},
"StatusCode": 201
@@ -121,7 +121,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:33:40.2168699Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"9b14b1ee-867f-4cc1-b0bc-437f20f99e64\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:55:45.8871755Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"bda0a83e-8c0e-4bb9-8130-a561ea296b46\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1632"
@@ -136,16 +136,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1192"
],
"x-ms-request-id": [
- "9b14b1ee-867f-4cc1-b0bc-437f20f99e64"
+ "bda0a83e-8c0e-4bb9-8130-a561ea296b46"
],
"x-ms-correlation-request-id": [
- "9b14b1ee-867f-4cc1-b0bc-437f20f99e64"
+ "bda0a83e-8c0e-4bb9-8130-a561ea296b46"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103340Z:9b14b1ee-867f-4cc1-b0bc-437f20f99e64"
+ "WESTEUROPE:20150522T085545Z:bda0a83e-8c0e-4bb9-8130-a561ea296b46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:39 GMT"
+ "Fri, 22 May 2015 08:55:45 GMT"
]
},
"StatusCode": 200
@@ -175,7 +175,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:33:41.7988851Z\",\r\n \"duration\": \"PT0.9162994S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:55:47.7219079Z\",\r\n \"duration\": \"PT1.0894954S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1640"
@@ -190,16 +190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1191"
],
"x-ms-request-id": [
- "5572021f-1e89-4f32-b520-4d7b90e2dfee"
+ "c2594a30-8010-4f03-8a7b-a198601946d8"
],
"x-ms-correlation-request-id": [
- "5572021f-1e89-4f32-b520-4d7b90e2dfee"
+ "c2594a30-8010-4f03-8a7b-a198601946d8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103342Z:5572021f-1e89-4f32-b520-4d7b90e2dfee"
+ "WESTEUROPE:20150522T085548Z:c2594a30-8010-4f03-8a7b-a198601946d8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:41 GMT"
+ "Fri, 22 May 2015 08:55:47 GMT"
]
},
"StatusCode": 201
@@ -238,16 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31913"
+ "14976"
],
"x-ms-request-id": [
- "71c6572f-697b-4b18-9cd0-c15a461be02b"
+ "61aac4f7-4835-42f1-9874-cf5c6d353d9c"
],
"x-ms-correlation-request-id": [
- "71c6572f-697b-4b18-9cd0-c15a461be02b"
+ "61aac4f7-4835-42f1-9874-cf5c6d353d9c"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103342Z:71c6572f-697b-4b18-9cd0-c15a461be02b"
+ "WESTEUROPE:20150522T085548Z:61aac4f7-4835-42f1-9874-cf5c6d353d9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -256,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:42 GMT"
+ "Fri, 22 May 2015 08:55:48 GMT"
]
},
"StatusCode": 200
@@ -286,16 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31911"
+ "14974"
],
"x-ms-request-id": [
- "3872ec38-06f0-4d8b-abea-93d715c7f016"
+ "d989c4fb-27d0-4edc-a35b-8074237fd6ce"
],
"x-ms-correlation-request-id": [
- "3872ec38-06f0-4d8b-abea-93d715c7f016"
+ "d989c4fb-27d0-4edc-a35b-8074237fd6ce"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103346Z:3872ec38-06f0-4d8b-abea-93d715c7f016"
+ "WESTEUROPE:20150522T085551Z:d989c4fb-27d0-4edc-a35b-8074237fd6ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -304,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:45 GMT"
+ "Fri, 22 May 2015 08:55:51 GMT"
]
},
"StatusCode": 200
@@ -334,16 +334,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31909"
+ "14972"
],
"x-ms-request-id": [
- "ab321045-b443-4b3a-8ac1-49ad9b712d7f"
+ "d6c07af8-fac1-4f50-a7d6-7db32782f1d6"
],
"x-ms-correlation-request-id": [
- "ab321045-b443-4b3a-8ac1-49ad9b712d7f"
+ "d6c07af8-fac1-4f50-a7d6-7db32782f1d6"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103349Z:ab321045-b443-4b3a-8ac1-49ad9b712d7f"
+ "WESTEUROPE:20150522T085554Z:d6c07af8-fac1-4f50-a7d6-7db32782f1d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +352,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:48 GMT"
+ "Fri, 22 May 2015 08:55:54 GMT"
]
},
"StatusCode": 200
@@ -382,16 +382,64 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31907"
+ "14970"
+ ],
+ "x-ms-request-id": [
+ "0a34cdee-5de0-4ead-87b2-511c89c6fb35"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a34cdee-5de0-4ead-87b2-511c89c6fb35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085557Z:0a34cdee-5de0-4ead-87b2-511c89c6fb35"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:55:57 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzIwNzc3L2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:00.0192169Z\",\r\n \"duration\": \"PT9.7365182S\",\r\n \"trackingId\": \"eb8c69a6-03ba-483f-9807-0d0943bc8aa3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "663"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14968"
],
"x-ms-request-id": [
- "5d5dcacb-ddf0-4d2c-b67c-866b18468196"
+ "964f5bba-cc2e-4979-ad35-bb81f0ee9a28"
],
"x-ms-correlation-request-id": [
- "5d5dcacb-ddf0-4d2c-b67c-866b18468196"
+ "964f5bba-cc2e-4979-ad35-bb81f0ee9a28"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103352Z:5d5dcacb-ddf0-4d2c-b67c-866b18468196"
+ "WESTEUROPE:20150522T085600Z:964f5bba-cc2e-4979-ad35-bb81f0ee9a28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:51 GMT"
+ "Fri, 22 May 2015 08:56:00 GMT"
]
},
"StatusCode": 200
@@ -415,10 +463,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:33:53.1919382Z\",\r\n \"duration\": \"PT8.861663S\",\r\n \"trackingId\": \"bb0d19d2-b02c-4867-8e26-bd2fe98d89f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:00.0192169Z\",\r\n \"duration\": \"PT9.7365182S\",\r\n \"trackingId\": \"eb8c69a6-03ba-483f-9807-0d0943bc8aa3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "662"
+ "663"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,16 +478,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31905"
+ "14966"
],
"x-ms-request-id": [
- "96929b7c-b57c-4f09-a28b-c1bc404a17a2"
+ "23d5cd5a-7e16-453b-a9fe-3d3bbdbac7d6"
],
"x-ms-correlation-request-id": [
- "96929b7c-b57c-4f09-a28b-c1bc404a17a2"
+ "23d5cd5a-7e16-453b-a9fe-3d3bbdbac7d6"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103355Z:96929b7c-b57c-4f09-a28b-c1bc404a17a2"
+ "WESTEUROPE:20150522T085604Z:23d5cd5a-7e16-453b-a9fe-3d3bbdbac7d6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +496,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:54 GMT"
+ "Fri, 22 May 2015 08:56:03 GMT"
]
},
"StatusCode": 200
@@ -463,10 +511,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:33:53.1919382Z\",\r\n \"duration\": \"PT8.861663S\",\r\n \"trackingId\": \"bb0d19d2-b02c-4867-8e26-bd2fe98d89f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:00.0192169Z\",\r\n \"duration\": \"PT9.7365182S\",\r\n \"trackingId\": \"eb8c69a6-03ba-483f-9807-0d0943bc8aa3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "662"
+ "663"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -478,16 +526,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31903"
+ "14964"
],
"x-ms-request-id": [
- "dde8674e-910c-4750-b1f0-bd9b75939a1f"
+ "65efe146-0ebf-4ac3-83f5-15729af0be83"
],
"x-ms-correlation-request-id": [
- "dde8674e-910c-4750-b1f0-bd9b75939a1f"
+ "65efe146-0ebf-4ac3-83f5-15729af0be83"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103357Z:dde8674e-910c-4750-b1f0-bd9b75939a1f"
+ "WESTEUROPE:20150522T085607Z:65efe146-0ebf-4ac3-83f5-15729af0be83"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -496,7 +544,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:57 GMT"
+ "Fri, 22 May 2015 08:56:06 GMT"
]
},
"StatusCode": 200
@@ -511,7 +559,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/211B56626F770D4C\",\r\n \"operationId\": \"211B56626F770D4C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:33:59.6386962Z\",\r\n \"duration\": \"PT5.8621355S\",\r\n \"trackingId\": \"eac0f90b-096f-403a-ba0a-08388e4cb0b9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:33:53.1919382Z\",\r\n \"duration\": \"PT8.861663S\",\r\n \"trackingId\": \"bb0d19d2-b02c-4867-8e26-bd2fe98d89f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/211B56626F770D4C\",\r\n \"operationId\": \"211B56626F770D4C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:07.806701Z\",\r\n \"duration\": \"PT7.1921044S\",\r\n \"trackingId\": \"0255274b-b6b7-4fc3-bb61-3c5fadcf5a25\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:00.0192169Z\",\r\n \"duration\": \"PT9.7365182S\",\r\n \"trackingId\": \"eb8c69a6-03ba-483f-9807-0d0943bc8aa3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1378"
@@ -526,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31901"
+ "14962"
],
"x-ms-request-id": [
- "3a72fd8a-2dbe-45f4-bb1c-f4f20e51d156"
+ "50c1e798-b8ab-44a4-95ab-09fbe31e7d40"
],
"x-ms-correlation-request-id": [
- "3a72fd8a-2dbe-45f4-bb1c-f4f20e51d156"
+ "50c1e798-b8ab-44a4-95ab-09fbe31e7d40"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103401Z:3a72fd8a-2dbe-45f4-bb1c-f4f20e51d156"
+ "WESTEUROPE:20150522T085610Z:50c1e798-b8ab-44a4-95ab-09fbe31e7d40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -544,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:00 GMT"
+ "Fri, 22 May 2015 08:56:09 GMT"
]
},
"StatusCode": 200
@@ -559,7 +607,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/211B56626F770D4C\",\r\n \"operationId\": \"211B56626F770D4C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:33:59.6386962Z\",\r\n \"duration\": \"PT5.8621355S\",\r\n \"trackingId\": \"eac0f90b-096f-403a-ba0a-08388e4cb0b9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:33:53.1919382Z\",\r\n \"duration\": \"PT8.861663S\",\r\n \"trackingId\": \"bb0d19d2-b02c-4867-8e26-bd2fe98d89f1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/211B56626F770D4C\",\r\n \"operationId\": \"211B56626F770D4C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:07.806701Z\",\r\n \"duration\": \"PT7.1921044S\",\r\n \"trackingId\": \"0255274b-b6b7-4fc3-bb61-3c5fadcf5a25\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup/operations/B1D0DB095C697CDE\",\r\n \"operationId\": \"B1D0DB095C697CDE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:00.0192169Z\",\r\n \"duration\": \"PT9.7365182S\",\r\n \"trackingId\": \"eb8c69a6-03ba-483f-9807-0d0943bc8aa3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1378"
@@ -574,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31899"
+ "14960"
],
"x-ms-request-id": [
- "9a692483-2acb-467a-8b91-d590449ebb60"
+ "10581b4c-78ce-4ef2-b634-b3fb969f45d9"
],
"x-ms-correlation-request-id": [
- "9a692483-2acb-467a-8b91-d590449ebb60"
+ "10581b4c-78ce-4ef2-b634-b3fb969f45d9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103404Z:9a692483-2acb-467a-8b91-d590449ebb60"
+ "WESTEUROPE:20150522T085613Z:10581b4c-78ce-4ef2-b634-b3fb969f45d9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -592,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:03 GMT"
+ "Fri, 22 May 2015 08:56:12 GMT"
]
},
"StatusCode": 200
@@ -607,7 +655,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:33:41.7988851Z\",\r\n \"duration\": \"PT0.9162994S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:55:47.7219079Z\",\r\n \"duration\": \"PT1.0894954S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1640"
@@ -622,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31912"
+ "14975"
],
"x-ms-request-id": [
- "701a63d1-4dee-404a-965e-1fe7ef80c0b1"
+ "ae94b22f-584c-4605-b15e-fba9ee428f40"
],
"x-ms-correlation-request-id": [
- "701a63d1-4dee-404a-965e-1fe7ef80c0b1"
+ "ae94b22f-584c-4605-b15e-fba9ee428f40"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103343Z:701a63d1-4dee-404a-965e-1fe7ef80c0b1"
+ "WESTEUROPE:20150522T085549Z:ae94b22f-584c-4605-b15e-fba9ee428f40"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -640,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:43 GMT"
+ "Fri, 22 May 2015 08:55:48 GMT"
]
},
"StatusCode": 200
@@ -655,7 +703,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:33:43.8801636Z\",\r\n \"duration\": \"PT2.9975779S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -670,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31910"
+ "14973"
],
"x-ms-request-id": [
- "5576b204-e34c-45b8-9d45-0c76f4fbd8ca"
+ "28918104-b077-4d69-b17e-b4c33d2b2d5b"
],
"x-ms-correlation-request-id": [
- "5576b204-e34c-45b8-9d45-0c76f4fbd8ca"
+ "28918104-b077-4d69-b17e-b4c33d2b2d5b"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103346Z:5576b204-e34c-45b8-9d45-0c76f4fbd8ca"
+ "WESTEUROPE:20150522T085552Z:28918104-b077-4d69-b17e-b4c33d2b2d5b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -688,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:45 GMT"
+ "Fri, 22 May 2015 08:55:51 GMT"
]
},
"StatusCode": 200
@@ -703,7 +751,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:33:43.8801636Z\",\r\n \"duration\": \"PT2.9975779S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -718,16 +766,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31908"
+ "14971"
],
"x-ms-request-id": [
- "c51201e4-2a57-4d9f-a6bb-9cc4b2c84ae5"
+ "7306b428-db96-4787-adfa-e7dac5eac430"
],
"x-ms-correlation-request-id": [
- "c51201e4-2a57-4d9f-a6bb-9cc4b2c84ae5"
+ "7306b428-db96-4787-adfa-e7dac5eac430"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103349Z:c51201e4-2a57-4d9f-a6bb-9cc4b2c84ae5"
+ "WESTEUROPE:20150522T085555Z:7306b428-db96-4787-adfa-e7dac5eac430"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +784,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:48 GMT"
+ "Fri, 22 May 2015 08:55:54 GMT"
]
},
"StatusCode": 200
@@ -751,7 +799,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:33:43.8801636Z\",\r\n \"duration\": \"PT2.9975779S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -766,16 +814,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31906"
+ "14969"
],
"x-ms-request-id": [
- "7bd9446b-5fcf-4a86-8628-1ba2747d63c9"
+ "246093e5-64fb-427a-a5f5-5104644d7794"
],
"x-ms-correlation-request-id": [
- "7bd9446b-5fcf-4a86-8628-1ba2747d63c9"
+ "246093e5-64fb-427a-a5f5-5104644d7794"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103352Z:7bd9446b-5fcf-4a86-8628-1ba2747d63c9"
+ "WESTEUROPE:20150522T085558Z:246093e5-64fb-427a-a5f5-5104644d7794"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +832,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:51 GMT"
+ "Fri, 22 May 2015 08:55:57 GMT"
]
},
"StatusCode": 200
@@ -799,7 +847,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:33:43.8801636Z\",\r\n \"duration\": \"PT2.9975779S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -814,16 +862,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31904"
+ "14967"
],
"x-ms-request-id": [
- "24ba9499-8a5f-4eb9-855b-59340663dc29"
+ "c16f7240-5da9-479d-a45e-6ba9028c2ab1"
],
"x-ms-correlation-request-id": [
- "24ba9499-8a5f-4eb9-855b-59340663dc29"
+ "c16f7240-5da9-479d-a45e-6ba9028c2ab1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103355Z:24ba9499-8a5f-4eb9-855b-59340663dc29"
+ "WESTEUROPE:20150522T085601Z:c16f7240-5da9-479d-a45e-6ba9028c2ab1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +880,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:54 GMT"
+ "Fri, 22 May 2015 08:56:00 GMT"
]
},
"StatusCode": 200
@@ -847,7 +895,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:33:43.8801636Z\",\r\n \"duration\": \"PT2.9975779S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -862,16 +910,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31902"
+ "14965"
],
"x-ms-request-id": [
- "10bdc1a0-491d-4e3e-95a9-72b0c3d4e826"
+ "bff02f09-102e-4d0e-b7d1-28da1e26b577"
],
"x-ms-correlation-request-id": [
- "10bdc1a0-491d-4e3e-95a9-72b0c3d4e826"
+ "bff02f09-102e-4d0e-b7d1-28da1e26b577"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103358Z:10bdc1a0-491d-4e3e-95a9-72b0c3d4e826"
+ "WESTEUROPE:20150522T085604Z:bff02f09-102e-4d0e-b7d1-28da1e26b577"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -880,7 +928,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:33:57 GMT"
+ "Fri, 22 May 2015 08:56:03 GMT"
]
},
"StatusCode": 200
@@ -895,7 +943,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:33:43.8801636Z\",\r\n \"duration\": \"PT2.9975779S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -910,16 +958,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31900"
+ "14963"
],
"x-ms-request-id": [
- "97c8d3c2-4b1b-4cc2-a051-1634c52951c2"
+ "32b2e89f-63a4-44a1-8f60-f0def44fb3ea"
],
"x-ms-correlation-request-id": [
- "97c8d3c2-4b1b-4cc2-a051-1634c52951c2"
+ "32b2e89f-63a4-44a1-8f60-f0def44fb3ea"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103401Z:97c8d3c2-4b1b-4cc2-a051-1634c52951c2"
+ "WESTEUROPE:20150522T085607Z:32b2e89f-63a4-44a1-8f60-f0def44fb3ea"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -928,7 +976,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:00 GMT"
+ "Fri, 22 May 2015 08:56:06 GMT"
]
},
"StatusCode": 200
@@ -943,10 +991,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:34:02.14839Z\",\r\n \"duration\": \"PT21.2658043S\",\r\n \"correlationId\": \"5572021f-1e89-4f32-b520-4d7b90e2dfee\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:55:49.7833753Z\",\r\n \"duration\": \"PT3.1509628S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1640"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -958,16 +1006,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31898"
+ "14961"
],
"x-ms-request-id": [
- "92e00746-746a-4179-b4d5-484b3362efae"
+ "b52531f6-29ca-4cd6-b6d5-55459b50ec89"
],
"x-ms-correlation-request-id": [
- "92e00746-746a-4179-b4d5-484b3362efae"
+ "b52531f6-29ca-4cd6-b6d5-55459b50ec89"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103404Z:92e00746-746a-4179-b4d5-484b3362efae"
+ "WESTEUROPE:20150522T085610Z:b52531f6-29ca-4cd6-b6d5-55459b50ec89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -976,7 +1024,55 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:03 GMT"
+ "Fri, 22 May 2015 08:56:09 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzIwNzc3L2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db20777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:56:10.6956337Z\",\r\n \"duration\": \"PT24.0632212S\",\r\n \"correlationId\": \"c2594a30-8010-4f03-8a7b-a198601946d8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1642"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14959"
+ ],
+ "x-ms-request-id": [
+ "3dc716c0-89bc-40db-a795-3942fa87b8f4"
+ ],
+ "x-ms-correlation-request-id": [
+ "3dc716c0-89bc-40db-a795-3942fa87b8f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085613Z:3dc716c0-89bc-40db-a795-3942fa87b8f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:56:13 GMT"
]
},
"StatusCode": 200
@@ -991,10 +1087,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"name\": \"sql-dm-cmdlet-server20777\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"name\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777\",\r\n \"name\": \"sql-dm-cmdlet-server20777\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777\",\r\n \"name\": \"sql-dm-cmdlet-server20777/sql-dm-cmdlet-db20777\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "569"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1006,16 +1102,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31897"
+ "14958"
],
"x-ms-request-id": [
- "2119c589-d02b-4a63-a01c-62c63753bf1d"
+ "3f3dc135-36b3-4335-bd33-5dec6a105487"
],
"x-ms-correlation-request-id": [
- "2119c589-d02b-4a63-a01c-62c63753bf1d"
+ "3f3dc135-36b3-4335-bd33-5dec6a105487"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103406Z:2119c589-d02b-4a63-a01c-62c63753bf1d"
+ "WESTEUROPE:20150522T085616Z:3f3dc135-36b3-4335-bd33-5dec6a105487"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1024,7 +1120,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:05 GMT"
+ "Fri, 22 May 2015 08:56:15 GMT"
]
},
"StatusCode": 200
@@ -1057,16 +1153,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "westeurope:9ccc4efa-261f-44c8-aa44-10460d3ac924"
+ "westeurope:f3bff442-38dd-4aa8-ac04-2d5392defa1a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31918"
+ "14951"
],
"x-ms-correlation-request-id": [
- "e6944555-c72a-495d-9e98-1ee67f107970"
+ "8ffa1864-29b9-4e5f-af92-de2d3f0584f9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103407Z:e6944555-c72a-495d-9e98-1ee67f107970"
+ "WESTEUROPE:20150522T085616Z:8ffa1864-29b9-4e5f-af92-de2d3f0584f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1075,7 +1171,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:07 GMT"
+ "Fri, 22 May 2015 08:56:16 GMT"
]
},
"StatusCode": 200
@@ -1090,7 +1186,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "98d4282e-9a0f-42f6-957e-95d1976aec16"
+ "24631cce-11db-490d-b12b-40024875f2a5"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1102,7 +1198,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ce0b791d-f8ba-4f33-a397-b3353d4e89a7"
+ "0bd98974-c138-4c4d-99f1-055173393547"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1111,13 +1207,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31960"
+ "14991"
],
"x-ms-correlation-request-id": [
- "361c6b3d-c06c-4527-ab25-fd575fd41d95"
+ "38ec32fa-0215-4071-84c3-d54101137e1b"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103409Z:361c6b3d-c06c-4527-ab25-fd575fd41d95"
+ "WESTEUROPE:20150522T085618Z:38ec32fa-0215-4071-84c3-d54101137e1b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1126,7 +1222,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:08 GMT"
+ "Fri, 22 May 2015 08:56:17 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1144,7 +1240,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "3a0c40ef-0a64-44a0-be97-e4c2b65a3b71"
+ "1d636e67-844a-4ae6-a706-612e2d3e9d0c"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1156,7 +1252,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b8978e56-86ee-407e-ba13-be551ab13c22"
+ "4e81248c-55a5-4fd6-be06-4c348c424680"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1165,13 +1261,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31959"
+ "14990"
],
"x-ms-correlation-request-id": [
- "15ac7bb4-65fd-48ab-8d8b-c3dada69359a"
+ "0bd207b4-1a04-4eed-8e1c-8c9725f47372"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103412Z:15ac7bb4-65fd-48ab-8d8b-c3dada69359a"
+ "WESTEUROPE:20150522T085621Z:0bd207b4-1a04-4eed-8e1c-8c9725f47372"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1180,7 +1276,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:11 GMT"
+ "Fri, 22 May 2015 08:56:21 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1198,7 +1294,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0bd47859-5cfc-47ff-9a48-afa072a03db6"
+ "63edc78b-6794-4bc8-aa14-5e8e94adf462"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1210,7 +1306,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "53b393a6-bbfc-47cf-8f99-67c51a72f13a"
+ "7715f419-13ce-44c2-a5d0-d91524f16d65"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1219,13 +1315,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31958"
+ "14989"
],
"x-ms-correlation-request-id": [
- "754386c4-822f-4ddd-aee2-25b41614538a"
+ "701e7241-bcb3-46b3-95ee-30c8d8059fa7"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103413Z:754386c4-822f-4ddd-aee2-25b41614538a"
+ "WESTEUROPE:20150522T085623Z:701e7241-bcb3-46b3-95ee-30c8d8059fa7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1234,7 +1330,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:12 GMT"
+ "Fri, 22 May 2015 08:56:23 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1252,7 +1348,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "318dc962-80df-4f5c-ab4b-935696427958"
+ "1bfd6260-ec4f-47e1-b80f-b627dff654a6"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1264,7 +1360,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "9bf5c011-eba6-459f-9d24-05c70dd6946c"
+ "c620d5ed-3f40-4000-a166-951ec5204361"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1273,13 +1369,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31957"
+ "14988"
],
"x-ms-correlation-request-id": [
- "03f009cd-0822-4d70-9c93-0aa7ef649e56"
+ "31495888-080a-4c1e-9ac5-4750da9a5fcf"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103416Z:03f009cd-0822-4d70-9c93-0aa7ef649e56"
+ "WESTEUROPE:20150522T085626Z:31495888-080a-4c1e-9ac5-4750da9a5fcf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1288,7 +1384,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:15 GMT"
+ "Fri, 22 May 2015 08:56:26 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1306,7 +1402,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "2d55046e-f9fa-4c6a-a418-db5bb87c0556"
+ "2cabcfd8-b24e-461f-b01b-8461f601e560"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1318,7 +1414,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "bfc10de5-9d2e-41f3-b679-1dc0207eb4c2"
+ "c3eb3190-94ee-4f9d-bfbb-91ccb447d193"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1327,13 +1423,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31956"
+ "14987"
],
"x-ms-correlation-request-id": [
- "b9ee630a-852b-4ac8-8a46-a7e02e8d0a12"
+ "6e5e173d-ab0a-4b14-9fbc-869d070b69fb"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103418Z:b9ee630a-852b-4ac8-8a46-a7e02e8d0a12"
+ "WESTEUROPE:20150522T085627Z:6e5e173d-ab0a-4b14-9fbc-869d070b69fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1342,7 +1438,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:17 GMT"
+ "Fri, 22 May 2015 08:56:27 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1360,7 +1456,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "03d6f7e4-c2ee-49df-9280-c3abd8e23cc8"
+ "3c7b7828-ed44-4e7e-ae85-6d26eb93461c"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1372,7 +1468,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b54d4654-b176-4bd4-b797-0589d6ed5444"
+ "df1606c2-224c-4fb6-bb46-b64a776bebaf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1381,13 +1477,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31955"
+ "14986"
],
"x-ms-correlation-request-id": [
- "5de85b1a-5de5-41bc-ac9b-69a21875aa42"
+ "98d2bebb-4b47-4caf-9b16-433fcb71c4f9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103421Z:5de85b1a-5de5-41bc-ac9b-69a21875aa42"
+ "WESTEUROPE:20150522T085630Z:98d2bebb-4b47-4caf-9b16-433fcb71c4f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1396,7 +1492,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:20 GMT"
+ "Fri, 22 May 2015 08:56:30 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1414,7 +1510,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "906ae3c7-fbaf-43d8-b727-cb58605a08f4"
+ "cd067c8b-28b2-42f8-bf44-9c8b61deebc8"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1426,7 +1522,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4d5bd7a6-dd5a-4986-aadb-29b97ebee2f6"
+ "fc6c21a0-b978-42ab-97c2-7d8b16c19240"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1435,13 +1531,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31954"
+ "14985"
],
"x-ms-correlation-request-id": [
- "1a37df0f-ba57-446c-a6b4-95af177d9f9c"
+ "6390df45-9a85-42b1-847f-ca6b04ec19f9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103422Z:1a37df0f-ba57-446c-a6b4-95af177d9f9c"
+ "WESTEUROPE:20150522T085632Z:6390df45-9a85-42b1-847f-ca6b04ec19f9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1450,7 +1546,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:22 GMT"
+ "Fri, 22 May 2015 08:56:32 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1468,7 +1564,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4bf57d3a-4200-4a92-aad4-0b0f500d2edd"
+ "120afb9e-bded-409f-ac10-498b2fb5f6d8"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1480,7 +1576,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ff2e4b20-79eb-41d5-819b-a0ce2d1cc5cd"
+ "4ab1e642-5a3a-48b0-885c-7db0da3b74aa"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1489,13 +1585,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31953"
+ "14984"
],
"x-ms-correlation-request-id": [
- "c4bc4adc-2025-45e1-98e6-323ac8fc7c22"
+ "44c7b27c-d422-4fdb-a7ee-757241de1449"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103425Z:c4bc4adc-2025-45e1-98e6-323ac8fc7c22"
+ "WESTEUROPE:20150522T085635Z:44c7b27c-d422-4fdb-a7ee-757241de1449"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1504,7 +1600,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:25 GMT"
+ "Fri, 22 May 2015 08:56:35 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1528,7 +1624,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "98d4282e-9a0f-42f6-957e-95d1976aec16"
+ "24631cce-11db-490d-b12b-40024875f2a5"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1540,7 +1636,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "53ceac53-f40e-4eb1-b018-058f8e5d981b"
+ "e684fc9a-53be-4da5-a2ad-1ac60cdbce92"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1552,13 +1648,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "e3beca97-e2d4-40ce-9d9d-cb538a7f459c"
+ "5c1e1110-b2fa-48e2-a979-b45d12af70ac"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103410Z:e3beca97-e2d4-40ce-9d9d-cb538a7f459c"
+ "WESTEUROPE:20150522T085620Z:5c1e1110-b2fa-48e2-a979-b45d12af70ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1567,7 +1663,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:10 GMT"
+ "Fri, 22 May 2015 08:56:19 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1591,7 +1687,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0bd47859-5cfc-47ff-9a48-afa072a03db6"
+ "63edc78b-6794-4bc8-aa14-5e8e94adf462"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1603,7 +1699,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "e1721474-6231-439a-b32a-6b645b7b78ec"
+ "e55fa0d8-9b11-48a5-b641-7f06f7efe1f0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1615,13 +1711,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1194"
],
"x-ms-correlation-request-id": [
- "59f7d44e-a5bc-4709-86e3-26ba2049c4a4"
+ "432e0a53-a15e-49a2-9980-973bec80a25e"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103415Z:59f7d44e-a5bc-4709-86e3-26ba2049c4a4"
+ "WESTEUROPE:20150522T085625Z:432e0a53-a15e-49a2-9980-973bec80a25e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1630,7 +1726,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:14 GMT"
+ "Fri, 22 May 2015 08:56:25 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1654,7 +1750,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "2d55046e-f9fa-4c6a-a418-db5bb87c0556"
+ "2cabcfd8-b24e-461f-b01b-8461f601e560"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1666,7 +1762,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "832d873f-52a3-4b8c-84c2-92f2a8c8211f"
+ "7fec1d05-c2bd-4dcb-9895-592b171d5b43"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1678,13 +1774,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1193"
],
"x-ms-correlation-request-id": [
- "d6c99963-c32f-48b9-9a2a-f47e5b8f7c4d"
+ "486f2751-780a-4afa-a3ef-c2d259c212a3"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103419Z:d6c99963-c32f-48b9-9a2a-f47e5b8f7c4d"
+ "WESTEUROPE:20150522T085629Z:486f2751-780a-4afa-a3ef-c2d259c212a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1693,7 +1789,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:18 GMT"
+ "Fri, 22 May 2015 08:56:29 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1717,7 +1813,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "906ae3c7-fbaf-43d8-b727-cb58605a08f4"
+ "cd067c8b-28b2-42f8-bf44-9c8b61deebc8"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg20777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server20777/databases/sql-dm-cmdlet-db20777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1729,7 +1825,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "7dd5d6f8-e6f5-423c-adbf-82cabb8ddf0e"
+ "181f1e89-4260-4bc9-a077-8838db1a5d78"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1741,13 +1837,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1192"
],
"x-ms-correlation-request-id": [
- "96a689c2-7435-4a43-b731-0c640a5864fd"
+ "f4a352b1-23b2-4c1f-96e2-4ecb0b81bde5"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103424Z:96a689c2-7435-4a43-b731-0c640a5864fd"
+ "WESTEUROPE:20150522T085633Z:f4a352b1-23b2-4c1f-96e2-4ecb0b81bde5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1756,7 +1852,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:34:24 GMT"
+ "Fri, 22 May 2015 08:56:33 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json
index 26267906f1fe..7c507ac7bb3b 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingNumberRuleLifecycle.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31941"
+ "14982"
],
"x-ms-request-id": [
- "15f33a78-ca43-4447-90b2-c614d98d6a99"
+ "87839cbf-724e-4e62-b76f-d3ce3c6a4f6f"
],
"x-ms-correlation-request-id": [
- "15f33a78-ca43-4447-90b2-c614d98d6a99"
+ "87839cbf-724e-4e62-b76f-d3ce3c6a4f6f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103157Z:15f33a78-ca43-4447-90b2-c614d98d6a99"
+ "WESTEUROPE:20150522T085914Z:87839cbf-724e-4e62-b76f-d3ce3c6a4f6f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:57 GMT"
+ "Fri, 22 May 2015 08:59:14 GMT"
]
},
"StatusCode": 404
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1191"
],
"x-ms-request-id": [
- "01768b73-0860-485c-afba-713bb66102be"
+ "6694ad20-f218-4e88-a6e5-8bde95889aae"
],
"x-ms-correlation-request-id": [
- "01768b73-0860-485c-afba-713bb66102be"
+ "6694ad20-f218-4e88-a6e5-8bde95889aae"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103159Z:01768b73-0860-485c-afba-713bb66102be"
+ "WESTEUROPE:20150522T085916Z:6694ad20-f218-4e88-a6e5-8bde95889aae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:59 GMT"
+ "Fri, 22 May 2015 08:59:15 GMT"
]
},
"StatusCode": 201
@@ -121,10 +121,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:31:59.813952Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"60cc0cc1-ae03-4022-8df9-3ca47ed4dbab\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:59:16.8860294Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"6d0c3852-9a00-427b-adec-1b0b43186d60\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1631"
+ "1632"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -136,16 +136,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1190"
],
"x-ms-request-id": [
- "60cc0cc1-ae03-4022-8df9-3ca47ed4dbab"
+ "6d0c3852-9a00-427b-adec-1b0b43186d60"
],
"x-ms-correlation-request-id": [
- "60cc0cc1-ae03-4022-8df9-3ca47ed4dbab"
+ "6d0c3852-9a00-427b-adec-1b0b43186d60"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103159Z:60cc0cc1-ae03-4022-8df9-3ca47ed4dbab"
+ "WESTEUROPE:20150522T085917Z:6d0c3852-9a00-427b-adec-1b0b43186d60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:59 GMT"
+ "Fri, 22 May 2015 08:59:17 GMT"
]
},
"StatusCode": 200
@@ -175,10 +175,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:32:01.3947763Z\",\r\n \"duration\": \"PT0.92327S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:59:19.1036441Z\",\r\n \"duration\": \"PT1.1224053S\",\r\n \"correlationId\": \"36549f36-456a-4af3-b7f0-193fb68b750a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1640"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -190,16 +190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1189"
],
"x-ms-request-id": [
- "9751fe95-5fc0-4be7-81f9-62887895755b"
+ "36549f36-456a-4af3-b7f0-193fb68b750a"
],
"x-ms-correlation-request-id": [
- "9751fe95-5fc0-4be7-81f9-62887895755b"
+ "36549f36-456a-4af3-b7f0-193fb68b750a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103201Z:9751fe95-5fc0-4be7-81f9-62887895755b"
+ "WESTEUROPE:20150522T085919Z:36549f36-456a-4af3-b7f0-193fb68b750a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:01 GMT"
+ "Fri, 22 May 2015 08:59:19 GMT"
]
},
"StatusCode": 201
@@ -238,64 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31940"
- ],
- "x-ms-request-id": [
- "9e40bbb8-3f85-4a41-b111-d52d53f9cd5a"
- ],
- "x-ms-correlation-request-id": [
- "9e40bbb8-3f85-4a41-b111-d52d53f9cd5a"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103202Z:9e40bbb8-3f85-4a41-b111-d52d53f9cd5a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:32:02 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": []\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "12"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31938"
+ "14981"
],
"x-ms-request-id": [
- "c52a30b8-be17-4164-a4aa-f56a07e3021f"
+ "e6ae07f6-7558-46e5-a5aa-68c4e85ab073"
],
"x-ms-correlation-request-id": [
- "c52a30b8-be17-4164-a4aa-f56a07e3021f"
+ "e6ae07f6-7558-46e5-a5aa-68c4e85ab073"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103205Z:c52a30b8-be17-4164-a4aa-f56a07e3021f"
+ "WESTEUROPE:20150522T085920Z:e6ae07f6-7558-46e5-a5aa-68c4e85ab073"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -304,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:05 GMT"
+ "Fri, 22 May 2015 08:59:19 GMT"
]
},
"StatusCode": 200
@@ -334,16 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31936"
+ "14979"
],
"x-ms-request-id": [
- "f536851c-eca7-420c-8fc9-1faf9984061a"
+ "8cc642e7-4bc4-4044-bcba-cc0cc416e608"
],
"x-ms-correlation-request-id": [
- "f536851c-eca7-420c-8fc9-1faf9984061a"
+ "8cc642e7-4bc4-4044-bcba-cc0cc416e608"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103208Z:f536851c-eca7-420c-8fc9-1faf9984061a"
+ "WESTEUROPE:20150522T085923Z:8cc642e7-4bc4-4044-bcba-cc0cc416e608"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:08 GMT"
+ "Fri, 22 May 2015 08:59:22 GMT"
]
},
"StatusCode": 200
@@ -382,16 +334,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31934"
+ "14977"
],
"x-ms-request-id": [
- "ea5c2345-b131-44fc-bea1-7512d937fdee"
+ "daa68a22-dc69-4a7d-baf2-7a82f4ce8f0f"
],
"x-ms-correlation-request-id": [
- "ea5c2345-b131-44fc-bea1-7512d937fdee"
+ "daa68a22-dc69-4a7d-baf2-7a82f4ce8f0f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103211Z:ea5c2345-b131-44fc-bea1-7512d937fdee"
+ "WESTEUROPE:20150522T085926Z:daa68a22-dc69-4a7d-baf2-7a82f4ce8f0f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +352,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:11 GMT"
+ "Fri, 22 May 2015 08:59:25 GMT"
]
},
"StatusCode": 200
@@ -415,10 +367,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/C9F6D5B85A56156E\",\r\n \"operationId\": \"C9F6D5B85A56156E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:32:11.8628836Z\",\r\n \"duration\": \"PT10.0051879S\",\r\n \"trackingId\": \"04b33005-1cbd-4b27-824c-580ab486c751\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/C9F6D5B85A56156E\",\r\n \"operationId\": \"C9F6D5B85A56156E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:59:27.3571589Z\",\r\n \"duration\": \"PT6.6183576S\",\r\n \"trackingId\": \"0f1cc144-3e76-4edc-aa3a-234f9dd038b7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "664"
+ "663"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,16 +382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31932"
+ "14975"
],
"x-ms-request-id": [
- "c665eb36-7262-4966-b93e-f7a08e132a91"
+ "3e1580e6-adeb-43f8-9bd9-58cc96855e4a"
],
"x-ms-correlation-request-id": [
- "c665eb36-7262-4966-b93e-f7a08e132a91"
+ "3e1580e6-adeb-43f8-9bd9-58cc96855e4a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103214Z:c665eb36-7262-4966-b93e-f7a08e132a91"
+ "WESTEUROPE:20150522T085929Z:3e1580e6-adeb-43f8-9bd9-58cc96855e4a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +400,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:14 GMT"
+ "Fri, 22 May 2015 08:59:29 GMT"
]
},
"StatusCode": 200
@@ -463,10 +415,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/F20B58865D17757E\",\r\n \"operationId\": \"F20B58865D17757E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:32:15.7614257Z\",\r\n \"duration\": \"PT3.3019751S\",\r\n \"trackingId\": \"f9feb104-ffdd-4156-b0e4-45212cd847a6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/C9F6D5B85A56156E\",\r\n \"operationId\": \"C9F6D5B85A56156E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:32:11.8628836Z\",\r\n \"duration\": \"PT10.0051879S\",\r\n \"trackingId\": \"04b33005-1cbd-4b27-824c-580ab486c751\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/F20B58865D17757E\",\r\n \"operationId\": \"F20B58865D17757E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:59:30.9842149Z\",\r\n \"duration\": \"PT3.5131302S\",\r\n \"trackingId\": \"5c00ef4b-6c85-43ed-a548-78807d42acfc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/C9F6D5B85A56156E\",\r\n \"operationId\": \"C9F6D5B85A56156E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:59:27.3571589Z\",\r\n \"duration\": \"PT6.6183576S\",\r\n \"trackingId\": \"0f1cc144-3e76-4edc-aa3a-234f9dd038b7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1380"
+ "1379"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -478,16 +430,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31930"
+ "14973"
],
"x-ms-request-id": [
- "5e9e0196-507c-46c0-b41b-6f19601be9b2"
+ "fa6af6bc-c455-48e9-9a13-5e761fcac2d2"
],
"x-ms-correlation-request-id": [
- "5e9e0196-507c-46c0-b41b-6f19601be9b2"
+ "fa6af6bc-c455-48e9-9a13-5e761fcac2d2"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103217Z:5e9e0196-507c-46c0-b41b-6f19601be9b2"
+ "WESTEUROPE:20150522T085932Z:fa6af6bc-c455-48e9-9a13-5e761fcac2d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -496,55 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:17 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/F20B58865D17757E\",\r\n \"operationId\": \"F20B58865D17757E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:32:15.7614257Z\",\r\n \"duration\": \"PT3.3019751S\",\r\n \"trackingId\": \"f9feb104-ffdd-4156-b0e4-45212cd847a6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup/operations/C9F6D5B85A56156E\",\r\n \"operationId\": \"C9F6D5B85A56156E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:32:11.8628836Z\",\r\n \"duration\": \"PT10.0051879S\",\r\n \"trackingId\": \"04b33005-1cbd-4b27-824c-580ab486c751\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1380"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31928"
- ],
- "x-ms-request-id": [
- "ece0dd14-030a-4825-8631-1ccfaad425f1"
- ],
- "x-ms-correlation-request-id": [
- "ece0dd14-030a-4825-8631-1ccfaad425f1"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103220Z:ece0dd14-030a-4825-8631-1ccfaad425f1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:32:20 GMT"
+ "Fri, 22 May 2015 08:59:32 GMT"
]
},
"StatusCode": 200
@@ -559,10 +463,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:32:01.8014342Z\",\r\n \"duration\": \"PT1.3299279S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:59:19.1036441Z\",\r\n \"duration\": \"PT1.1224053S\",\r\n \"correlationId\": \"36549f36-456a-4af3-b7f0-193fb68b750a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
+ "1640"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -574,16 +478,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31939"
+ "14980"
],
"x-ms-request-id": [
- "06964787-c1b5-4458-90a4-964af1cf6a39"
+ "02d1bb08-8dd3-4cd8-9e71-01e30a6d1a25"
],
"x-ms-correlation-request-id": [
- "06964787-c1b5-4458-90a4-964af1cf6a39"
+ "02d1bb08-8dd3-4cd8-9e71-01e30a6d1a25"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103202Z:06964787-c1b5-4458-90a4-964af1cf6a39"
+ "WESTEUROPE:20150522T085920Z:02d1bb08-8dd3-4cd8-9e71-01e30a6d1a25"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -592,7 +496,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:02 GMT"
+ "Fri, 22 May 2015 08:59:20 GMT"
]
},
"StatusCode": 200
@@ -607,106 +511,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:32:01.8014342Z\",\r\n \"duration\": \"PT1.3299279S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:59:20.2794638Z\",\r\n \"duration\": \"PT2.298225S\",\r\n \"correlationId\": \"36549f36-456a-4af3-b7f0-193fb68b750a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31937"
- ],
- "x-ms-request-id": [
- "f87451f8-1669-403c-9b19-aeaefd008de4"
- ],
- "x-ms-correlation-request-id": [
- "f87451f8-1669-403c-9b19-aeaefd008de4"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103205Z:f87451f8-1669-403c-9b19-aeaefd008de4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:32:05 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:32:01.8014342Z\",\r\n \"duration\": \"PT1.3299279S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1639"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31935"
- ],
- "x-ms-request-id": [
- "14e94276-761d-4772-b607-7a40f86699c1"
- ],
- "x-ms-correlation-request-id": [
- "14e94276-761d-4772-b607-7a40f86699c1"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103208Z:14e94276-761d-4772-b607-7a40f86699c1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:32:08 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:32:01.8014342Z\",\r\n \"duration\": \"PT1.3299279S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1639"
+ "1638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -718,16 +526,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31933"
+ "14978"
],
"x-ms-request-id": [
- "32235fdb-5ae5-448b-aa67-38d408724809"
+ "0f60fe16-d791-453d-a176-63ce785ce130"
],
"x-ms-correlation-request-id": [
- "32235fdb-5ae5-448b-aa67-38d408724809"
+ "0f60fe16-d791-453d-a176-63ce785ce130"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103211Z:32235fdb-5ae5-448b-aa67-38d408724809"
+ "WESTEUROPE:20150522T085923Z:0f60fe16-d791-453d-a176-63ce785ce130"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +544,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:11 GMT"
+ "Fri, 22 May 2015 08:59:23 GMT"
]
},
"StatusCode": 200
@@ -751,10 +559,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:32:01.8014342Z\",\r\n \"duration\": \"PT1.3299279S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:59:20.2794638Z\",\r\n \"duration\": \"PT2.298225S\",\r\n \"correlationId\": \"36549f36-456a-4af3-b7f0-193fb68b750a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
+ "1638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -766,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31931"
+ "14976"
],
"x-ms-request-id": [
- "6166327b-e43d-4c62-8539-cb10ae54df58"
+ "d96c2f46-9cde-4fc1-8093-efdd5612acac"
],
"x-ms-correlation-request-id": [
- "6166327b-e43d-4c62-8539-cb10ae54df58"
+ "d96c2f46-9cde-4fc1-8093-efdd5612acac"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103214Z:6166327b-e43d-4c62-8539-cb10ae54df58"
+ "WESTEUROPE:20150522T085926Z:d96c2f46-9cde-4fc1-8093-efdd5612acac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:14 GMT"
+ "Fri, 22 May 2015 08:59:26 GMT"
]
},
"StatusCode": 200
@@ -799,10 +607,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:32:01.8014342Z\",\r\n \"duration\": \"PT1.3299279S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:59:20.2794638Z\",\r\n \"duration\": \"PT2.298225S\",\r\n \"correlationId\": \"36549f36-456a-4af3-b7f0-193fb68b750a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
+ "1638"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -814,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31929"
+ "14974"
],
"x-ms-request-id": [
- "9cf838f9-aae6-48f9-b800-bda4b6112ea2"
+ "6dc5adb1-e96f-495e-9d7b-ba95ef657f58"
],
"x-ms-correlation-request-id": [
- "9cf838f9-aae6-48f9-b800-bda4b6112ea2"
+ "6dc5adb1-e96f-495e-9d7b-ba95ef657f58"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103218Z:9cf838f9-aae6-48f9-b800-bda4b6112ea2"
+ "WESTEUROPE:20150522T085929Z:6dc5adb1-e96f-495e-9d7b-ba95ef657f58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:17 GMT"
+ "Fri, 22 May 2015 08:59:29 GMT"
]
},
"StatusCode": 200
@@ -847,7 +655,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:32:19.2002577Z\",\r\n \"duration\": \"PT18.7287514S\",\r\n \"correlationId\": \"9751fe95-5fc0-4be7-81f9-62887895755b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db50222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:59:31.9053425Z\",\r\n \"duration\": \"PT13.9241037S\",\r\n \"correlationId\": \"36549f36-456a-4af3-b7f0-193fb68b750a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1642"
@@ -862,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31927"
+ "14972"
],
"x-ms-request-id": [
- "9dbc3aab-df54-446c-9bd6-cd9022f146d7"
+ "461451d0-deed-4e90-b8b5-16a9345f7259"
],
"x-ms-correlation-request-id": [
- "9dbc3aab-df54-446c-9bd6-cd9022f146d7"
+ "461451d0-deed-4e90-b8b5-16a9345f7259"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103221Z:9dbc3aab-df54-446c-9bd6-cd9022f146d7"
+ "WESTEUROPE:20150522T085933Z:461451d0-deed-4e90-b8b5-16a9345f7259"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -880,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:20 GMT"
+ "Fri, 22 May 2015 08:59:32 GMT"
]
},
"StatusCode": 200
@@ -895,10 +703,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"name\": \"sql-dm-cmdlet-server50222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"name\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222\",\r\n \"name\": \"sql-dm-cmdlet-server50222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222\",\r\n \"name\": \"sql-dm-cmdlet-server50222/sql-dm-cmdlet-db50222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "569"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -910,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31926"
+ "14971"
],
"x-ms-request-id": [
- "eb05cfe6-f047-4e65-9976-9a1d72a8a8df"
+ "7818c784-e2e6-4ca3-8dc9-c1510c7da356"
],
"x-ms-correlation-request-id": [
- "eb05cfe6-f047-4e65-9976-9a1d72a8a8df"
+ "7818c784-e2e6-4ca3-8dc9-c1510c7da356"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103223Z:eb05cfe6-f047-4e65-9976-9a1d72a8a8df"
+ "WESTEUROPE:20150522T085935Z:7818c784-e2e6-4ca3-8dc9-c1510c7da356"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -928,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:22 GMT"
+ "Fri, 22 May 2015 08:59:34 GMT"
]
},
"StatusCode": 200
@@ -961,16 +769,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "westeurope:507e6fd2-15fc-41ef-8329-d44762106865"
+ "westeurope:16eeff3d-f093-44ef-a635-d9c861afe0fc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31934"
+ "14942"
],
"x-ms-correlation-request-id": [
- "5fc6c1d1-39ab-4553-acae-632868f525ba"
+ "92b3e4e8-2b32-45f3-8b69-ecf1be1c5aa8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103223Z:5fc6c1d1-39ab-4553-acae-632868f525ba"
+ "WESTEUROPE:20150522T085936Z:92b3e4e8-2b32-45f3-8b69-ecf1be1c5aa8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -979,7 +787,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:23 GMT"
+ "Fri, 22 May 2015 08:59:36 GMT"
]
},
"StatusCode": 200
@@ -994,7 +802,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0eecb532-6a8a-4b92-b0c2-d979960cb509"
+ "f4b9078e-14b3-4117-be2d-7d5a5e97ee31"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1006,7 +814,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3ba9e3fb-9a55-4199-8417-6a59e75640b5"
+ "0961841d-ac54-4bbc-8e93-5b4eb0273b6d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1015,13 +823,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31925"
+ "14950"
],
"x-ms-correlation-request-id": [
- "824e1eae-85f9-429a-8a39-6ccd100a7d15"
+ "f3df2a14-c53f-4be3-8609-dc6ccecbdd45"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103225Z:824e1eae-85f9-429a-8a39-6ccd100a7d15"
+ "WESTEUROPE:20150522T085938Z:f3df2a14-c53f-4be3-8609-dc6ccecbdd45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1030,7 +838,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:24 GMT"
+ "Fri, 22 May 2015 08:59:37 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1054,7 +862,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "0eecb532-6a8a-4b92-b0c2-d979960cb509"
+ "f4b9078e-14b3-4117-be2d-7d5a5e97ee31"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1066,7 +874,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "7e7538f6-55bd-422d-b7ec-45e3fbab9655"
+ "02eb2950-138e-4ab5-9561-b741148e32a1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1078,13 +886,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1189"
],
"x-ms-correlation-request-id": [
- "5a97ec20-8b25-4bad-8e44-957e022fee7a"
+ "2b9cd4da-9c08-4aef-8e9f-fae12bac9d20"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103227Z:5a97ec20-8b25-4bad-8e44-957e022fee7a"
+ "WESTEUROPE:20150522T085939Z:2b9cd4da-9c08-4aef-8e9f-fae12bac9d20"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1093,7 +901,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:26 GMT"
+ "Fri, 22 May 2015 08:59:39 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1111,7 +919,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "df6cb08c-424f-422e-a004-370eb267db7a"
+ "6ad1ea70-1094-458c-91a0-419259fc358c"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1123,7 +931,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ff94a147-7c33-4c3d-b67c-de5ad86c0e3e"
+ "f20399a1-05c1-4ac3-b98b-1f8c45944b53"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1132,13 +940,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31924"
+ "14949"
],
"x-ms-correlation-request-id": [
- "9b07d4af-f69d-4bae-8a1d-5f1f939b36cd"
+ "572a3939-103a-4f8f-84d5-37c87db14864"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103228Z:9b07d4af-f69d-4bae-8a1d-5f1f939b36cd"
+ "WESTEUROPE:20150522T085941Z:572a3939-103a-4f8f-84d5-37c87db14864"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1147,7 +955,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:27 GMT"
+ "Fri, 22 May 2015 08:59:40 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1165,7 +973,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "998373d6-1a9c-4ad0-93ad-3343854ab2fc"
+ "13333d4e-7b55-4cbe-bed7-3f09c08442d4"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1177,7 +985,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "dee38656-8375-4b22-8dba-1e84a088002b"
+ "b09f7282-3693-493e-b072-80083a28e4f7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1186,13 +994,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31923"
+ "14948"
],
"x-ms-correlation-request-id": [
- "41dc09b8-3f5a-4d90-a70a-25b0fbc053e3"
+ "cbc667bd-3aba-480c-8500-6225fddc7995"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103230Z:41dc09b8-3f5a-4d90-a70a-25b0fbc053e3"
+ "WESTEUROPE:20150522T085942Z:cbc667bd-3aba-480c-8500-6225fddc7995"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1201,7 +1009,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:29 GMT"
+ "Fri, 22 May 2015 08:59:41 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1219,7 +1027,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "c15bd989-aea3-4e93-af29-1f74837cad6d"
+ "288dedcf-9b62-4d17-8e00-d55b89f96f07"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber\",\r\n \"columnName\": \"ColumnNumber\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1231,7 +1039,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "f2e02567-df49-4a05-a515-9430c709ebf4"
+ "01e5a21d-1aa6-4321-950b-c30c1d8ffdf8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1240,13 +1048,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31922"
+ "14947"
],
"x-ms-correlation-request-id": [
- "8d2c5089-6bc0-48f1-9535-ffb125835c00"
+ "07791718-1fc0-46fb-bfd6-c2a6e82f388c"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103233Z:8d2c5089-6bc0-48f1-9535-ffb125835c00"
+ "WESTEUROPE:20150522T085945Z:07791718-1fc0-46fb-bfd6-c2a6e82f388c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1255,7 +1063,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:32 GMT"
+ "Fri, 22 May 2015 08:59:45 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1273,7 +1081,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "850106e8-1437-40ab-99ca-18d9f00f2769"
+ "504dc33c-d309-42ca-9de3-705624e2a1ec"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber\",\r\n \"columnName\": \"ColumnNumber\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1285,7 +1093,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "a5210728-a0d1-4b6a-adcc-c09fb53bcc4a"
+ "339fe175-368d-4d21-9b75-e12d10e54acf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1294,13 +1102,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31921"
+ "14946"
],
"x-ms-correlation-request-id": [
- "fdef8da1-0d59-412c-be59-8555669cd9c8"
+ "7f4141b2-9f5c-43d8-8a30-dc08cddcff57"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103235Z:fdef8da1-0d59-412c-be59-8555669cd9c8"
+ "WESTEUROPE:20150522T085947Z:7f4141b2-9f5c-43d8-8a30-dc08cddcff57"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1309,7 +1117,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:34 GMT"
+ "Fri, 22 May 2015 08:59:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1327,7 +1135,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "9c693f51-90a9-41eb-b55b-7b588a898e6c"
+ "7d3ec40a-6fc9-45f7-8693-3fc2d5038a07"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber\",\r\n \"columnName\": \"ColumnNumber\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1339,7 +1147,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3d968c23-febe-4c9e-b80b-c677ee559de0"
+ "e2be4312-faf3-4def-b503-948776cd923b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1348,13 +1156,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31920"
+ "14945"
],
"x-ms-correlation-request-id": [
- "920287fe-1590-4176-9c37-a4a77b02e558"
+ "48426d9b-c51d-4a63-b0c9-376a0c1b1268"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103236Z:920287fe-1590-4176-9c37-a4a77b02e558"
+ "WESTEUROPE:20150522T085948Z:48426d9b-c51d-4a63-b0c9-376a0c1b1268"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1363,7 +1171,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:35 GMT"
+ "Fri, 22 May 2015 08:59:47 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1381,19 +1189,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f7c63233-cdee-45ec-8a69-334808f0ab33"
+ "f63a44f1-bbff-49c8-a0e8-47bc3d7ef162"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasNumber\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber1\",\r\n \"columnName\": \"ColumnNumber1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "581"
+ "593"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "d6fbb3cb-7989-4bd5-8725-8a639a8a9c61"
+ "53dd7915-2c17-439a-9c12-418980492057"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1402,13 +1210,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31919"
+ "14944"
],
"x-ms-correlation-request-id": [
- "f8d31ebe-cd66-4d3b-8a36-9b7d787b954e"
+ "96d56495-6dad-4c59-b3a6-cc9d36d1b2b7"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103239Z:f8d31ebe-cd66-4d3b-8a36-9b7d787b954e"
+ "WESTEUROPE:20150522T085951Z:96d56495-6dad-4c59-b3a6-cc9d36d1b2b7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1417,7 +1225,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:38 GMT"
+ "Fri, 22 May 2015 08:59:50 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1435,19 +1243,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "13ee238d-48c7-4cdf-9ed9-e916ac304c07"
+ "3c92975c-1245-4b58-beae-f5a0a7ad2bae"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasNumber\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber1\",\r\n \"columnName\": \"ColumnNumber1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "581"
+ "593"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "14d81998-0095-43e3-a9c0-55bac7fc3e58"
+ "2fd9c17f-855f-469a-b603-c96e94948e6a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1456,13 +1264,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31918"
+ "14943"
],
"x-ms-correlation-request-id": [
- "56a4f8c2-4faa-4549-b8a9-5e2a390ae0b1"
+ "cb8d2b7e-2061-4b22-9b8c-8be35f1bdb80"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103241Z:56a4f8c2-4faa-4549-b8a9-5e2a390ae0b1"
+ "WESTEUROPE:20150522T085952Z:cb8d2b7e-2061-4b22-9b8c-8be35f1bdb80"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1471,7 +1279,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:40 GMT"
+ "Fri, 22 May 2015 08:59:51 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1489,19 +1297,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "a6bd1cbd-f6c4-46d9-aef4-90861df69ca5"
+ "08c074c2-e3d7-4177-a74e-d6e23ed75913"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasNumber\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber1\",\r\n \"columnName\": \"ColumnNumber1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "581"
+ "593"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "0ef5e62f-bc1c-483d-a110-67b4ee54b54f"
+ "dbb6d796-d83e-4aae-9203-5b9655673032"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1510,13 +1318,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31917"
+ "14942"
],
"x-ms-correlation-request-id": [
- "9d965154-586f-4d0c-8750-e9b7e16a23bb"
+ "03ee1f3b-51b4-4a27-afe4-60aa2fb663ad"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103242Z:9d965154-586f-4d0c-8750-e9b7e16a23bb"
+ "WESTEUROPE:20150522T085954Z:03ee1f3b-51b4-4a27-afe4-60aa2fb663ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1525,7 +1333,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:41 GMT"
+ "Fri, 22 May 2015 08:59:53 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1543,7 +1351,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "3b65efae-1fcb-4544-b5f8-5bd0ae802a22"
+ "dd245adb-2342-4606-b9bf-1ff5cfd45005"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1555,7 +1363,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3d561682-0728-4fbc-b050-407e4100a3e2"
+ "c5de1f3b-479c-4e59-81ab-8dd73f4effdd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1564,13 +1372,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31916"
+ "14941"
],
"x-ms-correlation-request-id": [
- "c6471b14-3799-4d75-b098-3fb682ce0604"
+ "42f8e1fb-cbb6-4f53-9b09-31ca0afe3c89"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103245Z:c6471b14-3799-4d75-b098-3fb682ce0604"
+ "WESTEUROPE:20150522T085956Z:42f8e1fb-cbb6-4f53-9b09-31ca0afe3c89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1579,7 +1387,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:45 GMT"
+ "Fri, 22 May 2015 08:59:56 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1597,7 +1405,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "7c1793f9-947f-4099-a31c-4b0388f8ab9f"
+ "7a9beed3-8290-4058-bc11-1db78ce146ae"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1609,7 +1417,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "444c8a87-30f3-4f89-8386-0c8f34c0fa07"
+ "7acc3148-c521-41a3-83a2-e7f5a770aaf1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1618,13 +1426,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31915"
+ "14940"
],
"x-ms-correlation-request-id": [
- "c9522c4f-bdb3-4da5-820b-570a0ccc460d"
+ "227f258f-6a76-4564-8a58-294114a39850"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103246Z:c9522c4f-bdb3-4da5-820b-570a0ccc460d"
+ "WESTEUROPE:20150522T085958Z:227f258f-6a76-4564-8a58-294114a39850"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1633,7 +1441,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:46 GMT"
+ "Fri, 22 May 2015 08:59:57 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1657,7 +1465,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "998373d6-1a9c-4ad0-93ad-3343854ab2fc"
+ "13333d4e-7b55-4cbe-bed7-3f09c08442d4"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber\",\r\n \"columnName\": \"ColumnNumber\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"12\",\r\n \"numberTo\": \"56\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
@@ -1669,7 +1477,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "80eeb373-e88d-4eb1-9bdb-6d8178ba6672"
+ "330f2fa6-b239-415a-ae13-73cbb95b8d4a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1681,13 +1489,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1188"
],
"x-ms-correlation-request-id": [
- "e9551fa9-a4f2-496e-b327-2d23758776b7"
+ "40ee4bba-b7e1-4288-834a-fe341b2f7323"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103232Z:e9551fa9-a4f2-496e-b327-2d23758776b7"
+ "WESTEUROPE:20150522T085944Z:40ee4bba-b7e1-4288-834a-fe341b2f7323"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1696,7 +1504,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:31 GMT"
+ "Fri, 22 May 2015 08:59:43 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1708,31 +1516,31 @@
"RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2?api-version=2014-04-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzUwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI1MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjUwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMj9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"aliasName\": \"AliasNumber\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"tableName\": \"TableNumber1\",\r\n \"columnName\": \"ColumnNumber1\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "168"
+ "205"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "9c693f51-90a9-41eb-b55b-7b588a898e6c"
+ "7d3ec40a-6fc9-45f7-8693-3fc2d5038a07"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasNumber\",\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg50222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server50222/databases/sql-dm-cmdlet-db50222/dataMaskingPolicies/Default/rules/rule2\",\r\n \"name\": \"rule2\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule2\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableNumber1\",\r\n \"columnName\": \"ColumnNumber1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Number\",\r\n \"numberFrom\": \"67.26\",\r\n \"numberTo\": \"78.91\",\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "564"
+ "576"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "8b3d1259-01fc-4022-bfa5-2aa1a2326857"
+ "b8dad323-258f-42b4-8aef-b465d8ccb979"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1744,13 +1552,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1187"
],
"x-ms-correlation-request-id": [
- "a13d8cf2-2464-4381-8cc4-b71d75de4d1e"
+ "39985ab5-bf22-4649-9ea9-a0e3ad06c709"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103238Z:a13d8cf2-2464-4381-8cc4-b71d75de4d1e"
+ "WESTEUROPE:20150522T085949Z:39985ab5-bf22-4649-9ea9-a0e3ad06c709"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1759,7 +1567,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:37 GMT"
+ "Fri, 22 May 2015 08:59:49 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1777,7 +1585,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "a6bd1cbd-f6c4-46d9-aef4-90861df69ca5"
+ "08c074c2-e3d7-4177-a74e-d6e23ed75913"
]
},
"ResponseBody": "",
@@ -1786,7 +1594,7 @@
"0"
],
"x-ms-request-id": [
- "9fcd3504-461e-484e-a0fb-026147e9de75"
+ "cef2af3d-1514-4aac-8189-13905ce8f2df"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1795,13 +1603,13 @@
"1.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1186"
],
"x-ms-correlation-request-id": [
- "ccdd88e3-cd25-45aa-9ad0-de543357cd5d"
+ "6e166043-2601-4206-8691-ccce8f7feb4c"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103243Z:ccdd88e3-cd25-45aa-9ad0-de543357cd5d"
+ "WESTEUROPE:20150522T085955Z:6e166043-2601-4206-8691-ccce8f7feb4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1810,7 +1618,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:32:42 GMT"
+ "Fri, 22 May 2015 08:59:54 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPolicyEnablementToggling.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPolicyEnablementToggling.json
index 5987d9b38950..8087239099a5 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPolicyEnablementToggling.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPolicyEnablementToggling.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31916"
+ "14983"
],
"x-ms-request-id": [
- "09387584-cd93-4f3a-8eb6-b69878a71f0a"
+ "2fc7ae1b-5a70-410b-9d4e-63f6439b1a07"
],
"x-ms-correlation-request-id": [
- "09387584-cd93-4f3a-8eb6-b69878a71f0a"
+ "2fc7ae1b-5a70-410b-9d4e-63f6439b1a07"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103032Z:09387584-cd93-4f3a-8eb6-b69878a71f0a"
+ "WESTEUROPE:20150522T085211Z:2fc7ae1b-5a70-410b-9d4e-63f6439b1a07"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:31 GMT"
+ "Fri, 22 May 2015 08:52:11 GMT"
]
},
"StatusCode": 404
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-request-id": [
- "05e23284-c800-40db-ae65-77de597af54f"
+ "b46b007b-71a7-4a78-a1c0-10d6bfff22b3"
],
"x-ms-correlation-request-id": [
- "05e23284-c800-40db-ae65-77de597af54f"
+ "b46b007b-71a7-4a78-a1c0-10d6bfff22b3"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103034Z:05e23284-c800-40db-ae65-77de597af54f"
+ "WESTEUROPE:20150522T085213Z:b46b007b-71a7-4a78-a1c0-10d6bfff22b3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:34 GMT"
+ "Fri, 22 May 2015 08:52:12 GMT"
]
},
"StatusCode": 201
@@ -121,7 +121,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:30:35.2044304Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"2c03c148-b931-4946-9de8-e4b54c5954be\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:52:14.4755803Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"eae37caf-5597-49c2-97cf-e4d57ee9d65e\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1610"
@@ -136,16 +136,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-request-id": [
- "2c03c148-b931-4946-9de8-e4b54c5954be"
+ "eae37caf-5597-49c2-97cf-e4d57ee9d65e"
],
"x-ms-correlation-request-id": [
- "2c03c148-b931-4946-9de8-e4b54c5954be"
+ "eae37caf-5597-49c2-97cf-e4d57ee9d65e"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103035Z:2c03c148-b931-4946-9de8-e4b54c5954be"
+ "WESTEUROPE:20150522T085214Z:eae37caf-5597-49c2-97cf-e4d57ee9d65e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:34 GMT"
+ "Fri, 22 May 2015 08:52:13 GMT"
]
},
"StatusCode": 200
@@ -175,10 +175,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:30:36.8251605Z\",\r\n \"duration\": \"PT0.959711S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:52:16.3365244Z\",\r\n \"duration\": \"PT1.1343454S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1617"
+ "1618"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -190,16 +190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1194"
],
"x-ms-request-id": [
- "b0c08e14-d8d9-4f7b-8ce5-dae46563200c"
+ "e99b133d-b5e1-4175-9423-ceacd89b8d6b"
],
"x-ms-correlation-request-id": [
- "b0c08e14-d8d9-4f7b-8ce5-dae46563200c"
+ "e99b133d-b5e1-4175-9423-ceacd89b8d6b"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103037Z:b0c08e14-d8d9-4f7b-8ce5-dae46563200c"
+ "WESTEUROPE:20150522T085216Z:e99b133d-b5e1-4175-9423-ceacd89b8d6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:36 GMT"
+ "Fri, 22 May 2015 08:52:15 GMT"
]
},
"StatusCode": 201
@@ -238,16 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31915"
+ "14982"
],
"x-ms-request-id": [
- "dcd7c9af-c243-44b7-9354-3c77c52ce794"
+ "217ddf8d-d2d1-49c8-b9f2-3793d810ca2f"
],
"x-ms-correlation-request-id": [
- "dcd7c9af-c243-44b7-9354-3c77c52ce794"
+ "217ddf8d-d2d1-49c8-b9f2-3793d810ca2f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103037Z:dcd7c9af-c243-44b7-9354-3c77c52ce794"
+ "WESTEUROPE:20150522T085217Z:217ddf8d-d2d1-49c8-b9f2-3793d810ca2f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -256,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:37 GMT"
+ "Fri, 22 May 2015 08:52:16 GMT"
]
},
"StatusCode": 200
@@ -286,16 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31913"
+ "14980"
],
"x-ms-request-id": [
- "d4ade235-5fe0-4e55-b973-5528055d23f6"
+ "961a1281-d01c-42ef-8818-f1905849ff05"
],
"x-ms-correlation-request-id": [
- "d4ade235-5fe0-4e55-b973-5528055d23f6"
+ "961a1281-d01c-42ef-8818-f1905849ff05"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103040Z:d4ade235-5fe0-4e55-b973-5528055d23f6"
+ "WESTEUROPE:20150522T085220Z:961a1281-d01c-42ef-8818-f1905849ff05"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -304,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:40 GMT"
+ "Fri, 22 May 2015 08:52:19 GMT"
]
},
"StatusCode": 200
@@ -334,16 +334,112 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31911"
+ "14978"
+ ],
+ "x-ms-request-id": [
+ "7c4c5af6-cf40-402f-9608-5dcb4523da16"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c4c5af6-cf40-402f-9608-5dcb4523da16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085223Z:7c4c5af6-cf40-402f-9608-5dcb4523da16"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:52:22 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzc3Ny9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14976"
+ ],
+ "x-ms-request-id": [
+ "0bf4f6cf-12e0-4657-a7f6-559f299a00fc"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bf4f6cf-12e0-4657-a7f6-559f299a00fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085226Z:0bf4f6cf-12e0-4657-a7f6-559f299a00fc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:52:26 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzc3Ny9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXAvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:28.103845Z\",\r\n \"duration\": \"PT10.2509835S\",\r\n \"trackingId\": \"a054af1e-93ca-45c2-be78-706a1c5671b0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "655"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
],
"x-ms-request-id": [
- "8df710e5-71f7-4275-8feb-eb6454bb2cc9"
+ "76966f30-e78b-4cec-a0f9-a3cda28e9024"
],
"x-ms-correlation-request-id": [
- "8df710e5-71f7-4275-8feb-eb6454bb2cc9"
+ "76966f30-e78b-4cec-a0f9-a3cda28e9024"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103044Z:8df710e5-71f7-4275-8feb-eb6454bb2cc9"
+ "WESTEUROPE:20150522T085229Z:76966f30-e78b-4cec-a0f9-a3cda28e9024"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:43 GMT"
+ "Fri, 22 May 2015 08:52:29 GMT"
]
},
"StatusCode": 200
@@ -367,10 +463,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:30:46.781764Z\",\r\n \"duration\": \"PT8.7907757S\",\r\n \"trackingId\": \"9003f26c-746a-4b6e-b437-4e068f6e254d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:28.103845Z\",\r\n \"duration\": \"PT10.2509835S\",\r\n \"trackingId\": \"a054af1e-93ca-45c2-be78-706a1c5671b0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "654"
+ "655"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -382,16 +478,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31909"
+ "14972"
],
"x-ms-request-id": [
- "7dc557bc-9a92-4c47-832f-80148ada822f"
+ "490082f8-3cee-41e5-a3d2-a229f5d65730"
],
"x-ms-correlation-request-id": [
- "7dc557bc-9a92-4c47-832f-80148ada822f"
+ "490082f8-3cee-41e5-a3d2-a229f5d65730"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103047Z:7dc557bc-9a92-4c47-832f-80148ada822f"
+ "WESTEUROPE:20150522T085232Z:490082f8-3cee-41e5-a3d2-a229f5d65730"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +496,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:46 GMT"
+ "Fri, 22 May 2015 08:52:32 GMT"
]
},
"StatusCode": 200
@@ -415,10 +511,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:30:46.781764Z\",\r\n \"duration\": \"PT8.7907757S\",\r\n \"trackingId\": \"9003f26c-746a-4b6e-b437-4e068f6e254d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:28.103845Z\",\r\n \"duration\": \"PT10.2509835S\",\r\n \"trackingId\": \"a054af1e-93ca-45c2-be78-706a1c5671b0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "654"
+ "655"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,16 +526,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31907"
+ "14970"
],
"x-ms-request-id": [
- "0f90d3dd-7405-4695-9310-ced8e0d4ee86"
+ "3b5f997c-643c-41c5-8205-21195e366d91"
],
"x-ms-correlation-request-id": [
- "0f90d3dd-7405-4695-9310-ced8e0d4ee86"
+ "3b5f997c-643c-41c5-8205-21195e366d91"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103050Z:0f90d3dd-7405-4695-9310-ced8e0d4ee86"
+ "WESTEUROPE:20150522T085235Z:3b5f997c-643c-41c5-8205-21195e366d91"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +544,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:49 GMT"
+ "Fri, 22 May 2015 08:52:35 GMT"
]
},
"StatusCode": 200
@@ -463,10 +559,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:30:46.781764Z\",\r\n \"duration\": \"PT8.7907757S\",\r\n \"trackingId\": \"9003f26c-746a-4b6e-b437-4e068f6e254d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/6B4941B1D14B8502\",\r\n \"operationId\": \"6B4941B1D14B8502\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:37.0534252Z\",\r\n \"duration\": \"PT8.3606151S\",\r\n \"trackingId\": \"71e28091-9355-4cc6-a4f7-825b3e397e73\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:28.103845Z\",\r\n \"duration\": \"PT10.2509835S\",\r\n \"trackingId\": \"a054af1e-93ca-45c2-be78-706a1c5671b0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "654"
+ "1359"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -478,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31905"
+ "14968"
],
"x-ms-request-id": [
- "01160daf-a7d7-48c4-b792-4a1d755ddd1e"
+ "1133f24a-0f8b-45bf-be5b-5431e5c997ad"
],
"x-ms-correlation-request-id": [
- "01160daf-a7d7-48c4-b792-4a1d755ddd1e"
+ "1133f24a-0f8b-45bf-be5b-5431e5c997ad"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103053Z:01160daf-a7d7-48c4-b792-4a1d755ddd1e"
+ "WESTEUROPE:20150522T085238Z:1133f24a-0f8b-45bf-be5b-5431e5c997ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -496,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:52 GMT"
+ "Fri, 22 May 2015 08:52:38 GMT"
]
},
"StatusCode": 200
@@ -511,10 +607,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/6B4941B1D14B8502\",\r\n \"operationId\": \"6B4941B1D14B8502\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:30:53.3568744Z\",\r\n \"duration\": \"PT6.4997021S\",\r\n \"trackingId\": \"f5769e82-c614-41e9-ae99-7c956d3e1690\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:30:46.781764Z\",\r\n \"duration\": \"PT8.7907757S\",\r\n \"trackingId\": \"9003f26c-746a-4b6e-b437-4e068f6e254d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/6B4941B1D14B8502\",\r\n \"operationId\": \"6B4941B1D14B8502\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:37.0534252Z\",\r\n \"duration\": \"PT8.3606151S\",\r\n \"trackingId\": \"71e28091-9355-4cc6-a4f7-825b3e397e73\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup/operations/91182AA504872AE4\",\r\n \"operationId\": \"91182AA504872AE4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:28.103845Z\",\r\n \"duration\": \"PT10.2509835S\",\r\n \"trackingId\": \"a054af1e-93ca-45c2-be78-706a1c5671b0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1358"
+ "1359"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -526,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31903"
+ "14966"
],
"x-ms-request-id": [
- "937962d2-cdd9-455c-bdcc-57fe84151b8c"
+ "b53ca345-74eb-4b12-b0ad-2926c3b960e0"
],
"x-ms-correlation-request-id": [
- "937962d2-cdd9-455c-bdcc-57fe84151b8c"
+ "b53ca345-74eb-4b12-b0ad-2926c3b960e0"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103056Z:937962d2-cdd9-455c-bdcc-57fe84151b8c"
+ "WESTEUROPE:20150522T085242Z:b53ca345-74eb-4b12-b0ad-2926c3b960e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -544,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:55 GMT"
+ "Fri, 22 May 2015 08:52:41 GMT"
]
},
"StatusCode": 200
@@ -559,10 +655,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:30:37.8643775Z\",\r\n \"duration\": \"PT1.998928S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1616"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -574,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31914"
+ "14981"
],
"x-ms-request-id": [
- "ac1e33e3-9a78-419f-9b3b-920b84b70eef"
+ "572b86c5-9145-439c-a6a1-bc12381e2ac8"
],
"x-ms-correlation-request-id": [
- "ac1e33e3-9a78-419f-9b3b-920b84b70eef"
+ "572b86c5-9145-439c-a6a1-bc12381e2ac8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103038Z:ac1e33e3-9a78-419f-9b3b-920b84b70eef"
+ "WESTEUROPE:20150522T085217Z:572b86c5-9145-439c-a6a1-bc12381e2ac8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -592,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:37 GMT"
+ "Fri, 22 May 2015 08:52:17 GMT"
]
},
"StatusCode": 200
@@ -607,10 +703,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:30:37.8643775Z\",\r\n \"duration\": \"PT1.998928S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1616"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -622,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31912"
+ "14979"
],
"x-ms-request-id": [
- "6955c319-234c-476e-ba3a-e48bc1374e66"
+ "db5f594e-d1fa-4803-a2d3-7dd9848add28"
],
"x-ms-correlation-request-id": [
- "6955c319-234c-476e-ba3a-e48bc1374e66"
+ "db5f594e-d1fa-4803-a2d3-7dd9848add28"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103041Z:6955c319-234c-476e-ba3a-e48bc1374e66"
+ "WESTEUROPE:20150522T085220Z:db5f594e-d1fa-4803-a2d3-7dd9848add28"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -640,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:41 GMT"
+ "Fri, 22 May 2015 08:52:20 GMT"
]
},
"StatusCode": 200
@@ -655,10 +751,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:30:37.8643775Z\",\r\n \"duration\": \"PT1.998928S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1616"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -670,16 +766,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31910"
+ "14977"
],
"x-ms-request-id": [
- "2013ce49-4cb3-4c1a-baad-9e93ebe7994f"
+ "c43ac47f-01bd-4c9e-828c-73bd1998f977"
],
"x-ms-correlation-request-id": [
- "2013ce49-4cb3-4c1a-baad-9e93ebe7994f"
+ "c43ac47f-01bd-4c9e-828c-73bd1998f977"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103044Z:2013ce49-4cb3-4c1a-baad-9e93ebe7994f"
+ "WESTEUROPE:20150522T085223Z:c43ac47f-01bd-4c9e-828c-73bd1998f977"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -688,7 +784,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:43 GMT"
+ "Fri, 22 May 2015 08:52:22 GMT"
]
},
"StatusCode": 200
@@ -703,10 +799,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:30:37.8643775Z\",\r\n \"duration\": \"PT1.998928S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1616"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -718,16 +814,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31908"
+ "14975"
],
"x-ms-request-id": [
- "a3b4aba5-f6d5-4732-91ee-8e1e0a8a3d0f"
+ "39f6c072-1f15-48bc-ae21-7507fd9ec6b5"
],
"x-ms-correlation-request-id": [
- "a3b4aba5-f6d5-4732-91ee-8e1e0a8a3d0f"
+ "39f6c072-1f15-48bc-ae21-7507fd9ec6b5"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103047Z:a3b4aba5-f6d5-4732-91ee-8e1e0a8a3d0f"
+ "WESTEUROPE:20150522T085227Z:39f6c072-1f15-48bc-ae21-7507fd9ec6b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +832,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:46 GMT"
+ "Fri, 22 May 2015 08:52:27 GMT"
]
},
"StatusCode": 200
@@ -751,10 +847,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:30:37.8643775Z\",\r\n \"duration\": \"PT1.998928S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1616"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -766,16 +862,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31906"
+ "14973"
],
"x-ms-request-id": [
- "3a8ed4e7-1507-4262-b843-e8578ba96961"
+ "2a3bbefe-5c6f-4ec1-ad1c-a0b9987ff1bb"
],
"x-ms-correlation-request-id": [
- "3a8ed4e7-1507-4262-b843-e8578ba96961"
+ "2a3bbefe-5c6f-4ec1-ad1c-a0b9987ff1bb"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103050Z:3a8ed4e7-1507-4262-b843-e8578ba96961"
+ "WESTEUROPE:20150522T085230Z:2a3bbefe-5c6f-4ec1-ad1c-a0b9987ff1bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +880,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:49 GMT"
+ "Fri, 22 May 2015 08:52:30 GMT"
]
},
"StatusCode": 200
@@ -799,10 +895,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:30:37.8643775Z\",\r\n \"duration\": \"PT1.998928S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1616"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -814,16 +910,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31904"
+ "14971"
],
"x-ms-request-id": [
- "77cdffa8-1402-4a53-98b3-bc9b69b69c7c"
+ "f6e1e713-3a5a-446a-baee-fc6fbb11dcfb"
],
"x-ms-correlation-request-id": [
- "77cdffa8-1402-4a53-98b3-bc9b69b69c7c"
+ "f6e1e713-3a5a-446a-baee-fc6fbb11dcfb"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103053Z:77cdffa8-1402-4a53-98b3-bc9b69b69c7c"
+ "WESTEUROPE:20150522T085233Z:f6e1e713-3a5a-446a-baee-fc6fbb11dcfb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +928,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:52 GMT"
+ "Fri, 22 May 2015 08:52:33 GMT"
]
},
"StatusCode": 200
@@ -847,10 +943,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:30:53.8519785Z\",\r\n \"duration\": \"PT17.986529S\",\r\n \"correlationId\": \"b0c08e14-d8d9-4f7b-8ce5-dae46563200c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1619"
+ "1615"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -862,16 +958,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31902"
+ "14969"
],
"x-ms-request-id": [
- "8653801d-ffd7-4acc-a4a5-15d117cb5a5f"
+ "810e2a9d-af37-445c-84f4-aa7a147d62ac"
],
"x-ms-correlation-request-id": [
- "8653801d-ffd7-4acc-a4a5-15d117cb5a5f"
+ "810e2a9d-af37-445c-84f4-aa7a147d62ac"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103056Z:8653801d-ffd7-4acc-a4a5-15d117cb5a5f"
+ "WESTEUROPE:20150522T085236Z:810e2a9d-af37-445c-84f4-aa7a147d62ac"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -880,7 +976,103 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:56 GMT"
+ "Fri, 22 May 2015 08:52:36 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzc3Ny9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:52:17.208071Z\",\r\n \"duration\": \"PT2.005892S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1615"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14967"
+ ],
+ "x-ms-request-id": [
+ "21c8ac50-56ff-48d9-b13d-85e86154d08e"
+ ],
+ "x-ms-correlation-request-id": [
+ "21c8ac50-56ff-48d9-b13d-85e86154d08e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085239Z:21c8ac50-56ff-48d9-b13d-85e86154d08e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:52:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzc3Ny9kZXBsb3ltZW50cy9zcWwtYXVkaXQtdGVzdC1lbnYtc2V0dXA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:52:39.2619873Z\",\r\n \"duration\": \"PT24.0598083S\",\r\n \"correlationId\": \"e99b133d-b5e1-4175-9423-ceacd89b8d6b\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1620"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14965"
+ ],
+ "x-ms-request-id": [
+ "2c88319e-a968-4887-8ac1-ec996925a83c"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c88319e-a968-4887-8ac1-ec996925a83c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTEUROPE:20150522T085242Z:2c88319e-a968-4887-8ac1-ec996925a83c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 22 May 2015 08:52:42 GMT"
]
},
"StatusCode": 200
@@ -895,10 +1087,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"name\": \"sql-dm-cmdlet-server777\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"name\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777\",\r\n \"name\": \"sql-dm-cmdlet-server777\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777\",\r\n \"name\": \"sql-dm-cmdlet-server777/sql-dm-cmdlet-db777\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "553"
+ "586"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -910,16 +1102,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31901"
+ "14964"
],
"x-ms-request-id": [
- "c0ffe764-7086-43b7-982b-10f0a71eb70a"
+ "4022bffa-1034-4044-877b-11c4eb111fa2"
],
"x-ms-correlation-request-id": [
- "c0ffe764-7086-43b7-982b-10f0a71eb70a"
+ "4022bffa-1034-4044-877b-11c4eb111fa2"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103058Z:c0ffe764-7086-43b7-982b-10f0a71eb70a"
+ "WESTEUROPE:20150522T085244Z:4022bffa-1034-4044-877b-11c4eb111fa2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -928,7 +1120,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:58 GMT"
+ "Fri, 22 May 2015 08:52:44 GMT"
]
},
"StatusCode": 200
@@ -961,16 +1153,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "westeurope:cff9f531-edf2-4b8f-82f8-814948fb36e8"
+ "westeurope:c02de1a5-8518-46b8-8e8d-1beee7112733"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31952"
+ "14963"
],
"x-ms-correlation-request-id": [
- "182a777c-e632-4864-9fa6-069e735fce23"
+ "97fcb384-09dc-4d76-84bb-2fb10bf5448a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103059Z:182a777c-e632-4864-9fa6-069e735fce23"
+ "WESTEUROPE:20150522T085245Z:97fcb384-09dc-4d76-84bb-2fb10bf5448a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -979,7 +1171,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:30:58 GMT"
+ "Fri, 22 May 2015 08:52:45 GMT"
]
},
"StatusCode": 200
@@ -994,7 +1186,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "8092fa2c-9e3a-4f3e-80ec-9914c4891443"
+ "1f7fd9d5-eecd-42a4-ad14-02f0b31a3994"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1006,7 +1198,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "9e2c1e5d-2674-4134-a335-f7109c207cac"
+ "ac8ad535-8446-420a-9595-2fc18f62679e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1015,13 +1207,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31900"
+ "14999"
],
"x-ms-correlation-request-id": [
- "fa24049a-bdae-484f-bd83-df04367adb74"
+ "c9c637dd-55ed-4749-adcb-19160991cab6"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103100Z:fa24049a-bdae-484f-bd83-df04367adb74"
+ "WESTEUROPE:20150522T085247Z:c9c637dd-55ed-4749-adcb-19160991cab6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1030,7 +1222,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:00 GMT"
+ "Fri, 22 May 2015 08:52:46 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1048,7 +1240,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "03c55813-614d-41fc-91bf-4dfd2e64e464"
+ "45260ad9-c757-450a-942e-640f9c27ac70"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1060,7 +1252,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b707dd59-6974-4f3b-82fc-461a0c344e56"
+ "fb288dec-f086-4766-8f84-2e4efb5d38b8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1069,13 +1261,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31899"
+ "14998"
],
"x-ms-correlation-request-id": [
- "9c04598a-31b9-426e-bbcb-e4de0f2b074c"
+ "a30f264b-5ebe-45de-954a-b85f0b1a570d"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103104Z:9c04598a-31b9-426e-bbcb-e4de0f2b074c"
+ "WESTEUROPE:20150522T085250Z:a30f264b-5ebe-45de-954a-b85f0b1a570d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1084,7 +1276,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:03 GMT"
+ "Fri, 22 May 2015 08:52:49 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1102,7 +1294,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "a846b451-1a62-42c8-b318-867467f7fdf4"
+ "a98f141c-925a-42b2-a1b0-facba2b05971"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1114,7 +1306,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ce80fc73-7ddc-4f51-89cd-4f92091a125a"
+ "39ffa05b-7b99-4159-98ef-3514b24cb6b6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1123,13 +1315,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31898"
+ "14997"
],
"x-ms-correlation-request-id": [
- "5674e25b-e82f-443c-8e5b-27a73164d4f6"
+ "b8d3ce1b-ab90-43d7-af3b-c144a78b42ae"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103105Z:5674e25b-e82f-443c-8e5b-27a73164d4f6"
+ "WESTEUROPE:20150522T085251Z:b8d3ce1b-ab90-43d7-af3b-c144a78b42ae"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1138,7 +1330,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:04 GMT"
+ "Fri, 22 May 2015 08:52:50 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1156,7 +1348,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b169b145-067f-4b97-a701-9211ee006285"
+ "240f0973-032b-47c1-b9a9-3ab4a0d1c41d"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1168,7 +1360,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "a69d3a93-a657-4f38-af83-b1b736a4571e"
+ "9e980abe-76c1-4462-8613-50ba00e74df8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1177,13 +1369,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31897"
+ "14996"
],
"x-ms-correlation-request-id": [
- "9eb2d078-1545-4fff-83b3-665aec2ca53f"
+ "7ced1411-6d57-41c3-9235-d15d5e57e34e"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103108Z:9eb2d078-1545-4fff-83b3-665aec2ca53f"
+ "WESTEUROPE:20150522T085255Z:7ced1411-6d57-41c3-9235-d15d5e57e34e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1192,7 +1384,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:08 GMT"
+ "Fri, 22 May 2015 08:52:54 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1210,7 +1402,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "12766fdb-165d-40dd-a3ac-f8026b47fed0"
+ "67ddb0c0-0948-4643-a13c-f36ead46c949"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1222,7 +1414,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "39d7fe0e-7099-4649-9f6c-fabaa3922f35"
+ "ddb6ea99-cf72-413f-b0ab-37ae3503410c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1231,13 +1423,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31896"
+ "14995"
],
"x-ms-correlation-request-id": [
- "141a51d4-d8cc-491c-a164-8fb1ccbe23b8"
+ "292fb7c6-ccb6-4363-9509-8b0fed102506"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103110Z:141a51d4-d8cc-491c-a164-8fb1ccbe23b8"
+ "WESTEUROPE:20150522T085256Z:292fb7c6-ccb6-4363-9509-8b0fed102506"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1246,7 +1438,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:09 GMT"
+ "Fri, 22 May 2015 08:52:55 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1264,7 +1456,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "7db2ba85-fa39-4e8f-9934-0fda395fd527"
+ "169201ef-5e4d-4159-8d24-f3ac70fecec0"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1276,7 +1468,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4c3144d6-c1e5-4ea9-acfa-50a2173e36be"
+ "5caf45c4-2ea4-41ea-b827-5fd0eee6794a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1285,13 +1477,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31895"
+ "14994"
],
"x-ms-correlation-request-id": [
- "51ef834f-0588-45ba-ab72-88009d110d98"
+ "4038c200-b852-4dc1-8201-91e18433ba6f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103113Z:51ef834f-0588-45ba-ab72-88009d110d98"
+ "WESTEUROPE:20150522T085259Z:4038c200-b852-4dc1-8201-91e18433ba6f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1300,7 +1492,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:12 GMT"
+ "Fri, 22 May 2015 08:52:58 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1324,7 +1516,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "8092fa2c-9e3a-4f3e-80ec-9914c4891443"
+ "1f7fd9d5-eecd-42a4-ad14-02f0b31a3994"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1336,7 +1528,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "d7efab6a-e2e9-4122-9fb8-0254f3f41ba4"
+ "805aad55-d545-436f-9f45-d76c0ec55a5f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1348,13 +1540,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "6a81e734-6bb3-4fb0-bf1b-8041323400d2"
+ "0b8545d8-138c-415a-b4f6-978cadfafc17"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103102Z:6a81e734-6bb3-4fb0-bf1b-8041323400d2"
+ "WESTEUROPE:20150522T085248Z:0b8545d8-138c-415a-b4f6-978cadfafc17"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1363,7 +1555,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:01 GMT"
+ "Fri, 22 May 2015 08:52:48 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1387,7 +1579,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "a846b451-1a62-42c8-b318-867467f7fdf4"
+ "a98f141c-925a-42b2-a1b0-facba2b05971"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1399,7 +1591,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "17b9aea3-1b3b-4a3c-b4cb-89292ab56ed0"
+ "bb57cb62-94e2-425c-810c-4f79b485741e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1411,13 +1603,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1198"
],
"x-ms-correlation-request-id": [
- "14710042-7029-47de-b22f-a768557237a8"
+ "0ccaa643-d4ff-41cf-b0fb-039e7e0908da"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103106Z:14710042-7029-47de-b22f-a768557237a8"
+ "WESTEUROPE:20150522T085253Z:0ccaa643-d4ff-41cf-b0fb-039e7e0908da"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1426,7 +1618,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:06 GMT"
+ "Fri, 22 May 2015 08:52:52 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1450,7 +1642,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "12766fdb-165d-40dd-a3ac-f8026b47fed0"
+ "67ddb0c0-0948-4643-a13c-f36ead46c949"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server777/databases/sql-dm-cmdlet-db777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Enabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1462,7 +1654,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "0e3994ec-d9dd-41f9-a22c-55d84558388f"
+ "fd6df256-905b-406b-9a44-f8e4d96c25b1"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1474,13 +1666,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1197"
],
"x-ms-correlation-request-id": [
- "1e70ed1d-b692-4429-901c-10d07853d670"
+ "335f631b-41e0-4676-ba58-c855b42886fc"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103111Z:1e70ed1d-b692-4429-901c-10d07853d670"
+ "WESTEUROPE:20150522T085258Z:335f631b-41e0-4676-ba58-c855b42886fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1489,7 +1681,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:31:11 GMT"
+ "Fri, 22 May 2015 08:52:57 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPrivilegedLoginsChanges.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPrivilegedLoginsChanges.json
index b97e893ea3f8..8c95c75be106 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPrivilegedLoginsChanges.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingPrivilegedLoginsChanges.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31972"
+ "14941"
],
"x-ms-request-id": [
- "64888e72-cccd-457e-8f2c-70a478ba7ba9"
+ "b67ccbe4-4694-4642-b623-efcae6e5bec3"
],
"x-ms-correlation-request-id": [
- "64888e72-cccd-457e-8f2c-70a478ba7ba9"
+ "b67ccbe4-4694-4642-b623-efcae6e5bec3"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102905Z:64888e72-cccd-457e-8f2c-70a478ba7ba9"
+ "WESTEUROPE:20150522T090053Z:b67ccbe4-4694-4642-b623-efcae6e5bec3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:04 GMT"
+ "Fri, 22 May 2015 09:00:53 GMT"
]
},
"StatusCode": 404
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1186"
],
"x-ms-request-id": [
- "321a2bd2-d194-4c3a-9bf6-484f607b0282"
+ "bcfcc17c-b479-4c35-b02d-c472f43cfd60"
],
"x-ms-correlation-request-id": [
- "321a2bd2-d194-4c3a-9bf6-484f607b0282"
+ "bcfcc17c-b479-4c35-b02d-c472f43cfd60"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102907Z:321a2bd2-d194-4c3a-9bf6-484f607b0282"
+ "WESTEUROPE:20150522T090055Z:bcfcc17c-b479-4c35-b02d-c472f43cfd60"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:07 GMT"
+ "Fri, 22 May 2015 09:00:55 GMT"
]
},
"StatusCode": 201
@@ -121,10 +121,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:29:08.0877992Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"58799418-fbe7-4f90-bfaa-d5aaf8cdb9ff\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T09:00:56.268495Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"9705a683-b594-4435-929c-76bd9f168e9d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1632"
+ "1631"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -136,16 +136,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "1185"
],
"x-ms-request-id": [
- "58799418-fbe7-4f90-bfaa-d5aaf8cdb9ff"
+ "9705a683-b594-4435-929c-76bd9f168e9d"
],
"x-ms-correlation-request-id": [
- "58799418-fbe7-4f90-bfaa-d5aaf8cdb9ff"
+ "9705a683-b594-4435-929c-76bd9f168e9d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102908Z:58799418-fbe7-4f90-bfaa-d5aaf8cdb9ff"
+ "WESTEUROPE:20150522T090056Z:9705a683-b594-4435-929c-76bd9f168e9d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:07 GMT"
+ "Fri, 22 May 2015 09:00:56 GMT"
]
},
"StatusCode": 200
@@ -175,10 +175,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:29:09.8161679Z\",\r\n \"duration\": \"PT1.0517299S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T09:00:58.080204Z\",\r\n \"duration\": \"PT1.0857164S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1640"
+ "1639"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -190,16 +190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1190"
+ "1184"
],
"x-ms-request-id": [
- "32af37cc-c10b-40f3-98f1-8e47d0b138e3"
+ "c2fb3da9-688f-4f53-bf22-2c24cb0e0117"
],
"x-ms-correlation-request-id": [
- "32af37cc-c10b-40f3-98f1-8e47d0b138e3"
+ "c2fb3da9-688f-4f53-bf22-2c24cb0e0117"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102910Z:32af37cc-c10b-40f3-98f1-8e47d0b138e3"
+ "WESTEUROPE:20150522T090058Z:c2fb3da9-688f-4f53-bf22-2c24cb0e0117"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:09 GMT"
+ "Fri, 22 May 2015 09:00:58 GMT"
]
},
"StatusCode": 201
@@ -238,16 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31971"
+ "14940"
],
"x-ms-request-id": [
- "6084580c-76da-43de-b3db-95c87791219c"
+ "1bfbfe29-c5a4-4a9b-9dce-d7013e9e82ce"
],
"x-ms-correlation-request-id": [
- "6084580c-76da-43de-b3db-95c87791219c"
+ "1bfbfe29-c5a4-4a9b-9dce-d7013e9e82ce"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102911Z:6084580c-76da-43de-b3db-95c87791219c"
+ "WESTEUROPE:20150522T090059Z:1bfbfe29-c5a4-4a9b-9dce-d7013e9e82ce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -256,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:11 GMT"
+ "Fri, 22 May 2015 09:00:58 GMT"
]
},
"StatusCode": 200
@@ -286,16 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31969"
+ "14938"
],
"x-ms-request-id": [
- "c664aa57-0256-4aa0-84e5-22f8cc675316"
+ "1a9dd42f-a622-4cd4-b3b9-f77e3690d404"
],
"x-ms-correlation-request-id": [
- "c664aa57-0256-4aa0-84e5-22f8cc675316"
+ "1a9dd42f-a622-4cd4-b3b9-f77e3690d404"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102914Z:c664aa57-0256-4aa0-84e5-22f8cc675316"
+ "WESTEUROPE:20150522T090102Z:1a9dd42f-a622-4cd4-b3b9-f77e3690d404"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -304,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:13 GMT"
+ "Fri, 22 May 2015 09:01:01 GMT"
]
},
"StatusCode": 200
@@ -334,16 +334,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31967"
+ "14936"
],
"x-ms-request-id": [
- "0f560bf4-4785-4b5c-a8e2-13fcd982b756"
+ "878e84a7-f20f-4f7f-8c60-fa2c18b75199"
],
"x-ms-correlation-request-id": [
- "0f560bf4-4785-4b5c-a8e2-13fcd982b756"
+ "878e84a7-f20f-4f7f-8c60-fa2c18b75199"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102917Z:0f560bf4-4785-4b5c-a8e2-13fcd982b756"
+ "WESTEUROPE:20150522T090105Z:878e84a7-f20f-4f7f-8c60-fa2c18b75199"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +352,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:16 GMT"
+ "Fri, 22 May 2015 09:01:05 GMT"
]
},
"StatusCode": 200
@@ -382,16 +382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31965"
+ "14934"
],
"x-ms-request-id": [
- "7a798a1a-ffd0-4afe-b57f-913f468618e7"
+ "58185fe0-7d0f-4219-bf7e-19daa870e521"
],
"x-ms-correlation-request-id": [
- "7a798a1a-ffd0-4afe-b57f-913f468618e7"
+ "58185fe0-7d0f-4219-bf7e-19daa870e521"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102920Z:7a798a1a-ffd0-4afe-b57f-913f468618e7"
+ "WESTEUROPE:20150522T090108Z:58185fe0-7d0f-4219-bf7e-19daa870e521"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:20 GMT"
+ "Fri, 22 May 2015 09:01:08 GMT"
]
},
"StatusCode": 200
@@ -415,10 +415,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/61C1318DAF80D0AB\",\r\n \"operationId\": \"61C1318DAF80D0AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:29:20.2020174Z\",\r\n \"duration\": \"PT5.818686S\",\r\n \"trackingId\": \"58ed0da9-edb7-436e-b7b8-f032e0f4299c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/61C1318DAF80D0AB\",\r\n \"operationId\": \"61C1318DAF80D0AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T09:01:08.3992278Z\",\r\n \"duration\": \"PT9.8485764S\",\r\n \"trackingId\": \"5f633d18-f04a-46ee-bd0d-5b1a991dae30\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "662"
+ "663"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -430,16 +430,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31963"
+ "14932"
],
"x-ms-request-id": [
- "cff6579b-4943-446b-b542-5ccf2f5e83bf"
+ "89e6ed88-b06a-4c66-9b0f-6341d4faf7c6"
],
"x-ms-correlation-request-id": [
- "cff6579b-4943-446b-b542-5ccf2f5e83bf"
+ "89e6ed88-b06a-4c66-9b0f-6341d4faf7c6"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102923Z:cff6579b-4943-446b-b542-5ccf2f5e83bf"
+ "WESTEUROPE:20150522T090112Z:89e6ed88-b06a-4c66-9b0f-6341d4faf7c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:23 GMT"
+ "Fri, 22 May 2015 09:01:11 GMT"
]
},
"StatusCode": 200
@@ -463,10 +463,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/61C1318DAF80D0AB\",\r\n \"operationId\": \"61C1318DAF80D0AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:29:20.2020174Z\",\r\n \"duration\": \"PT5.818686S\",\r\n \"trackingId\": \"58ed0da9-edb7-436e-b7b8-f032e0f4299c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/35142F853E824FB8\",\r\n \"operationId\": \"35142F853E824FB8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T09:01:13.5770244Z\",\r\n \"duration\": \"PT4.4834744S\",\r\n \"trackingId\": \"88acee9f-105a-4987-8118-0e114554132b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/61C1318DAF80D0AB\",\r\n \"operationId\": \"61C1318DAF80D0AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T09:01:08.3992278Z\",\r\n \"duration\": \"PT9.8485764S\",\r\n \"trackingId\": \"5f633d18-f04a-46ee-bd0d-5b1a991dae30\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "662"
+ "1379"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -478,16 +478,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31961"
+ "14930"
],
"x-ms-request-id": [
- "8893d991-b329-4065-82f4-67501c23a963"
+ "b81f2521-7971-4001-bcdc-902ee307026f"
],
"x-ms-correlation-request-id": [
- "8893d991-b329-4065-82f4-67501c23a963"
+ "b81f2521-7971-4001-bcdc-902ee307026f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102926Z:8893d991-b329-4065-82f4-67501c23a963"
+ "WESTEUROPE:20150522T090115Z:b81f2521-7971-4001-bcdc-902ee307026f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -496,55 +496,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:26 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzMwNzc3L2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/35142F853E824FB8\",\r\n \"operationId\": \"35142F853E824FB8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:29:26.6318015Z\",\r\n \"duration\": \"PT6.363052S\",\r\n \"trackingId\": \"d9072644-dc07-4069-84bd-db77e3fa9ea8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup/operations/61C1318DAF80D0AB\",\r\n \"operationId\": \"61C1318DAF80D0AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:29:20.2020174Z\",\r\n \"duration\": \"PT5.818686S\",\r\n \"trackingId\": \"58ed0da9-edb7-436e-b7b8-f032e0f4299c\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1377"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31959"
- ],
- "x-ms-request-id": [
- "4b7c2ca5-79d1-43ff-a818-4ed7cb87b7b5"
- ],
- "x-ms-correlation-request-id": [
- "4b7c2ca5-79d1-43ff-a818-4ed7cb87b7b5"
- ],
- "x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102929Z:4b7c2ca5-79d1-43ff-a818-4ed7cb87b7b5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:29:28 GMT"
+ "Fri, 22 May 2015 09:01:14 GMT"
]
},
"StatusCode": 200
@@ -559,55 +511,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:29:09.8161679Z\",\r\n \"duration\": \"PT1.0517299S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1640"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31970"
- ],
- "x-ms-request-id": [
- "9eb6a2f5-9748-4248-948d-cd5c28972e2b"
- ],
- "x-ms-correlation-request-id": [
- "9eb6a2f5-9748-4248-948d-cd5c28972e2b"
- ],
- "x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102911Z:9eb6a2f5-9748-4248-948d-cd5c28972e2b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:29:11 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzMwNzc3L2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:29:13.9278584Z\",\r\n \"duration\": \"PT5.1634204S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T09:00:58.4855591Z\",\r\n \"duration\": \"PT1.4910715S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -622,16 +526,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31968"
+ "14939"
],
"x-ms-request-id": [
- "83009177-d914-4240-ad49-893915aed005"
+ "f41cd16a-e074-4a00-b4de-9df6c39601b4"
],
"x-ms-correlation-request-id": [
- "83009177-d914-4240-ad49-893915aed005"
+ "f41cd16a-e074-4a00-b4de-9df6c39601b4"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102914Z:83009177-d914-4240-ad49-893915aed005"
+ "WESTEUROPE:20150522T090059Z:f41cd16a-e074-4a00-b4de-9df6c39601b4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -640,7 +544,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:14 GMT"
+ "Fri, 22 May 2015 09:00:59 GMT"
]
},
"StatusCode": 200
@@ -655,7 +559,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:29:13.9278584Z\",\r\n \"duration\": \"PT5.1634204S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T09:00:58.4855591Z\",\r\n \"duration\": \"PT1.4910715S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -670,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31966"
+ "14937"
],
"x-ms-request-id": [
- "13e10298-7de2-485c-b0c2-8ea285d333b2"
+ "f9a48acd-11f9-4afa-891d-596233ded07d"
],
"x-ms-correlation-request-id": [
- "13e10298-7de2-485c-b0c2-8ea285d333b2"
+ "f9a48acd-11f9-4afa-891d-596233ded07d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102917Z:13e10298-7de2-485c-b0c2-8ea285d333b2"
+ "WESTEUROPE:20150522T090102Z:f9a48acd-11f9-4afa-891d-596233ded07d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -688,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:17 GMT"
+ "Fri, 22 May 2015 09:01:02 GMT"
]
},
"StatusCode": 200
@@ -703,7 +607,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:29:13.9278584Z\",\r\n \"duration\": \"PT5.1634204S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T09:00:58.4855591Z\",\r\n \"duration\": \"PT1.4910715S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -718,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31964"
+ "14935"
],
"x-ms-request-id": [
- "9de992f1-d359-4ae9-b3a3-eb5811c8fbcf"
+ "6ee98281-8582-46e8-8561-45ff528dc23c"
],
"x-ms-correlation-request-id": [
- "9de992f1-d359-4ae9-b3a3-eb5811c8fbcf"
+ "6ee98281-8582-46e8-8561-45ff528dc23c"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102920Z:9de992f1-d359-4ae9-b3a3-eb5811c8fbcf"
+ "WESTEUROPE:20150522T090105Z:6ee98281-8582-46e8-8561-45ff528dc23c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:20 GMT"
+ "Fri, 22 May 2015 09:01:05 GMT"
]
},
"StatusCode": 200
@@ -751,7 +655,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:29:13.9278584Z\",\r\n \"duration\": \"PT5.1634204S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T09:00:58.4855591Z\",\r\n \"duration\": \"PT1.4910715S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -766,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31962"
+ "14933"
],
"x-ms-request-id": [
- "5e462f27-0e8b-4490-8b57-627ddef1195f"
+ "5f81059b-237b-4b49-88c7-83540624789b"
],
"x-ms-correlation-request-id": [
- "5e462f27-0e8b-4490-8b57-627ddef1195f"
+ "5f81059b-237b-4b49-88c7-83540624789b"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102923Z:5e462f27-0e8b-4490-8b57-627ddef1195f"
+ "WESTEUROPE:20150522T090108Z:5f81059b-237b-4b49-88c7-83540624789b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:23 GMT"
+ "Fri, 22 May 2015 09:01:08 GMT"
]
},
"StatusCode": 200
@@ -799,7 +703,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:29:13.9278584Z\",\r\n \"duration\": \"PT5.1634204S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T09:00:58.4855591Z\",\r\n \"duration\": \"PT1.4910715S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -814,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31960"
+ "14931"
],
"x-ms-request-id": [
- "3988d30f-fbcc-4356-a234-70bf90eead76"
+ "69b56691-965a-40cb-b18b-db02d7823d89"
],
"x-ms-correlation-request-id": [
- "3988d30f-fbcc-4356-a234-70bf90eead76"
+ "69b56691-965a-40cb-b18b-db02d7823d89"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102926Z:3988d30f-fbcc-4356-a234-70bf90eead76"
+ "WESTEUROPE:20150522T090112Z:69b56691-965a-40cb-b18b-db02d7823d89"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:26 GMT"
+ "Fri, 22 May 2015 09:01:12 GMT"
]
},
"StatusCode": 200
@@ -847,7 +751,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:29:28.7723816Z\",\r\n \"duration\": \"PT20.0079436S\",\r\n \"correlationId\": \"32af37cc-c10b-40f3-98f1-8e47d0b138e3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db30777\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T09:01:15.1480344Z\",\r\n \"duration\": \"PT18.1535468S\",\r\n \"correlationId\": \"c2fb3da9-688f-4f53-bf22-2c24cb0e0117\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1642"
@@ -862,16 +766,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31958"
+ "14929"
],
"x-ms-request-id": [
- "cf7c1d7a-37f8-4030-b6d6-0b584eba3924"
+ "efe87440-a46f-437b-9624-df488deb9502"
],
"x-ms-correlation-request-id": [
- "cf7c1d7a-37f8-4030-b6d6-0b584eba3924"
+ "efe87440-a46f-437b-9624-df488deb9502"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102929Z:cf7c1d7a-37f8-4030-b6d6-0b584eba3924"
+ "WESTEUROPE:20150522T090115Z:efe87440-a46f-437b-9624-df488deb9502"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -880,7 +784,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:28 GMT"
+ "Fri, 22 May 2015 09:01:15 GMT"
]
},
"StatusCode": 200
@@ -895,10 +799,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777\",\r\n \"name\": \"sql-dm-cmdlet-server30777\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"name\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777\",\r\n \"name\": \"sql-dm-cmdlet-server30777/sql-dm-cmdlet-db30777\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "569"
+ "341"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -910,16 +814,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31957"
+ "14928"
],
"x-ms-request-id": [
- "731fad4b-29a9-4e31-b5e3-a683ca561843"
+ "db711adb-65a7-4b6c-b484-2848cebf5566"
],
"x-ms-correlation-request-id": [
- "731fad4b-29a9-4e31-b5e3-a683ca561843"
+ "db711adb-65a7-4b6c-b484-2848cebf5566"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102932Z:731fad4b-29a9-4e31-b5e3-a683ca561843"
+ "WESTEUROPE:20150522T090117Z:db711adb-65a7-4b6c-b484-2848cebf5566"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -928,7 +832,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:31 GMT"
+ "Fri, 22 May 2015 09:01:17 GMT"
]
},
"StatusCode": 200
@@ -961,16 +865,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "northeurope:e1ed98a6-bbfd-440c-88fd-87e1acd12a14"
+ "westeurope:76dabbab-baa0-45bd-ad39-f68e62274202"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31988"
+ "14986"
],
"x-ms-correlation-request-id": [
- "74a245a7-fd81-443b-a423-b830f847d269"
+ "a2d2500a-fa9d-4d65-9c4d-88c5cd0ef7a7"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102932Z:74a245a7-fd81-443b-a423-b830f847d269"
+ "WESTEUROPE:20150522T090118Z:a2d2500a-fa9d-4d65-9c4d-88c5cd0ef7a7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -979,7 +883,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:32 GMT"
+ "Fri, 22 May 2015 09:01:17 GMT"
]
},
"StatusCode": 200
@@ -994,7 +898,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b0bb5610-ecf6-4b25-ad80-9ff67b955024"
+ "92269de1-4a32-413c-961f-20eefd976936"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1006,7 +910,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "7b579f9b-8ce4-45d5-89f8-4928ddfac5c9"
+ "bd9ddbae-5a1b-4030-b22e-e6948e97189e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1015,13 +919,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31999"
+ "14995"
],
"x-ms-correlation-request-id": [
- "b6b4175d-8ecc-40c2-8afe-11ad799ce576"
+ "bbabe693-2761-4c43-aca0-259aaba821c6"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102935Z:b6b4175d-8ecc-40c2-8afe-11ad799ce576"
+ "WESTEUROPE:20150522T090120Z:bbabe693-2761-4c43-aca0-259aaba821c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1030,7 +934,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:35 GMT"
+ "Fri, 22 May 2015 09:01:20 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1048,7 +952,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "70463a4d-dd66-4d74-9347-cfb16fd360cc"
+ "71b1a9cf-36ee-4fcc-8943-2ba3d9d0bccb"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"A;B;C\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1060,7 +964,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "e21877ea-bf5f-44f2-b293-998b295a35ba"
+ "696666dc-b1d1-491c-8aed-c23eac579a22"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1069,13 +973,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31998"
+ "14994"
],
"x-ms-correlation-request-id": [
- "0bffc8b5-b280-4391-b256-44075f9de67f"
+ "4fb8f0a4-1c6a-4dfc-a4aa-2d59d9174cf9"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102938Z:0bffc8b5-b280-4391-b256-44075f9de67f"
+ "WESTEUROPE:20150522T090123Z:4fb8f0a4-1c6a-4dfc-a4aa-2d59d9174cf9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1084,7 +988,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:37 GMT"
+ "Fri, 22 May 2015 09:01:23 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1102,7 +1006,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "75eb850a-5254-48c0-9ee0-e899b9917d1b"
+ "dfde8360-ae4b-4c72-b96b-a51ba86d82e3"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"A;B;C\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1114,7 +1018,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "66e39038-4b22-410d-8c87-ba18e341733b"
+ "2bd30e48-e5b3-4cf7-99f0-b8fefaac1d37"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1123,13 +1027,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31997"
+ "14993"
],
"x-ms-correlation-request-id": [
- "a93e7af8-2c49-4dd1-9ab5-49a984e6d9ad"
+ "94c51aec-3070-4c3d-b780-bea6ed2c27e6"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102939Z:a93e7af8-2c49-4dd1-9ab5-49a984e6d9ad"
+ "WESTEUROPE:20150522T090124Z:94c51aec-3070-4c3d-b780-bea6ed2c27e6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1138,7 +1042,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:39 GMT"
+ "Fri, 22 May 2015 09:01:24 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1156,7 +1060,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "18462035-47b4-4a6f-989f-6ad116eddc1d"
+ "516d8108-c651-48d7-86ac-c8e49fa80376"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"A;B;C\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1168,7 +1072,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "f3cb1026-6176-4e75-9ba8-12a3e947b34d"
+ "9fc3ad28-3a44-44bf-b7dd-c20ecb6886b5"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1177,13 +1081,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31996"
+ "14992"
],
"x-ms-correlation-request-id": [
- "c03a2931-a79b-4a66-851c-9d1a030acea7"
+ "f27ebb55-fdca-4c1b-85cd-44578467c235"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102942Z:c03a2931-a79b-4a66-851c-9d1a030acea7"
+ "WESTEUROPE:20150522T090127Z:f27ebb55-fdca-4c1b-85cd-44578467c235"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1192,7 +1096,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:42 GMT"
+ "Fri, 22 May 2015 09:01:27 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1210,7 +1114,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b16193c6-4098-4520-949d-91c50f593852"
+ "6990c3cb-f4bb-4c55-ad2a-9ca3ca8bca67"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"A;B;C\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1222,7 +1126,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "37dd9863-a1de-43b9-b67f-b910baa3cd5d"
+ "af968990-949f-439a-8040-aab876203ccf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1231,13 +1135,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31995"
+ "14991"
],
"x-ms-correlation-request-id": [
- "42d04af5-3514-48d2-a55b-0d16c5f26f38"
+ "61014f43-1f79-4255-ab1c-fddd6b8c646f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102943Z:42d04af5-3514-48d2-a55b-0d16c5f26f38"
+ "WESTEUROPE:20150522T090128Z:61014f43-1f79-4255-ab1c-fddd6b8c646f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1246,7 +1150,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:43 GMT"
+ "Fri, 22 May 2015 09:01:28 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1264,7 +1168,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "558f4bca-4b53-45d4-98b8-ffc7f9d9d533"
+ "e2ce24bf-5b1c-4e20-8d4d-1ac3b95f90fc"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1276,7 +1180,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3f57bd22-87e0-46c3-b6ba-0947aba31941"
+ "b640fdb2-da48-4b5b-b2fe-6d81876e829a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1285,13 +1189,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31994"
+ "14990"
],
"x-ms-correlation-request-id": [
- "fdfb7318-3985-4689-8a2f-aa729c2f9e2a"
+ "9b5c4009-1997-4ebb-bb93-7b6396029e6c"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102947Z:fdfb7318-3985-4689-8a2f-aa729c2f9e2a"
+ "WESTEUROPE:20150522T090131Z:9b5c4009-1997-4ebb-bb93-7b6396029e6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1300,7 +1204,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:47 GMT"
+ "Fri, 22 May 2015 09:01:31 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1324,7 +1228,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b0bb5610-ecf6-4b25-ad80-9ff67b955024"
+ "92269de1-4a32-413c-961f-20eefd976936"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"A;B;C\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1336,7 +1240,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "d2c4c2a3-0fdd-4b42-b69a-69a0028a0b8d"
+ "44da8380-ebf1-4527-8e25-2fb4e7218d34"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1348,13 +1252,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "1d1606c0-2b01-4922-ac16-9e7706a9f89f"
+ "23c005d1-bee5-4847-b031-83861e5b7a0d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102936Z:1d1606c0-2b01-4922-ac16-9e7706a9f89f"
+ "WESTEUROPE:20150522T090122Z:23c005d1-bee5-4847-b031-83861e5b7a0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1363,7 +1267,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:36 GMT"
+ "Fri, 22 May 2015 09:01:21 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1387,7 +1291,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "75eb850a-5254-48c0-9ee0-e899b9917d1b"
+ "dfde8360-ae4b-4c72-b96b-a51ba86d82e3"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"A;B;C\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1399,7 +1303,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "f580aa71-5856-4469-b8c6-738eefd77ef4"
+ "f49dc99f-ef00-48c1-83aa-ea6e913d8a0c"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1411,13 +1315,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1196"
],
"x-ms-correlation-request-id": [
- "5dd14cd3-5bdc-46c6-b9aa-5d86e27948fe"
+ "8a506577-ec41-4370-abc8-7a04b97f9892"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102941Z:5dd14cd3-5bdc-46c6-b9aa-5d86e27948fe"
+ "WESTEUROPE:20150522T090126Z:8a506577-ec41-4370-abc8-7a04b97f9892"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1426,7 +1330,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:41 GMT"
+ "Fri, 22 May 2015 09:01:26 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1450,7 +1354,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b16193c6-4098-4520-949d-91c50f593852"
+ "6990c3cb-f4bb-4c55-ad2a-9ca3ca8bca67"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg30777/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server30777/databases/sql-dm-cmdlet-db30777/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Restricted\"\r\n }\r\n}",
@@ -1462,7 +1366,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "b9c3348f-6627-45cd-8f11-5724819fd077"
+ "d6f1355d-e203-4c31-ae36-a2c69921869b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1474,13 +1378,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1195"
],
"x-ms-correlation-request-id": [
- "8d73cdf7-42d7-43c7-8416-8f92641ccacb"
+ "9c6600e4-c86f-4fac-b8ff-638a197fae56"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102945Z:8d73cdf7-42d7-43c7-8416-8f92641ccacb"
+ "WESTEUROPE:20150522T090130Z:9c6600e4-c86f-4fac-b8ff-638a197fae56"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1489,7 +1393,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:29:45 GMT"
+ "Fri, 22 May 2015 09:01:29 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json
index f6756e852dee..e5d25851e961 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingRuleCreationFailures.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31934"
+ "14999"
],
"x-ms-request-id": [
- "6ccd589f-a7fb-4672-9208-d91ae0a81ad8"
+ "beab4b7e-d632-427d-8301-8a7f4937ad74"
],
"x-ms-correlation-request-id": [
- "6ccd589f-a7fb-4672-9208-d91ae0a81ad8"
+ "beab4b7e-d632-427d-8301-8a7f4937ad74"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103511Z:6ccd589f-a7fb-4672-9208-d91ae0a81ad8"
+ "WESTEUROPE:20150522T084527Z:beab4b7e-d632-427d-8301-8a7f4937ad74"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:10 GMT"
+ "Fri, 22 May 2015 08:45:26 GMT"
]
},
"StatusCode": 404
@@ -85,13 +85,13 @@
"1199"
],
"x-ms-request-id": [
- "393bcd93-9303-46ae-bc41-5acd9ce7e3f1"
+ "adc71667-2231-4b53-9c51-328a0404b3a1"
],
"x-ms-correlation-request-id": [
- "393bcd93-9303-46ae-bc41-5acd9ce7e3f1"
+ "adc71667-2231-4b53-9c51-328a0404b3a1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103513Z:393bcd93-9303-46ae-bc41-5acd9ce7e3f1"
+ "WESTEUROPE:20150522T084529Z:adc71667-2231-4b53-9c51-328a0404b3a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:12 GMT"
+ "Fri, 22 May 2015 08:45:29 GMT"
]
},
"StatusCode": 201
@@ -121,7 +121,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:35:17.8438932Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"1395a780-4b9e-4ddc-b4e5-3daa3330855d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:45:30.1000038Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"2a59ec17-9947-4e9d-8ce9-260e62826a09\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1632"
@@ -139,13 +139,13 @@
"1198"
],
"x-ms-request-id": [
- "1395a780-4b9e-4ddc-b4e5-3daa3330855d"
+ "2a59ec17-9947-4e9d-8ce9-260e62826a09"
],
"x-ms-correlation-request-id": [
- "1395a780-4b9e-4ddc-b4e5-3daa3330855d"
+ "2a59ec17-9947-4e9d-8ce9-260e62826a09"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103517Z:1395a780-4b9e-4ddc-b4e5-3daa3330855d"
+ "WESTEUROPE:20150522T084530Z:2a59ec17-9947-4e9d-8ce9-260e62826a09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:17 GMT"
+ "Fri, 22 May 2015 08:45:30 GMT"
]
},
"StatusCode": 200
@@ -175,7 +175,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:35:19.7181679Z\",\r\n \"duration\": \"PT1.2161954S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:45:32.3207853Z\",\r\n \"duration\": \"PT1.2077346S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1640"
@@ -193,13 +193,13 @@
"1197"
],
"x-ms-request-id": [
- "46f1a156-b4c0-4c48-9d14-b1101b6c1070"
+ "50a43c72-4cf1-4463-90ef-babf4024b00a"
],
"x-ms-correlation-request-id": [
- "46f1a156-b4c0-4c48-9d14-b1101b6c1070"
+ "50a43c72-4cf1-4463-90ef-babf4024b00a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103520Z:46f1a156-b4c0-4c48-9d14-b1101b6c1070"
+ "WESTEUROPE:20150522T084532Z:50a43c72-4cf1-4463-90ef-babf4024b00a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:19 GMT"
+ "Fri, 22 May 2015 08:45:32 GMT"
]
},
"StatusCode": 201
@@ -238,16 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31933"
+ "14998"
],
"x-ms-request-id": [
- "2e6414c5-6111-480d-9a38-56c3153f286c"
+ "73b544d3-2bce-44d8-81fa-3cae9ff3e34d"
],
"x-ms-correlation-request-id": [
- "2e6414c5-6111-480d-9a38-56c3153f286c"
+ "73b544d3-2bce-44d8-81fa-3cae9ff3e34d"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103522Z:2e6414c5-6111-480d-9a38-56c3153f286c"
+ "WESTEUROPE:20150522T084533Z:73b544d3-2bce-44d8-81fa-3cae9ff3e34d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -256,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:21 GMT"
+ "Fri, 22 May 2015 08:45:33 GMT"
]
},
"StatusCode": 200
@@ -286,16 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31931"
+ "14996"
],
"x-ms-request-id": [
- "abecdb2c-9ced-44a9-a277-41a108e405eb"
+ "dee4377a-0bcc-44c9-9786-07dbd0fc1397"
],
"x-ms-correlation-request-id": [
- "abecdb2c-9ced-44a9-a277-41a108e405eb"
+ "dee4377a-0bcc-44c9-9786-07dbd0fc1397"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103525Z:abecdb2c-9ced-44a9-a277-41a108e405eb"
+ "WESTEUROPE:20150522T084536Z:dee4377a-0bcc-44c9-9786-07dbd0fc1397"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -304,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:24 GMT"
+ "Fri, 22 May 2015 08:45:36 GMT"
]
},
"StatusCode": 200
@@ -334,16 +334,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31929"
+ "14994"
],
"x-ms-request-id": [
- "f37e13bc-ec92-4973-922a-a2787c373247"
+ "1a42de39-2187-4abd-8943-b107e3e8bccc"
],
"x-ms-correlation-request-id": [
- "f37e13bc-ec92-4973-922a-a2787c373247"
+ "1a42de39-2187-4abd-8943-b107e3e8bccc"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103528Z:f37e13bc-ec92-4973-922a-a2787c373247"
+ "WESTEUROPE:20150522T084539Z:1a42de39-2187-4abd-8943-b107e3e8bccc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +352,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:27 GMT"
+ "Fri, 22 May 2015 08:45:39 GMT"
]
},
"StatusCode": 200
@@ -382,16 +382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31927"
+ "14992"
],
"x-ms-request-id": [
- "1e2c2127-4915-455e-8550-c470c1ce5b97"
+ "f516bf70-e10f-47d1-bfa1-9a5e256703a1"
],
"x-ms-correlation-request-id": [
- "1e2c2127-4915-455e-8550-c470c1ce5b97"
+ "f516bf70-e10f-47d1-bfa1-9a5e256703a1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103531Z:1e2c2127-4915-455e-8550-c470c1ce5b97"
+ "WESTEUROPE:20150522T084542Z:f516bf70-e10f-47d1-bfa1-9a5e256703a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +400,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:30 GMT"
+ "Fri, 22 May 2015 08:45:42 GMT"
]
},
"StatusCode": 200
@@ -430,16 +430,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31925"
+ "14990"
],
"x-ms-request-id": [
- "a8140de1-ff0f-49f5-8fd5-3abd6bea6de3"
+ "bd6e31f9-5f61-4950-bf2b-b928b1136576"
],
"x-ms-correlation-request-id": [
- "a8140de1-ff0f-49f5-8fd5-3abd6bea6de3"
+ "bd6e31f9-5f61-4950-bf2b-b928b1136576"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103534Z:a8140de1-ff0f-49f5-8fd5-3abd6bea6de3"
+ "WESTEUROPE:20150522T084545Z:bd6e31f9-5f61-4950-bf2b-b928b1136576"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:34 GMT"
+ "Fri, 22 May 2015 08:45:45 GMT"
]
},
"StatusCode": 200
@@ -463,586 +463,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "12"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31923"
- ],
- "x-ms-request-id": [
- "1d8ea742-36ee-4487-acda-d9bd8e9d8fda"
- ],
- "x-ms-correlation-request-id": [
- "1d8ea742-36ee-4487-acda-d9bd8e9d8fda"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103537Z:1d8ea742-36ee-4487-acda-d9bd8e9d8fda"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:37 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": []\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "12"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31921"
- ],
- "x-ms-request-id": [
- "ce2eaedd-afa6-4e22-96bf-bd1730a4007f"
- ],
- "x-ms-correlation-request-id": [
- "ce2eaedd-afa6-4e22-96bf-bd1730a4007f"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103540Z:ce2eaedd-afa6-4e22-96bf-bd1730a4007f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:40 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:35:40.7298644Z\",\r\n \"duration\": \"PT13.4917626S\",\r\n \"trackingId\": \"cb1eec69-61f6-4df3-b41e-0a2ef1b0edbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "664"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31919"
- ],
- "x-ms-request-id": [
- "395658d2-285b-45b1-b65b-104bb72b6cb2"
- ],
- "x-ms-correlation-request-id": [
- "395658d2-285b-45b1-b65b-104bb72b6cb2"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103543Z:395658d2-285b-45b1-b65b-104bb72b6cb2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:43 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:35:40.7298644Z\",\r\n \"duration\": \"PT13.4917626S\",\r\n \"trackingId\": \"cb1eec69-61f6-4df3-b41e-0a2ef1b0edbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "664"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31917"
- ],
- "x-ms-request-id": [
- "bba2c667-4a13-440b-93da-cc35e60068f2"
- ],
- "x-ms-correlation-request-id": [
- "bba2c667-4a13-440b-93da-cc35e60068f2"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103546Z:bba2c667-4a13-440b-93da-cc35e60068f2"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:46 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:35:40.7298644Z\",\r\n \"duration\": \"PT13.4917626S\",\r\n \"trackingId\": \"cb1eec69-61f6-4df3-b41e-0a2ef1b0edbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "664"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31915"
- ],
- "x-ms-request-id": [
- "f2c20191-96de-43f5-a9b0-8e79bc3c226a"
- ],
- "x-ms-correlation-request-id": [
- "f2c20191-96de-43f5-a9b0-8e79bc3c226a"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103549Z:f2c20191-96de-43f5-a9b0-8e79bc3c226a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:49 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:35:40.7298644Z\",\r\n \"duration\": \"PT13.4917626S\",\r\n \"trackingId\": \"cb1eec69-61f6-4df3-b41e-0a2ef1b0edbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "664"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31913"
- ],
- "x-ms-request-id": [
- "604a33d1-42f6-42d9-8793-cb6181d74a51"
- ],
- "x-ms-correlation-request-id": [
- "604a33d1-42f6-42d9-8793-cb6181d74a51"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103603Z:604a33d1-42f6-42d9-8793-cb6181d74a51"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:36:03 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:36:05.1808503Z\",\r\n \"duration\": \"PT23.898961S\",\r\n \"trackingId\": \"aeadbb12-0f15-4969-a103-dbb120f46f00\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:35:40.7298644Z\",\r\n \"duration\": \"PT13.4917626S\",\r\n \"trackingId\": \"cb1eec69-61f6-4df3-b41e-0a2ef1b0edbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1380"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31911"
- ],
- "x-ms-request-id": [
- "6a034c9a-dfcb-4999-bfef-0b3fdf359cd5"
- ],
- "x-ms-correlation-request-id": [
- "6a034c9a-dfcb-4999-bfef-0b3fdf359cd5"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103607Z:6a034c9a-dfcb-4999-bfef-0b3fdf359cd5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:36:06 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:36:05.1808503Z\",\r\n \"duration\": \"PT23.898961S\",\r\n \"trackingId\": \"aeadbb12-0f15-4969-a103-dbb120f46f00\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:35:40.7298644Z\",\r\n \"duration\": \"PT13.4917626S\",\r\n \"trackingId\": \"cb1eec69-61f6-4df3-b41e-0a2ef1b0edbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1380"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31909"
- ],
- "x-ms-request-id": [
- "c75fcdb4-776f-405b-9a93-22536a0a03e9"
- ],
- "x-ms-correlation-request-id": [
- "c75fcdb4-776f-405b-9a93-22536a0a03e9"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103610Z:c75fcdb4-776f-405b-9a93-22536a0a03e9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:36:09 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:35:19.7181679Z\",\r\n \"duration\": \"PT1.2161954S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1640"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31932"
- ],
- "x-ms-request-id": [
- "fbfcd26e-4709-43d7-abca-1dde253dde38"
- ],
- "x-ms-correlation-request-id": [
- "fbfcd26e-4709-43d7-abca-1dde253dde38"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103522Z:fbfcd26e-4709-43d7-abca-1dde253dde38"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:22 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1639"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31930"
- ],
- "x-ms-request-id": [
- "0e96af68-b96f-4dbb-a4f4-b659b4c1c2a0"
- ],
- "x-ms-correlation-request-id": [
- "0e96af68-b96f-4dbb-a4f4-b659b4c1c2a0"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103525Z:0e96af68-b96f-4dbb-a4f4-b659b4c1c2a0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:24 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1639"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31928"
- ],
- "x-ms-request-id": [
- "dee91911-8e7c-4841-b0f5-184db1de5817"
- ],
- "x-ms-correlation-request-id": [
- "dee91911-8e7c-4841-b0f5-184db1de5817"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103528Z:dee91911-8e7c-4841-b0f5-184db1de5817"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:27 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1639"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31926"
- ],
- "x-ms-request-id": [
- "20b12829-73ac-4ccd-80b0-458e5e3b5d23"
- ],
- "x-ms-correlation-request-id": [
- "20b12829-73ac-4ccd-80b0-458e5e3b5d23"
- ],
- "x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103531Z:20b12829-73ac-4ccd-80b0-458e5e3b5d23"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:35:30 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:45:46.0121053Z\",\r\n \"duration\": \"PT12.3572452S\",\r\n \"trackingId\": \"af4e501b-d30c-4cc0-86d3-8c30ec6f7ce6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
+ "664"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1054,16 +478,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31924"
+ "14988"
],
"x-ms-request-id": [
- "b1ae53ab-9159-443a-ad8b-6c942c406230"
+ "72d16bde-50c6-4997-885d-a6e56b551b1a"
],
"x-ms-correlation-request-id": [
- "b1ae53ab-9159-443a-ad8b-6c942c406230"
+ "72d16bde-50c6-4997-885d-a6e56b551b1a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103534Z:b1ae53ab-9159-443a-ad8b-6c942c406230"
+ "WESTEUROPE:20150522T084548Z:72d16bde-50c6-4997-885d-a6e56b551b1a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1072,14 +496,14 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:34 GMT"
+ "Fri, 22 May 2015 08:45:48 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1087,10 +511,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/887FF218BB40599B\",\r\n \"operationId\": \"887FF218BB40599B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:45:50.3858867Z\",\r\n \"duration\": \"PT3.7690226S\",\r\n \"trackingId\": \"41058b81-545a-4fb9-ae9e-bf0737b0e4ae\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup/operations/BE900D3A0854B0FA\",\r\n \"operationId\": \"BE900D3A0854B0FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:45:46.0121053Z\",\r\n \"duration\": \"PT12.3572452S\",\r\n \"trackingId\": \"af4e501b-d30c-4cc0-86d3-8c30ec6f7ce6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
+ "1380"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1102,16 +526,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31922"
+ "14986"
],
"x-ms-request-id": [
- "6cc1fa77-883e-4637-b8de-9081158518ae"
+ "7dca187d-5592-4619-be19-7e2a33ad2ff9"
],
"x-ms-correlation-request-id": [
- "6cc1fa77-883e-4637-b8de-9081158518ae"
+ "7dca187d-5592-4619-be19-7e2a33ad2ff9"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103537Z:6cc1fa77-883e-4637-b8de-9081158518ae"
+ "WESTEUROPE:20150522T084551Z:7dca187d-5592-4619-be19-7e2a33ad2ff9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1120,7 +544,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:37 GMT"
+ "Fri, 22 May 2015 08:45:51 GMT"
]
},
"StatusCode": 200
@@ -1135,10 +559,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:45:32.3207853Z\",\r\n \"duration\": \"PT1.2077346S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1639"
+ "1640"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1150,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31920"
+ "14997"
],
"x-ms-request-id": [
- "0afa5167-21e9-42ff-8ce9-32055734dfd8"
+ "3817625b-7a28-4914-b3ea-37f39f04fa46"
],
"x-ms-correlation-request-id": [
- "0afa5167-21e9-42ff-8ce9-32055734dfd8"
+ "3817625b-7a28-4914-b3ea-37f39f04fa46"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103540Z:0afa5167-21e9-42ff-8ce9-32055734dfd8"
+ "WESTEUROPE:20150522T084533Z:3817625b-7a28-4914-b3ea-37f39f04fa46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1168,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:40 GMT"
+ "Fri, 22 May 2015 08:45:33 GMT"
]
},
"StatusCode": 200
@@ -1183,7 +607,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:45:33.4860965Z\",\r\n \"duration\": \"PT2.3730458S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -1198,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31918"
+ "14995"
],
"x-ms-request-id": [
- "c1a8bb94-4e6b-48c5-b775-c55a6b957721"
+ "342f392c-5b79-4943-aa0d-a4e27d00200d"
],
"x-ms-correlation-request-id": [
- "c1a8bb94-4e6b-48c5-b775-c55a6b957721"
+ "342f392c-5b79-4943-aa0d-a4e27d00200d"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103543Z:c1a8bb94-4e6b-48c5-b775-c55a6b957721"
+ "WESTEUROPE:20150522T084537Z:342f392c-5b79-4943-aa0d-a4e27d00200d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1216,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:43 GMT"
+ "Fri, 22 May 2015 08:45:36 GMT"
]
},
"StatusCode": 200
@@ -1231,7 +655,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:45:33.4860965Z\",\r\n \"duration\": \"PT2.3730458S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -1246,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31916"
+ "14993"
],
"x-ms-request-id": [
- "5d110d7d-3143-492a-98dc-c91d151f7518"
+ "408e77d5-9f45-4894-9287-f1e585388b6a"
],
"x-ms-correlation-request-id": [
- "5d110d7d-3143-492a-98dc-c91d151f7518"
+ "408e77d5-9f45-4894-9287-f1e585388b6a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103547Z:5d110d7d-3143-492a-98dc-c91d151f7518"
+ "WESTEUROPE:20150522T084540Z:408e77d5-9f45-4894-9287-f1e585388b6a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1264,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:46 GMT"
+ "Fri, 22 May 2015 08:45:39 GMT"
]
},
"StatusCode": 200
@@ -1279,7 +703,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:45:33.4860965Z\",\r\n \"duration\": \"PT2.3730458S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -1294,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31914"
+ "14991"
],
"x-ms-request-id": [
- "de94d94c-e149-4ee7-b4e1-c343065fdf2a"
+ "35ae3fc2-410b-46f7-853b-defcf80fe010"
],
"x-ms-correlation-request-id": [
- "de94d94c-e149-4ee7-b4e1-c343065fdf2a"
+ "35ae3fc2-410b-46f7-853b-defcf80fe010"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103550Z:de94d94c-e149-4ee7-b4e1-c343065fdf2a"
+ "WESTEUROPE:20150522T084543Z:35ae3fc2-410b-46f7-853b-defcf80fe010"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1312,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:35:49 GMT"
+ "Fri, 22 May 2015 08:45:42 GMT"
]
},
"StatusCode": 200
@@ -1327,7 +751,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:45:33.4860965Z\",\r\n \"duration\": \"PT2.3730458S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -1342,16 +766,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31912"
+ "14989"
],
"x-ms-request-id": [
- "aa560a10-3f2c-4a05-a451-4ce0b42387e9"
+ "ca34f8dd-05d7-422c-afb8-0690a11b9b06"
],
"x-ms-correlation-request-id": [
- "aa560a10-3f2c-4a05-a451-4ce0b42387e9"
+ "ca34f8dd-05d7-422c-afb8-0690a11b9b06"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103604Z:aa560a10-3f2c-4a05-a451-4ce0b42387e9"
+ "WESTEUROPE:20150522T084546Z:ca34f8dd-05d7-422c-afb8-0690a11b9b06"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1360,7 +784,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:03 GMT"
+ "Fri, 22 May 2015 08:45:45 GMT"
]
},
"StatusCode": 200
@@ -1375,7 +799,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:35:22.8836784Z\",\r\n \"duration\": \"PT4.3817059S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:45:33.4860965Z\",\r\n \"duration\": \"PT2.3730458S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1639"
@@ -1390,16 +814,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31910"
+ "14987"
],
"x-ms-request-id": [
- "acdf2e1c-c27c-4b18-856a-232ed5bb6729"
+ "ea59fc7c-e7e7-44a9-9e08-43b437e79d4f"
],
"x-ms-correlation-request-id": [
- "acdf2e1c-c27c-4b18-856a-232ed5bb6729"
+ "ea59fc7c-e7e7-44a9-9e08-43b437e79d4f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103607Z:acdf2e1c-c27c-4b18-856a-232ed5bb6729"
+ "WESTEUROPE:20150522T084549Z:ea59fc7c-e7e7-44a9-9e08-43b437e79d4f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1408,7 +832,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:06 GMT"
+ "Fri, 22 May 2015 08:45:48 GMT"
]
},
"StatusCode": 200
@@ -1423,7 +847,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:36:07.6946207Z\",\r\n \"duration\": \"PT49.1926482S\",\r\n \"correlationId\": \"46f1a156-b4c0-4c48-9d14-b1101b6c1070\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db70222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:45:51.8349839Z\",\r\n \"duration\": \"PT20.7219332S\",\r\n \"correlationId\": \"50a43c72-4cf1-4463-90ef-babf4024b00a\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1642"
@@ -1438,16 +862,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31908"
+ "14985"
],
"x-ms-request-id": [
- "5e883490-5749-494b-b8b3-146671ac0f4b"
+ "40bfc502-3876-4e28-b13a-729af3f3e9de"
],
"x-ms-correlation-request-id": [
- "5e883490-5749-494b-b8b3-146671ac0f4b"
+ "40bfc502-3876-4e28-b13a-729af3f3e9de"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103610Z:5e883490-5749-494b-b8b3-146671ac0f4b"
+ "WESTEUROPE:20150522T084552Z:40bfc502-3876-4e28-b13a-729af3f3e9de"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1456,7 +880,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:09 GMT"
+ "Fri, 22 May 2015 08:45:51 GMT"
]
},
"StatusCode": 200
@@ -1471,10 +895,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"name\": \"sql-dm-cmdlet-server70222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"name\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222\",\r\n \"name\": \"sql-dm-cmdlet-server70222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222\",\r\n \"name\": \"sql-dm-cmdlet-server70222/sql-dm-cmdlet-db70222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "569"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1486,16 +910,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31907"
+ "14984"
],
"x-ms-request-id": [
- "e2eed6fc-5c57-48e7-ac8e-8adb2f3090d4"
+ "196ec8d1-03bd-48e9-8f20-9281aaff5e50"
],
"x-ms-correlation-request-id": [
- "e2eed6fc-5c57-48e7-ac8e-8adb2f3090d4"
+ "196ec8d1-03bd-48e9-8f20-9281aaff5e50"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103613Z:e2eed6fc-5c57-48e7-ac8e-8adb2f3090d4"
+ "WESTEUROPE:20150522T084554Z:196ec8d1-03bd-48e9-8f20-9281aaff5e50"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1504,7 +928,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:12 GMT"
+ "Fri, 22 May 2015 08:45:53 GMT"
]
},
"StatusCode": 200
@@ -1537,16 +961,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "westeurope:36ea8979-ef8c-4ab6-952b-77533a20a77f"
+ "westeurope:a01a6978-d4c1-4708-b264-7de00cd27fbb"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31944"
+ "14999"
],
"x-ms-correlation-request-id": [
- "d44684c5-cb11-4e52-b5de-ff9560872288"
+ "49113a7b-157e-459d-bf86-f94e094f5b5d"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103614Z:d44684c5-cb11-4e52-b5de-ff9560872288"
+ "WESTEUROPE:20150522T084555Z:49113a7b-157e-459d-bf86-f94e094f5b5d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1555,7 +979,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:13 GMT"
+ "Fri, 22 May 2015 08:45:55 GMT"
]
},
"StatusCode": 200
@@ -1570,7 +994,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "1343901a-697e-45cc-808e-253ac519c55e"
+ "e31ceee4-1a52-489d-835b-f9d2659e4711"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1582,7 +1006,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "22b00496-bf82-4ed8-ad9d-52e939383d8d"
+ "85515522-f96c-4480-8b1e-3130171b1701"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1591,13 +1015,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31906"
+ "14999"
],
"x-ms-correlation-request-id": [
- "faddd678-a44c-4fea-be2e-9f90dc3d9e66"
+ "a2af32d9-86b1-44cb-8038-5848ded29728"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103618Z:faddd678-a44c-4fea-be2e-9f90dc3d9e66"
+ "WESTEUROPE:20150522T084557Z:a2af32d9-86b1-44cb-8038-5848ded29728"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1606,7 +1030,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:17 GMT"
+ "Fri, 22 May 2015 08:45:56 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1630,7 +1054,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "1343901a-697e-45cc-808e-253ac519c55e"
+ "e31ceee4-1a52-489d-835b-f9d2659e4711"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1642,7 +1066,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "c229d39d-235d-4564-bd16-0f46f3d2d76a"
+ "95a2fe53-d0d7-4de3-8a8f-d709a5784d4a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1654,13 +1078,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "61cea997-7e24-456b-954c-310e5e257c82"
+ "06b4cc39-84ec-4456-bdf0-89d29c53c2f6"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103623Z:61cea997-7e24-456b-954c-310e5e257c82"
+ "WESTEUROPE:20150522T084559Z:06b4cc39-84ec-4456-bdf0-89d29c53c2f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1669,7 +1093,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:23 GMT"
+ "Fri, 22 May 2015 08:45:58 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1687,7 +1111,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "b5ffbd8e-88f2-41ab-8e41-090f9d6f9b84"
+ "235dbc00-23ce-4e2b-b1fd-4d4403d9beb0"
]
},
"ResponseBody": "{\r\n \"code\": \"45161\",\r\n \"message\": \"Server 'sql-dm-cmdlet-server70222' does not exist in subscription 'cca24ec8-99b5-4aa7-9ff6-486e886f304c'.\",\r\n \"target\": null,\r\n \"details\": [\r\n {\r\n \"code\": \"45161\",\r\n \"message\": \"Server 'sql-dm-cmdlet-server70222' does not exist in subscription 'cca24ec8-99b5-4aa7-9ff6-486e886f304c'.\",\r\n \"target\": null,\r\n \"severity\": \"16\"\r\n }\r\n ],\r\n \"innererror\": []\r\n}",
@@ -1699,7 +1123,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "c025f541-7fc9-4b5d-b51c-f61ff31f45e1"
+ "eb063892-4b83-44d4-bdf3-58cbaf5b4810"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1708,13 +1132,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31905"
+ "14998"
],
"x-ms-correlation-request-id": [
- "6cfe7080-734d-401c-a462-7a51d590c0af"
+ "fd40274f-c335-4342-afa7-f76c7eb3c69a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20150416T103624Z:6cfe7080-734d-401c-a462-7a51d590c0af"
+ "WESTEUROPE:20150522T084600Z:fd40274f-c335-4342-afa7-f76c7eb3c69a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1723,7 +1147,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:36:24 GMT"
+ "Fri, 22 May 2015 08:45:59 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1741,7 +1165,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "94801021-ee44-42c9-87d6-71f0ef90136b"
+ "ec247846-29d3-4095-9c61-b98b53ea849c"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1753,7 +1177,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "fe70cb80-72ec-4ee2-90ad-5a45ffca1c23"
+ "769fc19d-34dc-49ef-bdf1-5db70f7cae70"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1762,13 +1186,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31985"
+ "14998"
],
"x-ms-correlation-request-id": [
- "080af057-011d-4074-a9fa-65aebb5e9033"
+ "a07648c4-ceb5-49d5-bae8-f9df620df959"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104127Z:080af057-011d-4074-a9fa-65aebb5e9033"
+ "WESTEUROPE:20150522T085102Z:a07648c4-ceb5-49d5-bae8-f9df620df959"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1777,7 +1201,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:27 GMT"
+ "Fri, 22 May 2015 08:51:01 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1801,7 +1225,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "94801021-ee44-42c9-87d6-71f0ef90136b"
+ "ec247846-29d3-4095-9c61-b98b53ea849c"
]
},
"ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Data masking rule PUT failed.\",\r\n \"target\": null,\r\n \"details\": [],\r\n \"innererror\": []\r\n}",
@@ -1813,7 +1237,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "35605518-a32b-4cbc-a6d7-57dd91ee591a"
+ "eb612ef2-e8ce-4a3d-a822-e6bc25d4f74b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1825,13 +1249,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "cde8cacc-76c5-46a3-8654-e78a01ee5cb3"
+ "3ae0653d-795c-4059-b9a7-e3265ac4ee15"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104129Z:cde8cacc-76c5-46a3-8654-e78a01ee5cb3"
+ "WESTEUROPE:20150522T085104Z:3ae0653d-795c-4059-b9a7-e3265ac4ee15"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1840,7 +1264,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:28 GMT"
+ "Fri, 22 May 2015 08:51:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1858,7 +1282,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4de63410-d923-434b-86d1-08b435d2941e"
+ "31cd4f12-388f-4b38-82ca-82faffe24f9a"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1870,7 +1294,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "e1a30953-9516-46c0-b16b-c3c0951ed3c8"
+ "b75768ee-a5e4-440f-b909-4ccb62137daf"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1879,13 +1303,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31984"
+ "14997"
],
"x-ms-correlation-request-id": [
- "5440176e-9484-43aa-9be3-c358d418350e"
+ "81c51770-cf3e-4731-9173-23fa5756007f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104130Z:5440176e-9484-43aa-9be3-c358d418350e"
+ "WESTEUROPE:20150522T085106Z:81c51770-cf3e-4731-9173-23fa5756007f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1894,7 +1318,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:30 GMT"
+ "Fri, 22 May 2015 08:51:05 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1912,7 +1336,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "49c664c5-3c69-4205-a50d-2fd5134c8c9c"
+ "9d20a365-dcfc-43fe-b887-19af96be93c2"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1924,7 +1348,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ba8264f1-96b4-4371-9971-f3be06b7e501"
+ "f9952b94-8de2-4917-861e-8e1b865fcec7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1933,13 +1357,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31983"
+ "14996"
],
"x-ms-correlation-request-id": [
- "80592381-a5ba-4a71-bb30-829c73fcb8ea"
+ "d57c259b-aaec-4925-b2ec-477b093baa9c"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104132Z:80592381-a5ba-4a71-bb30-829c73fcb8ea"
+ "WESTEUROPE:20150522T085107Z:d57c259b-aaec-4925-b2ec-477b093baa9c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1948,7 +1372,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:31 GMT"
+ "Fri, 22 May 2015 08:51:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1966,7 +1390,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "3b9d3da2-2eb9-4bb8-b088-0dfb270f7506"
+ "fffa041a-b8a0-459c-91ef-859e4b24cd9b"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TT1\",\r\n \"columnName\": \"CC1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -1978,7 +1402,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "da28268e-9ef7-40b5-910a-5a5eb34dfca0"
+ "40263253-1414-403f-bfe5-c99df03ed784"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1987,13 +1411,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31982"
+ "14995"
],
"x-ms-correlation-request-id": [
- "348118cc-b27f-49ae-9e92-59c611bc6b15"
+ "d8599c88-11cb-4c53-bfb4-be853b7e14ee"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104136Z:348118cc-b27f-49ae-9e92-59c611bc6b15"
+ "WESTEUROPE:20150522T085111Z:d8599c88-11cb-4c53-bfb4-be853b7e14ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2002,7 +1426,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:35 GMT"
+ "Fri, 22 May 2015 08:51:10 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2020,7 +1444,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "e3710423-9751-4aad-a750-1ffd30e6f337"
+ "df81d75d-e02b-4a7f-907a-4317bccf5816"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TT1\",\r\n \"columnName\": \"CC1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -2032,7 +1456,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4864b886-5bb3-4500-8d7b-cb39f778ce17"
+ "36dbe0e1-fbb8-4815-916c-d7a448fc1da6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2041,13 +1465,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31981"
+ "14994"
],
"x-ms-correlation-request-id": [
- "b5d472af-45e9-4f10-92f2-c567076a4cec"
+ "d1a814cd-1bd0-40f3-bce5-a78042026634"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104137Z:b5d472af-45e9-4f10-92f2-c567076a4cec"
+ "WESTEUROPE:20150522T085112Z:d1a814cd-1bd0-40f3-bce5-a78042026634"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2056,7 +1480,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:37 GMT"
+ "Fri, 22 May 2015 08:51:12 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2074,7 +1498,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "70d3a17a-3c01-4511-aa58-3a6cdd704c57"
+ "65676259-8cf4-4075-8699-fc86de944bcc"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TT1\",\r\n \"columnName\": \"CC1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
@@ -2086,61 +1510,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "215c4b7e-3afe-40d4-acb9-0cbac6f7ca9e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "DataServiceVersion": [
- "3.0;"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31980"
- ],
- "x-ms-correlation-request-id": [
- "b578f6bf-e1c5-47ef-b39b-2ec82b99d24a"
- ],
- "x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104139Z:b578f6bf-e1c5-47ef-b39b-2ec82b99d24a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:41:38 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/Rules?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI3MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjcwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9SdWxlcz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
- ],
- "x-ms-client-request-id": [
- "bbb80aab-d4f1-4224-8024-9fc08bd0d14e"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AA1\",\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "568"
- ],
- "Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
- ],
- "x-ms-request-id": [
- "85a7ae96-d7a4-49ca-b146-0144bd1cd8c2"
+ "13672c8f-0819-4e18-9074-29b0c10f7292"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2149,13 +1519,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31979"
+ "14993"
],
"x-ms-correlation-request-id": [
- "06d810d0-ddb2-4c90-a339-8256f6e7da10"
+ "88914a70-8ce6-488d-94d6-23456fdab2a5"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104142Z:06d810d0-ddb2-4c90-a339-8256f6e7da10"
+ "WESTEUROPE:20150522T085113Z:88914a70-8ce6-488d-94d6-23456fdab2a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2164,7 +1534,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:41 GMT"
+ "Fri, 22 May 2015 08:51:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2188,7 +1558,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "49c664c5-3c69-4205-a50d-2fd5134c8c9c"
+ "9d20a365-dcfc-43fe-b887-19af96be93c2"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TT1\",\r\n \"columnName\": \"CC1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
@@ -2200,70 +1570,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "eed21772-1002-4946-b929-7fc39a094030"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Preference-Applied": [
- "return-content"
- ],
- "DataServiceVersion": [
- "3.0;"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
- ],
- "x-ms-correlation-request-id": [
- "ecd700b4-17d2-41b7-a75a-0047dc546f81"
- ],
- "x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104134Z:ecd700b4-17d2-41b7-a75a-0047dc546f81"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-store, no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:41:33 GMT"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzcwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI3MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjcwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlND9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"aliasName\": \"AA1\",\r\n \"maskingFunction\": \"Default\"\r\n }\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "107"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
- ],
- "x-ms-client-request-id": [
- "70d3a17a-3c01-4511-aa58-3a6cdd704c57"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg70222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server70222/databases/sql-dm-cmdlet-db70222/dataMaskingPolicies/Default/rules/rule4\",\r\n \"name\": \"rule4\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule4\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AA1\",\r\n \"maskingFunction\": \"Default\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": null,\r\n \"suffixSize\": null,\r\n \"replacementString\": null\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "551"
- ],
- "Content-Type": [
- "application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
- ],
- "x-ms-request-id": [
- "e79a43fd-e348-43af-a917-b46d34cf8b8b"
+ "9c029718-62a9-43a9-81c2-26bf38eaaa8f"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2275,13 +1582,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1198"
],
"x-ms-correlation-request-id": [
- "4be7a707-0a8d-44f4-b172-90529fcdf7f3"
+ "28080044-a6f3-4547-9f70-f5f5ee705cf2"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104140Z:4be7a707-0a8d-44f4-b172-90529fcdf7f3"
+ "WESTEUROPE:20150522T085109Z:28080044-a6f3-4547-9f70-f5f5ee705cf2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2290,7 +1597,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:39 GMT"
+ "Fri, 22 May 2015 08:51:08 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -2308,7 +1615,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "bbb80aab-d4f1-4224-8024-9fc08bd0d14e"
+ "65676259-8cf4-4075-8699-fc86de944bcc"
]
},
"ResponseBody": "",
@@ -2317,7 +1624,7 @@
"0"
],
"x-ms-request-id": [
- "6a207196-a7f8-4319-bd88-2c30036fc1d5"
+ "6b1cda8d-b9e2-4431-af42-165fb4abfd51"
],
"X-Content-Type-Options": [
"nosniff"
@@ -2326,13 +1633,13 @@
"1.0;"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "1197"
],
"x-ms-correlation-request-id": [
- "f84247bf-1429-40f3-bc2a-f13e059fa833"
+ "6a96e386-2bc7-48ce-89e2-26b678d49737"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T104143Z:f84247bf-1429-40f3-bc2a-f13e059fa833"
+ "WESTEUROPE:20150522T085115Z:6a96e386-2bc7-48ce-89e2-26b678d49737"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2341,7 +1648,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:41:43 GMT"
+ "Fri, 22 May 2015 08:51:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json
index 40326f27aefb..bdf68b6ff0c7 100644
--- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json
+++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.SqlTests.DataMaskingTests/TestDatabaseDataMaskingTextRuleLifecycle.json
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31999"
+ "14956"
],
"x-ms-request-id": [
- "1d046a22-af94-4a23-9cdf-6f17f8876df9"
+ "10c0e762-8bc1-4f8b-b5e8-9ebdaed5f471"
],
"x-ms-correlation-request-id": [
- "1d046a22-af94-4a23-9cdf-6f17f8876df9"
+ "10c0e762-8bc1-4f8b-b5e8-9ebdaed5f471"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102550Z:1d046a22-af94-4a23-9cdf-6f17f8876df9"
+ "WESTEUROPE:20150522T085731Z:10c0e762-8bc1-4f8b-b5e8-9ebdaed5f471"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,7 +46,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:25:50 GMT"
+ "Fri, 22 May 2015 08:57:31 GMT"
]
},
"StatusCode": 404
@@ -82,16 +82,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1189"
],
"x-ms-request-id": [
- "1e764a98-7bb7-47c9-b2e1-865adb06a6f4"
+ "7ddefe05-0166-42ea-a2df-f21d35e5978d"
],
"x-ms-correlation-request-id": [
- "1e764a98-7bb7-47c9-b2e1-865adb06a6f4"
+ "7ddefe05-0166-42ea-a2df-f21d35e5978d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102552Z:1e764a98-7bb7-47c9-b2e1-865adb06a6f4"
+ "WESTEUROPE:20150522T085732Z:7ddefe05-0166-42ea-a2df-f21d35e5978d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -100,7 +100,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:25:52 GMT"
+ "Fri, 22 May 2015 08:57:32 GMT"
]
},
"StatusCode": 201
@@ -121,7 +121,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:25:53.7173632Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"0b8a85d5-b03f-4d2f-84bc-4a97af67129c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:57:33.6571006Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"7912822d-093e-4d34-8f14-e906a207c9bb\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1632"
@@ -136,16 +136,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1188"
],
"x-ms-request-id": [
- "0b8a85d5-b03f-4d2f-84bc-4a97af67129c"
+ "7912822d-093e-4d34-8f14-e906a207c9bb"
],
"x-ms-correlation-request-id": [
- "0b8a85d5-b03f-4d2f-84bc-4a97af67129c"
+ "7912822d-093e-4d34-8f14-e906a207c9bb"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102553Z:0b8a85d5-b03f-4d2f-84bc-4a97af67129c"
+ "WESTEUROPE:20150522T085733Z:7912822d-093e-4d34-8f14-e906a207c9bb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -154,7 +154,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:25:52 GMT"
+ "Fri, 22 May 2015 08:57:33 GMT"
]
},
"StatusCode": 200
@@ -175,7 +175,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-04-16T10:25:55.8348548Z\",\r\n \"duration\": \"PT1.2716072S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:57:35.1821941Z\",\r\n \"duration\": \"PT0.7942359S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1640"
@@ -190,16 +190,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1187"
],
"x-ms-request-id": [
- "4ea02620-905f-42fc-b1ca-295586135293"
+ "63c85d93-6d9e-460a-b549-55145bbaeeb9"
],
"x-ms-correlation-request-id": [
- "4ea02620-905f-42fc-b1ca-295586135293"
+ "63c85d93-6d9e-460a-b549-55145bbaeeb9"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102556Z:4ea02620-905f-42fc-b1ca-295586135293"
+ "WESTEUROPE:20150522T085735Z:63c85d93-6d9e-460a-b549-55145bbaeeb9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -208,7 +208,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:25:55 GMT"
+ "Fri, 22 May 2015 08:57:35 GMT"
]
},
"StatusCode": 201
@@ -238,16 +238,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31998"
+ "14955"
],
"x-ms-request-id": [
- "8b27742c-3d3a-41c4-83b5-fb8b2d484ef2"
+ "930c6bac-bafb-477c-aa66-c0d2605c978f"
],
"x-ms-correlation-request-id": [
- "8b27742c-3d3a-41c4-83b5-fb8b2d484ef2"
+ "930c6bac-bafb-477c-aa66-c0d2605c978f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102557Z:8b27742c-3d3a-41c4-83b5-fb8b2d484ef2"
+ "WESTEUROPE:20150522T085736Z:930c6bac-bafb-477c-aa66-c0d2605c978f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -256,7 +256,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:25:56 GMT"
+ "Fri, 22 May 2015 08:57:36 GMT"
]
},
"StatusCode": 200
@@ -286,64 +286,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31996"
- ],
- "x-ms-request-id": [
- "58e97bb5-8253-4cfe-bc2f-999372a06e97"
- ],
- "x-ms-correlation-request-id": [
- "58e97bb5-8253-4cfe-bc2f-999372a06e97"
- ],
- "x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102600Z:58e97bb5-8253-4cfe-bc2f-999372a06e97"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:26:00 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:02.7353587Z\",\r\n \"duration\": \"PT5.2234718S\",\r\n \"trackingId\": \"9a8ed1c1-cb55-43dc-b3e3-631af38a9357\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "663"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31994"
+ "14953"
],
"x-ms-request-id": [
- "44295d8f-7812-4b80-bbba-c05565c7b6a5"
+ "966839df-f758-4907-a31f-04743e16e90f"
],
"x-ms-correlation-request-id": [
- "44295d8f-7812-4b80-bbba-c05565c7b6a5"
+ "966839df-f758-4907-a31f-04743e16e90f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102603Z:44295d8f-7812-4b80-bbba-c05565c7b6a5"
+ "WESTEUROPE:20150522T085739Z:966839df-f758-4907-a31f-04743e16e90f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -352,7 +304,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:02 GMT"
+ "Fri, 22 May 2015 08:57:39 GMT"
]
},
"StatusCode": 200
@@ -367,10 +319,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:02.7353587Z\",\r\n \"duration\": \"PT5.2234718S\",\r\n \"trackingId\": \"9a8ed1c1-cb55-43dc-b3e3-631af38a9357\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "663"
+ "12"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -382,16 +334,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31992"
+ "14951"
],
"x-ms-request-id": [
- "6bff9af1-e7b5-43b8-8694-317862cb3c5e"
+ "962f4e40-c4d8-483a-9cdb-4c533980d055"
],
"x-ms-correlation-request-id": [
- "6bff9af1-e7b5-43b8-8694-317862cb3c5e"
+ "962f4e40-c4d8-483a-9cdb-4c533980d055"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102606Z:6bff9af1-e7b5-43b8-8694-317862cb3c5e"
+ "WESTEUROPE:20150522T085742Z:962f4e40-c4d8-483a-9cdb-4c533980d055"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -400,7 +352,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:06 GMT"
+ "Fri, 22 May 2015 08:57:42 GMT"
]
},
"StatusCode": 200
@@ -415,7 +367,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:02.7353587Z\",\r\n \"duration\": \"PT5.2234718S\",\r\n \"trackingId\": \"9a8ed1c1-cb55-43dc-b3e3-631af38a9357\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:57:43.7607903Z\",\r\n \"duration\": \"PT6.8406363S\",\r\n \"trackingId\": \"67fd45f3-3cd6-46f9-96fe-9b0e6bf3d9c6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"663"
@@ -430,16 +382,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31990"
+ "14949"
],
"x-ms-request-id": [
- "56fb408f-6aa1-4813-8aae-d7713ccb6c9c"
+ "35b1baa8-580e-4a0d-8f29-6dc9ece871a5"
],
"x-ms-correlation-request-id": [
- "56fb408f-6aa1-4813-8aae-d7713ccb6c9c"
+ "35b1baa8-580e-4a0d-8f29-6dc9ece871a5"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102609Z:56fb408f-6aa1-4813-8aae-d7713ccb6c9c"
+ "WESTEUROPE:20150522T085745Z:35b1baa8-580e-4a0d-8f29-6dc9ece871a5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -448,7 +400,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:08 GMT"
+ "Fri, 22 May 2015 08:57:45 GMT"
]
},
"StatusCode": 200
@@ -463,7 +415,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:02.7353587Z\",\r\n \"duration\": \"PT5.2234718S\",\r\n \"trackingId\": \"9a8ed1c1-cb55-43dc-b3e3-631af38a9357\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:57:43.7607903Z\",\r\n \"duration\": \"PT6.8406363S\",\r\n \"trackingId\": \"67fd45f3-3cd6-46f9-96fe-9b0e6bf3d9c6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
"663"
@@ -478,16 +430,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31988"
+ "14947"
],
"x-ms-request-id": [
- "1d3f0e87-29bc-41c9-91d6-7075db599ac2"
+ "30173630-a0dc-413c-b2f3-d275ffb2520d"
],
"x-ms-correlation-request-id": [
- "1d3f0e87-29bc-41c9-91d6-7075db599ac2"
+ "30173630-a0dc-413c-b2f3-d275ffb2520d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102612Z:1d3f0e87-29bc-41c9-91d6-7075db599ac2"
+ "WESTEUROPE:20150522T085748Z:30173630-a0dc-413c-b2f3-d275ffb2520d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -496,7 +448,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:11 GMT"
+ "Fri, 22 May 2015 08:57:48 GMT"
]
},
"StatusCode": 200
@@ -511,58 +463,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:12.3134175Z\",\r\n \"duration\": \"PT9.5097269S\",\r\n \"trackingId\": \"36436f2e-7125-4961-b450-8065ef8634e7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:02.7353587Z\",\r\n \"duration\": \"PT5.2234718S\",\r\n \"trackingId\": \"9a8ed1c1-cb55-43dc-b3e3-631af38a9357\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1379"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "31986"
- ],
- "x-ms-request-id": [
- "365f81db-9fe2-4b91-a55e-b27e1b6fcb4c"
- ],
- "x-ms-correlation-request-id": [
- "365f81db-9fe2-4b91-a55e-b27e1b6fcb4c"
- ],
- "x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102615Z:365f81db-9fe2-4b91-a55e-b27e1b6fcb4c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Thu, 16 Apr 2015 10:26:15 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL2RlcGxveW1lbnRzL3NxbC1hdWRpdC10ZXN0LWVudi1zZXR1cD9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:25:56.208077Z\",\r\n \"duration\": \"PT1.6448294S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/4271476F5298689C\",\r\n \"operationId\": \"4271476F5298689C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:57:49.5909873Z\",\r\n \"duration\": \"PT5.738174S\",\r\n \"trackingId\": \"af9b68f3-c0be-4988-9dbe-cff7f7fd05dc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup/operations/6B0E1F2790EC67C1\",\r\n \"operationId\": \"6B0E1F2790EC67C1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:57:43.7607903Z\",\r\n \"duration\": \"PT6.8406363S\",\r\n \"trackingId\": \"67fd45f3-3cd6-46f9-96fe-9b0e6bf3d9c6\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1378"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -574,16 +478,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31997"
+ "14945"
],
"x-ms-request-id": [
- "8a6ed143-c2af-40e6-ad53-d9aac67a4173"
+ "391d68f0-d283-4470-8251-ddc6f801ed44"
],
"x-ms-correlation-request-id": [
- "8a6ed143-c2af-40e6-ad53-d9aac67a4173"
+ "391d68f0-d283-4470-8251-ddc6f801ed44"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102557Z:8a6ed143-c2af-40e6-ad53-d9aac67a4173"
+ "WESTEUROPE:20150522T085751Z:391d68f0-d283-4470-8251-ddc6f801ed44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -592,7 +496,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:25:56 GMT"
+ "Fri, 22 May 2015 08:57:51 GMT"
]
},
"StatusCode": 200
@@ -607,10 +511,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:25:56.208077Z\",\r\n \"duration\": \"PT1.6448294S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-05-22T08:57:35.1821941Z\",\r\n \"duration\": \"PT0.7942359S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1638"
+ "1640"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -622,16 +526,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31995"
+ "14954"
],
"x-ms-request-id": [
- "eb33b2be-7ee2-4582-9617-b801f649344b"
+ "f155c432-4660-4291-bd37-0b6df9f23bb1"
],
"x-ms-correlation-request-id": [
- "eb33b2be-7ee2-4582-9617-b801f649344b"
+ "f155c432-4660-4291-bd37-0b6df9f23bb1"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102600Z:eb33b2be-7ee2-4582-9617-b801f649344b"
+ "WESTEUROPE:20150522T085736Z:f155c432-4660-4291-bd37-0b6df9f23bb1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -640,7 +544,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:00 GMT"
+ "Fri, 22 May 2015 08:57:36 GMT"
]
},
"StatusCode": 200
@@ -655,7 +559,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:25:56.208077Z\",\r\n \"duration\": \"PT1.6448294S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:57:36.8559272Z\",\r\n \"duration\": \"PT2.467969S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1638"
@@ -670,16 +574,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31993"
+ "14952"
],
"x-ms-request-id": [
- "726138f4-0973-4091-9138-98fc0a6bdffe"
+ "a91d9247-c47e-46ff-9722-651ee8e92309"
],
"x-ms-correlation-request-id": [
- "726138f4-0973-4091-9138-98fc0a6bdffe"
+ "a91d9247-c47e-46ff-9722-651ee8e92309"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102603Z:726138f4-0973-4091-9138-98fc0a6bdffe"
+ "WESTEUROPE:20150522T085739Z:a91d9247-c47e-46ff-9722-651ee8e92309"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -688,7 +592,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:03 GMT"
+ "Fri, 22 May 2015 08:57:39 GMT"
]
},
"StatusCode": 200
@@ -703,7 +607,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:25:56.208077Z\",\r\n \"duration\": \"PT1.6448294S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:57:36.8559272Z\",\r\n \"duration\": \"PT2.467969S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1638"
@@ -718,16 +622,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31991"
+ "14950"
],
"x-ms-request-id": [
- "6f6629d9-15c5-47f8-882c-372f91cb11d0"
+ "94375e6d-88a6-47d5-a562-7a478d4df884"
],
"x-ms-correlation-request-id": [
- "6f6629d9-15c5-47f8-882c-372f91cb11d0"
+ "94375e6d-88a6-47d5-a562-7a478d4df884"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102606Z:6f6629d9-15c5-47f8-882c-372f91cb11d0"
+ "WESTEUROPE:20150522T085742Z:94375e6d-88a6-47d5-a562-7a478d4df884"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -736,7 +640,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:06 GMT"
+ "Fri, 22 May 2015 08:57:42 GMT"
]
},
"StatusCode": 200
@@ -751,7 +655,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:25:56.208077Z\",\r\n \"duration\": \"PT1.6448294S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:57:36.8559272Z\",\r\n \"duration\": \"PT2.467969S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1638"
@@ -766,16 +670,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31989"
+ "14948"
],
"x-ms-request-id": [
- "0ecd9a31-a3f8-4b23-b50a-fbe0cb0775de"
+ "a54b06fd-3648-4483-9531-c5df19e15f27"
],
"x-ms-correlation-request-id": [
- "0ecd9a31-a3f8-4b23-b50a-fbe0cb0775de"
+ "a54b06fd-3648-4483-9531-c5df19e15f27"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102609Z:0ecd9a31-a3f8-4b23-b50a-fbe0cb0775de"
+ "WESTEUROPE:20150522T085745Z:a54b06fd-3648-4483-9531-c5df19e15f27"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +688,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:08 GMT"
+ "Fri, 22 May 2015 08:57:45 GMT"
]
},
"StatusCode": 200
@@ -799,7 +703,7 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-04-16T10:25:56.208077Z\",\r\n \"duration\": \"PT1.6448294S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-05-22T08:57:36.8559272Z\",\r\n \"duration\": \"PT2.467969S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
"1638"
@@ -814,16 +718,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31987"
+ "14946"
],
"x-ms-request-id": [
- "18d5b46b-e323-4855-bcb1-9af3c65d5d71"
+ "0af742dd-9842-4422-b1fa-6923c213d73f"
],
"x-ms-correlation-request-id": [
- "18d5b46b-e323-4855-bcb1-9af3c65d5d71"
+ "0af742dd-9842-4422-b1fa-6923c213d73f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102612Z:18d5b46b-e323-4855-bcb1-9af3c65d5d71"
+ "WESTEUROPE:20150522T085748Z:0af742dd-9842-4422-b1fa-6923c213d73f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -832,7 +736,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:11 GMT"
+ "Fri, 22 May 2015 08:57:48 GMT"
]
},
"StatusCode": 200
@@ -847,10 +751,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-04-16T10:26:15.4610426Z\",\r\n \"duration\": \"PT20.897795S\",\r\n \"correlationId\": \"4ea02620-905f-42fc-b1ca-295586135293\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/deployments/sql-audit-test-env-setup\",\r\n \"name\": \"sql-audit-test-env-setup\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"administratorLogin\": {\r\n \"type\": \"String\",\r\n \"value\": \"testlogin\"\r\n },\r\n \"administratorLoginPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"collation\": {\r\n \"type\": \"String\",\r\n \"value\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"databaseName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-db60222\"\r\n },\r\n \"edition\": {\r\n \"type\": \"String\",\r\n \"value\": \"Basic\"\r\n },\r\n \"configuredServiceLevelObjectiveId\": {\r\n \"type\": \"String\",\r\n \"value\": \"910b4fcb-8a29-4c3e-958f-f7ba794388b2\"\r\n },\r\n \"envLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"West US\"\r\n },\r\n \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-05-22T08:57:51.4409566Z\",\r\n \"duration\": \"PT17.0529984S\",\r\n \"correlationId\": \"63c85d93-6d9e-460a-b549-55145bbaeeb9\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\"\r\n }\r\n ]\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "1641"
+ "1642"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -862,16 +766,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31985"
+ "14944"
],
"x-ms-request-id": [
- "51d4f0e0-df55-47d8-8bd3-80d90b209d4e"
+ "62cb91f1-9397-4fa5-8e95-1880e5c8ab8f"
],
"x-ms-correlation-request-id": [
- "51d4f0e0-df55-47d8-8bd3-80d90b209d4e"
+ "62cb91f1-9397-4fa5-8e95-1880e5c8ab8f"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102615Z:51d4f0e0-df55-47d8-8bd3-80d90b209d4e"
+ "WESTEUROPE:20150522T085752Z:62cb91f1-9397-4fa5-8e95-1880e5c8ab8f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -880,7 +784,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:15 GMT"
+ "Fri, 22 May 2015 08:57:51 GMT"
]
},
"StatusCode": 200
@@ -895,10 +799,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"kind\": \"v2.0\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222\",\r\n \"name\": \"sql-dm-cmdlet-server60222/sql-dm-cmdlet-db60222\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"kind\": \"v2.0,user\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "322"
+ "602"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -910,16 +814,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31984"
+ "14943"
],
"x-ms-request-id": [
- "3cb23cd9-eb65-4db9-b245-dc1b15c5cdfc"
+ "f463edb9-27c4-4908-bfec-e77353b9252a"
],
"x-ms-correlation-request-id": [
- "3cb23cd9-eb65-4db9-b245-dc1b15c5cdfc"
+ "f463edb9-27c4-4908-bfec-e77353b9252a"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102617Z:3cb23cd9-eb65-4db9-b245-dc1b15c5cdfc"
+ "WESTEUROPE:20150522T085754Z:f463edb9-27c4-4908-bfec-e77353b9252a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -928,7 +832,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:17 GMT"
+ "Fri, 22 May 2015 08:57:53 GMT"
]
},
"StatusCode": 200
@@ -961,16 +865,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "northeurope:b818c50e-c26d-4628-819a-11474b6dbb7e"
+ "westeurope:59177473-7913-4b32-87a7-822f23bdd5ca"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31999"
+ "14983"
],
"x-ms-correlation-request-id": [
- "c60d3939-c8b4-4731-8341-0026ee84fb03"
+ "02735dc0-e06b-4d3d-9e82-7e4c126ae41d"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102619Z:c60d3939-c8b4-4731-8341-0026ee84fb03"
+ "WESTEUROPE:20150522T085755Z:02735dc0-e06b-4d3d-9e82-7e4c126ae41d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -979,7 +883,7 @@
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:19 GMT"
+ "Fri, 22 May 2015 08:57:54 GMT"
]
},
"StatusCode": 200
@@ -994,7 +898,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f5520f55-6fde-41c0-b0c9-6f054bd33f69"
+ "69ed9a7c-2830-4f60-b606-4adb933af831"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": \"\",\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1006,7 +910,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "98f2aae2-1b11-4d6e-94fd-22988c75cff4"
+ "89782582-c101-4445-b6bc-fc3dce5e9cba"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1015,13 +919,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31999"
+ "14998"
],
"x-ms-correlation-request-id": [
- "4b1fffb5-9ff0-4144-ad0d-0b72268331f2"
+ "9fbee3a4-3280-4820-a430-fb5b34b7551a"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102621Z:4b1fffb5-9ff0-4144-ad0d-0b72268331f2"
+ "WESTEUROPE:20150522T085757Z:9fbee3a4-3280-4820-a430-fb5b34b7551a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1030,7 +934,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:20 GMT"
+ "Fri, 22 May 2015 08:57:57 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1054,7 +958,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "f5520f55-6fde-41c0-b0c9-6f054bd33f69"
+ "69ed9a7c-2830-4f60-b606-4adb933af831"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"dataMaskingState\": \"Disabled\",\r\n \"applicationPrincipals\": null,\r\n \"exemptPrincipals\": \"\",\r\n \"maskingLevel\": \"Relaxed\"\r\n }\r\n}",
@@ -1066,7 +970,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "2df615a8-f6ef-4708-8715-340c2d180b0b"
+ "bd1dffa2-72bd-4ec7-b837-5a84320435d8"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1081,10 +985,10 @@
"1199"
],
"x-ms-correlation-request-id": [
- "1a2cad28-95d7-44fd-9a08-c3b209d789ec"
+ "a8dfe2ec-d8a4-4e28-b93d-78dc014cd080"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102623Z:1a2cad28-95d7-44fd-9a08-c3b209d789ec"
+ "WESTEUROPE:20150522T085759Z:a8dfe2ec-d8a4-4e28-b93d-78dc014cd080"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1093,7 +997,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:23 GMT"
+ "Fri, 22 May 2015 08:57:58 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1111,7 +1015,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "9b41d9bf-9bbe-4418-9b58-23e0a60321d0"
+ "4e9fb0eb-82a4-4154-99f7-d40f40bac0f8"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1123,7 +1027,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "3499539a-428f-4128-80e9-30983f4d90de"
+ "37d771e9-105e-43ab-be00-b82b40e867b7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1132,13 +1036,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31998"
+ "14997"
],
"x-ms-correlation-request-id": [
- "80377ccc-ca65-4486-97c7-440c64214f47"
+ "f7bbd17d-f0ce-48eb-874f-150cab0a13e9"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102624Z:80377ccc-ca65-4486-97c7-440c64214f47"
+ "WESTEUROPE:20150522T085800Z:f7bbd17d-f0ce-48eb-874f-150cab0a13e9"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1147,7 +1051,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:24 GMT"
+ "Fri, 22 May 2015 08:58:00 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1165,7 +1069,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "7bb44dbe-a37f-4ea5-a2d8-aff142796643"
+ "19095ea9-83ad-4a06-872a-8fce543d8ea6"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1177,7 +1081,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "13910079-c3ed-40ae-840e-a82124244128"
+ "91fb6278-e67c-49c4-959f-b7ff9e57ea5e"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1186,13 +1090,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31997"
+ "14996"
],
"x-ms-correlation-request-id": [
- "5f5d7d5e-298c-4e81-93c3-67d35a1c0a20"
+ "24646338-a446-4611-8439-7cf76bf90865"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102626Z:5f5d7d5e-298c-4e81-93c3-67d35a1c0a20"
+ "WESTEUROPE:20150522T085802Z:24646338-a446-4611-8439-7cf76bf90865"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1201,7 +1105,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:25 GMT"
+ "Fri, 22 May 2015 08:58:01 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1219,7 +1123,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "d329d42b-b356-4e14-8163-86f00eecebd5"
+ "de761191-5350-4d2b-8f7e-3892cab2ee95"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText\",\r\n \"columnName\": \"ColumnText\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}",
@@ -1231,7 +1135,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "462e838f-d93a-45f2-90e6-e28d5d572a23"
+ "b5df32b2-15f5-424d-b182-0214b0f6486d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1240,13 +1144,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31996"
+ "14995"
],
"x-ms-correlation-request-id": [
- "62cdba29-04de-4be0-b464-7e011b60218b"
+ "06c3fc6a-626e-4936-97f0-092887c5f9b5"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102629Z:62cdba29-04de-4be0-b464-7e011b60218b"
+ "WESTEUROPE:20150522T085805Z:06c3fc6a-626e-4936-97f0-092887c5f9b5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1255,7 +1159,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:29 GMT"
+ "Fri, 22 May 2015 08:58:04 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1273,7 +1177,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4a79e850-413b-45cc-a132-279c37ac4dd6"
+ "af9833e6-d486-4971-ad69-09c49b951ad9"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText\",\r\n \"columnName\": \"ColumnText\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}",
@@ -1285,7 +1189,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "fbb081ac-c574-4498-a65a-d10957dd21f6"
+ "d3d52a02-1e3c-48fa-8cb7-5742af4f642b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1294,13 +1198,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31995"
+ "14994"
],
"x-ms-correlation-request-id": [
- "56136b59-bb68-44a5-920f-7a1ff5b20240"
+ "0000645f-d611-4f29-84ba-c821883b5a26"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102630Z:56136b59-bb68-44a5-920f-7a1ff5b20240"
+ "WESTEUROPE:20150522T085806Z:0000645f-d611-4f29-84ba-c821883b5a26"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1309,7 +1213,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:30 GMT"
+ "Fri, 22 May 2015 08:58:06 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1327,7 +1231,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "89a04289-c6f5-475f-b218-cb22fc0a4cd8"
+ "394e6b37-e338-442b-99f0-32d15532b895"
]
},
"ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText\",\r\n \"columnName\": \"ColumnText\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n }\r\n ]\r\n}",
@@ -1339,7 +1243,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4fde6762-387d-41fd-a0c7-d04c5f90457b"
+ "cec43247-65da-41c1-a54e-61706203fda4"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1348,13 +1252,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31994"
+ "14993"
],
"x-ms-correlation-request-id": [
- "49fc6b6f-01ec-4df2-9d2b-b1a3f71770d6"
+ "45df3a91-3a95-49fd-85a4-a61f9051f420"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102632Z:49fc6b6f-01ec-4df2-9d2b-b1a3f71770d6"
+ "WESTEUROPE:20150522T085808Z:45df3a91-3a95-49fd-85a4-a61f9051f420"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1363,7 +1267,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:31 GMT"
+ "Fri, 22 May 2015 08:58:07 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1381,19 +1285,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "7ac08332-0c62-4150-b2d8-613b24106fa1"
+ "36a65927-53d2-4930-9662-935fb43efa1f"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasText\",\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText1\",\r\n \"columnName\": \"ColumnText1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "570"
+ "580"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "9054b4b7-fd63-429d-a009-7c72645f0eed"
+ "30a4f7ff-ffc2-497d-9a35-2dec70d0596a"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1402,13 +1306,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31993"
+ "14992"
],
"x-ms-correlation-request-id": [
- "ecaf840a-92d8-4045-87f2-0b653cc83b88"
+ "b8d9a8e4-7d41-4011-8ca3-c48e2c04c9e1"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102635Z:ecaf840a-92d8-4045-87f2-0b653cc83b88"
+ "WESTEUROPE:20150522T085811Z:b8d9a8e4-7d41-4011-8ca3-c48e2c04c9e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1417,7 +1321,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:35 GMT"
+ "Fri, 22 May 2015 08:58:10 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1435,19 +1339,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "4de57fe3-688a-415b-b597-724cc5bd52a8"
+ "565720ff-936a-4e80-a941-8c90b574ab45"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasText\",\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText1\",\r\n \"columnName\": \"ColumnText1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "570"
+ "580"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "c6d4fce7-ce9d-4949-829a-28dd305f7f01"
+ "616bf3c6-f65d-4683-bf47-c85f70e46fb0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1456,13 +1360,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31992"
+ "14991"
],
"x-ms-correlation-request-id": [
- "38d6938f-4a84-42a0-849a-f3ec25b99f5a"
+ "230adfba-2fdc-4b25-bdf0-255115745ef6"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102637Z:38d6938f-4a84-42a0-849a-f3ec25b99f5a"
+ "WESTEUROPE:20150522T085812Z:230adfba-2fdc-4b25-bdf0-255115745ef6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1471,7 +1375,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:36 GMT"
+ "Fri, 22 May 2015 08:58:12 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1489,19 +1393,19 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "de2e2959-54b2-4ef1-87bc-80daac9e63ca"
+ "4a89a92d-2182-443f-98af-be5af61e1c8e"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasText\",\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText1\",\r\n \"columnName\": \"ColumnText1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "570"
+ "580"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "16ad8dc7-81a5-4b7d-a961-00ee616ceddc"
+ "7d74ffff-2661-4043-a8d9-819fc6b51cb6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1510,13 +1414,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31991"
+ "14990"
],
"x-ms-correlation-request-id": [
- "77e74bc1-f4b0-4451-b234-98aa3b769551"
+ "c70d456d-b012-41e6-a0d8-8847f8ff57ff"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102638Z:77e74bc1-f4b0-4451-b234-98aa3b769551"
+ "WESTEUROPE:20150522T085814Z:c70d456d-b012-41e6-a0d8-8847f8ff57ff"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1525,7 +1429,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:37 GMT"
+ "Fri, 22 May 2015 08:58:13 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1543,7 +1447,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "14fcb855-8414-4f85-a80c-95bd4715a2cd"
+ "4f64cae6-598d-4da8-9176-91e49d9e9712"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1555,7 +1459,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "5e2eb943-82a9-4dfb-9c26-3cc9bab9da05"
+ "e2e31838-5157-40a0-aebc-9ea796a5778b"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1564,13 +1468,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31990"
+ "14989"
],
"x-ms-correlation-request-id": [
- "d4087bfc-75ac-424f-b802-2bc6f0aef63a"
+ "069161d4-d48d-4def-9b64-10b80a5ba060"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102643Z:d4087bfc-75ac-424f-b802-2bc6f0aef63a"
+ "WESTEUROPE:20150522T085817Z:069161d4-d48d-4def-9b64-10b80a5ba060"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1579,7 +1483,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:43 GMT"
+ "Fri, 22 May 2015 08:58:16 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1597,7 +1501,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "975c7397-cc44-4d90-acb5-1b48d1936155"
+ "66b6bb8a-18ce-4082-b6d8-e5444d06bf19"
]
},
"ResponseBody": "{\r\n \"value\": []\r\n}",
@@ -1609,7 +1513,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "ce9ba68c-e996-4486-8bfd-e1b10d9e0a43"
+ "03a493c2-6717-4499-addc-21de3d220dfc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1618,13 +1522,13 @@
"3.0;"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "31989"
+ "14988"
],
"x-ms-correlation-request-id": [
- "19d31a94-291f-4200-9534-5f9306b9b00f"
+ "8e5dd49c-c37e-46b1-b265-2817f156e71e"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102644Z:19d31a94-291f-4200-9534-5f9306b9b00f"
+ "WESTEUROPE:20150522T085818Z:8e5dd49c-c37e-46b1-b265-2817f156e71e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1633,7 +1537,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:44 GMT"
+ "Fri, 22 May 2015 08:58:17 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1657,7 +1561,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "7bb44dbe-a37f-4ea5-a2d8-aff142796643"
+ "19095ea9-83ad-4a06-872a-8fce543d8ea6"
]
},
"ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText\",\r\n \"columnName\": \"ColumnText\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"1\",\r\n \"suffixSize\": \"3\",\r\n \"replacementString\": \"AAA\"\r\n }\r\n}",
@@ -1669,7 +1573,7 @@
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "4dcc0a42-43af-4b52-93cc-20601e22df6b"
+ "7cf918b4-e4a7-4389-95e9-e86aba84dcfd"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1684,10 +1588,10 @@
"1198"
],
"x-ms-correlation-request-id": [
- "2a4203cd-14e8-4038-aa6f-e9c2215ca117"
+ "33e093c4-90c1-4ad1-93f4-3b1183d12a24"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102627Z:2a4203cd-14e8-4038-aa6f-e9c2215ca117"
+ "WESTEUROPE:20150522T085803Z:33e093c4-90c1-4ad1-93f4-3b1183d12a24"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1696,7 +1600,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:27 GMT"
+ "Fri, 22 May 2015 08:58:03 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1708,31 +1612,31 @@
"RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3?api-version=2014-04-01",
"EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC1kbS1jbWRsZXQtdGVzdC1yZzYwMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL3NlcnZlcnMvc3FsLWRtLWNtZGxldC1zZXJ2ZXI2MDIyMi9kYXRhYmFzZXMvc3FsLWRtLWNtZGxldC1kYjYwMjIyL2RhdGFNYXNraW5nUG9saWNpZXMvRGVmYXVsdC9ydWxlcy9ydWxlMz9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"aliasName\": \"AliasText\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"tableName\": \"TableText1\",\r\n \"columnName\": \"ColumnText1\",\r\n \"maskingFunction\": \"Text\",\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "191"
+ "226"
],
"User-Agent": [
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "89a04289-c6f5-475f-b218-cb22fc0a4cd8"
+ "394e6b37-e338-442b-99f0-32d15532b895"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": null,\r\n \"columnName\": null,\r\n \"aliasName\": \"AliasText\",\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-dm-cmdlet-test-rg60222/providers/Microsoft.Sql/servers/sql-dm-cmdlet-server60222/databases/sql-dm-cmdlet-db60222/dataMaskingPolicies/Default/rules/rule3\",\r\n \"name\": \"rule3\",\r\n \"type\": \"Microsoft.Sql/servers/databases/dataMaskingPolicies/rules\",\r\n \"location\": null,\r\n \"properties\": {\r\n \"id\": \"rule3\",\r\n \"ruleState\": null,\r\n \"tableName\": \"TableText1\",\r\n \"columnName\": \"ColumnText1\",\r\n \"aliasName\": null,\r\n \"maskingFunction\": \"Text\",\r\n \"numberFrom\": null,\r\n \"numberTo\": null,\r\n \"prefixSize\": \"4\",\r\n \"suffixSize\": \"2\",\r\n \"replacementString\": \"BBB\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "553"
+ "563"
],
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
],
"x-ms-request-id": [
- "65ee1e1d-f611-4330-a989-b5490f23ef17"
+ "f5b053cd-fe2c-4e9f-80fd-47f1739c0308"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1747,10 +1651,10 @@
"1197"
],
"x-ms-correlation-request-id": [
- "b1164565-aa3c-499b-82c3-bb5b9364bcce"
+ "0367cb9e-ba2e-431f-89f5-13b0da5995c0"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102634Z:b1164565-aa3c-499b-82c3-bb5b9364bcce"
+ "WESTEUROPE:20150522T085809Z:0367cb9e-ba2e-431f-89f5-13b0da5995c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1759,7 +1663,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:34 GMT"
+ "Fri, 22 May 2015 08:58:09 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
@@ -1777,7 +1681,7 @@
"Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0"
],
"x-ms-client-request-id": [
- "de2e2959-54b2-4ef1-87bc-80daac9e63ca"
+ "4a89a92d-2182-443f-98af-be5af61e1c8e"
]
},
"ResponseBody": "",
@@ -1786,7 +1690,7 @@
"0"
],
"x-ms-request-id": [
- "1db54a26-581f-4302-97b1-fc1c5fab34e2"
+ "8f445863-1e93-4a60-8f4b-f8c2b00723f0"
],
"X-Content-Type-Options": [
"nosniff"
@@ -1798,10 +1702,10 @@
"1196"
],
"x-ms-correlation-request-id": [
- "81b637ea-254f-4e60-b9e9-917bf30ae608"
+ "9f35d291-e13d-4d7b-8501-1cb1dec41bb5"
],
"x-ms-routing-request-id": [
- "NORTHEUROPE:20150416T102642Z:81b637ea-254f-4e60-b9e9-917bf30ae608"
+ "WESTEUROPE:20150522T085815Z:9f35d291-e13d-4d7b-8501-1cb1dec41bb5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1810,7 +1714,7 @@
"no-store, no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 10:26:42 GMT"
+ "Fri, 22 May 2015 08:58:15 GMT"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
diff --git a/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/BuildAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/BuildAzureSqlDatabaseDataMaskingRule.cs
index c1f8cad6d79e..2d5503c68075 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/BuildAzureSqlDatabaseDataMaskingRule.cs
+++ b/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/BuildAzureSqlDatabaseDataMaskingRule.cs
@@ -28,37 +28,21 @@ namespace Microsoft.Azure.Commands.Sql.Security.Cmdlet.DataMasking
///
public abstract class BuildAzureSqlDatabaseDataMaskingRule : SqlDatabaseDataMaskingRuleCmdletBase
{
- ///
- /// The name of the parameter set for data masking rule that specifies table and column names
- ///
- internal const string ByTableAndColumn = "ByTableAndColumn";
-
- ///
- /// The name of the parameter set for data masking rule that specifies alias
- ///
- internal const string ByAlias = "ByAlias";
///
/// Gets or sets the table name
///
- [Parameter(ParameterSetName = ByTableAndColumn, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The table name.")]
+ [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The table name.")]
[ValidateNotNullOrEmpty]
public string TableName { get; set; }
///
/// Gets or sets the column name
///
- [Parameter(ParameterSetName = ByTableAndColumn, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The column name.")]
+ [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The column name.")]
[ValidateNotNullOrEmpty]
public string ColumnName { get; set; }
- ///
- /// Gets or sets the alias name
- ///
- [Parameter(ParameterSetName = ByAlias, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The alias name.")]
- [ValidateNotNullOrEmpty]
- public string AliasName { get; set; }
-
///
/// Gets or sets the masking function - the definition of this property as a cmdlet parameter is done in the subclasses
///
@@ -128,19 +112,9 @@ protected override IEnumerable ApplyUserInputToMod
/// A string containing error message or null in case all is fine
protected string ValidateRuleTarget(IEnumerable rules)
{
- if (AliasName != null) // using the alias parameter set
- {
- if(rules.Any(r => r.AliasName == AliasName && r.RuleId != RuleId))
- {
- return string.Format(CultureInfo.InvariantCulture, Resources.DataMaskingAliasAlreadyUsedError, AliasName);
- }
- }
- else
+ if (rules.Any(r => r.TableName == TableName && r.ColumnName == ColumnName && r.RuleId != RuleId))
{
- if (rules.Any(r => r.TableName == TableName && r.ColumnName == ColumnName && r.RuleId != RuleId))
- {
- return string.Format(CultureInfo.InvariantCulture, Resources.DataMaskingTableAndColumnUsedError, TableName, ColumnName);
- }
+ return string.Format(CultureInfo.InvariantCulture, Resources.DataMaskingTableAndColumnUsedError, TableName, ColumnName);
}
return null;
}
@@ -152,19 +126,8 @@ protected string ValidateRuleTarget(IEnumerable ru
/// An updated rule model
protected DatabaseDataMaskingRuleModel UpdateRule(DatabaseDataMaskingRuleModel rule)
{
- if(!string.IsNullOrEmpty(AliasName))
- {
- rule.AliasName = AliasName;
- rule.TableName = null;
- rule.ColumnName = null;
- }
- else
- {
- rule.TableName = TableName;
- rule.ColumnName = ColumnName;
- rule.AliasName = null;
- }
-
+ rule.TableName = TableName;
+ rule.ColumnName = ColumnName;
if(!string.IsNullOrEmpty(MaskingFunction)) // only update if the user provided this value
{
rule.MaskingFunction = ModelizeMaskingFunction();
diff --git a/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/NewAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/NewAzureSqlDatabaseDataMaskingRule.cs
index 7c2f4892a21e..0936924197a7 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/NewAzureSqlDatabaseDataMaskingRule.cs
+++ b/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/NewAzureSqlDatabaseDataMaskingRule.cs
@@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Security.Cmdlet.DataMasking
///
/// Returns a new data masking rule for a specific database
///
- [Cmdlet(VerbsCommon.New, "AzureSqlDatabaseDataMaskingRule", DefaultParameterSetName = ByTableAndColumn)]
+ [Cmdlet(VerbsCommon.New, "AzureSqlDatabaseDataMaskingRule")]
public class NewAzureSqlDatabaseDataMaskingRule : BuildAzureSqlDatabaseDataMaskingRule
{
///
diff --git a/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/SetAzureSqlDatabaseDataMaskingRule.cs b/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/SetAzureSqlDatabaseDataMaskingRule.cs
index 4c7f4633fb9f..6d64c6077faf 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/SetAzureSqlDatabaseDataMaskingRule.cs
+++ b/src/ResourceManager/Sql/Commands.Sql/Security/Cmdlet/DataMasking/SetAzureSqlDatabaseDataMaskingRule.cs
@@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Security.Cmdlet.DataMasking
///
/// Sets properties for a data masking rule.
///
- [Cmdlet(VerbsCommon.Set, "AzureSqlDatabaseDataMaskingRule", DefaultParameterSetName = ByTableAndColumn)]
+ [Cmdlet(VerbsCommon.Set, "AzureSqlDatabaseDataMaskingRule")]
public class SetAzureSqlDatabaseDataMaskingRule : BuildAzureSqlDatabaseDataMaskingRule
{
///
diff --git a/src/ResourceManager/Sql/Commands.Sql/Security/Model/BaseDataMaskingRuleModel.cs b/src/ResourceManager/Sql/Commands.Sql/Security/Model/BaseDataMaskingRuleModel.cs
index 052092d13b82..6ebb494234e6 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Security/Model/BaseDataMaskingRuleModel.cs
+++ b/src/ResourceManager/Sql/Commands.Sql/Security/Model/BaseDataMaskingRuleModel.cs
@@ -49,11 +49,6 @@ public class BaseDataMaskingRuleModel
///
public string ColumnName { get; set; }
- ///
- /// Gets or sets the alias name on which the current rule operates on
- ///
- public string AliasName { get; set; }
-
///
/// Gets or sets the masking function of the current rule
///
diff --git a/src/ResourceManager/Sql/Commands.Sql/Security/Services/SqlDataMaskingAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/Security/Services/SqlDataMaskingAdapter.cs
index 300da59c5fc3..d98d54b33c83 100644
--- a/src/ResourceManager/Sql/Commands.Sql/Security/Services/SqlDataMaskingAdapter.cs
+++ b/src/ResourceManager/Sql/Commands.Sql/Security/Services/SqlDataMaskingAdapter.cs
@@ -116,7 +116,6 @@ private DataMaskingRuleCreateOrUpdateParameters PolicizeDatabaseDataRuleModel(Da
DataMaskingRuleProperties properties = new DataMaskingRuleProperties();
updateParameters.Properties = properties;
properties.Id = model.RuleId;
- properties.AliasName = model.AliasName;
properties.TableName = model.TableName;
properties.ColumnName = model.ColumnName;
properties.MaskingFunction = PolicizeMaskingFunction(model.MaskingFunction);
@@ -157,7 +156,6 @@ private DatabaseDataMaskingRuleModel ModelizeDatabaseDataMaskingRule(DataMasking
dbRuleModel.ServerName = serverName;
dbRuleModel.DatabaseName = databaseName;
dbRuleModel.RuleId = properties.Id;
- dbRuleModel.AliasName = properties.AliasName;
dbRuleModel.ColumnName = properties.ColumnName;
dbRuleModel.TableName = properties.TableName;
dbRuleModel.MaskingFunction = ModelizeMaskingFunction(properties.MaskingFunction);