diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 index c79d53cb96d7..9a1ff87633cb 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 +++ b/src/ResourceManager/Sql/Commands.Sql.Test/ScenarioTests/ThreatDetectionTests.ps1 @@ -57,35 +57,30 @@ function Test-ThreatDetectionDatabaseUpdatePolicy { # Test Set-AzureRmSqlDatabaseAuditingPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -StorageAccountName $params.storageAccount - Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" -EmailAdmins $false -ExcludedDetectionType "Successful_SQLi", "Attempted_SQLi" + Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" -EmailAdmins $false -ExcludedDetectionType "Sql_Injection_Vulnerability" $policy = Get-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert Assert-AreEqual $policy.ThreatDetectionState "Enabled" Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" Assert-False {$policy.EmailAdmins} - Assert-AreEqual $policy.ExcludedDetectionTypes.Length 2 - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Successful_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Attempted_SQLi)} + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 1 + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection_Vulnerability)} # Test - Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -ExcludedDetectionType "Successful_SQLi", "Attempted_SQLi", "Client_GEO_Anomaly", "Failed_Logins_Anomaly", "Failed_Queries_Anomaly", "Data_Extraction_Anomaly", "Data_Alteration_Anomaly" + Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -ExcludedDetectionType "Sql_Injection", "Sql_Injection_Vulnerability", "Access_Anomaly", "Usage_Anomaly" $policy = Get-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName # Assert Assert-AreEqual $policy.ThreatDetectionState "Enabled" Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" Assert-False {$policy.EmailAdmins} - Assert-AreEqual $policy.ExcludedDetectionTypes.Length 7 - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Successful_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Attempted_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Client_GEO_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Logins_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Queries_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Extraction_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Alteration_Anomaly)} - + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 4 + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection_Vulnerability)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Access_Anomaly)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Usage_Anomaly)} # Test Remove-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName @@ -95,14 +90,21 @@ function Test-ThreatDetectionDatabaseUpdatePolicy Assert-AreEqual $policy.ThreatDetectionState "Disabled" Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" Assert-False {$policy.EmailAdmins} - Assert-AreEqual $policy.ExcludedDetectionTypes.Length 7 - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Successful_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Attempted_SQLi)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Client_GEO_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Logins_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Failed_Queries_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Extraction_Anomaly)} - Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Data_Alteration_Anomaly)} + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 4 + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Sql_Injection_Vulnerability)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Access_Anomaly)} + Assert-True {$policy.ExcludedDetectionTypes.Contains([Microsoft.Azure.Commands.Sql.ThreatDetection.Model.DetectionType]::Usage_Anomaly)} + + # Test + Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -ExcludedDetectionType "None" + $policy = Get-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName + + # Assert + Assert-AreEqual $policy.ThreatDetectionState "Enabled" + Assert-AreEqual $policy.NotificationRecipientsEmails "koko@mailTest.com;koko1@mailTest.com" + Assert-False {$policy.EmailAdmins} + Assert-AreEqual $policy.ExcludedDetectionTypes.Length 0 } finally { @@ -183,6 +185,9 @@ function Test-InvalidArgumentsThreatDetection # Check that EmailAdmins is not False and NotificationRecipientsEmails is not empty Assert-Throws {Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -EmailAdmins $false} Assert-Throws {Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -EmailAdmins $false -NotificationRecipientsEmails ""} + + # Check that ExcludedDetectionType doesn't hold None and any other type + Assert-Throws {Set-AzureRmSqlDatabaseThreatDetectionPolicy -ResourceGroupName $params.rgname -ServerName $params.serverName -DatabaseName $params.databaseName -EmailAdmins $true -ExcludedDetectionType "None", "Sql_Injection_Vulnerability" } } finally { diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json index 53b31e832ae2..72ddea5cf6c4 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/InvalidArgumentsThreatDetection.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14957" ], "x-ms-request-id": [ - "26c0cdd6-b24f-4224-a6ee-68c2c6c659ca" + "94220559-59d1-4e32-ad04-de994b9d56df" ], "x-ms-correlation-request-id": [ - "26c0cdd6-b24f-4224-a6ee-68c2c6c659ca" + "94220559-59d1-4e32-ad04-de994b9d56df" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063752Z:26c0cdd6-b24f-4224-a6ee-68c2c6c659ca" + "WESTEUROPE:20160103T134529Z:94220559-59d1-4e32-ad04-de994b9d56df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:37:52 GMT" + "Sun, 03 Jan 2016 13:45:28 GMT" ] }, "StatusCode": 404 @@ -82,16 +82,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "96be18c3-852d-456e-993f-ed0fd1de89ef" + "1fa63c1f-a8ce-469a-a0b3-bab1aba43f21" ], "x-ms-correlation-request-id": [ - "96be18c3-852d-456e-993f-ed0fd1de89ef" + "1fa63c1f-a8ce-469a-a0b3-bab1aba43f21" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063758Z:96be18c3-852d-456e-993f-ed0fd1de89ef" + "WESTEUROPE:20160103T134533Z:1fa63c1f-a8ce-469a-a0b3-bab1aba43f21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:37:58 GMT" + "Sun, 03 Jan 2016 13:45:32 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14956" ], "x-ms-request-id": [ - "b9a1b237-ae56-4c57-a7fa-04b319392631" + "7fdc8952-c289-4efc-acb3-5cbc02128011" ], "x-ms-correlation-request-id": [ - "b9a1b237-ae56-4c57-a7fa-04b319392631" + "7fdc8952-c289-4efc-acb3-5cbc02128011" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063758Z:b9a1b237-ae56-4c57-a7fa-04b319392631" + "WESTEUROPE:20160103T134533Z:7fdc8952-c289-4efc-acb3-5cbc02128011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:37:58 GMT" + "Sun, 03 Jan 2016 13:45:32 GMT" ] }, "StatusCode": 200 @@ -169,10 +169,1117 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-12-07T06:38:05.9803254Z\",\r\n \"duration\": \"PT4.9287208S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-01-03T13:45:38.086233Z\",\r\n \"duration\": \"PT3.3185987S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1802" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587497781507100647?api-version=2014-04-01-preview" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "b0dd0ae1-dccc-4115-ac5e-cf215dd3787c" + ], + "x-ms-correlation-request-id": [ + "b0dd0ae1-dccc-4115-ac5e-cf215dd3787c" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134539Z:b0dd0ae1-dccc-4115-ac5e-cf215dd3787c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:38 GMT" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14955" + ], + "x-ms-request-id": [ + "f4dfef65-ff89-4f9f-8075-c0d0ee7b03f8" + ], + "x-ms-correlation-request-id": [ + "f4dfef65-ff89-4f9f-8075-c0d0ee7b03f8" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134540Z:f4dfef65-ff89-4f9f-8075-c0d0ee7b03f8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14953" + ], + "x-ms-request-id": [ + "d4e5f932-c8ee-4f48-9a11-a1eee02f2981" + ], + "x-ms-correlation-request-id": [ + "d4e5f932-c8ee-4f48-9a11-a1eee02f2981" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134544Z:d4e5f932-c8ee-4f48-9a11-a1eee02f2981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:44 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14951" + ], + "x-ms-request-id": [ + "1498694a-3e1d-4391-817f-d28120c5740e" + ], + "x-ms-correlation-request-id": [ + "1498694a-3e1d-4391-817f-d28120c5740e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134548Z:1498694a-3e1d-4391-817f-d28120c5740e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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": [ + "14949" + ], + "x-ms-request-id": [ + "14db00a4-72e1-467c-8994-fc293e171827" + ], + "x-ms-correlation-request-id": [ + "14db00a4-72e1-467c-8994-fc293e171827" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134551Z:14db00a4-72e1-467c-8994-fc293e171827" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14947" + ], + "x-ms-request-id": [ + "52f0e27a-147a-4b6f-a37b-84b53b8f4aeb" + ], + "x-ms-correlation-request-id": [ + "52f0e27a-147a-4b6f-a37b-84b53b8f4aeb" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134555Z:52f0e27a-147a-4b6f-a37b-84b53b8f4aeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14945" + ], + "x-ms-request-id": [ + "07bfa358-40d7-4e4a-94ab-54b61b991737" + ], + "x-ms-correlation-request-id": [ + "07bfa358-40d7-4e4a-94ab-54b61b991737" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134558Z:07bfa358-40d7-4e4a-94ab-54b61b991737" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:45:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14943" + ], + "x-ms-request-id": [ + "f91b6148-f5f6-4b19-9bd3-949ea5a79ed6" + ], + "x-ms-correlation-request-id": [ + "f91b6148-f5f6-4b19-9bd3-949ea5a79ed6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134602Z:f91b6148-f5f6-4b19-9bd3-949ea5a79ed6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:01 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14941" + ], + "x-ms-request-id": [ + "1656a7a2-e7a9-4705-b40b-585414f7d736" + ], + "x-ms-correlation-request-id": [ + "1656a7a2-e7a9-4705-b40b-585414f7d736" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134606Z:1656a7a2-e7a9-4705-b40b-585414f7d736" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:05 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14939" + ], + "x-ms-request-id": [ + "3a670214-16ab-4d4b-81cf-4c08c39a80a6" + ], + "x-ms-correlation-request-id": [ + "3a670214-16ab-4d4b-81cf-4c08c39a80a6" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134609Z:3a670214-16ab-4d4b-81cf-4c08c39a80a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:09 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14937" + ], + "x-ms-request-id": [ + "7d1f6bef-85c9-4c51-8366-bc4a6b22a819" + ], + "x-ms-correlation-request-id": [ + "7d1f6bef-85c9-4c51-8366-bc4a6b22a819" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134613Z:7d1f6bef-85c9-4c51-8366-bc4a6b22a819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:13 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14935" + ], + "x-ms-request-id": [ + "90ac4c38-fd38-4600-a100-3c60da01eecc" + ], + "x-ms-correlation-request-id": [ + "90ac4c38-fd38-4600-a100-3c60da01eecc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134617Z:90ac4c38-fd38-4600-a100-3c60da01eecc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:16 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:54.4401813Z\",\r\n \"duration\": \"PT11.9262217S\",\r\n \"trackingId\": \"5dac6c2f-4e9a-4574-b6a7-f33cb1f4664c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14933" + ], + "x-ms-request-id": [ + "e6f8a428-35cd-4f38-aa69-c8501ff57535" + ], + "x-ms-correlation-request-id": [ + "e6f8a428-35cd-4f38-aa69-c8501ff57535" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134620Z:e6f8a428-35cd-4f38-aa69-c8501ff57535" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:20 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14931" + ], + "x-ms-request-id": [ + "a9333638-d1e3-4158-afb0-974ea462ab2e" + ], + "x-ms-correlation-request-id": [ + "a9333638-d1e3-4158-afb0-974ea462ab2e" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134624Z:a9333638-d1e3-4158-afb0-974ea462ab2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:23 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14929" + ], + "x-ms-request-id": [ + "5d9b3134-149d-484f-963c-98adcd998a86" + ], + "x-ms-correlation-request-id": [ + "5d9b3134-149d-484f-963c-98adcd998a86" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134627Z:5d9b3134-149d-484f-963c-98adcd998a86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:27 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "657" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14927" + ], + "x-ms-request-id": [ + "e284cc3d-7d9c-4755-a4b7-f32a8552f082" + ], + "x-ms-correlation-request-id": [ + "e284cc3d-7d9c-4755-a4b7-f32a8552f082" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134631Z:e284cc3d-7d9c-4755-a4b7-f32a8552f082" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:30 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" + ], + "x-ms-request-id": [ + "e6d59345-0ca4-4aa6-8aad-b4d65741094a" + ], + "x-ms-correlation-request-id": [ + "e6d59345-0ca4-4aa6-8aad-b4d65741094a" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134635Z:e6d59345-0ca4-4aa6-8aad-b4d65741094a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:35 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1303" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14922" + ], + "x-ms-request-id": [ + "e7b541ed-b6c9-4030-a87e-6c4c14249ca5" + ], + "x-ms-correlation-request-id": [ + "e7b541ed-b6c9-4030-a87e-6c4c14249ca5" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134639Z:e7b541ed-b6c9-4030-a87e-6c4c14249ca5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:39 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" + ], + "x-ms-request-id": [ + "4b54d2ae-b1dc-4b95-9029-eb179991ada4" + ], + "x-ms-correlation-request-id": [ + "4b54d2ae-b1dc-4b95-9029-eb179991ada4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134643Z:4b54d2ae-b1dc-4b95-9029-eb179991ada4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14918" + ], + "x-ms-request-id": [ + "0df0b4e0-0656-41b4-a99c-4b14c66831bf" + ], + "x-ms-correlation-request-id": [ + "0df0b4e0-0656-41b4-a99c-4b14c66831bf" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134647Z:0df0b4e0-0656-41b4-a99c-4b14c66831bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:21.562152Z\",\r\n \"duration\": \"PT39.0481924S\",\r\n \"trackingId\": \"e2d172ef-6788-4d8e-ade5-f6b59ce6d335\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2009" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14916" + ], + "x-ms-request-id": [ + "20161aa2-ae28-4c28-9586-563ebb89f6a4" + ], + "x-ms-correlation-request-id": [ + "20161aa2-ae28-4c28-9586-563ebb89f6a4" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134651Z:20161aa2-ae28-4c28-9586-563ebb89f6a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:50 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2007" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" + ], + "x-ms-request-id": [ + "94031d6b-1687-45c7-94c7-16872c06e3a7" + ], + "x-ms-correlation-request-id": [ + "94031d6b-1687-45c7-94c7-16872c06e3a7" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134655Z:94031d6b-1687-45c7-94c7-16872c06e3a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:54 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "2007" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14912" + ], + "x-ms-request-id": [ + "163516c6-1805-4ccd-814d-945628e84fcc" + ], + "x-ms-correlation-request-id": [ + "163516c6-1805-4ccd-814d-945628e84fcc" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134658Z:163516c6-1805-4ccd-814d-945628e84fcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:46:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1803" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,20 +1290,17 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587521366044260903?api-version=2014-04-01-preview" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14910" ], "x-ms-request-id": [ - "3855adde-75f7-4e88-8915-235c66da690c" + "0fe95d01-c29c-469f-a53f-51f5763a4a7d" ], "x-ms-correlation-request-id": [ - "3855adde-75f7-4e88-8915-235c66da690c" + "0fe95d01-c29c-469f-a53f-51f5763a4a7d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063808Z:3855adde-75f7-4e88-8915-235c66da690c" + "WESTEUROPE:20160103T134702Z:0fe95d01-c29c-469f-a53f-51f5763a4a7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,10 +1309,10 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:07 GMT" + "Sun, 03 Jan 2016 13:47:02 GMT" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", @@ -220,10 +1324,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -235,16 +1339,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14908" ], "x-ms-request-id": [ - "4d477d5c-c0aa-4b8e-8e72-549098dd4165" + "c1920c45-8a27-40b6-ab63-86746aa42fa5" ], "x-ms-correlation-request-id": [ - "4d477d5c-c0aa-4b8e-8e72-549098dd4165" + "c1920c45-8a27-40b6-ab63-86746aa42fa5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063810Z:4d477d5c-c0aa-4b8e-8e72-549098dd4165" + "WESTEUROPE:20160103T134706Z:c1920c45-8a27-40b6-ab63-86746aa42fa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,7 +1357,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:09 GMT" + "Sun, 03 Jan 2016 13:47:05 GMT" ] }, "StatusCode": 200 @@ -268,10 +1372,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:46:39.8926729Z\",\r\n \"duration\": \"PT7.9286545S\",\r\n \"trackingId\": \"1fb738dc-82c4-4d67-808a-d894638a45d5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,16 +1387,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14906" ], "x-ms-request-id": [ - "62e957d9-5bea-4412-8876-bb0fa16f8f66" + "7a67d5a7-2488-4129-b2a5-2b27e4db871f" ], "x-ms-correlation-request-id": [ - "62e957d9-5bea-4412-8876-bb0fa16f8f66" + "7a67d5a7-2488-4129-b2a5-2b27e4db871f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063814Z:62e957d9-5bea-4412-8876-bb0fa16f8f66" + "WESTEUROPE:20160103T134710Z:7a67d5a7-2488-4129-b2a5-2b27e4db871f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,7 +1405,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:13 GMT" + "Sun, 03 Jan 2016 13:47:09 GMT" ] }, "StatusCode": 200 @@ -316,10 +1420,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,16 +1435,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14904" ], "x-ms-request-id": [ - "aacd2d8a-5277-41da-90dc-5fe5119ac524" + "51a2ae20-097d-4964-bddc-c572390aec54" ], "x-ms-correlation-request-id": [ - "aacd2d8a-5277-41da-90dc-5fe5119ac524" + "51a2ae20-097d-4964-bddc-c572390aec54" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063819Z:aacd2d8a-5277-41da-90dc-5fe5119ac524" + "WESTEUROPE:20160103T134714Z:51a2ae20-097d-4964-bddc-c572390aec54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +1453,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:19 GMT" + "Sun, 03 Jan 2016 13:47:14 GMT" ] }, "StatusCode": 200 @@ -364,10 +1468,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -379,16 +1483,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14902" ], "x-ms-request-id": [ - "e7822bde-dcb5-4f55-9037-52ce40e577d9" + "51413ad7-7fb3-4ddf-8002-6f20a0a72742" ], "x-ms-correlation-request-id": [ - "e7822bde-dcb5-4f55-9037-52ce40e577d9" + "51413ad7-7fb3-4ddf-8002-6f20a0a72742" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063823Z:e7822bde-dcb5-4f55-9037-52ce40e577d9" + "WESTEUROPE:20160103T134718Z:51413ad7-7fb3-4ddf-8002-6f20a0a72742" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,7 +1501,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:23 GMT" + "Sun, 03 Jan 2016 13:47:18 GMT" ] }, "StatusCode": 200 @@ -412,10 +1516,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "12" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -427,16 +1531,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14900" ], "x-ms-request-id": [ - "b66ad91d-62ca-4c11-b684-2d56a37b2257" + "63c1f588-610e-40c2-a2cb-68f144f47d78" ], "x-ms-correlation-request-id": [ - "b66ad91d-62ca-4c11-b684-2d56a37b2257" + "63c1f588-610e-40c2-a2cb-68f144f47d78" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063828Z:b66ad91d-62ca-4c11-b684-2d56a37b2257" + "WESTEUROPE:20160103T134722Z:63c1f588-610e-40c2-a2cb-68f144f47d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +1549,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:27 GMT" + "Sun, 03 Jan 2016 13:47:22 GMT" ] }, "StatusCode": 200 @@ -460,10 +1564,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,16 +1579,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14898" ], "x-ms-request-id": [ - "8e6cd4f9-ef90-4ae6-b39b-8e961c0f5967" + "c3511428-aadd-4238-a9d9-1964a581b7e4" ], "x-ms-correlation-request-id": [ - "8e6cd4f9-ef90-4ae6-b39b-8e961c0f5967" + "c3511428-aadd-4238-a9d9-1964a581b7e4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063832Z:8e6cd4f9-ef90-4ae6-b39b-8e961c0f5967" + "WESTEUROPE:20160103T134726Z:c3511428-aadd-4238-a9d9-1964a581b7e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,7 +1597,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:32 GMT" + "Sun, 03 Jan 2016 13:47:25 GMT" ] }, "StatusCode": 200 @@ -508,10 +1612,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:13.8762949Z\",\r\n \"duration\": \"PT41.9122765S\",\r\n \"trackingId\": \"1239829a-fb65-4167-9900-fa4478ac4d46\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -523,16 +1627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14896" ], "x-ms-request-id": [ - "6d6da964-0804-47fa-9bda-992ceb3d8e81" + "55083cfb-8a49-4ed1-b1be-10aef3ff40cd" ], "x-ms-correlation-request-id": [ - "6d6da964-0804-47fa-9bda-992ceb3d8e81" + "55083cfb-8a49-4ed1-b1be-10aef3ff40cd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063837Z:6d6da964-0804-47fa-9bda-992ceb3d8e81" + "WESTEUROPE:20160103T134730Z:55083cfb-8a49-4ed1-b1be-10aef3ff40cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,7 +1645,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:36 GMT" + "Sun, 03 Jan 2016 13:47:29 GMT" ] }, "StatusCode": 200 @@ -556,10 +1660,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:32.253439Z\",\r\n \"duration\": \"PT1M0.2894206S\",\r\n \"trackingId\": \"4e0d4b87-8cef-4fd0-8056-f50923e65f9f\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -571,16 +1675,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14894" ], "x-ms-request-id": [ - "a3c6166c-988a-4d0d-b21d-97feba5b9ecb" + "4887e4d7-7870-42a8-a445-ea6831d65f1a" ], "x-ms-correlation-request-id": [ - "a3c6166c-988a-4d0d-b21d-97feba5b9ecb" + "4887e4d7-7870-42a8-a445-ea6831d65f1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063841Z:a3c6166c-988a-4d0d-b21d-97feba5b9ecb" + "WESTEUROPE:20160103T134734Z:4887e4d7-7870-42a8-a445-ea6831d65f1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +1693,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:40 GMT" + "Sun, 03 Jan 2016 13:47:33 GMT" ] }, "StatusCode": 200 @@ -604,10 +1708,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:33.7657551Z\",\r\n \"duration\": \"PT1M1.8017367S\",\r\n \"trackingId\": \"4e0d4b87-8cef-4fd0-8056-f50923e65f9f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -619,16 +1723,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14891" ], "x-ms-request-id": [ - "2356416d-eabb-470f-9742-fa4a418042de" + "37563c2c-050b-4ef0-945e-8ffb95b4ffc8" ], "x-ms-correlation-request-id": [ - "2356416d-eabb-470f-9742-fa4a418042de" + "37563c2c-050b-4ef0-945e-8ffb95b4ffc8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063846Z:2356416d-eabb-470f-9742-fa4a418042de" + "WESTEUROPE:20160103T134737Z:37563c2c-050b-4ef0-945e-8ffb95b4ffc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -637,7 +1741,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:46 GMT" + "Sun, 03 Jan 2016 13:47:37 GMT" ] }, "StatusCode": 200 @@ -652,10 +1756,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:33.7657551Z\",\r\n \"duration\": \"PT1M1.8017367S\",\r\n \"trackingId\": \"4e0d4b87-8cef-4fd0-8056-f50923e65f9f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2008" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,16 +1771,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14889" ], "x-ms-request-id": [ - "46f793b9-dec1-4700-8177-ce27c30675ed" + "c8bf62fc-103b-4a8a-b660-c8b217f987ce" ], "x-ms-correlation-request-id": [ - "46f793b9-dec1-4700-8177-ce27c30675ed" + "c8bf62fc-103b-4a8a-b660-c8b217f987ce" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063850Z:46f793b9-dec1-4700-8177-ce27c30675ed" + "WESTEUROPE:20160103T134741Z:c8bf62fc-103b-4a8a-b660-c8b217f987ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,7 +1789,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:50 GMT" + "Sun, 03 Jan 2016 13:47:40 GMT" ] }, "StatusCode": 200 @@ -700,10 +1804,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:29.4457624Z\",\r\n \"duration\": \"PT19.9128821S\",\r\n \"trackingId\": \"42312786-6cbf-48da-9fde-8d32ea722a0c\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:42.1063917Z\",\r\n \"duration\": \"PT1M10.1423733S\",\r\n \"trackingId\": \"6e724c3a-26b0-4627-a758-5b92d8aef47b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -715,16 +1819,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14887" ], "x-ms-request-id": [ - "4754d5ba-9a93-498c-947d-aee0807878ed" + "e0d219f1-19ee-46d1-9802-995d95c7879b" ], "x-ms-correlation-request-id": [ - "4754d5ba-9a93-498c-947d-aee0807878ed" + "e0d219f1-19ee-46d1-9802-995d95c7879b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063855Z:4754d5ba-9a93-498c-947d-aee0807878ed" + "WESTEUROPE:20160103T134745Z:e0d219f1-19ee-46d1-9802-995d95c7879b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +1837,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:54 GMT" + "Sun, 03 Jan 2016 13:47:45 GMT" ] }, "StatusCode": 200 @@ -748,10 +1852,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:58.7036313Z\",\r\n \"duration\": \"PT49.170751S\",\r\n \"trackingId\": \"debbe3b3-3478-48d4-82f5-4524be84e551\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:42.1063917Z\",\r\n \"duration\": \"PT1M10.1423733S\",\r\n \"trackingId\": \"6e724c3a-26b0-4627-a758-5b92d8aef47b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "651" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -763,16 +1867,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14885" ], "x-ms-request-id": [ - "b9ec1866-2a1b-434b-8372-cb72a2c90b70" + "c34f8d16-3c0d-49a6-925c-8c4ea771f352" ], "x-ms-correlation-request-id": [ - "b9ec1866-2a1b-434b-8372-cb72a2c90b70" + "c34f8d16-3c0d-49a6-925c-8c4ea771f352" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063859Z:b9ec1866-2a1b-434b-8372-cb72a2c90b70" + "WESTEUROPE:20160103T134749Z:c34f8d16-3c0d-49a6-925c-8c4ea771f352" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +1885,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:59 GMT" + "Sun, 03 Jan 2016 13:47:49 GMT" ] }, "StatusCode": 200 @@ -796,10 +1900,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:58.7036313Z\",\r\n \"duration\": \"PT49.170751S\",\r\n \"trackingId\": \"debbe3b3-3478-48d4-82f5-4524be84e551\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:49.5590617Z\",\r\n \"duration\": \"PT1M17.5950433S\",\r\n \"trackingId\": \"abd9abcc-3c55-4d5d-8abe-0fde44620e45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "651" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -811,16 +1915,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14883" ], "x-ms-request-id": [ - "c439b5c6-8747-4c8e-bc02-b6dafa1ea2ef" + "e3d887bd-e526-4d10-8471-1059ca2c8151" ], "x-ms-correlation-request-id": [ - "c439b5c6-8747-4c8e-bc02-b6dafa1ea2ef" + "e3d887bd-e526-4d10-8471-1059ca2c8151" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063903Z:c439b5c6-8747-4c8e-bc02-b6dafa1ea2ef" + "WESTEUROPE:20160103T134753Z:e3d887bd-e526-4d10-8471-1059ca2c8151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,7 +1933,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:03 GMT" + "Sun, 03 Jan 2016 13:47:53 GMT" ] }, "StatusCode": 200 @@ -844,10 +1948,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:58.7036313Z\",\r\n \"duration\": \"PT49.170751S\",\r\n \"trackingId\": \"debbe3b3-3478-48d4-82f5-4524be84e551\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:47:49.5590617Z\",\r\n \"duration\": \"PT1M17.5950433S\",\r\n \"trackingId\": \"abd9abcc-3c55-4d5d-8abe-0fde44620e45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1297" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -859,16 +1963,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" + "14881" ], "x-ms-request-id": [ - "2ff9d898-234a-4a8c-81da-def7c07181d0" + "67889928-e8cb-437b-b363-6b5faf084edb" ], "x-ms-correlation-request-id": [ - "2ff9d898-234a-4a8c-81da-def7c07181d0" + "67889928-e8cb-437b-b363-6b5faf084edb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063908Z:2ff9d898-234a-4a8c-81da-def7c07181d0" + "WESTEUROPE:20160103T134757Z:67889928-e8cb-437b-b363-6b5faf084edb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,7 +1981,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:08 GMT" + "Sun, 03 Jan 2016 13:47:56 GMT" ] }, "StatusCode": 200 @@ -892,10 +1996,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:47:57.8598045Z\",\r\n \"duration\": \"PT1M25.8957861S\",\r\n \"trackingId\": \"cf7cd27a-6679-4304-85a5-235661378207\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:31.8193206Z\",\r\n \"duration\": \"PT49.2137279S\",\r\n \"trackingId\": \"1d4763fc-b78b-4331-8c41-90c6714b1ca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:46:51.6282901Z\",\r\n \"duration\": \"PT1M9.1143305S\",\r\n \"trackingId\": \"f1eab6ee-abc9-438a-bd0e-502daccf0274\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "2011" ], "Content-Type": [ "application/json; charset=utf-8" @@ -907,16 +2011,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14969" + "14879" ], "x-ms-request-id": [ - "67f0010a-248b-4e6e-9a10-1ff410176536" + "f4d4780c-c3c8-4aeb-a28e-0d18d2e48095" ], "x-ms-correlation-request-id": [ - "67f0010a-248b-4e6e-9a10-1ff410176536" + "f4d4780c-c3c8-4aeb-a28e-0d18d2e48095" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063913Z:67f0010a-248b-4e6e-9a10-1ff410176536" + "WESTEUROPE:20160103T134801Z:f4d4780c-c3c8-4aeb-a28e-0d18d2e48095" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,14 +2029,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:13 GMT" + "Sun, 03 Jan 2016 13:48:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -940,10 +2044,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-01-03T13:45:38.086233Z\",\r\n \"duration\": \"PT3.3185987S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,16 +2059,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14967" + "14954" ], "x-ms-request-id": [ - "859a2467-076c-431e-b5e3-20a7b2b0c959" + "2a24587e-71a5-49ce-8812-152ec8dcfd9e" ], "x-ms-correlation-request-id": [ - "859a2467-076c-431e-b5e3-20a7b2b0c959" + "2a24587e-71a5-49ce-8812-152ec8dcfd9e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063918Z:859a2467-076c-431e-b5e3-20a7b2b0c959" + "WESTEUROPE:20160103T134541Z:2a24587e-71a5-49ce-8812-152ec8dcfd9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -973,14 +2077,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:18 GMT" + "Sun, 03 Jan 2016 13:45:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -988,10 +2092,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1300" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1003,16 +2107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14965" + "14952" ], "x-ms-request-id": [ - "d999a2ac-ff26-4da3-9394-7963b2ce46b6" + "8aec2ad3-6e5f-42cf-a379-266ea3c9fecf" ], "x-ms-correlation-request-id": [ - "d999a2ac-ff26-4da3-9394-7963b2ce46b6" + "8aec2ad3-6e5f-42cf-a379-266ea3c9fecf" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063923Z:d999a2ac-ff26-4da3-9394-7963b2ce46b6" + "WESTEUROPE:20160103T134545Z:8aec2ad3-6e5f-42cf-a379-266ea3c9fecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,14 +2125,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:23 GMT" + "Sun, 03 Jan 2016 13:45:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1036,10 +2140,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1051,16 +2155,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14963" + "14950" ], "x-ms-request-id": [ - "9aa03564-a6f1-4881-b5ac-cf0dc60e36a1" + "baa089d8-bb3d-4364-8c3f-5151660e6cff" ], "x-ms-correlation-request-id": [ - "9aa03564-a6f1-4881-b5ac-cf0dc60e36a1" + "baa089d8-bb3d-4364-8c3f-5151660e6cff" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063928Z:9aa03564-a6f1-4881-b5ac-cf0dc60e36a1" + "WESTEUROPE:20160103T134548Z:baa089d8-bb3d-4364-8c3f-5151660e6cff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,14 +2173,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:27 GMT" + "Sun, 03 Jan 2016 13:45:48 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1084,10 +2188,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,16 +2203,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14948" ], "x-ms-request-id": [ - "549c7a88-f1d7-4bab-80ca-a62ee481701f" + "cc36b9a2-2f52-4bff-8548-4d8d66b9f7f1" ], "x-ms-correlation-request-id": [ - "549c7a88-f1d7-4bab-80ca-a62ee481701f" + "cc36b9a2-2f52-4bff-8548-4d8d66b9f7f1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063933Z:549c7a88-f1d7-4bab-80ca-a62ee481701f" + "WESTEUROPE:20160103T134552Z:cc36b9a2-2f52-4bff-8548-4d8d66b9f7f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1117,14 +2221,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:33 GMT" + "Sun, 03 Jan 2016 13:45:51 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1132,10 +2236,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1147,16 +2251,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "14946" ], "x-ms-request-id": [ - "851ebc74-73a7-42cc-946c-d0813586caf5" + "d5287fba-cba5-48f7-9bf7-a59c8deedf09" ], "x-ms-correlation-request-id": [ - "851ebc74-73a7-42cc-946c-d0813586caf5" + "d5287fba-cba5-48f7-9bf7-a59c8deedf09" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063938Z:851ebc74-73a7-42cc-946c-d0813586caf5" + "WESTEUROPE:20160103T134555Z:d5287fba-cba5-48f7-9bf7-a59c8deedf09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1165,14 +2269,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:37 GMT" + "Sun, 03 Jan 2016 13:45:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1180,10 +2284,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1195,16 +2299,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14957" + "14944" ], "x-ms-request-id": [ - "7c3c06c6-ee2f-40d9-a25f-b1ec2ca07672" + "46b1fc10-3cca-4ff9-a9fb-7d48e655e907" ], "x-ms-correlation-request-id": [ - "7c3c06c6-ee2f-40d9-a25f-b1ec2ca07672" + "46b1fc10-3cca-4ff9-a9fb-7d48e655e907" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063943Z:7c3c06c6-ee2f-40d9-a25f-b1ec2ca07672" + "WESTEUROPE:20160103T134559Z:46b1fc10-3cca-4ff9-a9fb-7d48e655e907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1213,14 +2317,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:42 GMT" + "Sun, 03 Jan 2016 13:45:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1228,10 +2332,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1243,16 +2347,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14942" ], "x-ms-request-id": [ - "4bc36d34-dfc6-4190-89c2-0857a386e45e" + "2f5ad312-5fba-40bd-93a6-c59fa68c1f00" ], "x-ms-correlation-request-id": [ - "4bc36d34-dfc6-4190-89c2-0857a386e45e" + "2f5ad312-5fba-40bd-93a6-c59fa68c1f00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063947Z:4bc36d34-dfc6-4190-89c2-0857a386e45e" + "WESTEUROPE:20160103T134603Z:2f5ad312-5fba-40bd-93a6-c59fa68c1f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,14 +2365,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:47 GMT" + "Sun, 03 Jan 2016 13:46:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1276,10 +2380,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1291,16 +2395,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14940" ], "x-ms-request-id": [ - "2ef8be27-625a-4c64-8cf3-ee4c435fcbde" + "b9947a37-8394-45ca-88a6-be5448f87c89" ], "x-ms-correlation-request-id": [ - "2ef8be27-625a-4c64-8cf3-ee4c435fcbde" + "b9947a37-8394-45ca-88a6-be5448f87c89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063952Z:2ef8be27-625a-4c64-8cf3-ee4c435fcbde" + "WESTEUROPE:20160103T134606Z:b9947a37-8394-45ca-88a6-be5448f87c89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1309,14 +2413,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:51 GMT" + "Sun, 03 Jan 2016 13:46:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1324,10 +2428,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:22.7809558Z\",\r\n \"duration\": \"PT15.7378501S\",\r\n \"trackingId\": \"f7ab0abd-8f75-43de-bbd7-e8ed1b81c4e9\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2007" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1339,16 +2443,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14951" + "14938" ], "x-ms-request-id": [ - "90b63b6e-a025-4a07-a4a6-e8c1b8564cf6" + "df34ed32-40f2-42e7-9e2f-d2b4189d9f11" ], "x-ms-correlation-request-id": [ - "90b63b6e-a025-4a07-a4a6-e8c1b8564cf6" + "df34ed32-40f2-42e7-9e2f-d2b4189d9f11" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063957Z:90b63b6e-a025-4a07-a4a6-e8c1b8564cf6" + "WESTEUROPE:20160103T134610Z:df34ed32-40f2-42e7-9e2f-d2b4189d9f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,14 +2461,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:57 GMT" + "Sun, 03 Jan 2016 13:46:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1372,10 +2476,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:59.3285297Z\",\r\n \"duration\": \"PT52.285424S\",\r\n \"trackingId\": \"b9ce33d4-d2d0-472f-8d7c-aa03cfaea8cf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2005" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1387,16 +2491,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14949" + "14936" ], "x-ms-request-id": [ - "8754b498-6263-4b9a-9e12-ed0729b8f913" + "6277aed8-bbc0-429f-8cc7-93b4b0a434ed" ], "x-ms-correlation-request-id": [ - "8754b498-6263-4b9a-9e12-ed0729b8f913" + "6277aed8-bbc0-429f-8cc7-93b4b0a434ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064002Z:8754b498-6263-4b9a-9e12-ed0729b8f913" + "WESTEUROPE:20160103T134614Z:6277aed8-bbc0-429f-8cc7-93b4b0a434ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1405,14 +2509,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:01 GMT" + "Sun, 03 Jan 2016 13:46:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1420,10 +2524,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:39:59.3285297Z\",\r\n \"duration\": \"PT52.285424S\",\r\n \"trackingId\": \"b9ce33d4-d2d0-472f-8d7c-aa03cfaea8cf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2005" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1435,16 +2539,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14947" + "14934" ], "x-ms-request-id": [ - "4cec515c-30b6-4e52-b062-3a0d15ab6d8c" + "3dd8df5a-0fbb-47e5-9406-b7c0e74dae5e" ], "x-ms-correlation-request-id": [ - "4cec515c-30b6-4e52-b062-3a0d15ab6d8c" + "3dd8df5a-0fbb-47e5-9406-b7c0e74dae5e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064007Z:4cec515c-30b6-4e52-b062-3a0d15ab6d8c" + "WESTEUROPE:20160103T134617Z:3dd8df5a-0fbb-47e5-9406-b7c0e74dae5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1453,14 +2557,14 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:06 GMT" + "Sun, 03 Jan 2016 13:46:17 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1468,10 +2572,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-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/CA1A037A20B7C8AD\",\r\n \"operationId\": \"CA1A037A20B7C8AD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:40:07.1143178Z\",\r\n \"duration\": \"PT1M0.0712121S\",\r\n \"trackingId\": \"473a15d6-7813-4bb9-b684-1fdb25df53ef\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/3E38E7F7632F9074\",\r\n \"operationId\": \"3E38E7F7632F9074\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:06.8766643Z\",\r\n \"duration\": \"PT57.3366817S\",\r\n \"trackingId\": \"5d4be609-7c3f-4558-a76c-ca8b85a66f74\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup/operations/014FBF9E10A457DE\",\r\n \"operationId\": \"014FBF9E10A457DE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:39:08.8810022Z\",\r\n \"duration\": \"PT59.3481219S\",\r\n \"trackingId\": \"5232e024-25aa-4fef-838a-e7fd0d163ba9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Storage/storageAccounts/tdcmdlets8003\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets8003\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2009" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1483,16 +2587,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "14932" ], "x-ms-request-id": [ - "3d4c11ac-8774-4519-be4b-c8d56f600fe1" + "7fe772da-8630-45ce-9972-bd11469e0b8d" ], "x-ms-correlation-request-id": [ - "3d4c11ac-8774-4519-be4b-c8d56f600fe1" + "7fe772da-8630-45ce-9972-bd11469e0b8d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064012Z:3d4c11ac-8774-4519-be4b-c8d56f600fe1" + "WESTEUROPE:20160103T134621Z:7fe772da-8630-45ce-9972-bd11469e0b8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1501,7 +2605,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:12 GMT" + "Sun, 03 Jan 2016 13:46:20 GMT" ] }, "StatusCode": 200 @@ -1516,10 +2620,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1531,16 +2635,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14930" ], "x-ms-request-id": [ - "42a08549-0154-4045-9b44-673491313537" + "f6528a2f-72c7-4920-8458-f66d3124501c" ], "x-ms-correlation-request-id": [ - "42a08549-0154-4045-9b44-673491313537" + "f6528a2f-72c7-4920-8458-f66d3124501c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063811Z:42a08549-0154-4045-9b44-673491313537" + "WESTEUROPE:20160103T134625Z:f6528a2f-72c7-4920-8458-f66d3124501c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1549,7 +2653,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:10 GMT" + "Sun, 03 Jan 2016 13:46:24 GMT" ] }, "StatusCode": 200 @@ -1564,10 +2668,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1579,16 +2683,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14928" ], "x-ms-request-id": [ - "f0ccd48c-b76b-4b2f-8564-20444c819e88" + "29335fb5-229a-4416-9ad0-f43b86ab6cba" ], "x-ms-correlation-request-id": [ - "f0ccd48c-b76b-4b2f-8564-20444c819e88" + "29335fb5-229a-4416-9ad0-f43b86ab6cba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063815Z:f0ccd48c-b76b-4b2f-8564-20444c819e88" + "WESTEUROPE:20160103T134628Z:29335fb5-229a-4416-9ad0-f43b86ab6cba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1597,7 +2701,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:15 GMT" + "Sun, 03 Jan 2016 13:46:27 GMT" ] }, "StatusCode": 200 @@ -1612,10 +2716,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1627,16 +2731,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14926" ], "x-ms-request-id": [ - "58dede3e-ed0d-48d5-95cc-3f765c222fc8" + "10131627-979c-4d82-b58c-d2620255a9c9" ], "x-ms-correlation-request-id": [ - "58dede3e-ed0d-48d5-95cc-3f765c222fc8" + "10131627-979c-4d82-b58c-d2620255a9c9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063820Z:58dede3e-ed0d-48d5-95cc-3f765c222fc8" + "WESTEUROPE:20160103T134632Z:10131627-979c-4d82-b58c-d2620255a9c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1645,7 +2749,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:20 GMT" + "Sun, 03 Jan 2016 13:46:31 GMT" ] }, "StatusCode": 200 @@ -1660,10 +2764,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1675,16 +2779,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14923" ], "x-ms-request-id": [ - "c19bb104-2762-4192-91b0-b9c5c9cf521e" + "3d303924-5646-4c23-974a-9134c8030ca9" ], "x-ms-correlation-request-id": [ - "c19bb104-2762-4192-91b0-b9c5c9cf521e" + "3d303924-5646-4c23-974a-9134c8030ca9" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063824Z:c19bb104-2762-4192-91b0-b9c5c9cf521e" + "WESTEUROPE:20160103T134636Z:3d303924-5646-4c23-974a-9134c8030ca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1693,7 +2797,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:24 GMT" + "Sun, 03 Jan 2016 13:46:36 GMT" ] }, "StatusCode": 200 @@ -1708,10 +2812,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1723,16 +2827,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14921" ], "x-ms-request-id": [ - "c5a7430a-7753-445e-99ac-3b494d2fcc1d" + "f1a5b5d6-73d1-4f85-962b-54ec70dc73c6" ], "x-ms-correlation-request-id": [ - "c5a7430a-7753-445e-99ac-3b494d2fcc1d" + "f1a5b5d6-73d1-4f85-962b-54ec70dc73c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063829Z:c5a7430a-7753-445e-99ac-3b494d2fcc1d" + "WESTEUROPE:20160103T134640Z:f1a5b5d6-73d1-4f85-962b-54ec70dc73c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,7 +2845,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:28 GMT" + "Sun, 03 Jan 2016 13:46:39 GMT" ] }, "StatusCode": 200 @@ -1756,10 +2860,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1771,16 +2875,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14919" ], "x-ms-request-id": [ - "fe69a822-d650-4f2d-afdf-6a4ed38d8fbe" + "ccc091e8-a966-445a-8e1e-e59a58d74f00" ], "x-ms-correlation-request-id": [ - "fe69a822-d650-4f2d-afdf-6a4ed38d8fbe" + "ccc091e8-a966-445a-8e1e-e59a58d74f00" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063833Z:fe69a822-d650-4f2d-afdf-6a4ed38d8fbe" + "WESTEUROPE:20160103T134643Z:ccc091e8-a966-445a-8e1e-e59a58d74f00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1789,7 +2893,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:33 GMT" + "Sun, 03 Jan 2016 13:46:43 GMT" ] }, "StatusCode": 200 @@ -1804,10 +2908,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,16 +2923,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14917" ], "x-ms-request-id": [ - "c1fa747b-f81e-4b9c-a37a-1d7fe8d131ed" + "0c73c664-9b28-40ff-8439-26c376298997" ], "x-ms-correlation-request-id": [ - "c1fa747b-f81e-4b9c-a37a-1d7fe8d131ed" + "0c73c664-9b28-40ff-8439-26c376298997" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063838Z:c1fa747b-f81e-4b9c-a37a-1d7fe8d131ed" + "WESTEUROPE:20160103T134647Z:0c73c664-9b28-40ff-8439-26c376298997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1837,7 +2941,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:37 GMT" + "Sun, 03 Jan 2016 13:46:47 GMT" ] }, "StatusCode": 200 @@ -1852,10 +2956,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1867,16 +2971,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14915" ], "x-ms-request-id": [ - "b034606a-275f-4335-9fe9-ea440a1ccded" + "ff3c9cf3-ea53-46ec-828b-2dd250c0559b" ], "x-ms-correlation-request-id": [ - "b034606a-275f-4335-9fe9-ea440a1ccded" + "ff3c9cf3-ea53-46ec-828b-2dd250c0559b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063842Z:b034606a-275f-4335-9fe9-ea440a1ccded" + "WESTEUROPE:20160103T134651Z:ff3c9cf3-ea53-46ec-828b-2dd250c0559b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,7 +2989,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:41 GMT" + "Sun, 03 Jan 2016 13:46:51 GMT" ] }, "StatusCode": 200 @@ -1900,10 +3004,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1915,16 +3019,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14913" ], "x-ms-request-id": [ - "9785902f-deb2-475d-938f-952d3f804d59" + "46daf301-3a90-40f3-b759-a6e38812a963" ], "x-ms-correlation-request-id": [ - "9785902f-deb2-475d-938f-952d3f804d59" + "46daf301-3a90-40f3-b759-a6e38812a963" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063847Z:9785902f-deb2-475d-938f-952d3f804d59" + "WESTEUROPE:20160103T134655Z:46daf301-3a90-40f3-b759-a6e38812a963" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,7 +3037,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:47 GMT" + "Sun, 03 Jan 2016 13:46:55 GMT" ] }, "StatusCode": 200 @@ -1948,10 +3052,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1963,16 +3067,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14911" ], "x-ms-request-id": [ - "297a769e-bde1-40b2-89b1-39c5b4e6e66d" + "7085553f-12bc-4c56-906f-de8ba7e7c7d2" ], "x-ms-correlation-request-id": [ - "297a769e-bde1-40b2-89b1-39c5b4e6e66d" + "7085553f-12bc-4c56-906f-de8ba7e7c7d2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063851Z:297a769e-bde1-40b2-89b1-39c5b4e6e66d" + "WESTEUROPE:20160103T134659Z:7085553f-12bc-4c56-906f-de8ba7e7c7d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1981,7 +3085,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:51 GMT" + "Sun, 03 Jan 2016 13:46:59 GMT" ] }, "StatusCode": 200 @@ -1996,10 +3100,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2011,16 +3115,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14909" ], "x-ms-request-id": [ - "4fc37884-63dc-4c60-a6f9-17dffae26093" + "70c08076-2819-4f66-afbd-ac0328f64b59" ], "x-ms-correlation-request-id": [ - "4fc37884-63dc-4c60-a6f9-17dffae26093" + "70c08076-2819-4f66-afbd-ac0328f64b59" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063856Z:4fc37884-63dc-4c60-a6f9-17dffae26093" + "WESTEUROPE:20160103T134703Z:70c08076-2819-4f66-afbd-ac0328f64b59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2029,7 +3133,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:38:55 GMT" + "Sun, 03 Jan 2016 13:47:02 GMT" ] }, "StatusCode": 200 @@ -2044,10 +3148,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2059,16 +3163,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14907" ], "x-ms-request-id": [ - "6081aeb8-fce6-4787-87ae-16e37bc5d6ef" + "59e305b9-39d1-4e93-be70-15f7b1e6a114" ], "x-ms-correlation-request-id": [ - "6081aeb8-fce6-4787-87ae-16e37bc5d6ef" + "59e305b9-39d1-4e93-be70-15f7b1e6a114" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063900Z:6081aeb8-fce6-4787-87ae-16e37bc5d6ef" + "WESTEUROPE:20160103T134707Z:59e305b9-39d1-4e93-be70-15f7b1e6a114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,7 +3181,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:00 GMT" + "Sun, 03 Jan 2016 13:47:06 GMT" ] }, "StatusCode": 200 @@ -2092,10 +3196,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2107,16 +3211,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" + "14905" ], "x-ms-request-id": [ - "0a9f2531-1b3c-4ee4-beac-b393baa2099e" + "4c1c0cbd-d6fe-4212-9864-ecdfc1612744" ], "x-ms-correlation-request-id": [ - "0a9f2531-1b3c-4ee4-beac-b393baa2099e" + "4c1c0cbd-d6fe-4212-9864-ecdfc1612744" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063904Z:0a9f2531-1b3c-4ee4-beac-b393baa2099e" + "WESTEUROPE:20160103T134711Z:4c1c0cbd-d6fe-4212-9864-ecdfc1612744" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2125,7 +3229,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:04 GMT" + "Sun, 03 Jan 2016 13:47:10 GMT" ] }, "StatusCode": 200 @@ -2140,10 +3244,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,16 +3259,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14970" + "14903" ], "x-ms-request-id": [ - "2304b878-e768-40b8-9238-8cc46fed7e69" + "a1efcf4f-cefa-4385-8d17-1ccb5cfac0d4" ], "x-ms-correlation-request-id": [ - "2304b878-e768-40b8-9238-8cc46fed7e69" + "a1efcf4f-cefa-4385-8d17-1ccb5cfac0d4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063909Z:2304b878-e768-40b8-9238-8cc46fed7e69" + "WESTEUROPE:20160103T134715Z:a1efcf4f-cefa-4385-8d17-1ccb5cfac0d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2173,7 +3277,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:09 GMT" + "Sun, 03 Jan 2016 13:47:15 GMT" ] }, "StatusCode": 200 @@ -2188,10 +3292,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2203,16 +3307,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14901" ], "x-ms-request-id": [ - "c388bf20-747c-4955-be31-d28c4629d763" + "f32ba0e2-44b6-4c40-afdd-c8d0f340a869" ], "x-ms-correlation-request-id": [ - "c388bf20-747c-4955-be31-d28c4629d763" + "f32ba0e2-44b6-4c40-afdd-c8d0f340a869" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063914Z:c388bf20-747c-4955-be31-d28c4629d763" + "WESTEUROPE:20160103T134719Z:f32ba0e2-44b6-4c40-afdd-c8d0f340a869" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2221,7 +3325,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:14 GMT" + "Sun, 03 Jan 2016 13:47:18 GMT" ] }, "StatusCode": 200 @@ -2236,10 +3340,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2251,16 +3355,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14966" + "14899" ], "x-ms-request-id": [ - "1b58a18b-b619-4aea-9fe3-ac00b8623fbd" + "4c5a479f-7bd3-4ca2-8b9d-246c56992797" ], "x-ms-correlation-request-id": [ - "1b58a18b-b619-4aea-9fe3-ac00b8623fbd" + "4c5a479f-7bd3-4ca2-8b9d-246c56992797" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063919Z:1b58a18b-b619-4aea-9fe3-ac00b8623fbd" + "WESTEUROPE:20160103T134723Z:4c5a479f-7bd3-4ca2-8b9d-246c56992797" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,7 +3373,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:19 GMT" + "Sun, 03 Jan 2016 13:47:22 GMT" ] }, "StatusCode": 200 @@ -2284,10 +3388,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2299,16 +3403,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14964" + "14897" ], "x-ms-request-id": [ - "be62d119-5e5d-4e12-a9d8-b0aabc978ae5" + "efcac52c-fba3-4f76-a052-f513ffe852f2" ], "x-ms-correlation-request-id": [ - "be62d119-5e5d-4e12-a9d8-b0aabc978ae5" + "efcac52c-fba3-4f76-a052-f513ffe852f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063924Z:be62d119-5e5d-4e12-a9d8-b0aabc978ae5" + "WESTEUROPE:20160103T134726Z:efcac52c-fba3-4f76-a052-f513ffe852f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2317,7 +3421,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:24 GMT" + "Sun, 03 Jan 2016 13:47:26 GMT" ] }, "StatusCode": 200 @@ -2332,10 +3436,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2347,16 +3451,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14895" ], "x-ms-request-id": [ - "57ef8bb5-9b69-4d7d-9645-fe2b833dbcb5" + "2b999df9-4801-4e74-8826-c8c8ccc6f449" ], "x-ms-correlation-request-id": [ - "57ef8bb5-9b69-4d7d-9645-fe2b833dbcb5" + "2b999df9-4801-4e74-8826-c8c8ccc6f449" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063929Z:57ef8bb5-9b69-4d7d-9645-fe2b833dbcb5" + "WESTEUROPE:20160103T134730Z:2b999df9-4801-4e74-8826-c8c8ccc6f449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,7 +3469,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:28 GMT" + "Sun, 03 Jan 2016 13:47:30 GMT" ] }, "StatusCode": 200 @@ -2380,10 +3484,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2395,16 +3499,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "14893" ], "x-ms-request-id": [ - "5323ca02-8861-44b2-9d60-7444817c3bb4" + "3eeb2594-8365-44ce-88e3-56c188ba5d51" ], "x-ms-correlation-request-id": [ - "5323ca02-8861-44b2-9d60-7444817c3bb4" + "3eeb2594-8365-44ce-88e3-56c188ba5d51" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063934Z:5323ca02-8861-44b2-9d60-7444817c3bb4" + "WESTEUROPE:20160103T134734Z:3eeb2594-8365-44ce-88e3-56c188ba5d51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2413,7 +3517,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:34 GMT" + "Sun, 03 Jan 2016 13:47:34 GMT" ] }, "StatusCode": 200 @@ -2428,10 +3532,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2443,16 +3547,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14958" + "14890" ], "x-ms-request-id": [ - "a159a80f-0259-4fa4-a8c6-10c378b06c11" + "b21cefb0-e628-48d3-bc1c-e435b23bd4b7" ], "x-ms-correlation-request-id": [ - "a159a80f-0259-4fa4-a8c6-10c378b06c11" + "b21cefb0-e628-48d3-bc1c-e435b23bd4b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063939Z:a159a80f-0259-4fa4-a8c6-10c378b06c11" + "WESTEUROPE:20160103T134738Z:b21cefb0-e628-48d3-bc1c-e435b23bd4b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2461,7 +3565,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:38 GMT" + "Sun, 03 Jan 2016 13:47:37 GMT" ] }, "StatusCode": 200 @@ -2476,10 +3580,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2491,16 +3595,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14888" ], "x-ms-request-id": [ - "cb80d397-0847-4e01-9f7b-0d875065c0d0" + "50cfd7ef-9638-41f6-bbb3-c786099ee1b6" ], "x-ms-correlation-request-id": [ - "cb80d397-0847-4e01-9f7b-0d875065c0d0" + "50cfd7ef-9638-41f6-bbb3-c786099ee1b6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063944Z:cb80d397-0847-4e01-9f7b-0d875065c0d0" + "WESTEUROPE:20160103T134742Z:50cfd7ef-9638-41f6-bbb3-c786099ee1b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2509,7 +3613,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:43 GMT" + "Sun, 03 Jan 2016 13:47:41 GMT" ] }, "StatusCode": 200 @@ -2524,10 +3628,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2539,16 +3643,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14954" + "14886" ], "x-ms-request-id": [ - "bdbd341b-827c-4ffc-ab93-c78b8b60c65e" + "c247ce67-efb1-4e8f-9104-0374bbc198af" ], "x-ms-correlation-request-id": [ - "bdbd341b-827c-4ffc-ab93-c78b8b60c65e" + "c247ce67-efb1-4e8f-9104-0374bbc198af" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063948Z:bdbd341b-827c-4ffc-ab93-c78b8b60c65e" + "WESTEUROPE:20160103T134746Z:c247ce67-efb1-4e8f-9104-0374bbc198af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2557,7 +3661,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:48 GMT" + "Sun, 03 Jan 2016 13:47:46 GMT" ] }, "StatusCode": 200 @@ -2572,10 +3676,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2587,16 +3691,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14952" + "14884" ], "x-ms-request-id": [ - "f24ffa26-87b8-4c2e-bc87-2f2e52db2809" + "7eab2687-4d20-4dee-8a2c-892d22dfdff1" ], "x-ms-correlation-request-id": [ - "f24ffa26-87b8-4c2e-bc87-2f2e52db2809" + "7eab2687-4d20-4dee-8a2c-892d22dfdff1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063953Z:f24ffa26-87b8-4c2e-bc87-2f2e52db2809" + "WESTEUROPE:20160103T134750Z:7eab2687-4d20-4dee-8a2c-892d22dfdff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2605,7 +3709,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:52 GMT" + "Sun, 03 Jan 2016 13:47:50 GMT" ] }, "StatusCode": 200 @@ -2620,10 +3724,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2635,16 +3739,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14950" + "14882" ], "x-ms-request-id": [ - "6b675468-e181-4110-8792-42f2fe605a3f" + "04884c8d-9e6f-4d59-a258-7d8ca2260e5d" ], "x-ms-correlation-request-id": [ - "6b675468-e181-4110-8792-42f2fe605a3f" + "04884c8d-9e6f-4d59-a258-7d8ca2260e5d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T063958Z:6b675468-e181-4110-8792-42f2fe605a3f" + "WESTEUROPE:20160103T134754Z:04884c8d-9e6f-4d59-a258-7d8ca2260e5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2653,7 +3757,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:39:58 GMT" + "Sun, 03 Jan 2016 13:47:53 GMT" ] }, "StatusCode": 200 @@ -2668,10 +3772,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:45:42.372198Z\",\r\n \"duration\": \"PT7.6045637S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1801" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2683,16 +3787,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14880" ], "x-ms-request-id": [ - "8c7cbf74-2082-40b9-aa13-2a60edad7212" + "dbf8da2d-2b63-4225-bd4c-f462241d4379" ], "x-ms-correlation-request-id": [ - "8c7cbf74-2082-40b9-aa13-2a60edad7212" + "dbf8da2d-2b63-4225-bd4c-f462241d4379" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064003Z:8c7cbf74-2082-40b9-aa13-2a60edad7212" + "WESTEUROPE:20160103T134758Z:dbf8da2d-2b63-4225-bd4c-f462241d4379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2701,7 +3805,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:02 GMT" + "Sun, 03 Jan 2016 13:47:57 GMT" ] }, "StatusCode": 200 @@ -2716,10 +3820,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-12-07T06:38:09.2758445Z\",\r\n \"duration\": \"PT8.2242399S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:47:58.492608Z\",\r\n \"duration\": \"PT2M23.7249737S\",\r\n \"correlationId\": \"b0dd0ae1-dccc-4115-ac5e-cf215dd3787c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets8003\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "2026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2731,16 +3835,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "14878" ], "x-ms-request-id": [ - "fe188d4b-1274-4852-9212-e85d28c43fc5" + "a4927821-7e4c-47fa-a116-f171425c30d1" ], "x-ms-correlation-request-id": [ - "fe188d4b-1274-4852-9212-e85d28c43fc5" + "a4927821-7e4c-47fa-a116-f171425c30d1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064008Z:fe188d4b-1274-4852-9212-e85d28c43fc5" + "WESTEUROPE:20160103T134801Z:a4927821-7e4c-47fa-a116-f171425c30d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,55 +3853,61 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:07 GMT" + "Sun, 03 Jan 2016 13:48:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDM/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db8003\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server8003\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets8003\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-12-07T06:40:07.6937827Z\",\r\n \"duration\": \"PT2M6.6421781S\",\r\n \"correlationId\": \"3855adde-75f7-4e88-8915-235c66da690c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server8003/sql-td-cmdlet-db8003\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets8003\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2026" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "d4e34447-e799-41eb-ac17-ba23913bd5fc" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "b2e161bc-f233-4936-a902-6b9aab59a53a" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14952" ], "x-ms-correlation-request-id": [ - "b2e161bc-f233-4936-a902-6b9aab59a53a" + "178717e3-441c-4717-a2ef-732900c1a715" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064013Z:b2e161bc-f233-4936-a902-6b9aab59a53a" + "WESTEUROPE:20160103T134805Z:178717e3-441c-4717-a2ef-732900c1a715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:13 GMT" + "Sun, 03 Jan 2016 13:48:05 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 @@ -2812,7 +3922,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -2824,7 +3934,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3bcd497d-43e6-4f5f-b577-370cbad9c095" + "9d588996-8afc-4bd8-b818-77e0522bb999" ], "X-Content-Type-Options": [ "nosniff" @@ -2833,13 +3943,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14950" ], "x-ms-correlation-request-id": [ - "f5730584-7ebc-408c-83f6-aca3ef3896ea" + "63e812e3-d477-447e-883f-9f3b539598db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064017Z:f5730584-7ebc-408c-83f6-aca3ef3896ea" + "WESTEUROPE:20160103T134808Z:63e812e3-d477-447e-883f-9f3b539598db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2848,7 +3958,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:17 GMT" + "Sun, 03 Jan 2016 13:48:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2866,7 +3976,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -2878,7 +3988,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d3c0d495-0f62-4e2f-9ec3-8c25621bdfb8" + "27d70a70-4fbf-4b79-abd4-eddaf7398d6a" ], "X-Content-Type-Options": [ "nosniff" @@ -2887,13 +3997,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14941" ], "x-ms-correlation-request-id": [ - "f2df2374-e9c9-47e3-90cf-d8e4d093bb0c" + "606b74f8-dd6b-4954-854d-b107d168493c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064020Z:f2df2374-e9c9-47e3-90cf-d8e4d093bb0c" + "WESTEUROPE:20160103T134842Z:606b74f8-dd6b-4954-854d-b107d168493c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2902,7 +4012,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:20 GMT" + "Sun, 03 Jan 2016 13:48:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2920,7 +4030,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -2932,7 +4042,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5800bca9-2486-4ff1-a706-979a55a76462" + "9246b5fa-9472-4f93-9a0e-4ee1b4a74335" ], "X-Content-Type-Options": [ "nosniff" @@ -2941,13 +4051,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14939" ], "x-ms-correlation-request-id": [ - "d53f0ae7-7d48-47ac-9440-eadbdd7324f3" + "e1cd27b9-8421-4564-a613-1c21264155a7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064112Z:d53f0ae7-7d48-47ac-9440-eadbdd7324f3" + "WESTEUROPE:20160103T134845Z:e1cd27b9-8421-4564-a613-1c21264155a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2956,7 +4066,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:12 GMT" + "Sun, 03 Jan 2016 13:48:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -2974,7 +4084,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "19195b53-eee7-4738-8ff3-67d505211f8f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -2986,7 +4096,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "0d305783-036b-492b-a5eb-e2d21a3b161c" + "43d96505-9081-4076-8593-3b9f5e268a9a" ], "X-Content-Type-Options": [ "nosniff" @@ -2995,13 +4105,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14936" ], "x-ms-correlation-request-id": [ - "dfa76297-d4b6-41b4-b4c3-7488f57dc24e" + "9cebf430-5e9f-49d0-9de8-8c34f3299c20" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064115Z:dfa76297-d4b6-41b4-b4c3-7488f57dc24e" + "WESTEUROPE:20160103T134901Z:9cebf430-5e9f-49d0-9de8-8c34f3299c20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3010,7 +4120,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:15 GMT" + "Sun, 03 Jan 2016 13:49:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3028,7 +4138,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6abc324a-7423-45d6-ac3b-2e45a7c47898" + "ef1a830b-edc3-4a40-9441-acf25793b795" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -3040,7 +4150,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d4dc767b-b4b9-46c4-9fde-bdf2114e2621" + "3801d612-05b8-46e4-a5fb-7f4ec4257afa" ], "X-Content-Type-Options": [ "nosniff" @@ -3049,13 +4159,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14931" ], "x-ms-correlation-request-id": [ - "e25affda-328a-4845-9d34-3dcbbda31199" + "ee3afb93-c442-45da-ae1a-34a5cd30e94d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064131Z:e25affda-328a-4845-9d34-3dcbbda31199" + "WESTEUROPE:20160103T134903Z:ee3afb93-c442-45da-ae1a-34a5cd30e94d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3064,7 +4174,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:31 GMT" + "Sun, 03 Jan 2016 13:49:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3082,7 +4192,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "df36de0c-9fa5-4c6b-8aea-1f53b4273050" + "7c895adf-4b23-4f4f-906a-f196cd411d91" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -3094,7 +4204,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "68cfa97f-91be-412b-ad54-569548446877" + "a14e4c7d-23ae-4dcd-8694-a15fda4795c2" ], "X-Content-Type-Options": [ "nosniff" @@ -3103,13 +4213,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14929" ], "x-ms-correlation-request-id": [ - "66931781-d5b0-45d4-953f-a09b857e08bb" + "c6ee57e8-0836-4738-a006-625838a76064" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064134Z:66931781-d5b0-45d4-953f-a09b857e08bb" + "WESTEUROPE:20160103T134905Z:c6ee57e8-0836-4738-a006-625838a76064" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3118,7 +4228,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:34 GMT" + "Sun, 03 Jan 2016 13:49:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3136,7 +4246,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "96478e0a-b110-4a00-8fd7-3568d422f553" + "8a471afc-8c96-44d7-a73a-82ba3141b5d9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003\",\r\n \"name\": \"sql-td-cmdlet-server8003\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server8003.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -3148,7 +4258,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ddeab14e-385b-4dde-9a15-b01d94ac1ece" + "026e25b5-f85a-460e-ac3c-ae8961dc29eb" ], "X-Content-Type-Options": [ "nosniff" @@ -3157,13 +4267,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14927" ], "x-ms-correlation-request-id": [ - "6fdc626c-8da4-41bc-acde-7ee912ff94a0" + "53678572-1cee-4bae-9042-e4b573ef66d5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064137Z:6fdc626c-8da4-41bc-acde-7ee912ff94a0" + "WESTEUROPE:20160103T134907Z:53678572-1cee-4bae-9042-e4b573ef66d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3172,7 +4282,7 @@ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:37 GMT" + "Sun, 03 Jan 2016 13:49:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3190,7 +4300,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3202,7 +4312,61 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4f4f5184-766c-4861-97ee-85c52e9c1cc3" + "ad4c7f95-b22a-4d74-ab97-955cd3af3987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14951" + ], + "x-ms-correlation-request-id": [ + "3371e4cd-7f9d-42a9-ada3-e0cb9f0a103b" + ], + "x-ms-routing-request-id": [ + "WESTEUROPE:20160103T134807Z:3371e4cd-7f9d-42a9-ada3-e0cb9f0a103b" + ], + "Cache-Control": [ + "no-store, no-cache" + ], + "Date": [ + "Sun, 03 Jan 2016 13:48:07 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "f7b34459-eeec-4167-b975-c782958d56aa" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "x-ms-request-id": [ + "11446ad9-14e6-43e2-8e62-1a913dcef5cd" ], "X-Content-Type-Options": [ "nosniff" @@ -3214,19 +4378,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14940" ], "x-ms-correlation-request-id": [ - "7e3a3753-b7d7-4602-911d-47d6c9cd9690" + "d1097622-d078-4e23-911e-0017bfcd852c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064020Z:7e3a3753-b7d7-4602-911d-47d6c9cd9690" + "WESTEUROPE:20160103T134844Z:d1097622-d078-4e23-911e-0017bfcd852c" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:19 GMT" + "Sun, 03 Jan 2016 13:48:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3244,7 +4408,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "19195b53-eee7-4738-8ff3-67d505211f8f" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3256,7 +4420,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e6efdc04-d4a8-4061-bd7a-ec38c10a8ca7" + "454bdf5e-ae55-4b61-b457-6c81cd0c1208" ], "X-Content-Type-Options": [ "nosniff" @@ -3268,19 +4432,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14935" ], "x-ms-correlation-request-id": [ - "c8293018-7bf1-48de-944c-c7c54e7dd835" + "306b01fe-efe7-4888-a018-dcb3a7ae60a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064115Z:c8293018-7bf1-48de-944c-c7c54e7dd835" + "WESTEUROPE:20160103T134902Z:306b01fe-efe7-4888-a018-dcb3a7ae60a0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:15 GMT" + "Sun, 03 Jan 2016 13:49:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3298,7 +4462,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "6abc324a-7423-45d6-ac3b-2e45a7c47898" + "ef1a830b-edc3-4a40-9441-acf25793b795" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3310,7 +4474,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "20b8748d-5a17-4248-9950-35ed08e71588" + "7df13252-c373-4c21-8048-91d044a0d216" ], "X-Content-Type-Options": [ "nosniff" @@ -3322,19 +4486,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14930" ], "x-ms-correlation-request-id": [ - "580f25fc-3af9-41f8-b882-5ecdf68b9319" + "d13deab2-d22e-424b-88ac-f6c4cbad076e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064134Z:580f25fc-3af9-41f8-b882-5ecdf68b9319" + "WESTEUROPE:20160103T134905Z:d13deab2-d22e-424b-88ac-f6c4cbad076e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:34 GMT" + "Sun, 03 Jan 2016 13:49:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3352,7 +4516,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "df36de0c-9fa5-4c6b-8aea-1f53b4273050" + "7c895adf-4b23-4f4f-906a-f196cd411d91" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3364,7 +4528,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5812bff7-08d4-4d8d-b0cb-6838238dc296" + "adbf4152-1e69-49fc-8138-eb0480740daa" ], "X-Content-Type-Options": [ "nosniff" @@ -3376,19 +4540,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14928" ], "x-ms-correlation-request-id": [ - "adbef4f4-825a-4e6d-a5ab-3b673b1cbce8" + "60da10a5-e4e6-40c9-af9f-ca15b90c5ba6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064137Z:adbef4f4-825a-4e6d-a5ab-3b673b1cbce8" + "WESTEUROPE:20160103T134907Z:60da10a5-e4e6-40c9-af9f-ca15b90c5ba6" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:37 GMT" + "Sun, 03 Jan 2016 13:49:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3406,7 +4570,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "96478e0a-b110-4a00-8fd7-3568d422f553" + "8a471afc-8c96-44d7-a73a-82ba3141b5d9" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", @@ -3418,7 +4582,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fe6d7e96-0581-4211-a3be-5fd2b8440555" + "f9870f9f-af18-48c0-9576-f23e82dcc2e7" ], "X-Content-Type-Options": [ "nosniff" @@ -3430,19 +4594,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14926" ], "x-ms-correlation-request-id": [ - "6da748cd-c3d3-4dbb-a4c0-84d57f219d81" + "7d571bfb-ae68-4247-9e59-e265a7c467db" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064140Z:6da748cd-c3d3-4dbb-a4c0-84d57f219d81" + "WESTEUROPE:20160103T134909Z:7d571bfb-ae68-4247-9e59-e265a7c467db" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:39 GMT" + "Sun, 03 Jan 2016 13:49:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3460,7 +4624,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "885dbde4-099f-4a2c-b991-cc205eb21a47" + "4a9b2642-308d-477e-b2a3-11c7ee173337" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3472,7 +4636,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "ae60edfb-8264-4313-a3d3-6e4328a773e1" + "28b4fd3b-e6ad-408d-b71e-88aba6346d96" ], "X-Content-Type-Options": [ "nosniff" @@ -3484,19 +4648,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14949" ], "x-ms-correlation-request-id": [ - "73a99fa8-88c5-4edd-93ea-514f097a4a94" + "d084e3fc-65e9-44fe-aed1-7afcb8162a0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064023Z:73a99fa8-88c5-4edd-93ea-514f097a4a94" + "WESTEUROPE:20160103T134810Z:d084e3fc-65e9-44fe-aed1-7afcb8162a0a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:22 GMT" + "Sun, 03 Jan 2016 13:48:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3514,7 +4678,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5b60ac30-af50-4117-ab75-8e4d98147c5e" + "7d513c3f-c32f-4eb0-976e-eca9623e3d9a" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3526,7 +4690,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fc9599a3-df52-4272-b60d-14f7de5526f3" + "79328423-729c-4dfd-923e-45f3d9f6f89f" ], "X-Content-Type-Options": [ "nosniff" @@ -3538,19 +4702,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14948" ], "x-ms-correlation-request-id": [ - "dd4f5946-c31f-4a97-ab9f-97dd39b48e56" + "d1b89e85-07ac-4b43-adb5-bd358898c1f2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064026Z:dd4f5946-c31f-4a97-ab9f-97dd39b48e56" + "WESTEUROPE:20160103T134811Z:d1b89e85-07ac-4b43-adb5-bd358898c1f2" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:25 GMT" + "Sun, 03 Jan 2016 13:48:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3568,7 +4732,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3580,7 +4744,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "55665292-110f-4e51-994f-78c68985c474" + "a567884c-beb3-4ee1-8e9e-109716df5967" ], "X-Content-Type-Options": [ "nosniff" @@ -3592,19 +4756,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14945" ], "x-ms-correlation-request-id": [ - "fed70613-28cd-4071-9360-4c91bbffd821" + "9c52b724-50a2-48bd-b699-d2c9d18cace1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064053Z:fed70613-28cd-4071-9360-4c91bbffd821" + "WESTEUROPE:20160103T134829Z:9c52b724-50a2-48bd-b699-d2c9d18cace1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:52 GMT" + "Sun, 03 Jan 2016 13:48:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3622,7 +4786,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3634,7 +4798,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "af7f3e6e-def1-4103-9057-cf053899a6e9" + "7d10fb18-f217-47c0-bc9c-f49ed39ffaae" ], "X-Content-Type-Options": [ "nosniff" @@ -3646,19 +4810,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14938" ], "x-ms-correlation-request-id": [ - "844f9e10-ff50-40a1-946b-08a0935d42e0" + "43303533-840e-40b5-b8d8-052cba506b9a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064118Z:844f9e10-ff50-40a1-946b-08a0935d42e0" + "WESTEUROPE:20160103T134846Z:43303533-840e-40b5-b8d8-052cba506b9a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:18 GMT" + "Sun, 03 Jan 2016 13:48:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3676,7 +4840,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fb5ef4b8-aeff-41a4-a79a-9d312928c5eb" + "0b549b58-5f5a-43ad-9b56-2e9ccb134947" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -3688,7 +4852,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "efbc07dd-4445-4689-b007-d53d186d6330" + "5a92f0af-45f1-4b95-afaa-1fda6a468ec8" ], "X-Content-Type-Options": [ "nosniff" @@ -3700,19 +4864,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14936" ], "x-ms-correlation-request-id": [ - "89b3e032-8956-4d1f-a0b4-9e5b74c26b70" + "915d30ef-94fe-4d76-b3e9-19cfaac4a9be" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064124Z:89b3e032-8956-4d1f-a0b4-9e5b74c26b70" + "WESTEUROPE:20160103T134850Z:915d30ef-94fe-4d76-b3e9-19cfaac4a9be" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:23 GMT" + "Sun, 03 Jan 2016 13:48:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3730,19 +4894,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5b60ac30-af50-4117-ab75-8e4d98147c5e" + "7d513c3f-c32f-4eb0-976e-eca9623e3d9a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd2ae139-3093-45b3-9754-c472346b4db1\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-12-07T06:39:20.043Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-12-07T06:49:57.477Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fd1fe42b-2a30-4bd3-8d76-c61c38e437ce\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2016-01-03T13:46:40.55Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T13:57:22.707Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "871" + "870" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "936972b1-105b-43e9-9376-8468ee8b6c20" + "d0143a9e-8337-493d-a05c-b6cc327c8789" ], "X-Content-Type-Options": [ "nosniff" @@ -3754,19 +4918,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14947" ], "x-ms-correlation-request-id": [ - "2fd2a3f9-4373-4f38-a026-bbb919f6997e" + "edd5a825-a2ab-446a-a65e-b5690809d7b8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064029Z:2fd2a3f9-4373-4f38-a026-bbb919f6997e" + "WESTEUROPE:20160103T134813Z:edd5a825-a2ab-446a-a65e-b5690809d7b8" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:28 GMT" + "Sun, 03 Jan 2016 13:48:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3784,19 +4948,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd2ae139-3093-45b3-9754-c472346b4db1\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-12-07T06:39:20.043Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-12-07T06:49:57.477Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fd1fe42b-2a30-4bd3-8d76-c61c38e437ce\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2016-01-03T13:46:40.55Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T13:57:22.707Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "871" + "870" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "dd63d047-29cd-4d3a-8152-d89b9178db87" + "4cca929e-8119-4ee5-acb9-c3a93879e2bc" ], "X-Content-Type-Options": [ "nosniff" @@ -3808,19 +4972,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14943" ], "x-ms-correlation-request-id": [ - "bb754535-9908-46fd-8f48-fd8eb2373a45" + "511a5dca-d7c0-401a-ad30-36bb889862c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064059Z:bb754535-9908-46fd-8f48-fd8eb2373a45" + "WESTEUROPE:20160103T134833Z:511a5dca-d7c0-401a-ad30-36bb889862c1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:58 GMT" + "Sun, 03 Jan 2016 13:48:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3838,19 +5002,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fb5ef4b8-aeff-41a4-a79a-9d312928c5eb" + "0b549b58-5f5a-43ad-9b56-2e9ccb134947" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"dd2ae139-3093-45b3-9754-c472346b4db1\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-12-07T06:39:20.043Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-12-07T06:49:57.477Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003\",\r\n \"name\": \"sql-td-cmdlet-db8003\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"fd1fe42b-2a30-4bd3-8d76-c61c38e437ce\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2016-01-03T13:46:40.55Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T13:57:22.707Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "871" + "870" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "7152dfef-f703-4ea3-9baa-c03c488d4428" + "c0bec30e-2ae3-4148-9021-a6a8cc26f059" ], "X-Content-Type-Options": [ "nosniff" @@ -3862,19 +5026,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14935" ], "x-ms-correlation-request-id": [ - "0694bd9c-f977-4447-9f82-476c450d4982" + "d73644da-4841-476d-bcec-cc6c699ecb52" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:0694bd9c-f977-4447-9f82-476c450d4982" + "WESTEUROPE:20160103T134852Z:d73644da-4841-476d-bcec-cc6c699ecb52" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:26 GMT" + "Sun, 03 Jan 2016 13:48:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -3892,10 +5056,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/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7124" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3907,16 +5071,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14877" ], "x-ms-request-id": [ - "56c7cf1e-6e0e-45b0-98ce-4308716a708d" + "1f0c8001-e238-4e41-95a2-c619daa0c886" ], "x-ms-correlation-request-id": [ - "56c7cf1e-6e0e-45b0-98ce-4308716a708d" + "1f0c8001-e238-4e41-95a2-c619daa0c886" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064029Z:56c7cf1e-6e0e-45b0-98ce-4308716a708d" + "WESTEUROPE:20160103T134813Z:1f0c8001-e238-4e41-95a2-c619daa0c886" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3925,7 +5089,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:28 GMT" + "Sun, 03 Jan 2016 13:48:13 GMT" ] }, "StatusCode": 200 @@ -3940,10 +5104,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/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7124" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3955,16 +5119,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14875" ], "x-ms-request-id": [ - "8717cc54-c59a-4121-ae07-cb323d4c8dad" + "d9eac27e-fae5-4271-8925-3dd4d23f6c14" ], "x-ms-correlation-request-id": [ - "8717cc54-c59a-4121-ae07-cb323d4c8dad" + "d9eac27e-fae5-4271-8925-3dd4d23f6c14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064040Z:8717cc54-c59a-4121-ae07-cb323d4c8dad" + "WESTEUROPE:20160103T134824Z:d9eac27e-fae5-4271-8925-3dd4d23f6c14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3973,7 +5137,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:40 GMT" + "Sun, 03 Jan 2016 13:48:23 GMT" ] }, "StatusCode": 200 @@ -3988,10 +5152,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/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "7124" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4003,16 +5167,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14871" ], "x-ms-request-id": [ - "4a362d54-2944-4830-8ab1-ef0b4c2d5871" + "e136c29b-4342-4cc1-a7fa-8807caa30317" ], "x-ms-correlation-request-id": [ - "4a362d54-2944-4830-8ab1-ef0b4c2d5871" + "e136c29b-4342-4cc1-a7fa-8807caa30317" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:4a362d54-2944-4830-8ab1-ef0b4c2d5871" + "WESTEUROPE:20160103T134852Z:e136c29b-4342-4cc1-a7fa-8807caa30317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4021,7 +5185,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:26 GMT" + "Sun, 03 Jan 2016 13:48:51 GMT" ] }, "StatusCode": 200 @@ -4051,16 +5215,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14876" ], "x-ms-request-id": [ - "2cb424a6-9595-4ce5-82d0-f983562cfddc" + "14b36f41-c65b-4915-a3c1-cd18bdf0e57c" ], "x-ms-correlation-request-id": [ - "2cb424a6-9595-4ce5-82d0-f983562cfddc" + "14b36f41-c65b-4915-a3c1-cd18bdf0e57c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064029Z:2cb424a6-9595-4ce5-82d0-f983562cfddc" + "WESTEUROPE:20160103T134814Z:14b36f41-c65b-4915-a3c1-cd18bdf0e57c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4069,7 +5233,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:28 GMT" + "Sun, 03 Jan 2016 13:48:13 GMT" ] }, "StatusCode": 200 @@ -4099,16 +5263,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "14874" ], "x-ms-request-id": [ - "5fb3a302-a86a-47f2-8d81-f34517f53993" + "b1ef753d-6f3e-4ab7-a0bd-dddaa33b9f30" ], "x-ms-correlation-request-id": [ - "5fb3a302-a86a-47f2-8d81-f34517f53993" + "b1ef753d-6f3e-4ab7-a0bd-dddaa33b9f30" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064040Z:5fb3a302-a86a-47f2-8d81-f34517f53993" + "WESTEUROPE:20160103T134824Z:b1ef753d-6f3e-4ab7-a0bd-dddaa33b9f30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4117,7 +5281,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:40 GMT" + "Sun, 03 Jan 2016 13:48:23 GMT" ] }, "StatusCode": 200 @@ -4147,16 +5311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14870" ], "x-ms-request-id": [ - "97ad352f-88a9-4d40-9656-b834a1ace21d" + "fe15f248-60a0-4d61-a774-a310cd5c8526" ], "x-ms-correlation-request-id": [ - "97ad352f-88a9-4d40-9656-b834a1ace21d" + "fe15f248-60a0-4d61-a774-a310cd5c8526" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:97ad352f-88a9-4d40-9656-b834a1ace21d" + "WESTEUROPE:20160103T134852Z:fe15f248-60a0-4d61-a774-a310cd5c8526" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4165,7 +5329,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:27 GMT" + "Sun, 03 Jan 2016 13:48:52 GMT" ] }, "StatusCode": 200 @@ -4201,13 +5365,13 @@ "gateway" ], "x-ms-request-id": [ - "c59346aa-e7d4-4224-9fa1-350ba5453c9f" + "f2669a50-a56c-48ae-8a60-f64b850554ae" ], "x-ms-correlation-request-id": [ - "c59346aa-e7d4-4224-9fa1-350ba5453c9f" + "f2669a50-a56c-48ae-8a60-f64b850554ae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064031Z:c59346aa-e7d4-4224-9fa1-350ba5453c9f" + "WESTEUROPE:20160103T134815Z:f2669a50-a56c-48ae-8a60-f64b850554ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4216,7 +5380,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:30 GMT" + "Sun, 03 Jan 2016 13:48:14 GMT" ] }, "StatusCode": 404 @@ -4252,13 +5416,13 @@ "gateway" ], "x-ms-request-id": [ - "04bada66-ee98-478f-b9e9-ca3df75673cb" + "d8b65dd1-7ce0-40ce-acdd-76b81a3ea7f0" ], "x-ms-correlation-request-id": [ - "04bada66-ee98-478f-b9e9-ca3df75673cb" + "d8b65dd1-7ce0-40ce-acdd-76b81a3ea7f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064041Z:04bada66-ee98-478f-b9e9-ca3df75673cb" + "WESTEUROPE:20160103T134824Z:d8b65dd1-7ce0-40ce-acdd-76b81a3ea7f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4267,7 +5431,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:41 GMT" + "Sun, 03 Jan 2016 13:48:24 GMT" ] }, "StatusCode": 404 @@ -4303,13 +5467,13 @@ "gateway" ], "x-ms-request-id": [ - "e26dd6cb-7afb-4520-8e38-ed793a7c068a" + "e381468b-c0a4-44d1-afb9-19a830dcca50" ], "x-ms-correlation-request-id": [ - "e26dd6cb-7afb-4520-8e38-ed793a7c068a" + "e381468b-c0a4-44d1-afb9-19a830dcca50" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064059Z:e26dd6cb-7afb-4520-8e38-ed793a7c068a" + "WESTEUROPE:20160103T134833Z:e381468b-c0a4-44d1-afb9-19a830dcca50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4318,7 +5482,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:59 GMT" + "Sun, 03 Jan 2016 13:48:33 GMT" ] }, "StatusCode": 404 @@ -4354,13 +5518,13 @@ "gateway" ], "x-ms-request-id": [ - "6f87585d-f4f5-47d6-ad5a-fc769d880f1f" + "95a4a112-1806-4a24-8c31-acfa6be0408d" ], "x-ms-correlation-request-id": [ - "6f87585d-f4f5-47d6-ad5a-fc769d880f1f" + "95a4a112-1806-4a24-8c31-acfa6be0408d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064106Z:6f87585d-f4f5-47d6-ad5a-fc769d880f1f" + "WESTEUROPE:20160103T134838Z:95a4a112-1806-4a24-8c31-acfa6be0408d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4369,7 +5533,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:06 GMT" + "Sun, 03 Jan 2016 13:48:38 GMT" ] }, "StatusCode": 404 @@ -4405,13 +5569,13 @@ "gateway" ], "x-ms-request-id": [ - "024dbcdf-b138-480b-8398-cf172ce8a640" + "71090e8a-5f00-4453-bc98-90ab55976318" ], "x-ms-correlation-request-id": [ - "024dbcdf-b138-480b-8398-cf172ce8a640" + "71090e8a-5f00-4453-bc98-90ab55976318" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064107Z:024dbcdf-b138-480b-8398-cf172ce8a640" + "WESTEUROPE:20160103T134839Z:71090e8a-5f00-4453-bc98-90ab55976318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4420,7 +5584,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:07 GMT" + "Sun, 03 Jan 2016 13:48:38 GMT" ] }, "StatusCode": 404 @@ -4456,13 +5620,13 @@ "gateway" ], "x-ms-request-id": [ - "9e9ed5a2-2bec-4d35-b997-e90c12da6a4a" + "1f3c3b66-20b8-4af2-80bb-8d5b3c9f36b1" ], "x-ms-correlation-request-id": [ - "9e9ed5a2-2bec-4d35-b997-e90c12da6a4a" + "1f3c3b66-20b8-4af2-80bb-8d5b3c9f36b1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064127Z:9e9ed5a2-2bec-4d35-b997-e90c12da6a4a" + "WESTEUROPE:20160103T134853Z:1f3c3b66-20b8-4af2-80bb-8d5b3c9f36b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4471,7 +5635,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:27 GMT" + "Sun, 03 Jan 2016 13:48:53 GMT" ] }, "StatusCode": 404 @@ -4483,13 +5647,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e1fca3a-ff17-4eac-938d-ca6b714f98a7" + "027e0b81-08c7-4dd6-a28e-29826e71eebd" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4504,16 +5668,16 @@ "no-cache" ], "x-ms-request-id": [ - "9f764699-10f1-46fb-a0cc-71de9b9da373" + "6dd62718-a70a-4a84-bfc5-daf96a541bdb" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "9f764699-10f1-46fb-a0cc-71de9b9da373" + "6dd62718-a70a-4a84-bfc5-daf96a541bdb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064032Z:9f764699-10f1-46fb-a0cc-71de9b9da373" + "WESTEUROPE:20160103T134817Z:6dd62718-a70a-4a84-bfc5-daf96a541bdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4522,7 +5686,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:32 GMT" + "Sun, 03 Jan 2016 13:48:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4537,13 +5701,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d036102-c621-42fd-8033-17b88e464dd6" + "da34a8cb-c76c-4d96-b208-fca22a053b5e" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4558,16 +5722,16 @@ "no-cache" ], "x-ms-request-id": [ - "53cf5019-34f2-4d2b-8da6-adb13e2a0e55" + "432d94f8-05c5-44a2-9eb0-582a32707e48" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "53cf5019-34f2-4d2b-8da6-adb13e2a0e55" + "432d94f8-05c5-44a2-9eb0-582a32707e48" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064042Z:53cf5019-34f2-4d2b-8da6-adb13e2a0e55" + "WESTEUROPE:20160103T134825Z:432d94f8-05c5-44a2-9eb0-582a32707e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4576,7 +5740,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:41 GMT" + "Sun, 03 Jan 2016 13:48:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4591,13 +5755,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7df1853-ff91-43f6-a718-246f0fce606d" + "4b6ae954-2ab6-4ab7-8d7e-f7a821a255df" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4612,16 +5776,16 @@ "no-cache" ], "x-ms-request-id": [ - "bd55fc70-cc53-4432-a315-b3974dc330d8" + "7ab0c348-6e73-4538-9e19-2335eff91847" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "bd55fc70-cc53-4432-a315-b3974dc330d8" + "7ab0c348-6e73-4538-9e19-2335eff91847" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064100Z:bd55fc70-cc53-4432-a315-b3974dc330d8" + "WESTEUROPE:20160103T134834Z:7ab0c348-6e73-4538-9e19-2335eff91847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4630,7 +5794,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:59 GMT" + "Sun, 03 Jan 2016 13:48:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4645,13 +5809,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce33fcc2-ecf4-49e8-9bf6-f69e031026e3" + "e3b97364-f253-4931-a230-db0072560642" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4666,16 +5830,16 @@ "no-cache" ], "x-ms-request-id": [ - "b601be75-9941-4afe-8b52-13fc9dc1b6c9" + "1ea306c8-6292-4ec1-87a1-6d74936c2bfa" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "b601be75-9941-4afe-8b52-13fc9dc1b6c9" + "1ea306c8-6292-4ec1-87a1-6d74936c2bfa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064107Z:b601be75-9941-4afe-8b52-13fc9dc1b6c9" + "WESTEUROPE:20160103T134839Z:1ea306c8-6292-4ec1-87a1-6d74936c2bfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4684,7 +5848,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:06 GMT" + "Sun, 03 Jan 2016 13:48:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4699,13 +5863,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6ed5625-8561-414e-950b-7905803491b6" + "f0342be2-d44b-4afa-b34d-e5496335b565" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4720,16 +5884,16 @@ "no-cache" ], "x-ms-request-id": [ - "b861db90-2f78-4e77-9f6d-9cc14314012d" + "2592e95b-8d01-47ce-a8aa-69e21410c8e3" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "b861db90-2f78-4e77-9f6d-9cc14314012d" + "2592e95b-8d01-47ce-a8aa-69e21410c8e3" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064108Z:b861db90-2f78-4e77-9f6d-9cc14314012d" + "WESTEUROPE:20160103T134840Z:2592e95b-8d01-47ce-a8aa-69e21410c8e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4738,7 +5902,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:07 GMT" + "Sun, 03 Jan 2016 13:48:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4753,13 +5917,13 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6018a52-6760-440e-9b90-fbb8bac2ef47" + "d70d5dcd-4009-4ee0-8cb7-85040844c3e8" ], "User-Agent": [ "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"key1\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"key2\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\"\r\n}", + "ResponseBody": "{\r\n \"key1\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"key2\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\"\r\n}", "ResponseHeaders": { "Content-Length": [ "198" @@ -4774,16 +5938,16 @@ "no-cache" ], "x-ms-request-id": [ - "c39bf1bc-7362-4ace-98f0-fbc8b3d13e8d" + "6b5d55de-283e-4c49-a7d3-b030c467f47e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "c39bf1bc-7362-4ace-98f0-fbc8b3d13e8d" + "6b5d55de-283e-4c49-a7d3-b030c467f47e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064128Z:c39bf1bc-7362-4ace-98f0-fbc8b3d13e8d" + "WESTEUROPE:20160103T134853Z:6b5d55de-283e-4c49-a7d3-b030c467f47e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4792,7 +5956,7 @@ "no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:28 GMT" + "Sun, 03 Jan 2016 13:48:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4804,7 +5968,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4816,10 +5980,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "5b60ac30-af50-4117-ab75-8e4d98147c5e" + "7d513c3f-c32f-4eb0-976e-eca9623e3d9a" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1126" @@ -4828,7 +5992,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e8301a77-077e-4db8-aa24-d796b7682243" + "cf8cfc4b-f26c-4983-b4d8-b2eaccba639e" ], "X-Content-Type-Options": [ "nosniff" @@ -4843,19 +6007,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "81dd0c3e-c585-4259-9bdf-016f852f9aac" + "b29ba2cf-71a0-48c7-8b66-e15a4390ede7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064037Z:81dd0c3e-c585-4259-9bdf-016f852f9aac" + "WESTEUROPE:20160103T134822Z:b29ba2cf-71a0-48c7-8b66-e15a4390ede7" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:37 GMT" + "Sun, 03 Jan 2016 13:48:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4867,7 +6031,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4879,10 +6043,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Enabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1125" @@ -4891,7 +6055,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "e5819e9f-214d-48a9-bca9-7999e33aee5e" + "0f28389b-5632-40d4-8c8a-b39fabfe7ed4" ], "X-Content-Type-Options": [ "nosniff" @@ -4906,19 +6070,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" ], "x-ms-correlation-request-id": [ - "fbaf348d-eea5-4fa6-a467-b7889ff556f2" + "de2b9f7d-bdf9-439a-87d4-40325dd83e23" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064103Z:fbaf348d-eea5-4fa6-a467-b7889ff556f2" + "WESTEUROPE:20160103T134836Z:de2b9f7d-bdf9-439a-87d4-40325dd83e23" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:03 GMT" + "Sun, 03 Jan 2016 13:48:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4930,7 +6094,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI4MDAzL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -4942,10 +6106,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "fb5ef4b8-aeff-41a4-a79a-9d312928c5eb" + "0b549b58-5f5a-43ad-9b56-2e9ccb134947" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/databases/sql-td-cmdlet-db8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003Sqltdcmdletdb8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1126" @@ -4954,7 +6118,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1b1f6275-d7cd-4094-904a-876e3474babb" + "2017fdb5-be9c-419c-9e94-b5274d18a72b" ], "X-Content-Type-Options": [ "nosniff" @@ -4969,19 +6133,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1199" ], "x-ms-correlation-request-id": [ - "a85e254a-ed3b-40c6-ba70-f816781b06d3" + "0ed6ba66-91ac-4707-b6ea-b2328e784871" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064131Z:a85e254a-ed3b-40c6-ba70-f816781b06d3" + "WESTEUROPE:20160103T134900Z:0ed6ba66-91ac-4707-b6ea-b2328e784871" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:31 GMT" + "Sun, 03 Jan 2016 13:48:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -4999,7 +6163,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "51bf2e5d-bca2-41eb-a1db-5b75e41e3f82" + "c9b61476-072d-41de-97a8-f7b57b449c19" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5011,7 +6175,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3dcde277-cd8d-422f-8b0b-a39a400f8043" + "569fd217-86a5-4b31-9eb4-5a9fa038695c" ], "X-Content-Type-Options": [ "nosniff" @@ -5023,19 +6187,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14946" ], "x-ms-correlation-request-id": [ - "563f27f2-ce7f-4e8a-b96e-141a38595c22" + "a973cea4-f7a5-43d4-84d7-31f5e30cf8c8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064040Z:563f27f2-ce7f-4e8a-b96e-141a38595c22" + "WESTEUROPE:20160103T134823Z:a973cea4-f7a5-43d4-84d7-31f5e30cf8c8" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:40 GMT" + "Sun, 03 Jan 2016 13:48:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5053,7 +6217,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "d85fd6a4-281e-4233-a6c9-7f925fc793e8" + "8475fcd2-b6c0-41ee-93eb-85fa1d5ce418" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5065,7 +6229,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "988285b7-fbe8-4de5-8bb6-99b5b5a258f2" + "c88edbd9-35c3-414e-ab81-e662051278f2" ], "X-Content-Type-Options": [ "nosniff" @@ -5077,19 +6241,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14944" ], "x-ms-correlation-request-id": [ - "0c946b55-130c-43b9-a87a-2f1e969d5080" + "303d268a-10c0-45da-94cf-285af03f6a12" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064056Z:0c946b55-130c-43b9-a87a-2f1e969d5080" + "WESTEUROPE:20160103T134831Z:303d268a-10c0-45da-94cf-285af03f6a12" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:56 GMT" + "Sun, 03 Jan 2016 13:48:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5107,7 +6271,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "063985d8-cae8-40e9-86c0-6f416b5d76fe" + "dbb16379-9b90-4001-866e-d98b2460f28c" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5119,7 +6283,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "a78ffa66-9cda-4b5b-a559-32f4aea793b7" + "560b9b11-3152-407e-bb33-59d7db031e41" ], "X-Content-Type-Options": [ "nosniff" @@ -5131,19 +6295,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14942" ], "x-ms-correlation-request-id": [ - "933f098d-16b7-4deb-af52-8000f7628676" + "118c49a2-c7b8-4ba3-b59e-f28d9646d3fa" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064106Z:933f098d-16b7-4deb-af52-8000f7628676" + "WESTEUROPE:20160103T134838Z:118c49a2-c7b8-4ba3-b59e-f28d9646d3fa" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:05 GMT" + "Sun, 03 Jan 2016 13:48:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5161,7 +6325,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ecc34d91-1e3f-4aea-9517-4efb3a67ed22" + "f7b34459-eeec-4167-b975-c782958d56aa" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": \"********\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver8003\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", @@ -5173,7 +6337,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2019ed04-997b-4166-9d46-04279cbafabf" + "69ffdffc-d2d2-407c-9cf4-8c57c26eec9b" ], "X-Content-Type-Options": [ "nosniff" @@ -5185,19 +6349,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14937" ], "x-ms-correlation-request-id": [ - "b2850865-14c4-485c-ab16-967ecc251c22" + "194dfb42-cdae-4957-81f9-4749b2f1204a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064121Z:b2850865-14c4-485c-ab16-967ecc251c22" + "WESTEUROPE:20160103T134848Z:194dfb42-cdae-4957-81f9-4749b2f1204a" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:20 GMT" + "Sun, 03 Jan 2016 13:48:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5209,7 +6373,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvYXVkaXRpbmdQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5221,10 +6385,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "51bf2e5d-bca2-41eb-a1db-5b75e41e3f82" + "c9b61476-072d-41de-97a8-f7b57b449c19" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1038" @@ -5233,7 +6397,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "868145b4-084e-47e4-bdce-742c21ccab96" + "762ab093-44de-46da-8cbe-765c533f522b" ], "X-Content-Type-Options": [ "nosniff" @@ -5248,19 +6412,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "f7adc49b-77ff-4406-be61-99cf681cb0cb" + "b469916f-7ffb-4027-95bb-526b8e25c3f0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064048Z:f7adc49b-77ff-4406-be61-99cf681cb0cb" + "WESTEUROPE:20160103T134827Z:b469916f-7ffb-4027-95bb-526b8e25c3f0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:40:47 GMT" + "Sun, 03 Jan 2016 13:48:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -5272,7 +6436,7 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzgwMDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjgwMDMvYXVkaXRpbmdQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -5284,10 +6448,10 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "063985d8-cae8-40e9-86c0-6f416b5d76fe" + "dbb16379-9b90-4001-866e-d98b2460f28c" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"O9gN9C6gxpJTyWM5hyPwo3SndoVDKh8N55089mii5WNqCDJGUfYzFRmiG/HXgccRNBemekfaqQt+9pSohs9h3A==\",\r\n \"storageAccountSecondaryKey\": \"UywjCZs6RuJ9AgFM8evPSh3FbBiqsunc41uMNnzOh1+cIzV4034qjlgIxEIZGyrkd8WpIibk16Vx4fweoa1fbA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg8003/providers/Microsoft.Sql/servers/sql-td-cmdlet-server8003/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Disabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets8003\",\r\n \"storageAccountKey\": \"piXuKgGRWm74tzzPFJgq4pz9tQ0UThY10AvqDz0uDDVz2J/JK1b2SCoh6WBoPIX4aOWbY9pB92pXiH8HFupXOA==\",\r\n \"storageAccountSecondaryKey\": \"BBhMa7OCy9M4Lf+yietyctq9RmgZebLfGwcjxZN5kJ26qzibp7seDx9c+Lc9xUeAD5gPFSd8cPPVBl+9+G05cA==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets8003.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg8003\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver8003\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1125" @@ -5296,7 +6460,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "2cd67622-e6cc-47ca-9c65-d7a51adcd671" + "69e67aa5-3319-43ee-85ba-27483f0b2ee8" ], "X-Content-Type-Options": [ "nosniff" @@ -5311,19 +6475,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1190" ], "x-ms-correlation-request-id": [ - "f28cd64f-60bf-4fd8-ba24-1ca00b8501e9" + "75e95c28-203a-4373-96ed-3c7b9b39d488" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151207T064111Z:f28cd64f-60bf-4fd8-ba24-1ca00b8501e9" + "WESTEUROPE:20160103T134842Z:75e95c28-203a-4373-96ed-3c7b9b39d488" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Mon, 07 Dec 2015 06:41:11 GMT" + "Sun, 03 Jan 2016 13:48:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" diff --git a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json index 5428d731ae5e..be86755a76f9 100644 --- a/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json +++ b/src/ResourceManager/Sql/Commands.Sql.Test/SessionRecords/Microsoft.Azure.Commands.Sql.Test.ScenarioTests.ThreatDetectionTests/ThreatDetectionDatabaseUpdatePolicy.json @@ -28,16 +28,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14858" + "14857" ], "x-ms-request-id": [ - "692f91f6-aaf0-4a3f-9fad-72ae26e2f032" + "a7a0b809-7ca3-4115-aef1-6daca784c745" ], "x-ms-correlation-request-id": [ - "692f91f6-aaf0-4a3f-9fad-72ae26e2f032" + "a7a0b809-7ca3-4115-aef1-6daca784c745" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074622Z:692f91f6-aaf0-4a3f-9fad-72ae26e2f032" + "WESTEUROPE:20160103T135208Z:a7a0b809-7ca3-4115-aef1-6daca784c745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,7 +46,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:21 GMT" + "Sun, 03 Jan 2016 13:52:08 GMT" ] }, "StatusCode": 404 @@ -85,13 +85,13 @@ "1199" ], "x-ms-request-id": [ - "356c74a1-35d0-490d-9ba9-970bb49f4e89" + "8da6edd5-1ac0-4869-ab8c-03407337cc96" ], "x-ms-correlation-request-id": [ - "356c74a1-35d0-490d-9ba9-970bb49f4e89" + "8da6edd5-1ac0-4869-ab8c-03407337cc96" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074626Z:356c74a1-35d0-490d-9ba9-970bb49f4e89" + "WESTEUROPE:20160103T135212Z:8da6edd5-1ac0-4869-ab8c-03407337cc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -100,7 +100,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:26 GMT" + "Sun, 03 Jan 2016 13:52:11 GMT" ] }, "StatusCode": 201 @@ -130,16 +130,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14856" ], "x-ms-request-id": [ - "3853f106-1684-4b63-bff9-b4707474a22e" + "84945934-b19a-48e9-b98f-51371b1dfe5f" ], "x-ms-correlation-request-id": [ - "3853f106-1684-4b63-bff9-b4707474a22e" + "84945934-b19a-48e9-b98f-51371b1dfe5f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074626Z:3853f106-1684-4b63-bff9-b4707474a22e" + "WESTEUROPE:20160103T135212Z:84945934-b19a-48e9-b98f-51371b1dfe5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:26 GMT" + "Sun, 03 Jan 2016 13:52:12 GMT" ] }, "StatusCode": 200 @@ -169,10 +169,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-11-12T07:46:32.1667586Z\",\r\n \"duration\": \"PT3.723348S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2016-01-03T13:52:16.9971692Z\",\r\n \"duration\": \"PT2.9419656S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1803" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,19 +184,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587542924970342777?api-version=2014-04-01-preview" + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Resources/deployments/sql-td-test-env-setup/operationStatuses/08587497777514225004?api-version=2014-04-01-preview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c" + "4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340" ], "x-ms-correlation-request-id": [ - "bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c" + "4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074633Z:bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c" + "WESTEUROPE:20160103T135218Z:4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -205,7 +205,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:33 GMT" + "Sun, 03 Jan 2016 13:52:18 GMT" ] }, "StatusCode": 201 @@ -235,16 +235,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14856" + "14855" ], "x-ms-request-id": [ - "00c47369-109b-4e7a-bddc-7f9dcfd33dbc" + "114d74d7-038f-4a8a-b707-a4fe856330ac" ], "x-ms-correlation-request-id": [ - "00c47369-109b-4e7a-bddc-7f9dcfd33dbc" + "114d74d7-038f-4a8a-b707-a4fe856330ac" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074635Z:00c47369-109b-4e7a-bddc-7f9dcfd33dbc" + "WESTEUROPE:20160103T135220Z:114d74d7-038f-4a8a-b707-a4fe856330ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,7 +253,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:34 GMT" + "Sun, 03 Jan 2016 13:52:19 GMT" ] }, "StatusCode": 200 @@ -283,16 +283,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14853" ], "x-ms-request-id": [ - "ca1c81b8-6af4-4975-8642-c31027e2d646" + "2e361e64-167b-49a0-b787-7a3ad8218940" ], "x-ms-correlation-request-id": [ - "ca1c81b8-6af4-4975-8642-c31027e2d646" + "2e361e64-167b-49a0-b787-7a3ad8218940" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074639Z:ca1c81b8-6af4-4975-8642-c31027e2d646" + "WESTEUROPE:20160103T135223Z:2e361e64-167b-49a0-b787-7a3ad8218940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -301,7 +301,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:38 GMT" + "Sun, 03 Jan 2016 13:52:23 GMT" ] }, "StatusCode": 200 @@ -331,16 +331,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" + "14851" ], "x-ms-request-id": [ - "21be7829-facd-4167-b6b3-1e4b8ab04855" + "5cf17729-dd1f-4695-b586-87c61586fc1c" ], "x-ms-correlation-request-id": [ - "21be7829-facd-4167-b6b3-1e4b8ab04855" + "5cf17729-dd1f-4695-b586-87c61586fc1c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074642Z:21be7829-facd-4167-b6b3-1e4b8ab04855" + "WESTEUROPE:20160103T135227Z:5cf17729-dd1f-4695-b586-87c61586fc1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -349,7 +349,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:42 GMT" + "Sun, 03 Jan 2016 13:52:26 GMT" ] }, "StatusCode": 200 @@ -379,16 +379,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" + "14849" ], "x-ms-request-id": [ - "e372f5d8-eabc-4da1-a47a-ad5fa5659fe8" + "6006a098-c7f3-4304-a07d-fae2e3bb16a0" ], "x-ms-correlation-request-id": [ - "e372f5d8-eabc-4da1-a47a-ad5fa5659fe8" + "6006a098-c7f3-4304-a07d-fae2e3bb16a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074646Z:e372f5d8-eabc-4da1-a47a-ad5fa5659fe8" + "WESTEUROPE:20160103T135230Z:6006a098-c7f3-4304-a07d-fae2e3bb16a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -397,7 +397,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:45 GMT" + "Sun, 03 Jan 2016 13:52:30 GMT" ] }, "StatusCode": 200 @@ -412,10 +412,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -427,16 +427,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" + "14847" ], "x-ms-request-id": [ - "4c482b6c-1ff6-4edc-9333-0f9baa944e4e" + "f6a87dd6-ef96-4ed2-9e4d-c6e8ceb0c27e" ], "x-ms-correlation-request-id": [ - "4c482b6c-1ff6-4edc-9333-0f9baa944e4e" + "f6a87dd6-ef96-4ed2-9e4d-c6e8ceb0c27e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074650Z:4c482b6c-1ff6-4edc-9333-0f9baa944e4e" + "WESTEUROPE:20160103T135234Z:f6a87dd6-ef96-4ed2-9e4d-c6e8ceb0c27e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +445,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:49 GMT" + "Sun, 03 Jan 2016 13:52:33 GMT" ] }, "StatusCode": 200 @@ -460,10 +460,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Length": [ - "658" + "12" ], "Content-Type": [ "application/json; charset=utf-8" @@ -475,16 +475,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14846" + "14845" ], "x-ms-request-id": [ - "36a1b01d-e998-490d-93f4-7d3610449b4c" + "b5ab9a9e-cb36-48a4-9e83-5059be68ba7a" ], "x-ms-correlation-request-id": [ - "36a1b01d-e998-490d-93f4-7d3610449b4c" + "b5ab9a9e-cb36-48a4-9e83-5059be68ba7a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074653Z:36a1b01d-e998-490d-93f4-7d3610449b4c" + "WESTEUROPE:20160103T135238Z:b5ab9a9e-cb36-48a4-9e83-5059be68ba7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -493,7 +493,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:53 GMT" + "Sun, 03 Jan 2016 13:52:37 GMT" ] }, "StatusCode": 200 @@ -508,7 +508,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -523,16 +523,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" + "14843" ], "x-ms-request-id": [ - "132ca980-bed5-42c4-b7b0-fd97fe3f6b2f" + "c7a91924-128c-410b-9a8d-eff72bae4738" ], "x-ms-correlation-request-id": [ - "132ca980-bed5-42c4-b7b0-fd97fe3f6b2f" + "c7a91924-128c-410b-9a8d-eff72bae4738" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074657Z:132ca980-bed5-42c4-b7b0-fd97fe3f6b2f" + "WESTEUROPE:20160103T135241Z:c7a91924-128c-410b-9a8d-eff72bae4738" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -541,7 +541,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:57 GMT" + "Sun, 03 Jan 2016 13:52:41 GMT" ] }, "StatusCode": 200 @@ -556,7 +556,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -571,16 +571,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" + "14841" ], "x-ms-request-id": [ - "d3104ed4-44d4-4c39-9928-730279330407" + "75efa43f-ae3c-4b60-b53b-7ecf5336ca1c" ], "x-ms-correlation-request-id": [ - "d3104ed4-44d4-4c39-9928-730279330407" + "75efa43f-ae3c-4b60-b53b-7ecf5336ca1c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074701Z:d3104ed4-44d4-4c39-9928-730279330407" + "WESTEUROPE:20160103T135245Z:75efa43f-ae3c-4b60-b53b-7ecf5336ca1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +589,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:00 GMT" + "Sun, 03 Jan 2016 13:52:45 GMT" ] }, "StatusCode": 200 @@ -604,7 +604,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -619,16 +619,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" + "14839" ], "x-ms-request-id": [ - "2f84fc73-514d-4f63-a0b2-ca4270d0bd44" + "2175ed20-6a2b-4e08-bb20-8930863a6d6b" ], "x-ms-correlation-request-id": [ - "2f84fc73-514d-4f63-a0b2-ca4270d0bd44" + "2175ed20-6a2b-4e08-bb20-8930863a6d6b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074704Z:2f84fc73-514d-4f63-a0b2-ca4270d0bd44" + "WESTEUROPE:20160103T135249Z:2175ed20-6a2b-4e08-bb20-8930863a6d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -637,7 +637,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:04 GMT" + "Sun, 03 Jan 2016 13:52:48 GMT" ] }, "StatusCode": 200 @@ -652,7 +652,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -667,16 +667,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14835" + "14837" ], "x-ms-request-id": [ - "b9b91df3-7d06-4cf7-b02a-d1963da097b3" + "5bc42d12-8624-4136-becb-751f9aef57a2" ], "x-ms-correlation-request-id": [ - "b9b91df3-7d06-4cf7-b02a-d1963da097b3" + "5bc42d12-8624-4136-becb-751f9aef57a2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074708Z:b9b91df3-7d06-4cf7-b02a-d1963da097b3" + "WESTEUROPE:20160103T135252Z:5bc42d12-8624-4136-becb-751f9aef57a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,7 +685,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:07 GMT" + "Sun, 03 Jan 2016 13:52:51 GMT" ] }, "StatusCode": 200 @@ -700,7 +700,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -715,16 +715,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14835" ], "x-ms-request-id": [ - "1664392c-354e-4605-8fa9-7557a4b7dcc3" + "28f42c79-2acb-4691-9db3-350b1e9648dc" ], "x-ms-correlation-request-id": [ - "1664392c-354e-4605-8fa9-7557a4b7dcc3" + "28f42c79-2acb-4691-9db3-350b1e9648dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074711Z:1664392c-354e-4605-8fa9-7557a4b7dcc3" + "WESTEUROPE:20160103T135256Z:28f42c79-2acb-4691-9db3-350b1e9648dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -733,7 +733,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:11 GMT" + "Sun, 03 Jan 2016 13:52:56 GMT" ] }, "StatusCode": 200 @@ -748,7 +748,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:49.4264485Z\",\r\n \"duration\": \"PT16.0254439S\",\r\n \"trackingId\": \"95f827a8-2250-4f20-b3b5-939f14d5ba5a\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "658" @@ -763,16 +763,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" + "14833" ], "x-ms-request-id": [ - "d4a8db7f-2714-4e7d-9b92-0696426c517c" + "4a8d73f2-9bb2-4869-ad21-4c4b0e5339dc" ], "x-ms-correlation-request-id": [ - "d4a8db7f-2714-4e7d-9b92-0696426c517c" + "4a8d73f2-9bb2-4869-ad21-4c4b0e5339dc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074715Z:d4a8db7f-2714-4e7d-9b92-0696426c517c" + "WESTEUROPE:20160103T135259Z:4a8d73f2-9bb2-4869-ad21-4c4b0e5339dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -781,7 +781,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:14 GMT" + "Sun, 03 Jan 2016 13:52:59 GMT" ] }, "StatusCode": 200 @@ -796,10 +796,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:17.2984152Z\",\r\n \"duration\": \"PT43.8974106S\",\r\n \"trackingId\": \"45d27a97-def5-42e0-a3dc-613cd39375eb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "658" ], "Content-Type": [ "application/json; charset=utf-8" @@ -811,16 +811,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" + "14831" ], "x-ms-request-id": [ - "2f2b0707-b068-4c2e-af97-9ec78e43c1f5" + "4ef57ac9-c355-4d28-a4cd-a021b964badc" ], "x-ms-correlation-request-id": [ - "2f2b0707-b068-4c2e-af97-9ec78e43c1f5" + "4ef57ac9-c355-4d28-a4cd-a021b964badc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074719Z:2f2b0707-b068-4c2e-af97-9ec78e43c1f5" + "WESTEUROPE:20160103T135303Z:4ef57ac9-c355-4d28-a4cd-a021b964badc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -829,7 +829,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:18 GMT" + "Sun, 03 Jan 2016 13:53:03 GMT" ] }, "StatusCode": 200 @@ -844,10 +844,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:17.2984152Z\",\r\n \"duration\": \"PT43.8974106S\",\r\n \"trackingId\": \"45d27a97-def5-42e0-a3dc-613cd39375eb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:38.4830009Z\",\r\n \"duration\": \"PT18.5963809S\",\r\n \"trackingId\": \"bb2ee720-a5f2-4d77-8866-55308ff717a8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "658" ], "Content-Type": [ "application/json; charset=utf-8" @@ -859,16 +859,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" + "14829" ], "x-ms-request-id": [ - "e83f9ea3-28ed-4d1c-9284-9a77f2e28699" + "cc35bd72-6b60-4506-8bcf-a637ea17533d" ], "x-ms-correlation-request-id": [ - "e83f9ea3-28ed-4d1c-9284-9a77f2e28699" + "cc35bd72-6b60-4506-8bcf-a637ea17533d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074722Z:e83f9ea3-28ed-4d1c-9284-9a77f2e28699" + "WESTEUROPE:20160103T135307Z:cc35bd72-6b60-4506-8bcf-a637ea17533d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,7 +877,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:22 GMT" + "Sun, 03 Jan 2016 13:53:06 GMT" ] }, "StatusCode": 200 @@ -892,10 +892,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:10.2479857Z\",\r\n \"duration\": \"PT50.3613657S\",\r\n \"trackingId\": \"9ad97ad7-8c0d-49c2-8436-2038ff5dbeb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "652" ], "Content-Type": [ "application/json; charset=utf-8" @@ -907,16 +907,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" + "14827" ], "x-ms-request-id": [ - "49fcc197-a9f1-4d2f-bb12-d3f9a5e02cad" + "39072418-3ba1-4a5f-bbb2-3c43e21c080f" ], "x-ms-correlation-request-id": [ - "49fcc197-a9f1-4d2f-bb12-d3f9a5e02cad" + "39072418-3ba1-4a5f-bbb2-3c43e21c080f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074726Z:49fcc197-a9f1-4d2f-bb12-d3f9a5e02cad" + "WESTEUROPE:20160103T135310Z:39072418-3ba1-4a5f-bbb2-3c43e21c080f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -925,7 +925,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:26 GMT" + "Sun, 03 Jan 2016 13:53:10 GMT" ] }, "StatusCode": 200 @@ -940,10 +940,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:10.2479857Z\",\r\n \"duration\": \"PT50.3613657S\",\r\n \"trackingId\": \"9ad97ad7-8c0d-49c2-8436-2038ff5dbeb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "652" ], "Content-Type": [ "application/json; charset=utf-8" @@ -955,16 +955,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" + "14825" ], "x-ms-request-id": [ - "c20816ea-b4cb-4ed0-a2c8-e00d411b480f" + "ce61e5fc-0389-4261-aaac-8625e191412f" ], "x-ms-correlation-request-id": [ - "c20816ea-b4cb-4ed0-a2c8-e00d411b480f" + "ce61e5fc-0389-4261-aaac-8625e191412f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074730Z:c20816ea-b4cb-4ed0-a2c8-e00d411b480f" + "WESTEUROPE:20160103T135314Z:ce61e5fc-0389-4261-aaac-8625e191412f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -973,7 +973,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:30 GMT" + "Sun, 03 Jan 2016 13:53:13 GMT" ] }, "StatusCode": 200 @@ -988,10 +988,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:10.2479857Z\",\r\n \"duration\": \"PT50.3613657S\",\r\n \"trackingId\": \"9ad97ad7-8c0d-49c2-8436-2038ff5dbeb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "1298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1003,16 +1003,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" + "14823" ], "x-ms-request-id": [ - "08e84cf1-d1bb-4bb8-95c7-99a06cd3e452" + "a1492be2-3bba-4617-8558-35e8c2d4e684" ], "x-ms-correlation-request-id": [ - "08e84cf1-d1bb-4bb8-95c7-99a06cd3e452" + "a1492be2-3bba-4617-8558-35e8c2d4e684" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074734Z:08e84cf1-d1bb-4bb8-95c7-99a06cd3e452" + "WESTEUROPE:20160103T135318Z:a1492be2-3bba-4617-8558-35e8c2d4e684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1021,7 +1021,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:33 GMT" + "Sun, 03 Jan 2016 13:53:17 GMT" ] }, "StatusCode": 200 @@ -1036,10 +1036,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:17.8020567Z\",\r\n \"duration\": \"PT57.9154367S\",\r\n \"trackingId\": \"ba24d084-50af-4db9-b7a4-ffc1306415b3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "1298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1051,16 +1051,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" + "14821" ], "x-ms-request-id": [ - "722a4a70-78d7-4551-9216-60df90350257" + "34f7bb79-48a1-4f9a-982e-668e4e08bfd5" ], "x-ms-correlation-request-id": [ - "722a4a70-78d7-4551-9216-60df90350257" + "34f7bb79-48a1-4f9a-982e-668e4e08bfd5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074737Z:722a4a70-78d7-4551-9216-60df90350257" + "WESTEUROPE:20160103T135322Z:34f7bb79-48a1-4f9a-982e-668e4e08bfd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1069,7 +1069,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:37 GMT" + "Sun, 03 Jan 2016 13:53:21 GMT" ] }, "StatusCode": 200 @@ -1084,10 +1084,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:24.6200051Z\",\r\n \"duration\": \"PT1M4.7333851S\",\r\n \"trackingId\": \"cebca21c-7044-4234-ae80-55e9394221cb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "1299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,16 +1099,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" + "14819" ], "x-ms-request-id": [ - "9e71702d-ae96-471b-8554-c03ffe6b1d0a" + "0791ce4d-4548-4b65-ae18-461efb226485" ], "x-ms-correlation-request-id": [ - "9e71702d-ae96-471b-8554-c03ffe6b1d0a" + "0791ce4d-4548-4b65-ae18-461efb226485" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074741Z:9e71702d-ae96-471b-8554-c03ffe6b1d0a" + "WESTEUROPE:20160103T135326Z:0791ce4d-4548-4b65-ae18-461efb226485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1117,7 +1117,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:41 GMT" + "Sun, 03 Jan 2016 13:53:26 GMT" ] }, "StatusCode": 200 @@ -1132,10 +1132,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:24.6200051Z\",\r\n \"duration\": \"PT1M4.7333851S\",\r\n \"trackingId\": \"cebca21c-7044-4234-ae80-55e9394221cb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "1299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1147,16 +1147,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" + "14816" ], "x-ms-request-id": [ - "512de6db-b8bf-4617-92b8-d71f3e817b5e" + "e93515bc-b595-4ae8-8da1-da8181832e6f" ], "x-ms-correlation-request-id": [ - "512de6db-b8bf-4617-92b8-d71f3e817b5e" + "e93515bc-b595-4ae8-8da1-da8181832e6f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074745Z:512de6db-b8bf-4617-92b8-d71f3e817b5e" + "WESTEUROPE:20160103T135329Z:e93515bc-b595-4ae8-8da1-da8181832e6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1165,7 +1165,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:45 GMT" + "Sun, 03 Jan 2016 13:53:29 GMT" ] }, "StatusCode": 200 @@ -1180,10 +1180,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:32.0861318Z\",\r\n \"duration\": \"PT1M12.1995118S\",\r\n \"trackingId\": \"a74cfa25-58d8-4f96-ae46-81134f1b1454\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1195,16 +1195,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14814" ], "x-ms-request-id": [ - "156995db-8977-42fe-9af6-db19e4efd20e" + "8cbb3d76-45fb-4636-b499-511753ea6520" ], "x-ms-correlation-request-id": [ - "156995db-8977-42fe-9af6-db19e4efd20e" + "8cbb3d76-45fb-4636-b499-511753ea6520" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074749Z:156995db-8977-42fe-9af6-db19e4efd20e" + "WESTEUROPE:20160103T135333Z:8cbb3d76-45fb-4636-b499-511753ea6520" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1213,7 +1213,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:48 GMT" + "Sun, 03 Jan 2016 13:53:33 GMT" ] }, "StatusCode": 200 @@ -1228,10 +1228,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:32.0861318Z\",\r\n \"duration\": \"PT1M12.1995118S\",\r\n \"trackingId\": \"a74cfa25-58d8-4f96-ae46-81134f1b1454\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2007" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1243,16 +1243,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14812" ], "x-ms-request-id": [ - "96e9707b-c753-4ce3-90b3-59a16f02efb4" + "89c6aec2-1056-4b4c-8226-210d89c748b2" ], "x-ms-correlation-request-id": [ - "96e9707b-c753-4ce3-90b3-59a16f02efb4" + "89c6aec2-1056-4b4c-8226-210d89c748b2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074753Z:96e9707b-c753-4ce3-90b3-59a16f02efb4" + "WESTEUROPE:20160103T135337Z:89c6aec2-1056-4b4c-8226-210d89c748b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1261,7 +1261,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:52 GMT" + "Sun, 03 Jan 2016 13:53:37 GMT" ] }, "StatusCode": 200 @@ -1276,10 +1276,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1291,16 +1291,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14810" ], "x-ms-request-id": [ - "e1ea9e62-1544-4587-9c4f-1102bcd3cd2a" + "e9484f9c-f1f3-4e30-98dc-b2ab7304675d" ], "x-ms-correlation-request-id": [ - "e1ea9e62-1544-4587-9c4f-1102bcd3cd2a" + "e9484f9c-f1f3-4e30-98dc-b2ab7304675d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074757Z:e1ea9e62-1544-4587-9c4f-1102bcd3cd2a" + "WESTEUROPE:20160103T135341Z:e9484f9c-f1f3-4e30-98dc-b2ab7304675d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1309,7 +1309,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:56 GMT" + "Sun, 03 Jan 2016 13:53:41 GMT" ] }, "StatusCode": 200 @@ -1324,10 +1324,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1339,16 +1339,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14803" + "14808" ], "x-ms-request-id": [ - "4b6f16b7-9a1c-4cdc-b819-d6931d3ab898" + "d54d027c-d7dc-4201-84e3-f37dddb559d8" ], "x-ms-correlation-request-id": [ - "4b6f16b7-9a1c-4cdc-b819-d6931d3ab898" + "d54d027c-d7dc-4201-84e3-f37dddb559d8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074801Z:4b6f16b7-9a1c-4cdc-b819-d6931d3ab898" + "WESTEUROPE:20160103T135345Z:d54d027c-d7dc-4201-84e3-f37dddb559d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1357,7 +1357,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:00 GMT" + "Sun, 03 Jan 2016 13:53:44 GMT" ] }, "StatusCode": 200 @@ -1372,10 +1372,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1387,16 +1387,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14800" + "14806" ], "x-ms-request-id": [ - "ab0b903d-2f08-4a32-a947-913a7b0c69c2" + "27c6b85b-8154-4dc8-aec7-2271ea919d0a" ], "x-ms-correlation-request-id": [ - "ab0b903d-2f08-4a32-a947-913a7b0c69c2" + "27c6b85b-8154-4dc8-aec7-2271ea919d0a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074805Z:ab0b903d-2f08-4a32-a947-913a7b0c69c2" + "WESTEUROPE:20160103T135349Z:27c6b85b-8154-4dc8-aec7-2271ea919d0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1405,7 +1405,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:05 GMT" + "Sun, 03 Jan 2016 13:53:48 GMT" ] }, "StatusCode": 200 @@ -1420,10 +1420,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1435,16 +1435,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14798" + "14804" ], "x-ms-request-id": [ - "fb4e412c-3c0c-439c-bb2d-649ce78a6d61" + "e66382fe-eb96-428c-b694-4f88e10b3c89" ], "x-ms-correlation-request-id": [ - "fb4e412c-3c0c-439c-bb2d-649ce78a6d61" + "e66382fe-eb96-428c-b694-4f88e10b3c89" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074809Z:fb4e412c-3c0c-439c-bb2d-649ce78a6d61" + "WESTEUROPE:20160103T135353Z:e66382fe-eb96-428c-b694-4f88e10b3c89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1453,7 +1453,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:08 GMT" + "Sun, 03 Jan 2016 13:53:52 GMT" ] }, "StatusCode": 200 @@ -1468,10 +1468,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1483,16 +1483,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14796" + "14802" ], "x-ms-request-id": [ - "6e6041ae-77b5-4543-aa9c-c60a0c92a8d6" + "b898e9a0-fd4c-4d40-9efe-5f0c9741f347" ], "x-ms-correlation-request-id": [ - "6e6041ae-77b5-4543-aa9c-c60a0c92a8d6" + "b898e9a0-fd4c-4d40-9efe-5f0c9741f347" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074813Z:6e6041ae-77b5-4543-aa9c-c60a0c92a8d6" + "WESTEUROPE:20160103T135357Z:b898e9a0-fd4c-4d40-9efe-5f0c9741f347" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1501,7 +1501,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:12 GMT" + "Sun, 03 Jan 2016 13:53:57 GMT" ] }, "StatusCode": 200 @@ -1516,10 +1516,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:53:29.5381822Z\",\r\n \"duration\": \"PT12.6668529S\",\r\n \"trackingId\": \"a712124f-30f4-4a7f-adb6-bd022e6bf883\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1531,16 +1531,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14792" + "14800" ], "x-ms-request-id": [ - "5cf70568-b0b1-4d54-b3ca-f2c8b080b046" + "6e12ba6d-6e03-4e20-9d60-ff58446cd3ec" ], "x-ms-correlation-request-id": [ - "5cf70568-b0b1-4d54-b3ca-f2c8b080b046" + "6e12ba6d-6e03-4e20-9d60-ff58446cd3ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074817Z:5cf70568-b0b1-4d54-b3ca-f2c8b080b046" + "WESTEUROPE:20160103T135401Z:6e12ba6d-6e03-4e20-9d60-ff58446cd3ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1549,7 +1549,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:16 GMT" + "Sun, 03 Jan 2016 13:54:00 GMT" ] }, "StatusCode": 200 @@ -1564,10 +1564,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1579,16 +1579,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14790" + "14798" ], "x-ms-request-id": [ - "ee34c722-356e-4fe5-8f4d-a9964ea4781d" + "2868cff2-441c-40f5-903e-f9bca6b25a86" ], "x-ms-correlation-request-id": [ - "ee34c722-356e-4fe5-8f4d-a9964ea4781d" + "2868cff2-441c-40f5-903e-f9bca6b25a86" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074821Z:ee34c722-356e-4fe5-8f4d-a9964ea4781d" + "WESTEUROPE:20160103T135404Z:2868cff2-441c-40f5-903e-f9bca6b25a86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1597,7 +1597,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:21 GMT" + "Sun, 03 Jan 2016 13:54:04 GMT" ] }, "StatusCode": 200 @@ -1612,10 +1612,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1627,16 +1627,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14788" + "14796" ], "x-ms-request-id": [ - "b1f42848-3f47-4960-9bd8-5e44755e91f9" + "aabed0b3-ae08-438c-bd01-4ff72c7de9e5" ], "x-ms-correlation-request-id": [ - "b1f42848-3f47-4960-9bd8-5e44755e91f9" + "aabed0b3-ae08-438c-bd01-4ff72c7de9e5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074825Z:b1f42848-3f47-4960-9bd8-5e44755e91f9" + "WESTEUROPE:20160103T135408Z:aabed0b3-ae08-438c-bd01-4ff72c7de9e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1645,7 +1645,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:24 GMT" + "Sun, 03 Jan 2016 13:54:08 GMT" ] }, "StatusCode": 200 @@ -1660,10 +1660,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1675,16 +1675,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14786" + "14794" ], "x-ms-request-id": [ - "8e855f92-bc32-4d7b-bf73-fb7655399d66" + "d8391dec-92a2-4208-9b00-748ba2d9bfbd" ], "x-ms-correlation-request-id": [ - "8e855f92-bc32-4d7b-bf73-fb7655399d66" + "d8391dec-92a2-4208-9b00-748ba2d9bfbd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074829Z:8e855f92-bc32-4d7b-bf73-fb7655399d66" + "WESTEUROPE:20160103T135412Z:d8391dec-92a2-4208-9b00-748ba2d9bfbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1693,7 +1693,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:28 GMT" + "Sun, 03 Jan 2016 13:54:11 GMT" ] }, "StatusCode": 200 @@ -1708,10 +1708,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1723,16 +1723,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14784" + "14792" ], "x-ms-request-id": [ - "0d24b849-4a0a-4ff7-94dc-ca01ea991fc5" + "6c0b73f7-6337-494c-9949-b13d962a0c7d" ], "x-ms-correlation-request-id": [ - "0d24b849-4a0a-4ff7-94dc-ca01ea991fc5" + "6c0b73f7-6337-494c-9949-b13d962a0c7d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074832Z:0d24b849-4a0a-4ff7-94dc-ca01ea991fc5" + "WESTEUROPE:20160103T135416Z:6c0b73f7-6337-494c-9949-b13d962a0c7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1741,7 +1741,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:32 GMT" + "Sun, 03 Jan 2016 13:54:16 GMT" ] }, "StatusCode": 200 @@ -1756,10 +1756,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1771,16 +1771,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14782" + "14790" ], "x-ms-request-id": [ - "01cfbbb1-13e5-4fb3-9f9e-72e8a79acb94" + "a8be146f-cbc1-4c98-99ad-88172e9c0a1d" ], "x-ms-correlation-request-id": [ - "01cfbbb1-13e5-4fb3-9f9e-72e8a79acb94" + "a8be146f-cbc1-4c98-99ad-88172e9c0a1d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074836Z:01cfbbb1-13e5-4fb3-9f9e-72e8a79acb94" + "WESTEUROPE:20160103T135420Z:a8be146f-cbc1-4c98-99ad-88172e9c0a1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1789,7 +1789,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:36 GMT" + "Sun, 03 Jan 2016 13:54:20 GMT" ] }, "StatusCode": 200 @@ -1804,10 +1804,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:01.6250607Z\",\r\n \"duration\": \"PT44.7537314S\",\r\n \"trackingId\": \"e1d30ab9-225d-4d6a-a439-9943f66019d8\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1819,16 +1819,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14780" + "14788" ], "x-ms-request-id": [ - "a597ea10-1560-44b9-a9bf-9ba39d92bb6d" + "dce76857-9819-4845-8e9a-b90cc4409b1a" ], "x-ms-correlation-request-id": [ - "a597ea10-1560-44b9-a9bf-9ba39d92bb6d" + "dce76857-9819-4845-8e9a-b90cc4409b1a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074840Z:a597ea10-1560-44b9-a9bf-9ba39d92bb6d" + "WESTEUROPE:20160103T135424Z:dce76857-9819-4845-8e9a-b90cc4409b1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1837,7 +1837,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:40 GMT" + "Sun, 03 Jan 2016 13:54:24 GMT" ] }, "StatusCode": 200 @@ -1852,10 +1852,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:25.2092111Z\",\r\n \"duration\": \"PT1M8.3378818S\",\r\n \"trackingId\": \"1380aa9e-9b48-494a-a0bc-7e3222c8c763\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1867,16 +1867,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14778" + "14786" ], "x-ms-request-id": [ - "d491c396-7b1d-4853-8a28-cb7048fe2279" + "d9ecbe56-f58a-4409-947c-2fa424229b4c" ], "x-ms-correlation-request-id": [ - "d491c396-7b1d-4853-8a28-cb7048fe2279" + "d9ecbe56-f58a-4409-947c-2fa424229b4c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074844Z:d491c396-7b1d-4853-8a28-cb7048fe2279" + "WESTEUROPE:20160103T135428Z:d9ecbe56-f58a-4409-947c-2fa424229b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1885,7 +1885,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:43 GMT" + "Sun, 03 Jan 2016 13:54:27 GMT" ] }, "StatusCode": 200 @@ -1900,10 +1900,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:25.2092111Z\",\r\n \"duration\": \"PT1M8.3378818S\",\r\n \"trackingId\": \"1380aa9e-9b48-494a-a0bc-7e3222c8c763\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1915,16 +1915,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14776" + "14784" ], "x-ms-request-id": [ - "57503eda-6bc3-42fb-8385-8d702ce77638" + "84f84fa9-9ef0-43c4-83dd-7f24cd2f8d88" ], "x-ms-correlation-request-id": [ - "57503eda-6bc3-42fb-8385-8d702ce77638" + "84f84fa9-9ef0-43c4-83dd-7f24cd2f8d88" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074848Z:57503eda-6bc3-42fb-8385-8d702ce77638" + "WESTEUROPE:20160103T135432Z:84f84fa9-9ef0-43c4-83dd-7f24cd2f8d88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,7 +1933,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:48 GMT" + "Sun, 03 Jan 2016 13:54:32 GMT" ] }, "StatusCode": 200 @@ -1948,10 +1948,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:25.2092111Z\",\r\n \"duration\": \"PT1M8.3378818S\",\r\n \"trackingId\": \"1380aa9e-9b48-494a-a0bc-7e3222c8c763\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2009" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1963,16 +1963,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14774" + "14782" ], "x-ms-request-id": [ - "6d066835-b9d0-4bf0-b71e-e8fde0c1f8bc" + "33304f70-939f-46bc-b2a3-2817be194f64" ], "x-ms-correlation-request-id": [ - "6d066835-b9d0-4bf0-b71e-e8fde0c1f8bc" + "33304f70-939f-46bc-b2a3-2817be194f64" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074852Z:6d066835-b9d0-4bf0-b71e-e8fde0c1f8bc" + "WESTEUROPE:20160103T135436Z:33304f70-939f-46bc-b2a3-2817be194f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1981,7 +1981,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:52 GMT" + "Sun, 03 Jan 2016 13:54:36 GMT" ] }, "StatusCode": 200 @@ -1996,10 +1996,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:36.7158407Z\",\r\n \"duration\": \"PT1M19.8445114S\",\r\n \"trackingId\": \"48cc0768-3bef-4728-a4b2-4f3bb11d0c92\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2011,16 +2011,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14772" + "14780" ], "x-ms-request-id": [ - "d07d4557-fa81-44ad-8814-a6d9a5a9ae2d" + "87bc1e7c-96b1-4d34-80b2-253351b1ced7" ], "x-ms-correlation-request-id": [ - "d07d4557-fa81-44ad-8814-a6d9a5a9ae2d" + "87bc1e7c-96b1-4d34-80b2-253351b1ced7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074856Z:d07d4557-fa81-44ad-8814-a6d9a5a9ae2d" + "WESTEUROPE:20160103T135440Z:87bc1e7c-96b1-4d34-80b2-253351b1ced7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2029,7 +2029,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:48:55 GMT" + "Sun, 03 Jan 2016 13:54:39 GMT" ] }, "StatusCode": 200 @@ -2044,10 +2044,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:47:41.8295707Z\",\r\n \"duration\": \"PT1M8.0773339S\",\r\n \"trackingId\": \"8579f1e2-1ed7-418f-a856-071abf25d407\",\r\n \"statusCode\": \"GatewayTimeout\",\r\n \"statusMessage\": {\r\n \"error\": {\r\n \"code\": \"GatewayTimeout\",\r\n \"message\": \"The gateway did not receive a response from 'Microsoft.Sql' within the specified time period.\"\r\n }\r\n },\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:36.7158407Z\",\r\n \"duration\": \"PT1M19.8445114S\",\r\n \"trackingId\": \"48cc0768-3bef-4728-a4b2-4f3bb11d0c92\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1463" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2059,16 +2059,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14768" + "14778" ], "x-ms-request-id": [ - "6b06c786-558a-4d98-9639-27f3f6ec09f0" + "b31fe85c-42da-436e-b33e-3abf67741240" ], "x-ms-correlation-request-id": [ - "6b06c786-558a-4d98-9639-27f3f6ec09f0" + "b31fe85c-42da-436e-b33e-3abf67741240" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074900Z:6b06c786-558a-4d98-9639-27f3f6ec09f0" + "WESTEUROPE:20160103T135443Z:b31fe85c-42da-436e-b33e-3abf67741240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2077,7 +2077,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:00 GMT" + "Sun, 03 Jan 2016 13:54:43 GMT" ] }, "StatusCode": 200 @@ -2092,10 +2092,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:44.0872504Z\",\r\n \"duration\": \"PT1M27.2159211S\",\r\n \"trackingId\": \"a9dfc8f0-3b1f-485e-bb6d-0009aef6901a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1295" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2107,16 +2107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14766" + "14776" ], "x-ms-request-id": [ - "c9d5542f-41f9-4551-8252-545c3bcbf3c6" + "2899b06a-1e05-4ea0-9cb9-25fb7cf0ebae" ], "x-ms-correlation-request-id": [ - "c9d5542f-41f9-4551-8252-545c3bcbf3c6" + "2899b06a-1e05-4ea0-9cb9-25fb7cf0ebae" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074904Z:c9d5542f-41f9-4551-8252-545c3bcbf3c6" + "WESTEUROPE:20160103T135447Z:2899b06a-1e05-4ea0-9cb9-25fb7cf0ebae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2125,7 +2125,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:04 GMT" + "Sun, 03 Jan 2016 13:54:46 GMT" ] }, "StatusCode": 200 @@ -2140,10 +2140,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:54:44.0872504Z\",\r\n \"duration\": \"PT1M27.2159211S\",\r\n \"trackingId\": \"a9dfc8f0-3b1f-485e-bb6d-0009aef6901a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1295" + "2010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,16 +2155,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14763" + "14774" ], "x-ms-request-id": [ - "b8938a22-07fd-4a3a-bd7d-7f42c381dfdd" + "ec6711ac-d016-4a50-a4f6-6ae3458aa061" ], "x-ms-correlation-request-id": [ - "b8938a22-07fd-4a3a-bd7d-7f42c381dfdd" + "ec6711ac-d016-4a50-a4f6-6ae3458aa061" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074908Z:b8938a22-07fd-4a3a-bd7d-7f42c381dfdd" + "WESTEUROPE:20160103T135451Z:ec6711ac-d016-4a50-a4f6-6ae3458aa061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2173,7 +2173,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:08 GMT" + "Sun, 03 Jan 2016 13:54:50 GMT" ] }, "StatusCode": 200 @@ -2188,10 +2188,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:54:52.6588436Z\",\r\n \"duration\": \"PT1M35.7875143S\",\r\n \"trackingId\": \"d9192c41-b3f0-4ef1-9a2e-bf2dbf8bb431\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:16.5258689Z\",\r\n \"duration\": \"PT56.5972874S\",\r\n \"trackingId\": \"81a601a1-f03b-4404-8033-1db175920faf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:53:37.6755671Z\",\r\n \"duration\": \"PT1M17.7889471S\",\r\n \"trackingId\": \"fee18531-c10c-4a35-8573-b9a4e6e2837f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1295" + "2012" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2203,16 +2203,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14761" + "14772" ], "x-ms-request-id": [ - "8effe830-4a80-45c9-8004-3e9aba5cd624" + "da152324-6b2d-4c16-ad9f-9825dddafe6e" ], "x-ms-correlation-request-id": [ - "8effe830-4a80-45c9-8004-3e9aba5cd624" + "da152324-6b2d-4c16-ad9f-9825dddafe6e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074912Z:8effe830-4a80-45c9-8004-3e9aba5cd624" + "WESTEUROPE:20160103T135455Z:da152324-6b2d-4c16-ad9f-9825dddafe6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2221,14 +2221,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:11 GMT" + "Sun, 03 Jan 2016 13:54:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2236,10 +2236,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2251,16 +2251,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14759" + "14854" ], "x-ms-request-id": [ - "6e461018-f07a-4dda-bded-9d984437b6e5" + "2f8dc390-b3c3-4b6b-95a6-94cf94963b36" ], "x-ms-correlation-request-id": [ - "6e461018-f07a-4dda-bded-9d984437b6e5" + "2f8dc390-b3c3-4b6b-95a6-94cf94963b36" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074916Z:6e461018-f07a-4dda-bded-9d984437b6e5" + "WESTEUROPE:20160103T135220Z:2f8dc390-b3c3-4b6b-95a6-94cf94963b36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2269,14 +2269,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:15 GMT" + "Sun, 03 Jan 2016 13:52:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2284,10 +2284,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2299,16 +2299,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14756" + "14852" ], "x-ms-request-id": [ - "45744ac1-405b-446b-884e-a3deac908795" + "8a87404f-c558-4bf8-81ef-2234a53626c6" ], "x-ms-correlation-request-id": [ - "45744ac1-405b-446b-884e-a3deac908795" + "8a87404f-c558-4bf8-81ef-2234a53626c6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074920Z:45744ac1-405b-446b-884e-a3deac908795" + "WESTEUROPE:20160103T135224Z:8a87404f-c558-4bf8-81ef-2234a53626c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2317,14 +2317,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:19 GMT" + "Sun, 03 Jan 2016 13:52:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2332,10 +2332,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2347,16 +2347,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14754" + "14850" ], "x-ms-request-id": [ - "1d983f7d-b302-4174-b521-deaeac6c2e9f" + "02c14c84-de7a-4085-822b-458bf91c8752" ], "x-ms-correlation-request-id": [ - "1d983f7d-b302-4174-b521-deaeac6c2e9f" + "02c14c84-de7a-4085-822b-458bf91c8752" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074924Z:1d983f7d-b302-4174-b521-deaeac6c2e9f" + "WESTEUROPE:20160103T135227Z:02c14c84-de7a-4085-822b-458bf91c8752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2365,14 +2365,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:24 GMT" + "Sun, 03 Jan 2016 13:52:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2380,10 +2380,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2395,16 +2395,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14752" + "14848" ], "x-ms-request-id": [ - "8288f518-2fb4-4ae8-a11f-36a7f3da19ce" + "7c9303ca-caf7-4142-bcd9-8a8abdfc16ed" ], "x-ms-correlation-request-id": [ - "8288f518-2fb4-4ae8-a11f-36a7f3da19ce" + "7c9303ca-caf7-4142-bcd9-8a8abdfc16ed" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074928Z:8288f518-2fb4-4ae8-a11f-36a7f3da19ce" + "WESTEUROPE:20160103T135231Z:7c9303ca-caf7-4142-bcd9-8a8abdfc16ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2413,14 +2413,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:27 GMT" + "Sun, 03 Jan 2016 13:52:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2428,10 +2428,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2443,16 +2443,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14750" + "14846" ], "x-ms-request-id": [ - "d0e204c3-5ee3-466c-a9d8-36a0a95ad1d3" + "5c1ede7b-b4b6-4102-a16d-c747bf9e899e" ], "x-ms-correlation-request-id": [ - "d0e204c3-5ee3-466c-a9d8-36a0a95ad1d3" + "5c1ede7b-b4b6-4102-a16d-c747bf9e899e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074932Z:d0e204c3-5ee3-466c-a9d8-36a0a95ad1d3" + "WESTEUROPE:20160103T135235Z:5c1ede7b-b4b6-4102-a16d-c747bf9e899e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2461,14 +2461,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:31 GMT" + "Sun, 03 Jan 2016 13:52:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2476,10 +2476,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2491,16 +2491,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14748" + "14844" ], "x-ms-request-id": [ - "70b4a424-2caf-4a1c-8b03-1baf0a0d3174" + "76c5deb0-8b80-4622-9a0d-53927289e316" ], "x-ms-correlation-request-id": [ - "70b4a424-2caf-4a1c-8b03-1baf0a0d3174" + "76c5deb0-8b80-4622-9a0d-53927289e316" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074936Z:70b4a424-2caf-4a1c-8b03-1baf0a0d3174" + "WESTEUROPE:20160103T135238Z:76c5deb0-8b80-4622-9a0d-53927289e316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2509,14 +2509,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:35 GMT" + "Sun, 03 Jan 2016 13:52:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2524,10 +2524,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2539,16 +2539,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14746" + "14842" ], "x-ms-request-id": [ - "f87acbd7-ceef-45e7-bd94-5f086ad2f9ca" + "c5a8fb60-17b2-450c-8df0-3c43e5a710c1" ], "x-ms-correlation-request-id": [ - "f87acbd7-ceef-45e7-bd94-5f086ad2f9ca" + "c5a8fb60-17b2-450c-8df0-3c43e5a710c1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074940Z:f87acbd7-ceef-45e7-bd94-5f086ad2f9ca" + "WESTEUROPE:20160103T135242Z:c5a8fb60-17b2-450c-8df0-3c43e5a710c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2557,14 +2557,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:39 GMT" + "Sun, 03 Jan 2016 13:52:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2572,10 +2572,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2587,16 +2587,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14744" + "14840" ], "x-ms-request-id": [ - "3bd96a80-3d71-41a2-8dd5-ad5baae298a4" + "2ee44402-1bd9-464f-add8-16feb2ac3b56" ], "x-ms-correlation-request-id": [ - "3bd96a80-3d71-41a2-8dd5-ad5baae298a4" + "2ee44402-1bd9-464f-add8-16feb2ac3b56" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074943Z:3bd96a80-3d71-41a2-8dd5-ad5baae298a4" + "WESTEUROPE:20160103T135246Z:2ee44402-1bd9-464f-add8-16feb2ac3b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2605,14 +2605,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:43 GMT" + "Sun, 03 Jan 2016 13:52:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2620,10 +2620,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2635,16 +2635,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14742" + "14838" ], "x-ms-request-id": [ - "bb17ff6e-131c-4be0-b4da-a786b4a37c18" + "354f02fd-fe9c-4abb-a68e-eb81dfcab107" ], "x-ms-correlation-request-id": [ - "bb17ff6e-131c-4be0-b4da-a786b4a37c18" + "354f02fd-fe9c-4abb-a68e-eb81dfcab107" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074947Z:bb17ff6e-131c-4be0-b4da-a786b4a37c18" + "WESTEUROPE:20160103T135249Z:354f02fd-fe9c-4abb-a68e-eb81dfcab107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2653,14 +2653,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:47 GMT" + "Sun, 03 Jan 2016 13:52:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2668,10 +2668,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:15.7113958Z\",\r\n \"duration\": \"PT13.0506581S\",\r\n \"trackingId\": \"c9fadfd7-b9e7-479c-aa79-922943f585b5\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2683,16 +2683,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14740" + "14836" ], "x-ms-request-id": [ - "00bc7339-c85b-4039-a757-d610666e2113" + "6174f986-5458-4ccf-aa39-289bc9b74c73" ], "x-ms-correlation-request-id": [ - "00bc7339-c85b-4039-a757-d610666e2113" + "6174f986-5458-4ccf-aa39-289bc9b74c73" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074951Z:00bc7339-c85b-4039-a757-d610666e2113" + "WESTEUROPE:20160103T135253Z:6174f986-5458-4ccf-aa39-289bc9b74c73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2701,14 +2701,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:51 GMT" + "Sun, 03 Jan 2016 13:52:52 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2716,10 +2716,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2731,16 +2731,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14738" + "14834" ], "x-ms-request-id": [ - "dda902c7-adf2-44e1-87fe-20827ca6212a" + "26cd880c-76c2-4784-9f8a-bafe4ec61504" ], "x-ms-correlation-request-id": [ - "dda902c7-adf2-44e1-87fe-20827ca6212a" + "26cd880c-76c2-4784-9f8a-bafe4ec61504" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074955Z:dda902c7-adf2-44e1-87fe-20827ca6212a" + "WESTEUROPE:20160103T135256Z:26cd880c-76c2-4784-9f8a-bafe4ec61504" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2749,14 +2749,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:55 GMT" + "Sun, 03 Jan 2016 13:52:56 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2764,10 +2764,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2779,16 +2779,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14735" + "14832" ], "x-ms-request-id": [ - "d10ea24b-6d5a-474d-8fd1-acb0004911b7" + "f39e59da-c38b-4141-ae48-6a08bb5bd260" ], "x-ms-correlation-request-id": [ - "d10ea24b-6d5a-474d-8fd1-acb0004911b7" + "f39e59da-c38b-4141-ae48-6a08bb5bd260" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074959Z:d10ea24b-6d5a-474d-8fd1-acb0004911b7" + "WESTEUROPE:20160103T135300Z:f39e59da-c38b-4141-ae48-6a08bb5bd260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2797,14 +2797,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:49:59 GMT" + "Sun, 03 Jan 2016 13:53:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2812,10 +2812,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2827,16 +2827,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14734" + "14830" ], "x-ms-request-id": [ - "844e2406-fa2a-4a79-bec9-456595ff5537" + "4ad4d0f9-812c-4274-8d81-3fda27955d3d" ], "x-ms-correlation-request-id": [ - "844e2406-fa2a-4a79-bec9-456595ff5537" + "4ad4d0f9-812c-4274-8d81-3fda27955d3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075003Z:844e2406-fa2a-4a79-bec9-456595ff5537" + "WESTEUROPE:20160103T135304Z:4ad4d0f9-812c-4274-8d81-3fda27955d3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2845,14 +2845,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:03 GMT" + "Sun, 03 Jan 2016 13:53:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2860,10 +2860,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:49:51.6650638Z\",\r\n \"duration\": \"PT49.0043261S\",\r\n \"trackingId\": \"878798e3-207e-4827-b67b-9c3c56a120d3\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2002" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2875,16 +2875,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14731" + "14828" ], "x-ms-request-id": [ - "f56e7af4-5d3d-4c1f-b4ba-c59952d975d5" + "e6244d37-4dec-425b-8a66-7db6c5b1e8b4" ], "x-ms-correlation-request-id": [ - "f56e7af4-5d3d-4c1f-b4ba-c59952d975d5" + "e6244d37-4dec-425b-8a66-7db6c5b1e8b4" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075007Z:f56e7af4-5d3d-4c1f-b4ba-c59952d975d5" + "WESTEUROPE:20160103T135307Z:e6244d37-4dec-425b-8a66-7db6c5b1e8b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2893,14 +2893,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:07 GMT" + "Sun, 03 Jan 2016 13:53:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2908,10 +2908,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2923,16 +2923,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14729" + "14826" ], "x-ms-request-id": [ - "7fbacab2-35b6-4bb5-b338-d2e0596221b1" + "79d16689-c630-466a-906d-c59267514583" ], "x-ms-correlation-request-id": [ - "7fbacab2-35b6-4bb5-b338-d2e0596221b1" + "79d16689-c630-466a-906d-c59267514583" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075011Z:7fbacab2-35b6-4bb5-b338-d2e0596221b1" + "WESTEUROPE:20160103T135311Z:79d16689-c630-466a-906d-c59267514583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2941,14 +2941,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:10 GMT" + "Sun, 03 Jan 2016 13:53:10 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2956,10 +2956,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2971,16 +2971,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14727" + "14824" ], "x-ms-request-id": [ - "8fbed500-17dd-459f-8800-3d5ce548461b" + "e1252214-7182-4cb4-8a0b-97a9f2c2b50e" ], "x-ms-correlation-request-id": [ - "8fbed500-17dd-459f-8800-3d5ce548461b" + "e1252214-7182-4cb4-8a0b-97a9f2c2b50e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075015Z:8fbed500-17dd-459f-8800-3d5ce548461b" + "WESTEUROPE:20160103T135314Z:e1252214-7182-4cb4-8a0b-97a9f2c2b50e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2989,14 +2989,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:14 GMT" + "Sun, 03 Jan 2016 13:53:14 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3004,10 +3004,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3019,16 +3019,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14724" + "14822" ], "x-ms-request-id": [ - "1f74f5b8-fd86-4f7f-af7d-44f7b7309582" + "387f7653-7948-49d6-939f-cb54a7020d3b" ], "x-ms-correlation-request-id": [ - "1f74f5b8-fd86-4f7f-af7d-44f7b7309582" + "387f7653-7948-49d6-939f-cb54a7020d3b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075019Z:1f74f5b8-fd86-4f7f-af7d-44f7b7309582" + "WESTEUROPE:20160103T135318Z:387f7653-7948-49d6-939f-cb54a7020d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3037,14 +3037,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:18 GMT" + "Sun, 03 Jan 2016 13:53:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3052,10 +3052,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3067,16 +3067,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14722" + "14820" ], "x-ms-request-id": [ - "dac0a7c9-6ef0-4453-a1c6-4a808ef23fea" + "9ad59199-2595-4dfc-a7e3-18b02a586f26" ], "x-ms-correlation-request-id": [ - "dac0a7c9-6ef0-4453-a1c6-4a808ef23fea" + "9ad59199-2595-4dfc-a7e3-18b02a586f26" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075023Z:dac0a7c9-6ef0-4453-a1c6-4a808ef23fea" + "WESTEUROPE:20160103T135322Z:9ad59199-2595-4dfc-a7e3-18b02a586f26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3085,14 +3085,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:23 GMT" + "Sun, 03 Jan 2016 13:53:21 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3100,10 +3100,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:10.0869418Z\",\r\n \"duration\": \"PT1M7.4262041S\",\r\n \"trackingId\": \"e6ab0da1-2c91-4c76-aac3-05b6009749fb\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3115,16 +3115,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14720" + "14817" ], "x-ms-request-id": [ - "f0344a5a-450a-44d9-8daa-2490e8727ce9" + "ed4ff0b0-3ad5-4b5a-93c4-1d4af9bb8069" ], "x-ms-correlation-request-id": [ - "f0344a5a-450a-44d9-8daa-2490e8727ce9" + "ed4ff0b0-3ad5-4b5a-93c4-1d4af9bb8069" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075027Z:f0344a5a-450a-44d9-8daa-2490e8727ce9" + "WESTEUROPE:20160103T135326Z:ed4ff0b0-3ad5-4b5a-93c4-1d4af9bb8069" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3133,14 +3133,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:27 GMT" + "Sun, 03 Jan 2016 13:53:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3148,10 +3148,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3163,16 +3163,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14718" + "14815" ], "x-ms-request-id": [ - "448534de-6e63-421f-8945-edb927efa4c7" + "f71c8ef4-2e8a-4f06-9e59-5af2605a024b" ], "x-ms-correlation-request-id": [ - "448534de-6e63-421f-8945-edb927efa4c7" + "f71c8ef4-2e8a-4f06-9e59-5af2605a024b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075031Z:448534de-6e63-421f-8945-edb927efa4c7" + "WESTEUROPE:20160103T135330Z:f71c8ef4-2e8a-4f06-9e59-5af2605a024b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3181,14 +3181,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:31 GMT" + "Sun, 03 Jan 2016 13:53:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3196,10 +3196,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3211,16 +3211,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14716" + "14813" ], "x-ms-request-id": [ - "b7ae6781-f490-410e-87fb-f76c727df818" + "655aa850-9363-4d32-a02d-6b5cd6003ff6" ], "x-ms-correlation-request-id": [ - "b7ae6781-f490-410e-87fb-f76c727df818" + "655aa850-9363-4d32-a02d-6b5cd6003ff6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075035Z:b7ae6781-f490-410e-87fb-f76c727df818" + "WESTEUROPE:20160103T135334Z:655aa850-9363-4d32-a02d-6b5cd6003ff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3229,14 +3229,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:34 GMT" + "Sun, 03 Jan 2016 13:53:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3244,10 +3244,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3259,16 +3259,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14714" + "14811" ], "x-ms-request-id": [ - "d1b6ffb0-8c1d-4e4e-82c7-c21b6a003ac7" + "6c4af355-5285-4373-9825-8b35f6a33047" ], "x-ms-correlation-request-id": [ - "d1b6ffb0-8c1d-4e4e-82c7-c21b6a003ac7" + "6c4af355-5285-4373-9825-8b35f6a33047" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075039Z:d1b6ffb0-8c1d-4e4e-82c7-c21b6a003ac7" + "WESTEUROPE:20160103T135338Z:6c4af355-5285-4373-9825-8b35f6a33047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3277,14 +3277,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:38 GMT" + "Sun, 03 Jan 2016 13:53:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3292,10 +3292,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:26.9759585Z\",\r\n \"duration\": \"PT1M24.3152208S\",\r\n \"trackingId\": \"aef73dc0-65c2-49f0-bb66-daa2f0905f69\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2004" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3307,16 +3307,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14712" + "14809" ], "x-ms-request-id": [ - "55346100-d484-4dc4-9f7d-5c23c97fb488" + "81cb38ba-bb79-4205-abec-4b8f72fcbcd5" ], "x-ms-correlation-request-id": [ - "55346100-d484-4dc4-9f7d-5c23c97fb488" + "81cb38ba-bb79-4205-abec-4b8f72fcbcd5" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075043Z:55346100-d484-4dc4-9f7d-5c23c97fb488" + "WESTEUROPE:20160103T135342Z:81cb38ba-bb79-4205-abec-4b8f72fcbcd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3325,14 +3325,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:42 GMT" + "Sun, 03 Jan 2016 13:53:41 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3340,10 +3340,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:45.6655496Z\",\r\n \"duration\": \"PT1M43.0048119S\",\r\n \"trackingId\": \"b2d1187c-79aa-4f73-ac07-78033b803ca3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3355,16 +3355,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14710" + "14807" ], "x-ms-request-id": [ - "d6051964-a3fa-4029-9ea6-dd65615ccbe9" + "998b2607-ccdd-4669-bcc9-8d9e45ead423" ], "x-ms-correlation-request-id": [ - "d6051964-a3fa-4029-9ea6-dd65615ccbe9" + "998b2607-ccdd-4669-bcc9-8d9e45ead423" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075047Z:d6051964-a3fa-4029-9ea6-dd65615ccbe9" + "WESTEUROPE:20160103T135346Z:998b2607-ccdd-4669-bcc9-8d9e45ead423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3373,14 +3373,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:46 GMT" + "Sun, 03 Jan 2016 13:53:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3388,10 +3388,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:45.6655496Z\",\r\n \"duration\": \"PT1M43.0048119S\",\r\n \"trackingId\": \"b2d1187c-79aa-4f73-ac07-78033b803ca3\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3403,16 +3403,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14708" + "14805" ], "x-ms-request-id": [ - "c0eb930a-08da-47a0-ba9c-cbc04baee83c" + "3c73ad65-e297-4715-b72b-2063aa9713ba" ], "x-ms-correlation-request-id": [ - "c0eb930a-08da-47a0-ba9c-cbc04baee83c" + "3c73ad65-e297-4715-b72b-2063aa9713ba" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075050Z:c0eb930a-08da-47a0-ba9c-cbc04baee83c" + "WESTEUROPE:20160103T135350Z:3c73ad65-e297-4715-b72b-2063aa9713ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3421,14 +3421,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:50 GMT" + "Sun, 03 Jan 2016 13:53:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3436,10 +3436,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:52.3003729Z\",\r\n \"duration\": \"PT1M49.6396352S\",\r\n \"trackingId\": \"b44b2db9-5c1b-4c0a-b8b5-21ecaff856e5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3451,16 +3451,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14706" + "14803" ], "x-ms-request-id": [ - "e39b9ca2-a0c9-4494-ab40-9ff523311f72" + "4cbc5a27-323c-4921-a2b8-3c03fe0bb8b7" ], "x-ms-correlation-request-id": [ - "e39b9ca2-a0c9-4494-ab40-9ff523311f72" + "4cbc5a27-323c-4921-a2b8-3c03fe0bb8b7" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075054Z:e39b9ca2-a0c9-4494-ab40-9ff523311f72" + "WESTEUROPE:20160103T135353Z:4cbc5a27-323c-4921-a2b8-3c03fe0bb8b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3469,14 +3469,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:53 GMT" + "Sun, 03 Jan 2016 13:53:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3484,10 +3484,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:50:52.3003729Z\",\r\n \"duration\": \"PT1M49.6396352S\",\r\n \"trackingId\": \"b44b2db9-5c1b-4c0a-b8b5-21ecaff856e5\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2003" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3499,16 +3499,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14704" + "14801" ], "x-ms-request-id": [ - "4067f885-4287-4d2e-a539-7f6ca51f2645" + "7f52806a-70bd-414f-a6a1-d4a0955ad636" ], "x-ms-correlation-request-id": [ - "4067f885-4287-4d2e-a539-7f6ca51f2645" + "7f52806a-70bd-414f-a6a1-d4a0955ad636" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075058Z:4067f885-4287-4d2e-a539-7f6ca51f2645" + "WESTEUROPE:20160103T135357Z:7f52806a-70bd-414f-a6a1-d4a0955ad636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3517,14 +3517,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:50:58 GMT" + "Sun, 03 Jan 2016 13:53:57 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3532,10 +3532,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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/1279B06A9C4D0CD3\",\r\n \"operationId\": \"1279B06A9C4D0CD3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:50:59.7354751Z\",\r\n \"duration\": \"PT1M57.0747374S\",\r\n \"trackingId\": \"0f13caa6-f812-4087-8002-020095b67bd2\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/877B548C44C56C1D\",\r\n \"operationId\": \"877B548C44C56C1D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:49:02.526647Z\",\r\n \"duration\": \"PT2M28.7744102S\",\r\n \"trackingId\": \"99a647e5-8133-4869-9dce-4183b0fb15e5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup/operations/652931650077E3B5\",\r\n \"operationId\": \"652931650077E3B5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:47:25.418338Z\",\r\n \"duration\": \"PT52.0173334S\",\r\n \"trackingId\": \"69b3c268-ac29-4a34-860a-ec9292bdc5d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"tdcmdlets6001\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "2005" + "1802" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3547,16 +3547,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14700" + "14799" ], "x-ms-request-id": [ - "820ee26d-6899-43be-81c3-7ab7a56fb41c" + "e1a3d726-209d-4898-8721-dae12fc1bed0" ], "x-ms-correlation-request-id": [ - "820ee26d-6899-43be-81c3-7ab7a56fb41c" + "e1a3d726-209d-4898-8721-dae12fc1bed0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075102Z:820ee26d-6899-43be-81c3-7ab7a56fb41c" + "WESTEUROPE:20160103T135401Z:e1a3d726-209d-4898-8721-dae12fc1bed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3565,7 +3565,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:02 GMT" + "Sun, 03 Jan 2016 13:54:01 GMT" ] }, "StatusCode": 200 @@ -3580,7 +3580,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3595,16 +3595,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14855" + "14797" ], "x-ms-request-id": [ - "015347e4-76c9-4444-9e6d-aa1f6000c55f" + "9da1123e-3977-4e3c-92b8-abe8166c4ff6" ], "x-ms-correlation-request-id": [ - "015347e4-76c9-4444-9e6d-aa1f6000c55f" + "9da1123e-3977-4e3c-92b8-abe8166c4ff6" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074636Z:015347e4-76c9-4444-9e6d-aa1f6000c55f" + "WESTEUROPE:20160103T135405Z:9da1123e-3977-4e3c-92b8-abe8166c4ff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3613,7 +3613,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:35 GMT" + "Sun, 03 Jan 2016 13:54:05 GMT" ] }, "StatusCode": 200 @@ -3628,7 +3628,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3643,16 +3643,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" + "14795" ], "x-ms-request-id": [ - "480120a3-89b9-4d5c-b54e-d1e2c2ae2484" + "b4fe0176-2336-4adb-ba08-793752cea596" ], "x-ms-correlation-request-id": [ - "480120a3-89b9-4d5c-b54e-d1e2c2ae2484" + "b4fe0176-2336-4adb-ba08-793752cea596" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074639Z:480120a3-89b9-4d5c-b54e-d1e2c2ae2484" + "WESTEUROPE:20160103T135409Z:b4fe0176-2336-4adb-ba08-793752cea596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3661,7 +3661,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:39 GMT" + "Sun, 03 Jan 2016 13:54:08 GMT" ] }, "StatusCode": 200 @@ -3676,7 +3676,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3691,16 +3691,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" + "14793" ], "x-ms-request-id": [ - "e14ad23a-e180-4467-bc94-74b6c0ec00d9" + "955e3ef5-37c8-4ba3-be1d-02a36188095c" ], "x-ms-correlation-request-id": [ - "e14ad23a-e180-4467-bc94-74b6c0ec00d9" + "955e3ef5-37c8-4ba3-be1d-02a36188095c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074643Z:e14ad23a-e180-4467-bc94-74b6c0ec00d9" + "WESTEUROPE:20160103T135413Z:955e3ef5-37c8-4ba3-be1d-02a36188095c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3709,7 +3709,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:42 GMT" + "Sun, 03 Jan 2016 13:54:12 GMT" ] }, "StatusCode": 200 @@ -3724,7 +3724,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3739,16 +3739,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" + "14791" ], "x-ms-request-id": [ - "03c96b35-83bf-41bd-bc77-b1f2d06a7692" + "362db3b3-ab50-4727-b420-b7ee85bce33a" ], "x-ms-correlation-request-id": [ - "03c96b35-83bf-41bd-bc77-b1f2d06a7692" + "362db3b3-ab50-4727-b420-b7ee85bce33a" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074647Z:03c96b35-83bf-41bd-bc77-b1f2d06a7692" + "WESTEUROPE:20160103T135417Z:362db3b3-ab50-4727-b420-b7ee85bce33a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3757,7 +3757,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:46 GMT" + "Sun, 03 Jan 2016 13:54:17 GMT" ] }, "StatusCode": 200 @@ -3772,7 +3772,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3787,16 +3787,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" + "14789" ], "x-ms-request-id": [ - "9c3e61df-d247-495e-9b3f-7fbbc2f1a0f8" + "3daac5bb-a50d-4711-916c-c9b51c861a5f" ], "x-ms-correlation-request-id": [ - "9c3e61df-d247-495e-9b3f-7fbbc2f1a0f8" + "3daac5bb-a50d-4711-916c-c9b51c861a5f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074650Z:9c3e61df-d247-495e-9b3f-7fbbc2f1a0f8" + "WESTEUROPE:20160103T135421Z:3daac5bb-a50d-4711-916c-c9b51c861a5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3805,7 +3805,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:49 GMT" + "Sun, 03 Jan 2016 13:54:20 GMT" ] }, "StatusCode": 200 @@ -3820,7 +3820,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3835,16 +3835,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" + "14787" ], "x-ms-request-id": [ - "c2dc0712-6db4-4b90-8f1d-4bd6ec8188b4" + "2606d53e-d433-4a2e-a9e6-309ad85a5a6c" ], "x-ms-correlation-request-id": [ - "c2dc0712-6db4-4b90-8f1d-4bd6ec8188b4" + "2606d53e-d433-4a2e-a9e6-309ad85a5a6c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074654Z:c2dc0712-6db4-4b90-8f1d-4bd6ec8188b4" + "WESTEUROPE:20160103T135425Z:2606d53e-d433-4a2e-a9e6-309ad85a5a6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3853,7 +3853,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:54 GMT" + "Sun, 03 Jan 2016 13:54:24 GMT" ] }, "StatusCode": 200 @@ -3868,7 +3868,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3883,16 +3883,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" + "14785" ], "x-ms-request-id": [ - "8773782a-6e4e-4b39-a83c-23a41b533814" + "d6c5e091-3275-4e0c-a20b-4bcef43facfd" ], "x-ms-correlation-request-id": [ - "8773782a-6e4e-4b39-a83c-23a41b533814" + "d6c5e091-3275-4e0c-a20b-4bcef43facfd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074658Z:8773782a-6e4e-4b39-a83c-23a41b533814" + "WESTEUROPE:20160103T135429Z:d6c5e091-3275-4e0c-a20b-4bcef43facfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3901,7 +3901,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:46:57 GMT" + "Sun, 03 Jan 2016 13:54:28 GMT" ] }, "StatusCode": 200 @@ -3916,7 +3916,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3931,16 +3931,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" + "14783" ], "x-ms-request-id": [ - "df29adc3-d4a9-47f1-ae38-c76f4c23803a" + "08dcadeb-d4fd-4a16-9808-75357c01ef3b" ], "x-ms-correlation-request-id": [ - "df29adc3-d4a9-47f1-ae38-c76f4c23803a" + "08dcadeb-d4fd-4a16-9808-75357c01ef3b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074701Z:df29adc3-d4a9-47f1-ae38-c76f4c23803a" + "WESTEUROPE:20160103T135433Z:08dcadeb-d4fd-4a16-9808-75357c01ef3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3949,7 +3949,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:01 GMT" + "Sun, 03 Jan 2016 13:54:33 GMT" ] }, "StatusCode": 200 @@ -3964,7 +3964,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -3979,16 +3979,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14836" + "14781" ], "x-ms-request-id": [ - "f50ee00e-3143-46b0-b04c-6f2a2b131ee2" + "c6dc28aa-9b41-4760-9c66-acf3ca11a19f" ], "x-ms-correlation-request-id": [ - "f50ee00e-3143-46b0-b04c-6f2a2b131ee2" + "c6dc28aa-9b41-4760-9c66-acf3ca11a19f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074705Z:f50ee00e-3143-46b0-b04c-6f2a2b131ee2" + "WESTEUROPE:20160103T135436Z:c6dc28aa-9b41-4760-9c66-acf3ca11a19f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3997,7 +3997,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:04 GMT" + "Sun, 03 Jan 2016 13:54:36 GMT" ] }, "StatusCode": 200 @@ -4012,7 +4012,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4027,16 +4027,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14834" + "14779" ], "x-ms-request-id": [ - "8dc275d8-e643-47d3-954c-ea471cb31db2" + "6d8fb5a9-f630-4803-b501-fb8a58594abc" ], "x-ms-correlation-request-id": [ - "8dc275d8-e643-47d3-954c-ea471cb31db2" + "6d8fb5a9-f630-4803-b501-fb8a58594abc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074709Z:8dc275d8-e643-47d3-954c-ea471cb31db2" + "WESTEUROPE:20160103T135440Z:6d8fb5a9-f630-4803-b501-fb8a58594abc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4045,7 +4045,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:08 GMT" + "Sun, 03 Jan 2016 13:54:40 GMT" ] }, "StatusCode": 200 @@ -4060,7 +4060,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4075,16 +4075,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" + "14777" ], "x-ms-request-id": [ - "a7a9aee2-35e9-44c7-8dc7-b19531281985" + "c0086c98-387d-44d2-b1f3-12394899b190" ], "x-ms-correlation-request-id": [ - "a7a9aee2-35e9-44c7-8dc7-b19531281985" + "c0086c98-387d-44d2-b1f3-12394899b190" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074712Z:a7a9aee2-35e9-44c7-8dc7-b19531281985" + "WESTEUROPE:20160103T135444Z:c0086c98-387d-44d2-b1f3-12394899b190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4093,7 +4093,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:11 GMT" + "Sun, 03 Jan 2016 13:54:44 GMT" ] }, "StatusCode": 200 @@ -4108,7 +4108,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4123,16 +4123,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" + "14775" ], "x-ms-request-id": [ - "873f8321-1097-4566-b3db-c41e4ea295c1" + "ba193795-588f-4567-b0f9-1b09a8c1a031" ], "x-ms-correlation-request-id": [ - "873f8321-1097-4566-b3db-c41e4ea295c1" + "ba193795-588f-4567-b0f9-1b09a8c1a031" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074716Z:873f8321-1097-4566-b3db-c41e4ea295c1" + "WESTEUROPE:20160103T135448Z:ba193795-588f-4567-b0f9-1b09a8c1a031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4141,7 +4141,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:15 GMT" + "Sun, 03 Jan 2016 13:54:47 GMT" ] }, "StatusCode": 200 @@ -4156,7 +4156,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2016-01-03T13:52:19.7939622Z\",\r\n \"duration\": \"PT5.7387586S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1802" @@ -4171,16 +4171,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" + "14773" ], "x-ms-request-id": [ - "9f65deeb-6036-43bb-9890-b6d79199ebb7" + "77313170-58a3-49b9-8c4a-71d314ac5bbe" ], "x-ms-correlation-request-id": [ - "9f65deeb-6036-43bb-9890-b6d79199ebb7" + "77313170-58a3-49b9-8c4a-71d314ac5bbe" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074719Z:9f65deeb-6036-43bb-9890-b6d79199ebb7" + "WESTEUROPE:20160103T135452Z:77313170-58a3-49b9-8c4a-71d314ac5bbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4189,7 +4189,7 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:19 GMT" + "Sun, 03 Jan 2016 13:54:52 GMT" ] }, "StatusCode": 200 @@ -4204,10 +4204,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2016-01-03T13:54:54.2879976Z\",\r\n \"duration\": \"PT2M40.232794S\",\r\n \"correlationId\": \"4b01d154-8a5a-4ccb-a1a3-f1d18dd0f340\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets6001\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "2026" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4219,16 +4219,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" + "14771" ], "x-ms-request-id": [ - "4a585c3b-5505-4429-bb38-441a4d5b5e30" + "41b615af-2f25-415b-a82b-4aee181ed9ec" ], "x-ms-correlation-request-id": [ - "4a585c3b-5505-4429-bb38-441a4d5b5e30" + "41b615af-2f25-415b-a82b-4aee181ed9ec" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074723Z:4a585c3b-5505-4429-bb38-441a4d5b5e30" + "WESTEUROPE:20160103T135456Z:41b615af-2f25-415b-a82b-4aee181ed9ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4237,254 +4237,284 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:23 GMT" + "Sun, 03 Jan 2016 13:54:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ad9c2038-960c-4fd2-901e-49755cbdd1b2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "988" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "db32a59b-947b-40eb-af29-96d8351f8716" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "04e0c58a-aef8-44f7-8776-f2e67c6c50cc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" ], "x-ms-correlation-request-id": [ - "04e0c58a-aef8-44f7-8776-f2e67c6c50cc" + "f3f6b92f-d036-4a96-83e8-79357af2b04b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074727Z:04e0c58a-aef8-44f7-8776-f2e67c6c50cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135500Z:f3f6b92f-d036-4a96-83e8-79357af2b04b" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:27 GMT" + "Sun, 03 Jan 2016 13:55:00 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1108" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "bdb62f7b-1793-4a5f-a4d2-592d55c5fcef" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "32135f84-b93d-4753-a141-574ff0f9cfac" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14920" ], "x-ms-correlation-request-id": [ - "32135f84-b93d-4753-a141-574ff0f9cfac" + "988c1bb3-46d0-4fb4-a1a9-a0e08da36624" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074730Z:32135f84-b93d-4753-a141-574ff0f9cfac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135515Z:988c1bb3-46d0-4fb4-a1a9-a0e08da36624" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:30 GMT" + "Sun, 03 Jan 2016 13:55:14 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1108" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "dd89e8c5-1165-484e-81d3-444d4951ca7a" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "ec520faa-1613-4c63-b2b8-fb0465fe0538" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14914" ], "x-ms-correlation-request-id": [ - "ec520faa-1613-4c63-b2b8-fb0465fe0538" + "72ed19b7-0125-4329-be8b-3f72d5d3b575" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074735Z:ec520faa-1613-4c63-b2b8-fb0465fe0538" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135523Z:72ed19b7-0125-4329-be8b-3f72d5d3b575" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:34 GMT" + "Sun, 03 Jan 2016 13:55:22 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "0fb174a8-875c-4740-b480-31db56926095" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1108" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "2b54a00f-bbdd-46f9-ab5e-917df5fa2c17" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "d1834d2d-d7f3-455f-ad37-9eb735051b8e" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14904" ], "x-ms-correlation-request-id": [ - "d1834d2d-d7f3-455f-ad37-9eb735051b8e" + "b1c4d1ef-80a7-4a12-9715-4efc270a8522" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074738Z:d1834d2d-d7f3-455f-ad37-9eb735051b8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135540Z:b1c4d1ef-80a7-4a12-9715-4efc270a8522" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:38 GMT" + "Sun, 03 Jan 2016 13:55:39 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ad9c2038-960c-4fd2-901e-49755cbdd1b2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"name\": \"sql-td-cmdlet-db6001\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"9b2a7765-e92e-492b-86dc-3186c83524a8\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2016-01-03T13:53:30.057Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2016-01-03T14:04:06.62Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "870" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "49e86193-f5df-4688-a70d-eb20475880de" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "e42955d6-c37b-40f7-beba-049b57e4a6a0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14924" ], "x-ms-correlation-request-id": [ - "e42955d6-c37b-40f7-beba-049b57e4a6a0" + "812de86e-67ce-49ad-8de3-fdab0f0d304d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074742Z:e42955d6-c37b-40f7-beba-049b57e4a6a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135502Z:812de86e-67ce-49ad-8de3-fdab0f0d304d" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:41 GMT" + "Sun, 03 Jan 2016 13:55:01 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4492,10 +4522,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageneu\",\r\n \"name\": \"vlbrodstorageneu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstorageweu\",\r\n \"name\": \"vlbrodstorageweu\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-SouthCentralUS/providers/Microsoft.ClassicStorage/storageAccounts/mlstr\",\r\n \"name\": \"mlstr\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/yrubinmltest\",\r\n \"name\": \"yrubinmltest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-10/providers/Microsoft.ClassicStorage/storageAccounts/ofirhavidumps\",\r\n \"name\": \"ofirhavidumps\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-7/providers/Microsoft.ClassicStorage/storageAccounts/alexumtestvmcdb\",\r\n \"name\": \"alexumtestvmcdb\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/MemoryInvestigations/providers/Microsoft.ClassicStorage/storageAccounts/assafakmemdump\",\r\n \"name\": \"assafakmemdump\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/vlbrodTestGroup/providers/Microsoft.ClassicStorage/storageAccounts/vlbrodstoragewus\",\r\n \"name\": \"vlbrodstoragewus\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "8635" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4507,16 +4537,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" + "14774" ], "x-ms-request-id": [ - "025d7c73-f08f-4705-bfbf-2732e0643715" + "9db581de-4f46-462a-8a9d-dd686ce66f46" ], "x-ms-correlation-request-id": [ - "025d7c73-f08f-4705-bfbf-2732e0643715" + "9db581de-4f46-462a-8a9d-dd686ce66f46" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074746Z:025d7c73-f08f-4705-bfbf-2732e0643715" + "WESTEUROPE:20160103T135503Z:9db581de-4f46-462a-8a9d-dd686ce66f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4525,14 +4555,14 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:45 GMT" + "Sun, 03 Jan 2016 13:55:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2014-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4540,10 +4570,10 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.Storage/storageAccounts/assafakteststorage\",\r\n \"name\": \"assafakteststorage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Storage/storageAccounts/yrubinv2storage\",\r\n \"name\": \"yrubinv2storage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"name\": \"tdcmdlets6001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "1032" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4555,16 +4585,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14773" ], "x-ms-request-id": [ - "166a7129-a975-45f3-a51b-a60fb70403ca" + "3d79b45e-f099-49be-bd24-4db8efaea6a0" ], "x-ms-correlation-request-id": [ - "166a7129-a975-45f3-a51b-a60fb70403ca" + "3d79b45e-f099-49be-bd24-4db8efaea6a0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074750Z:166a7129-a975-45f3-a51b-a60fb70403ca" + "WESTEUROPE:20160103T135503Z:3d79b45e-f099-49be-bd24-4db8efaea6a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4573,25 +4603,28 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:49 GMT" + "Sun, 03 Jan 2016 13:55:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001/listKeys?api-version=2014-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvdGRjbWRsZXRzNjAwMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "none" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001' under resource group 'sql-td-cmdlet-test-rg6001' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4602,17 +4635,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "af690ce3-f116-4185-96c2-61db75d95618" + "e0141cbf-055f-4b2b-9a41-6d31d44517b0" ], "x-ms-correlation-request-id": [ - "af690ce3-f116-4185-96c2-61db75d95618" + "e0141cbf-055f-4b2b-9a41-6d31d44517b0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074754Z:af690ce3-f116-4185-96c2-61db75d95618" + "WESTEUROPE:20160103T135504Z:e0141cbf-055f-4b2b-9a41-6d31d44517b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4621,2416 +4654,58 @@ "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:47:53 GMT" + "Sun, 03 Jan 2016 13:55:03 GMT" ] }, - "StatusCode": 200 + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001/listKeys?api-version=2015-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZGNtZGxldHM2MDAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b479df49-4303-4f21-9144-7d59dea56c38" + ], "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"key1\": \"pCLpYczRPH7VhC+5IVIK78Yk19+Mhr8A+jmadhdGzLhA8/crvYJUiERbHcaislzNsvVKcyA4dKdkIEDI09IcbQ==\",\r\n \"key2\": \"eUgyMrrErbGXTUj1Q+tdxDxeviYd62Q59HYikhcJJP0HLTjZmFcUDHnDmdsm61O+lnvA7lkZ47uYbOdN5Drz1Q==\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1802" + "198" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14804" - ], - "x-ms-request-id": [ - "6f24f15e-b647-473f-97bb-5b272c95da2c" - ], - "x-ms-correlation-request-id": [ - "6f24f15e-b647-473f-97bb-5b272c95da2c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074758Z:6f24f15e-b647-473f-97bb-5b272c95da2c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:47:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14802" - ], - "x-ms-request-id": [ - "74a5c659-3dd0-4692-801e-4b8c3e681eaa" - ], - "x-ms-correlation-request-id": [ - "74a5c659-3dd0-4692-801e-4b8c3e681eaa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074801Z:74a5c659-3dd0-4692-801e-4b8c3e681eaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14799" - ], - "x-ms-request-id": [ - "4643671b-06d4-424c-a5c9-e780ed97dfab" - ], - "x-ms-correlation-request-id": [ - "4643671b-06d4-424c-a5c9-e780ed97dfab" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074805Z:4643671b-06d4-424c-a5c9-e780ed97dfab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:05 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14797" - ], - "x-ms-request-id": [ - "c14527ff-466a-4e78-87fd-53caec02bf22" - ], - "x-ms-correlation-request-id": [ - "c14527ff-466a-4e78-87fd-53caec02bf22" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074809Z:c14527ff-466a-4e78-87fd-53caec02bf22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:09 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14795" - ], - "x-ms-request-id": [ - "72352502-3918-42e0-b4fd-e933a159664d" - ], - "x-ms-correlation-request-id": [ - "72352502-3918-42e0-b4fd-e933a159664d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074813Z:72352502-3918-42e0-b4fd-e933a159664d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:13 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14791" - ], - "x-ms-request-id": [ - "32b8fc9e-3fdd-40ef-904e-c7e03b963f70" - ], - "x-ms-correlation-request-id": [ - "32b8fc9e-3fdd-40ef-904e-c7e03b963f70" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074817Z:32b8fc9e-3fdd-40ef-904e-c7e03b963f70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14789" - ], - "x-ms-request-id": [ - "fcd388ba-74b1-4d3d-a191-755faec98a40" - ], - "x-ms-correlation-request-id": [ - "fcd388ba-74b1-4d3d-a191-755faec98a40" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074821Z:fcd388ba-74b1-4d3d-a191-755faec98a40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14787" - ], - "x-ms-request-id": [ - "5dc4269c-a695-4016-98b3-78de5628c19a" - ], - "x-ms-correlation-request-id": [ - "5dc4269c-a695-4016-98b3-78de5628c19a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074825Z:5dc4269c-a695-4016-98b3-78de5628c19a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14785" - ], - "x-ms-request-id": [ - "36c6ed51-f94e-4aae-ab14-c1871eca180e" - ], - "x-ms-correlation-request-id": [ - "36c6ed51-f94e-4aae-ab14-c1871eca180e" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074829Z:36c6ed51-f94e-4aae-ab14-c1871eca180e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:29 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14783" - ], - "x-ms-request-id": [ - "4c146b4a-1522-41d4-bce7-ed530388b3e5" - ], - "x-ms-correlation-request-id": [ - "4c146b4a-1522-41d4-bce7-ed530388b3e5" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074833Z:4c146b4a-1522-41d4-bce7-ed530388b3e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:33 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14781" - ], - "x-ms-request-id": [ - "c1803b04-4021-419b-8f97-b52bb055064d" - ], - "x-ms-correlation-request-id": [ - "c1803b04-4021-419b-8f97-b52bb055064d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074837Z:c1803b04-4021-419b-8f97-b52bb055064d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:37 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14779" - ], - "x-ms-request-id": [ - "79544132-d258-4f3a-b3fb-9f9ff137b415" - ], - "x-ms-correlation-request-id": [ - "79544132-d258-4f3a-b3fb-9f9ff137b415" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074841Z:79544132-d258-4f3a-b3fb-9f9ff137b415" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:40 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14777" - ], - "x-ms-request-id": [ - "3b7ae919-db34-4423-b9b6-50988efff4ca" - ], - "x-ms-correlation-request-id": [ - "3b7ae919-db34-4423-b9b6-50988efff4ca" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074845Z:3b7ae919-db34-4423-b9b6-50988efff4ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:44 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14775" - ], - "x-ms-request-id": [ - "fddd5c43-4791-48cb-8366-900c38310d15" - ], - "x-ms-correlation-request-id": [ - "fddd5c43-4791-48cb-8366-900c38310d15" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074849Z:fddd5c43-4791-48cb-8366-900c38310d15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:49 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14773" - ], - "x-ms-request-id": [ - "a2c399f9-5caf-46aa-bbff-89a39fbb69d8" - ], - "x-ms-correlation-request-id": [ - "a2c399f9-5caf-46aa-bbff-89a39fbb69d8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074853Z:a2c399f9-5caf-46aa-bbff-89a39fbb69d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14771" - ], - "x-ms-request-id": [ - "0544111d-c11a-4bcb-9093-54c3f757ec85" - ], - "x-ms-correlation-request-id": [ - "0544111d-c11a-4bcb-9093-54c3f757ec85" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074857Z:0544111d-c11a-4bcb-9093-54c3f757ec85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:48:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14767" - ], - "x-ms-request-id": [ - "7f249dc9-02e5-4c3a-bf66-a16c04101e4a" - ], - "x-ms-correlation-request-id": [ - "7f249dc9-02e5-4c3a-bf66-a16c04101e4a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074901Z:7f249dc9-02e5-4c3a-bf66-a16c04101e4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:01 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14764" - ], - "x-ms-request-id": [ - "338868bb-8496-40bc-bb14-3baca5a6ba20" - ], - "x-ms-correlation-request-id": [ - "338868bb-8496-40bc-bb14-3baca5a6ba20" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074905Z:338868bb-8496-40bc-bb14-3baca5a6ba20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14762" - ], - "x-ms-request-id": [ - "6befbe55-36fb-4f32-b30f-6a571495813f" - ], - "x-ms-correlation-request-id": [ - "6befbe55-36fb-4f32-b30f-6a571495813f" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074909Z:6befbe55-36fb-4f32-b30f-6a571495813f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:08 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14760" - ], - "x-ms-request-id": [ - "114651f3-f45b-4bc0-8728-c917a24c8e56" - ], - "x-ms-correlation-request-id": [ - "114651f3-f45b-4bc0-8728-c917a24c8e56" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074913Z:114651f3-f45b-4bc0-8728-c917a24c8e56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:12 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14757" - ], - "x-ms-request-id": [ - "180f8da0-616c-45a9-9ecc-0a9501296ce3" - ], - "x-ms-correlation-request-id": [ - "180f8da0-616c-45a9-9ecc-0a9501296ce3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074917Z:180f8da0-616c-45a9-9ecc-0a9501296ce3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:16 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14755" - ], - "x-ms-request-id": [ - "10fbc01c-2224-4c47-b603-d9136f79cf2d" - ], - "x-ms-correlation-request-id": [ - "10fbc01c-2224-4c47-b603-d9136f79cf2d" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074921Z:10fbc01c-2224-4c47-b603-d9136f79cf2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:21 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14753" - ], - "x-ms-request-id": [ - "babb2101-ac0d-4db0-ac95-3130a558d6b3" - ], - "x-ms-correlation-request-id": [ - "babb2101-ac0d-4db0-ac95-3130a558d6b3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074924Z:babb2101-ac0d-4db0-ac95-3130a558d6b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14751" - ], - "x-ms-request-id": [ - "c412bc54-66d2-40c9-8264-968c41c5b0f2" - ], - "x-ms-correlation-request-id": [ - "c412bc54-66d2-40c9-8264-968c41c5b0f2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074928Z:c412bc54-66d2-40c9-8264-968c41c5b0f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14749" - ], - "x-ms-request-id": [ - "58839343-f6e6-44ee-bb00-29bc05797ae1" - ], - "x-ms-correlation-request-id": [ - "58839343-f6e6-44ee-bb00-29bc05797ae1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074932Z:58839343-f6e6-44ee-bb00-29bc05797ae1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:32 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14747" - ], - "x-ms-request-id": [ - "f7f624e8-0d33-491b-8768-8948b6b7d72a" - ], - "x-ms-correlation-request-id": [ - "f7f624e8-0d33-491b-8768-8948b6b7d72a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074936Z:f7f624e8-0d33-491b-8768-8948b6b7d72a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:36 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14745" - ], - "x-ms-request-id": [ - "f4ca9b5f-0386-4d34-accc-fc74b5c8c80b" - ], - "x-ms-correlation-request-id": [ - "f4ca9b5f-0386-4d34-accc-fc74b5c8c80b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074940Z:f4ca9b5f-0386-4d34-accc-fc74b5c8c80b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14743" - ], - "x-ms-request-id": [ - "8b7e590a-7e45-435d-9a1d-5eed69811fd2" - ], - "x-ms-correlation-request-id": [ - "8b7e590a-7e45-435d-9a1d-5eed69811fd2" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074944Z:8b7e590a-7e45-435d-9a1d-5eed69811fd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14741" - ], - "x-ms-request-id": [ - "f2f20af3-4b81-4269-8979-ac33839d49f7" - ], - "x-ms-correlation-request-id": [ - "f2f20af3-4b81-4269-8979-ac33839d49f7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074948Z:f2f20af3-4b81-4269-8979-ac33839d49f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:47 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14739" - ], - "x-ms-request-id": [ - "17fa5ae5-3ef2-4b19-9fbf-f9506817f4f7" - ], - "x-ms-correlation-request-id": [ - "17fa5ae5-3ef2-4b19-9fbf-f9506817f4f7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074952Z:17fa5ae5-3ef2-4b19-9fbf-f9506817f4f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14737" - ], - "x-ms-request-id": [ - "f962d9c1-f3f5-4e9c-b69b-b62687dce59b" - ], - "x-ms-correlation-request-id": [ - "f962d9c1-f3f5-4e9c-b69b-b62687dce59b" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T074956Z:f962d9c1-f3f5-4e9c-b69b-b62687dce59b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:49:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" - ], - "x-ms-request-id": [ - "0f4a32c8-c35e-4f30-81a8-fbfdff1d0307" - ], - "x-ms-correlation-request-id": [ - "0f4a32c8-c35e-4f30-81a8-fbfdff1d0307" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075000Z:0f4a32c8-c35e-4f30-81a8-fbfdff1d0307" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:00 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14733" - ], - "x-ms-request-id": [ - "5bc44518-a73f-4714-b381-194a770e32b8" - ], - "x-ms-correlation-request-id": [ - "5bc44518-a73f-4714-b381-194a770e32b8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075004Z:5bc44518-a73f-4714-b381-194a770e32b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:04 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14730" - ], - "x-ms-request-id": [ - "a496d0e9-11e2-4ad2-a73f-e9d199fbfad1" - ], - "x-ms-correlation-request-id": [ - "a496d0e9-11e2-4ad2-a73f-e9d199fbfad1" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075008Z:a496d0e9-11e2-4ad2-a73f-e9d199fbfad1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:07 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14728" - ], - "x-ms-request-id": [ - "fb0a6271-040b-4d4c-a699-bb1555cac8e7" - ], - "x-ms-correlation-request-id": [ - "fb0a6271-040b-4d4c-a699-bb1555cac8e7" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075012Z:fb0a6271-040b-4d4c-a699-bb1555cac8e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:11 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14726" - ], - "x-ms-request-id": [ - "ef11d908-4030-4947-84dd-3752b60ae069" - ], - "x-ms-correlation-request-id": [ - "ef11d908-4030-4947-84dd-3752b60ae069" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075016Z:ef11d908-4030-4947-84dd-3752b60ae069" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14723" - ], - "x-ms-request-id": [ - "3d620d12-b8d8-45da-b2ce-67f25ef6ae49" - ], - "x-ms-correlation-request-id": [ - "3d620d12-b8d8-45da-b2ce-67f25ef6ae49" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075020Z:3d620d12-b8d8-45da-b2ce-67f25ef6ae49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:19 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14721" - ], - "x-ms-request-id": [ - "7b759069-f063-419c-bfdf-e185c864b8ea" - ], - "x-ms-correlation-request-id": [ - "7b759069-f063-419c-bfdf-e185c864b8ea" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075024Z:7b759069-f063-419c-bfdf-e185c864b8ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:24 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14719" - ], - "x-ms-request-id": [ - "52368909-4abc-483f-bd17-7e6a83f68a54" - ], - "x-ms-correlation-request-id": [ - "52368909-4abc-483f-bd17-7e6a83f68a54" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075028Z:52368909-4abc-483f-bd17-7e6a83f68a54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14717" - ], - "x-ms-request-id": [ - "7185748b-800b-4a9d-9dfa-083a5534eb64" - ], - "x-ms-correlation-request-id": [ - "7185748b-800b-4a9d-9dfa-083a5534eb64" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075031Z:7185748b-800b-4a9d-9dfa-083a5534eb64" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:31 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14715" - ], - "x-ms-request-id": [ - "90bc8941-6cd8-4a2b-82cb-d524f070de2a" - ], - "x-ms-correlation-request-id": [ - "90bc8941-6cd8-4a2b-82cb-d524f070de2a" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075035Z:90bc8941-6cd8-4a2b-82cb-d524f070de2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:35 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14713" - ], - "x-ms-request-id": [ - "32a06926-fe21-4d00-b95a-bd78ecda5705" - ], - "x-ms-correlation-request-id": [ - "32a06926-fe21-4d00-b95a-bd78ecda5705" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075039Z:32a06926-fe21-4d00-b95a-bd78ecda5705" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:39 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14711" - ], - "x-ms-request-id": [ - "da93b580-b37d-4156-85a1-619c65b68086" - ], - "x-ms-correlation-request-id": [ - "da93b580-b37d-4156-85a1-619c65b68086" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075043Z:da93b580-b37d-4156-85a1-619c65b68086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:43 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14709" - ], - "x-ms-request-id": [ - "9db9bf2c-3072-467e-82e1-84f1e4129efa" - ], - "x-ms-correlation-request-id": [ - "9db9bf2c-3072-467e-82e1-84f1e4129efa" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075047Z:9db9bf2c-3072-467e-82e1-84f1e4129efa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:46 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14707" - ], - "x-ms-request-id": [ - "c9e4ff90-3fb2-4021-945e-d9318fda4c61" - ], - "x-ms-correlation-request-id": [ - "c9e4ff90-3fb2-4021-945e-d9318fda4c61" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075051Z:c9e4ff90-3fb2-4021-945e-d9318fda4c61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:50 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14705" - ], - "x-ms-request-id": [ - "d53ab458-9696-4c64-9996-4329f3f9d0b9" - ], - "x-ms-correlation-request-id": [ - "d53ab458-9696-4c64-9996-4329f3f9d0b9" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075055Z:d53ab458-9696-4c64-9996-4329f3f9d0b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2015-11-12T07:46:33.3165003Z\",\r\n \"duration\": \"PT4.8730897S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1802" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14703" - ], - "x-ms-request-id": [ - "aa96d4cc-e0d6-4d0d-b394-c2971c5a7e3c" - ], - "x-ms-correlation-request-id": [ - "aa96d4cc-e0d6-4d0d-b394-c2971c5a7e3c" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075059Z:aa96d4cc-e0d6-4d0d-b394-c2971c5a7e3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:50:59 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/sql-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup?api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvZGVwbG95bWVudHMvc3FsLXRkLXRlc3QtZW52LXNldHVwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==", - "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-td-cmdlet-test-rg6001/deployments/sql-td-test-env-setup\",\r\n \"name\": \"sql-td-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-td-cmdlet-db6001\"\r\n },\r\n \"version\": {\r\n \"type\": \"String\",\r\n \"value\": \"12.0\"\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 \"serverName\": {\r\n \"type\": \"String\",\r\n \"value\": \"sql-td-cmdlet-server6001\"\r\n },\r\n \"storageName\": {\r\n \"type\": \"String\",\r\n \"value\": \"tdcmdlets6001\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-11-12T07:51:00.96767Z\",\r\n \"duration\": \"PT4M32.5242594S\",\r\n \"correlationId\": \"bcc1ecb1-a851-42c5-80f3-4b9a731a5b7c\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"australiaeast\"\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-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"resourceType\": \"Microsoft.Sql/servers/databases\",\r\n \"resourceName\": \"sql-td-cmdlet-server6001/sql-td-cmdlet-db6001\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/tdcmdlets6001\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2025" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14699" - ], - "x-ms-request-id": [ - "b132c8bd-235a-4260-ae10-ca0eaf1a2ea3" - ], - "x-ms-correlation-request-id": [ - "b132c8bd-235a-4260-ae10-ca0eaf1a2ea3" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075103Z:b132c8bd-235a-4260-ae10-ca0eaf1a2ea3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:51:03 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "4d80c1e9-8229-4c07-a659-d14cb480153f" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"New\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": null,\r\n \"storageAccountKey\": null,\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": null,\r\n \"storageAccountResourceGroupName\": null,\r\n \"storageAccountSubscriptionId\": null,\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "988" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "b67648da-3c4e-4bc1-a45a-d036ffd60ae7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "DataServiceVersion": [ - "3.0;" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" - ], - "x-ms-correlation-request-id": [ - "520a59d9-941b-407a-9eba-95d781158fe8" - ], - "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075108Z:520a59d9-941b-407a-9eba-95d781158fe8" - ], - "Cache-Control": [ - "no-store, no-cache" - ], - "Date": [ - "Thu, 12 Nov 2015 07:51:08 GMT" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" - ], - "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1108" - ], - "Content-Type": [ - "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" - ], - "x-ms-request-id": [ - "39817f48-293c-4201-b6c7-2452924d086e" - ], - "X-Content-Type-Options": [ - "nosniff" + "application/json" ], - "DataServiceVersion": [ - "3.0;" + "Expires": [ + "-1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Pragma": [ + "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14940" + "x-ms-request-id": [ + "c184f55d-aa24-4c35-a8e3-a4803600ea62" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "ab443564-c948-4bc1-996f-531b56853b6a" + "c184f55d-aa24-4c35-a8e3-a4803600ea62" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075122Z:ab443564-c948-4bc1-996f-531b56853b6a" + "WESTEUROPE:20160103T135506Z:c184f55d-aa24-4c35-a8e3-a4803600ea62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-store, no-cache" + "no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:22 GMT" + "Sun, 03 Jan 2016 13:55:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7041,50 +4716,59 @@ { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pCLpYczRPH7VhC+5IVIK78Yk19+Mhr8A+jmadhdGzLhA8/crvYJUiERbHcaislzNsvVKcyA4dKdkIEDI09IcbQ==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "827" + ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "ad9c2038-960c-4fd2-901e-49755cbdd1b2" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"********\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": \"SQLDBAuditLogsSqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pCLpYczRPH7VhC+5IVIK78Yk19+Mhr8A+jmadhdGzLhA8/crvYJUiERbHcaislzNsvVKcyA4dKdkIEDI09IcbQ==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1108" + "1126" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "b73ab0b1-13d9-4770-a273-09639bdba2d2" + "2d186b20-cc2f-4c92-9567-1231370e61e2" ], "X-Content-Type-Options": [ "nosniff" ], + "Preference-Applied": [ + "return-content" + ], "DataServiceVersion": [ "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "d3a41c4f-b651-4112-8357-9f28ad8cd0bd" + "41e04eac-bbdb-4a9e-9b13-fb9a3edec88e" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075131Z:d3a41c4f-b651-4112-8357-9f28ad8cd0bd" + "WESTEUROPE:20160103T135510Z:41e04eac-bbdb-4a9e-9b13-fb9a3edec88e" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:31 GMT" + "Sun, 03 Jan 2016 13:55:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7093,8 +4777,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7102,19 +4786,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4d80c1e9-8229-4c07-a659-d14cb480153f" + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001\",\r\n \"name\": \"sql-td-cmdlet-db6001\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"ff4a95b4-d632-400c-9460-eec6b9130a99\",\r\n \"edition\": \"Basic\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"Basic\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"1073741824\",\r\n \"creationDate\": \"2015-11-12T07:49:16.59Z\",\r\n \"currentServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveId\": \"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\r\n \"requestedServiceObjectiveName\": null,\r\n \"defaultSecondaryLocation\": \"Australia Southeast\",\r\n \"earliestRestoreDate\": \"2015-11-12T08:00:34.917Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "870" + "522" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "fbdc2df8-c2b7-4314-9a4b-29164671c8fb" + "d5a2f5c1-f523-475b-aad7-e16a4b95191a" ], "X-Content-Type-Options": [ "nosniff" @@ -7122,23 +4806,23 @@ "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14944" + "14923" ], "x-ms-correlation-request-id": [ - "703303fe-925c-4c1e-be1b-0a8e7d8f83e7" + "f6fe1a18-e645-4922-a4a3-5d545707f073" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075110Z:703303fe-925c-4c1e-be1b-0a8e7d8f83e7" + "WESTEUROPE:20160103T135511Z:f6fe1a18-e645-4922-a4a3-5d545707f073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:10 GMT" + "Sun, 03 Jan 2016 13:55:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7147,199 +4831,214 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.ClassicStorage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cycmYXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/andml/providers/Microsoft.ClassicStorage/storageAccounts/rambrachtd\",\r\n \"name\": \"rambrachtd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/assafaktest/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage1\",\r\n \"name\": \"alexumauditlogsstorage1\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-AustraliaEast/providers/Microsoft.ClassicStorage/storageAccounts/inherittest\",\r\n \"name\": \"inherittest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/yoavfadfsample\",\r\n \"name\": \"yoavfadfsample\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/tomerl10\",\r\n \"name\": \"tomerl10\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavf\",\r\n \"name\": \"yoavf\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsq8lmr4qtzkxb5\",\r\n \"name\": \"portalvhdsq8lmr4qtzkxb5\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/lianastorage2\",\r\n \"name\": \"lianastorage2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsb85hb194sjzz\",\r\n \"name\": \"portalvhdsb85hb194sjzz\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbi2\",\r\n \"name\": \"yoavfpowerbi2\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/yoavfpowerbismall\",\r\n \"name\": \"yoavfpowerbismall\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsv934j7szk9sg7\",\r\n \"name\": \"portalvhdsv934j7szk9sg7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/db5kalistorage\",\r\n \"name\": \"db5kalistorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-NorthEurope/providers/Microsoft.ClassicStorage/storageAccounts/tomerrstorage\",\r\n \"name\": \"tomerrstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/alexumauditlogsstorage\",\r\n \"name\": \"alexumauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/assafakteststorage\",\r\n \"name\": \"assafakteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/meminvestigate\",\r\n \"name\": \"meminvestigate\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/nadavhauditlogsstorage\",\r\n \"name\": \"nadavhauditlogsstorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/ofirtest\",\r\n \"name\": \"ofirtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsy8wcm73x2bh2j\",\r\n \"name\": \"portalvhdsy8wcm73x2bh2j\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/rambrachteststorage\",\r\n \"name\": \"rambrachteststorage\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestEurope/providers/Microsoft.ClassicStorage/storageAccounts/tdml\",\r\n \"name\": \"tdml\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/galmtest\",\r\n \"name\": \"galmtest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhdsf7kj9rfzv9wn7\",\r\n \"name\": \"portalvhdsf7kj9rfzv9wn7\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/yrubincmdletstest\",\r\n \"name\": \"yrubincmdletstest\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.ClassicStorage/storageAccounts/tgagrinctp23\",\r\n \"name\": \"tgagrinctp23\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/ResourceGroup/providers/Microsoft.ClassicStorage/storageAccounts/ranishateststorage22\",\r\n \"name\": \"ranishateststorage22\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/yoavfhd/providers/Microsoft.ClassicStorage/storageAccounts/yoavfhd\",\r\n \"name\": \"yoavfhd\",\r\n \"type\": \"Microsoft.ClassicStorage/storageAccounts\",\r\n \"location\": \"northeurope\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "7405" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "feff50fc-b574-444e-91ce-18af780659d3" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14697" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "b4a9b3c3-027b-4d3e-b757-0cd9cc0ca28f" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14921" ], "x-ms-correlation-request-id": [ - "b4a9b3c3-027b-4d3e-b757-0cd9cc0ca28f" + "1ad9bb6b-6ace-49ec-9e5c-05254fa415a8" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075110Z:b4a9b3c3-027b-4d3e-b757-0cd9cc0ca28f" + "WESTEUROPE:20160103T135513Z:1ad9bb6b-6ace-49ec-9e5c-05254fa415a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:10 GMT" + "Sun, 03 Jan 2016 13:55:12 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resources?$filter=resourceType%20eq%20'Microsoft.Storage%2FstorageAccounts'&api-version=2014-04-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TdG9yYWdlJTJGc3RvcmFnZUFjY291bnRzJyZhcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "a7ebc8c4-dce3-4062-ba72-3ac86459dbb1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Default-SQL-NorthEurope/providers/Microsoft.Storage/storageAccounts/yrubinv2storage\",\r\n \"name\": \"yrubinv2storage\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/Group-1/providers/Microsoft.Storage/storageAccounts/raniteststorage1122\",\r\n \"name\": \"raniteststorage1122\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001\",\r\n \"name\": \"tdcmdlets6001\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "777" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "9fb4d92a-b57a-4467-bc47-b417ff0ca022" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14696" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "b83b7023-d243-4beb-9742-a7ba893e8182" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14919" ], "x-ms-correlation-request-id": [ - "b83b7023-d243-4beb-9742-a7ba893e8182" + "3bf2f9f9-5cf2-45b0-9fd1-14531d512bf2" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075110Z:b83b7023-d243-4beb-9742-a7ba893e8182" + "WESTEUROPE:20160103T135517Z:3bf2f9f9-5cf2-45b0-9fd1-14531d512bf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:10 GMT" + "Sun, 03 Jan 2016 13:55:16 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001/listKeys?api-version=2014-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5DbGFzc2ljU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvdGRjbWRsZXRzNjAwMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE0LTA2LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "none" + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ClassicStorage/storageAccounts/tdcmdlets6001' under resource group 'sql-td-cmdlet-test-rg6001' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "522" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "c22ff315-3fb7-435e-853d-5446a469f4b5" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-failure-cause": [ - "gateway" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-request-id": [ - "fec6e5fa-56ac-4b23-8736-0f0e15a6c660" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14917" ], "x-ms-correlation-request-id": [ - "fec6e5fa-56ac-4b23-8736-0f0e15a6c660" + "29d713ad-ab33-428b-8129-3b3046011e14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075112Z:fec6e5fa-56ac-4b23-8736-0f0e15a6c660" + "WESTEUROPE:20160103T135519Z:29d713ad-ab33-428b-8129-3b3046011e14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:11 GMT" + "Sun, 03 Jan 2016 13:55:19 GMT" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 404 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Storage/storageAccounts/tdcmdlets6001/listKeys?api-version=2015-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy90ZGNtZGxldHM2MDAxL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "6f5fcc7e-f257-4792-9766-f589fc7e313a" - ], "User-Agent": [ - "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0" + "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" + ], + "x-ms-client-request-id": [ + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"key1\": \"pvduynDWrrVKHKjK/NuRzaiRqTU7tkgvZHwpGfTUL0q78wmwRAAcuhjl6hMr98FSmrjlCIdBWRBsU6ZRmfIU+g==\",\r\n \"key2\": \"EvPOMvw4O/Y54TFZIJ58uPgyKu/QeZZbEIaIdUF7G4SNUaV+F1sFCjr8KoLJvRb99iY69JtjaPvQFUSeEI384g==\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "198" + "522" ], "Content-Type": [ - "application/json" + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], - "Expires": [ - "-1" + "x-ms-request-id": [ + "46f376ba-65ca-4566-9a33-6b0dc1647e22" ], - "Pragma": [ - "no-cache" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-request-id": [ - "e557ec00-c97f-43b1-b457-65de6b0a4735" + "DataServiceVersion": [ + "3.0;" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14915" ], "x-ms-correlation-request-id": [ - "e557ec00-c97f-43b1-b457-65de6b0a4735" + "0553be78-beb6-457e-a44d-363df6234a27" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075114Z:e557ec00-c97f-43b1-b457-65de6b0a4735" + "WESTEUROPE:20160103T135521Z:0553be78-beb6-457e-a44d-363df6234a27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Cache-Control": [ - "no-cache" + "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:13 GMT" + "Sun, 03 Jan 2016 13:55:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7348,61 +5047,52 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL2F1ZGl0aW5nUG9saWNpZXMvRGVmYXVsdD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pvduynDWrrVKHKjK/NuRzaiRqTU7tkgvZHwpGfTUL0q78wmwRAAcuhjl6hMr98FSmrjlCIdBWRBsU6ZRmfIU+g==\",\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"retentionDays\": \"0\",\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\"\r\n }\r\n}", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "827" - ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "4d80c1e9-8229-4c07-a659-d14cb480153f" + "754d2205-e6de-4780-a900-c4cda54a3fec" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/auditingPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/auditingPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"auditingState\": \"Enabled\",\r\n \"eventTypesToAudit\": \"PlainSQL_Success,PlainSQL_Failure,ParameterizedSQL_Success,ParameterizedSQL_Failure,StoredProcedure_Success,StoredProcedure_Failure,Login_Success,Login_Failure,TransactionManagement_Success,TransactionManagement_Failure\",\r\n \"storageAccountName\": \"tdcmdlets6001\",\r\n \"storageAccountKey\": \"pvduynDWrrVKHKjK/NuRzaiRqTU7tkgvZHwpGfTUL0q78wmwRAAcuhjl6hMr98FSmrjlCIdBWRBsU6ZRmfIU+g==\",\r\n \"storageAccountSecondaryKey\": null,\r\n \"storageTableEndpoint\": \"https://tdcmdlets6001.table.core.windows.net\",\r\n \"storageAccountResourceGroupName\": \"sql-td-cmdlet-test-rg6001\",\r\n \"storageAccountSubscriptionId\": \"cca24ec8-99b5-4aa7-9ff6-486e886f304c\",\r\n \"useServerDefault\": \"Disabled\",\r\n \"fullAuditLogsTableName\": null,\r\n \"auditLogsTableName\": \"Sqltdcmdletserver6001Sqltdcmdletdb6001\",\r\n \"retentionDays\": \"0\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "1126" + "522" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "8f4c7c3e-7225-4528-8ef7-70c1966c7b16" + "63b66dea-abed-4418-8c50-b38fcb703679" ], "X-Content-Type-Options": [ "nosniff" ], - "Preference-Applied": [ - "return-content" - ], "DataServiceVersion": [ "3.0;" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14913" ], "x-ms-correlation-request-id": [ - "57b97430-1926-4f96-bc9f-17eb2d389541" + "363b2cc6-8c51-467e-941f-8bae57285588" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075117Z:57b97430-1926-4f96-bc9f-17eb2d389541" + "WESTEUROPE:20160103T135527Z:363b2cc6-8c51-467e-941f-8bae57285588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:16 GMT" + "Sun, 03 Jan 2016 13:55:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7420,7 +5110,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "40723f20-3a8e-4fd2-a18a-787df8276446" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -7432,7 +5122,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "255389df-a12a-40d2-a813-be33a51c17a1" + "ef8e1809-198b-41f1-a775-177daa4028ea" ], "X-Content-Type-Options": [ "nosniff" @@ -7441,13 +5131,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "14911" ], "x-ms-correlation-request-id": [ - "99df9210-fbd1-4293-aba3-1bdcf4b5f9f7" + "a196c160-6e6e-4bfc-bf01-41b20f7e70fb" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075118Z:99df9210-fbd1-4293-aba3-1bdcf4b5f9f7" + "WESTEUROPE:20160103T135529Z:a196c160-6e6e-4bfc-bf01-41b20f7e70fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7456,7 +5146,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:17 GMT" + "Sun, 03 Jan 2016 13:55:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7474,7 +5164,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "ec778c3a-fbf6-49a1-aa01-04a663bd9c7e" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -7486,7 +5176,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "d1e9b289-9fa9-469a-9a49-152358fe2554" + "cd4d0385-7b6c-4b3c-9f4e-3b0812ea4588" ], "X-Content-Type-Options": [ "nosniff" @@ -7495,13 +5185,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14941" + "14909" ], "x-ms-correlation-request-id": [ - "4013e45d-ec4f-44f3-8768-ff07cb5af839" + "6788c83b-d1c2-4078-98c5-e6261391012d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075120Z:4013e45d-ec4f-44f3-8768-ff07cb5af839" + "WESTEUROPE:20160103T135534Z:6788c83b-d1c2-4078-98c5-e6261391012d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7510,7 +5200,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:19 GMT" + "Sun, 03 Jan 2016 13:55:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7528,7 +5218,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7bf86856-dcf1-4a74-a56b-5de3eb99201e" + "0fb174a8-875c-4740-b480-31db56926095" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -7540,7 +5230,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "4ad360f0-60b5-416b-9bca-2c6e4d4ffa9f" + "38e854ad-749a-48d5-a3b7-87aa36a0aa98" ], "X-Content-Type-Options": [ "nosniff" @@ -7549,13 +5239,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14907" ], "x-ms-correlation-request-id": [ - "fcee3e34-3c16-4feb-b297-0e43fe7c144b" + "5b4d836b-a296-4ee6-af2e-a24072cb5d08" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075125Z:fcee3e34-3c16-4feb-b297-0e43fe7c144b" + "WESTEUROPE:20160103T135536Z:5b4d836b-a296-4ee6-af2e-a24072cb5d08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7564,7 +5254,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:25 GMT" + "Sun, 03 Jan 2016 13:55:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7582,7 +5272,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "0fb174a8-875c-4740-b480-31db56926095" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -7594,7 +5284,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c99fc4b4-b213-4ba3-bcf6-868ddc5a7641" + "98f6f04b-489e-439d-9742-1dccccc36bb0" ], "X-Content-Type-Options": [ "nosniff" @@ -7603,13 +5293,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14937" + "14905" ], "x-ms-correlation-request-id": [ - "3359d09b-970a-4586-80f0-dd67e9a1e14a" + "ad8bc77e-4db6-4ede-a4f1-646a787a362c" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075127Z:3359d09b-970a-4586-80f0-dd67e9a1e14a" + "WESTEUROPE:20160103T135538Z:ad8bc77e-4db6-4ede-a4f1-646a787a362c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7618,7 +5308,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:27 GMT" + "Sun, 03 Jan 2016 13:55:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7636,7 +5326,7 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "f1ea5b12-ab95-4557-93c4-d366e453575d" ] }, "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", @@ -7648,7 +5338,7 @@ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "39a7c4b0-77a3-455e-af3c-b65b9c2c8c3f" + "b3c27bb6-e375-4918-9e88-6f36212d9e13" ], "X-Content-Type-Options": [ "nosniff" @@ -7657,13 +5347,13 @@ "3.0;" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14903" ], "x-ms-correlation-request-id": [ - "09c5474b-4f4a-42d7-ae2f-4d022633116f" + "14b40900-cba7-4435-9444-995a34cf5f3d" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075129Z:09c5474b-4f4a-42d7-ae2f-4d022633116f" + "WESTEUROPE:20160103T135544Z:14b40900-cba7-4435-9444-995a34cf5f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7672,7 +5362,7 @@ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:29 GMT" + "Sun, 03 Jan 2016 13:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7681,8 +5371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7690,19 +5380,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bd5c480a-f7c3-4cad-8f95-4a696237929d" + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "468" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "27b4cf47-b7e2-4e70-b97c-e1a8fe7550de" + "7669c842-e3fd-4369-b1cc-f50f0732821e" ], "X-Content-Type-Options": [ "nosniff" @@ -7710,23 +5400,23 @@ "DataServiceVersion": [ "3.0;" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "14922" ], "x-ms-correlation-request-id": [ - "1f745008-e414-4e49-b7db-14fc32bc1817" + "80ce4728-ac56-4f26-a22d-bfc593527ee0" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075134Z:1f745008-e414-4e49-b7db-14fc32bc1817" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135513Z:80ce4728-ac56-4f26-a22d-bfc593527ee0" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:34 GMT" + "Sun, 03 Jan 2016 13:55:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7735,8 +5425,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7744,19 +5434,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed2dd22c-a435-471f-8f8b-76c9f4e82658" + "a7ebc8c4-dce3-4062-ba72-3ac86459dbb1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "537" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cf4388fc-de38-4bb3-ac7a-d1b01b7087e9" + "23d6e889-76e0-4650-a02c-6731d33bbee7" ], "X-Content-Type-Options": [ "nosniff" @@ -7764,23 +5454,23 @@ "DataServiceVersion": [ "3.0;" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" + "14918" ], "x-ms-correlation-request-id": [ - "45aa0d3b-2c89-4f25-867a-38cc7195ba0c" + "40c9f057-2cb6-4274-be1c-b71bd3ab061b" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075136Z:45aa0d3b-2c89-4f25-867a-38cc7195ba0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135519Z:40c9f057-2cb6-4274-be1c-b71bd3ab061b" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:36 GMT" + "Sun, 03 Jan 2016 13:55:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7789,8 +5479,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001?api-version=2014-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDE/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7798,19 +5488,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a4567ec-84cd-4f77-8979-53091b8f106a" + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001\",\r\n \"name\": \"sql-td-cmdlet-server6001\",\r\n \"type\": \"Microsoft.Sql/servers\",\r\n \"location\": \"Australia East\",\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sql-td-cmdlet-server6001.database.windows.net\",\r\n \"administratorLogin\": \"testlogin\",\r\n \"administratorLoginPassword\": null,\r\n \"externalAdministratorLogin\": null,\r\n \"externalAdministratorSid\": null,\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "537" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "1a8d72b0-e68a-4942-a41b-7c1811e72a02" + "f7506f54-22a3-45d0-81cf-0c7cbc6e1551" ], "X-Content-Type-Options": [ "nosniff" @@ -7818,23 +5508,23 @@ "DataServiceVersion": [ "3.0;" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" + "14916" ], "x-ms-correlation-request-id": [ - "7ec8c30d-1771-43cc-a614-35598e60663e" + "ef5332c8-ebf8-475d-aef4-a58fdfad0bdc" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075141Z:7ec8c30d-1771-43cc-a614-35598e60663e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTEUROPE:20160103T135521Z:ef5332c8-ebf8-475d-aef4-a58fdfad0bdc" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:41 GMT" + "Sun, 03 Jan 2016 13:55:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7852,19 +5542,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "754d2205-e6de-4780-a900-c4cda54a3fec" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Enabled\",\r\n \"state\": \"New\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"\",\r\n \"emailAccountAdmins\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "468" + "580" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "c0a7cf9d-5aa3-46cc-affe-5f0993f5c739" + "1e77d6ac-d182-4ca7-b933-8862f0c7d146" ], "X-Content-Type-Options": [ "nosniff" @@ -7876,19 +5566,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14912" ], "x-ms-correlation-request-id": [ - "0cf0a597-5ae8-4d7e-8d4d-eafc782a397e" + "468e68fa-1331-4d6a-9c12-bfe323d59427" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075120Z:0cf0a597-5ae8-4d7e-8d4d-eafc782a397e" + "WESTEUROPE:20160103T135529Z:468e68fa-1331-4d6a-9c12-bfe323d59427" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:19 GMT" + "Sun, 03 Jan 2016 13:55:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7906,19 +5596,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7bf86856-dcf1-4a74-a56b-5de3eb99201e" + "40723f20-3a8e-4fd2-a18a-787df8276446" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "580" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "54309951-4afa-4e32-8d6d-b19ab1d940ac" + "768771a5-46b0-4dbe-a322-42bb567e2a87" ], "X-Content-Type-Options": [ "nosniff" @@ -7930,19 +5620,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14910" ], "x-ms-correlation-request-id": [ - "2d28dcb6-fbb7-45c1-a0fc-a38d6283803c" + "d9db10e8-664f-4a6d-b37c-d4e6a0f30b75" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075127Z:2d28dcb6-fbb7-45c1-a0fc-a38d6283803c" + "WESTEUROPE:20160103T135531Z:d9db10e8-664f-4a6d-b37c-d4e6a0f30b75" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:27 GMT" + "Sun, 03 Jan 2016 13:55:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -7960,19 +5650,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "ec778c3a-fbf6-49a1-aa01-04a663bd9c7e" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "540" + "581" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "40162cd6-5fc0-4a05-ad18-9f108e816502" + "a0e87175-0b43-44d4-9ecd-a84ee1680715" ], "X-Content-Type-Options": [ "nosniff" @@ -7984,19 +5674,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14936" + "14908" ], "x-ms-correlation-request-id": [ - "a28d7b40-27be-42a6-8ffc-6472b32acd7b" + "4a4004b6-3cd7-48bd-88f3-6995b521fd95" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075129Z:a28d7b40-27be-42a6-8ffc-6472b32acd7b" + "WESTEUROPE:20160103T135536Z:4a4004b6-3cd7-48bd-88f3-6995b521fd95" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:29 GMT" + "Sun, 03 Jan 2016 13:55:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8014,19 +5704,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bd5c480a-f7c3-4cad-8f95-4a696237929d" + "0fb174a8-875c-4740-b480-31db56926095" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi,Client_GEO_Anomaly,Failed_Logins_Anomaly,Failed_Queries_Anomaly,Data_Extraction_Anomaly,Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "581" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "cc105520-a835-4df0-b551-f9fb64dc3676" + "f7d00758-062e-4ac2-b1df-77ec3896203f" ], "X-Content-Type-Options": [ "nosniff" @@ -8038,19 +5728,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" + "14906" ], "x-ms-correlation-request-id": [ - "7fb86121-c13d-487d-8c80-19c2fcce7736" + "a863a799-8897-48b8-b89c-e6748cb49616" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075136Z:7fb86121-c13d-487d-8c80-19c2fcce7736" + "WESTEUROPE:20160103T135538Z:a863a799-8897-48b8-b89c-e6748cb49616" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:35 GMT" + "Sun, 03 Jan 2016 13:55:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8068,19 +5758,19 @@ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed2dd22c-a435-471f-8f8b-76c9f4e82658" + "f1ea5b12-ab95-4557-93c4-d366e453575d" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi,Client_GEO_Anomaly,Failed_Logins_Anomaly,Failed_Queries_Anomaly,Data_Extraction_Anomaly,Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "652" + "510" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "838771e1-afaf-401f-baaa-6565be33ff6e" + "f7e63eef-f3e7-401c-962c-d13e8e9ac8e8" ], "X-Content-Type-Options": [ "nosniff" @@ -8092,19 +5782,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" + "14902" ], "x-ms-correlation-request-id": [ - "cc632e1a-34d0-4fb1-931d-41dbc4405200" + "ce293dc5-ea41-4f55-88ab-f2cafcbcd08f" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075138Z:cc632e1a-34d0-4fb1-931d-41dbc4405200" + "WESTEUROPE:20160103T135546Z:ce293dc5-ea41-4f55-88ab-f2cafcbcd08f" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:38 GMT" + "Sun, 03 Jan 2016 13:55:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8115,50 +5805,59 @@ { "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "208" + ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "7a4567ec-84cd-4f77-8979-53091b8f106a" + "8c76a9e1-7655-4744-96b0-683d2390b55b" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": \"Australia East\",\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": \"Disabled\",\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Successful_SQLi,Attempted_SQLi,Client_GEO_Anomaly,Failed_Logins_Anomaly,Failed_Queries_Anomaly,Data_Extraction_Anomaly,Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection_Vulnerability\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "653" + "519" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "5070a241-f2fd-45cc-871f-b0e3e2d7467a" + "3ee70506-c669-40eb-857b-6edbf5a65c64" ], "X-Content-Type-Options": [ "nosniff" ], + "Preference-Applied": [ + "return-content" + ], "DataServiceVersion": [ "3.0;" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "3609dcb7-8197-4038-931e-f23b38a15b18" + "6a461b0a-b314-43ec-9fb3-6aa03dbfd0bd" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075143Z:3609dcb7-8197-4038-931e-f23b38a15b18" + "WESTEUROPE:20160103T135517Z:6a461b0a-b314-43ec-9fb3-6aa03dbfd0bd" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:42 GMT" + "Sun, 03 Jan 2016 13:55:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8170,31 +5869,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "211" + "251" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "bfc4b756-4b8b-4313-9949-4e04977caa29" + "ebfb2db4-91f6-4725-b4ad-6e0884d0f7da" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "522" + "562" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "12ed87e8-d2ac-433c-b63c-9d3b901c1492" + "a97d6b84-1a59-4e64-8375-5589229169c9" ], "X-Content-Type-Options": [ "nosniff" @@ -8212,16 +5911,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "c14ea4a1-34bc-4c63-bf4e-f123beedd90d" + "4f8fd5de-b923-480c-8929-805e036aab14" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075125Z:c14ea4a1-34bc-4c63-bf4e-f123beedd90d" + "WESTEUROPE:20160103T135527Z:4f8fd5de-b923-480c-8929-805e036aab14" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:25 GMT" + "Sun, 03 Jan 2016 13:55:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8233,31 +5932,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "323" + "252" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "94ae1cbe-d970-4b5f-ad63-f3e94a11c05e" + "40723f20-3a8e-4fd2-a18a-787df8276446" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Sql_Injection;Sql_Injection_Vulnerability;Access_Anomaly;Usage_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "634" + "563" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "19e3834b-a214-4a2c-8546-18779faacc5e" + "27285547-54bb-4246-bcfa-da0b59dc017d" ], "X-Content-Type-Options": [ "nosniff" @@ -8275,16 +5974,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "dbfa2369-8dfa-4a1d-9f16-922b9a680818" + "3ece6aa1-5f8d-47bf-9fab-bc3ea0a23893" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075134Z:dbfa2369-8dfa-4a1d-9f16-922b9a680818" + "WESTEUROPE:20160103T135534Z:3ece6aa1-5f8d-47bf-9fab-bc3ea0a23893" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:33 GMT" + "Sun, 03 Jan 2016 13:55:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8296,31 +5995,31 @@ "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default?api-version=2014-04-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3NxbC10ZC1jbWRsZXQtdGVzdC1yZzYwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWwtdGQtY21kbGV0LXNlcnZlcjYwMDEvZGF0YWJhc2VzL3NxbC10ZC1jbWRsZXQtZGI2MDAxL3NlY3VyaXR5QWxlcnRQb2xpY2llcy9EZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "324" + "181" ], "User-Agent": [ "Microsoft.Azure.Management.Sql.SqlManagementClient/0.9.0.0" ], "x-ms-client-request-id": [ - "ed2dd22c-a435-471f-8f8b-76c9f4e82658" + "0fb174a8-875c-4740-b480-31db56926095" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Disabled\",\r\n \"disabledAlerts\": \"Successful_SQLi;Attempted_SQLi;Client_GEO_Anomaly;Failed_Logins_Anomaly;Failed_Queries_Anomaly;Data_Extraction_Anomaly;Data_Alteration_Anomaly\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/sql-td-cmdlet-test-rg6001/providers/Microsoft.Sql/servers/sql-td-cmdlet-server6001/databases/sql-td-cmdlet-db6001/securityAlertPolicies/Default\",\r\n \"name\": \"Default\",\r\n \"type\": \"Microsoft.Sql/servers/databases/securityAlertPolicies\",\r\n \"location\": null,\r\n \"kind\": null,\r\n \"properties\": {\r\n \"useServerDefault\": null,\r\n \"state\": \"Enabled\",\r\n \"disabledAlerts\": \"\",\r\n \"emailAddresses\": \"koko@mailTest.com;koko1@mailTest.com\",\r\n \"emailAccountAdmins\": \"Disabled\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "635" + "492" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" ], "x-ms-request-id": [ - "3bf08431-e664-406e-a776-1ac6a3bdf690" + "33450b15-5281-4125-af67-a21246776557" ], "X-Content-Type-Options": [ "nosniff" @@ -8338,16 +6037,16 @@ "1193" ], "x-ms-correlation-request-id": [ - "79ac4a19-a338-46b0-8060-ea0be6ab5db3" + "4a68f1d3-72f0-4919-b15a-bb6f0ceeabd1" ], "x-ms-routing-request-id": [ - "WESTEUROPE:20151112T075141Z:79ac4a19-a338-46b0-8060-ea0be6ab5db3" + "WESTEUROPE:20160103T135544Z:4a68f1d3-72f0-4919-b15a-bb6f0ceeabd1" ], "Cache-Control": [ "no-store, no-cache" ], "Date": [ - "Thu, 12 Nov 2015 07:51:40 GMT" + "Sun, 03 Jan 2016 13:55:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -8359,7 +6058,7 @@ "Names": {}, "Variables": { "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c", - "User": "yrubin@microsoft.com", + "User": "yaiyun@microsoft.com", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" } } \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs b/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs index bc84968145f2..e67adf5e1ad1 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Common/SecurityConstants.cs @@ -60,24 +60,18 @@ public class SecurityConstants public const string Disabled = "Disabled"; // Threat Detection disabled types: - public const string Successful_SQLi = "Successful_SQLi"; - public const string Attempted_SQLi = "Attempted_SQLi"; - public const string Client_GEO_Anomaly = "Client_GEO_Anomaly"; - public const string Failed_Logins_Anomaly = "Failed_Logins_Anomaly"; - public const string Failed_Queries_Anomaly = "Failed_Queries_Anomaly"; - public const string Data_Extraction_Anomaly = "Data_Extraction_Anomaly"; - public const string Data_Alteration_Anomaly = "Data_Alteration_Anomaly"; + public const string Sql_Injection = "Sql_Injection"; + public const string Sql_Injection_Vulnerability = "Sql_Injection_Vulnerability"; + public const string Access_Anomaly = "Access_Anomaly"; + public const string Usage_Anomaly = "Usage_Anomaly"; public static readonly Dictionary ExcludedDetectionToExcludedDetectionTypes = new Dictionary { - {Successful_SQLi, DetectionType.Successful_SQLi}, - {Attempted_SQLi, DetectionType.Attempted_SQLi}, - {Client_GEO_Anomaly, DetectionType.Client_GEO_Anomaly}, - {Failed_Logins_Anomaly, DetectionType.Failed_Logins_Anomaly}, - {Failed_Queries_Anomaly, DetectionType.Failed_Queries_Anomaly}, - {Data_Extraction_Anomaly, DetectionType.Data_Extraction_Anomaly}, - {Data_Alteration_Anomaly, DetectionType.Data_Alteration_Anomaly}, + {Sql_Injection, DetectionType.Sql_Injection}, + {Sql_Injection_Vulnerability, DetectionType.Sql_Injection_Vulnerability}, + {Access_Anomaly, DetectionType.Access_Anomaly}, + {Usage_Anomaly, DetectionType.Usage_Anomaly} }; // Masking functions diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs index 8bc565d58609..987709396c02 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34014 +// Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -195,6 +195,15 @@ internal static string InvalidEventTypeSet { } } + /// + /// Looks up a localized string similar to Cannot use the '{0}' option with other excluded detection types.. + /// + internal static string InvalidExcludedDetectionTypeSet { + get { + return ResourceManager.GetString("InvalidExcludedDetectionTypeSet", resourceCulture); + } + } + /// /// Looks up a localized string similar to Please use Set-AzureRmEnvironment to set a valid GraphEndpoint for the current AzureEnvironment.. /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx index c41aaa5c9c62..e5ce2897ef8d 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx @@ -273,4 +273,7 @@ In order to enable Threat Detection, please enable database auditing. + + Cannot use the '{0}' option with other excluded detection types. + \ No newline at end of file diff --git a/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs b/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs index 12b136075026..65d5aaeba65b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Services/Util.cs @@ -78,14 +78,41 @@ internal static string[] ProcessAuditEvents(string[] eventTypes) { if (eventTypes.Contains(SecurityConstants.All)) { - throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidEventTypeSet, SecurityConstants.All)); + throw new Exception(string.Format(Properties.Resources.InvalidEventTypeSet, SecurityConstants.All)); } if (eventTypes.Contains(SecurityConstants.None)) { - throw new Exception(string.Format(Microsoft.Azure.Commands.Sql.Properties.Resources.InvalidEventTypeSet, SecurityConstants.None)); + throw new Exception(string.Format(Properties.Resources.InvalidEventTypeSet, SecurityConstants.None)); } } return eventTypes; - } + } + + /// + /// In cases where the user decided to use the shortcut NONE, this method sets the value of the ExcludedDetectionType property to reflect the correct values. + /// + internal static string[] ProcessExcludedDetectionTypes(string[] excludedDetectionTypes) + { + if (excludedDetectionTypes == null || excludedDetectionTypes.Length == 0) + { + return excludedDetectionTypes; + } + + if (excludedDetectionTypes.Length == 1) + { + if (excludedDetectionTypes[0] == SecurityConstants.None) + { + return new string[] { }; + } + } + else + { + if (excludedDetectionTypes.Contains(SecurityConstants.None)) + { + throw new Exception(string.Format(Properties.Resources.InvalidExcludedDetectionTypeSet, SecurityConstants.None)); + } + } + return excludedDetectionTypes; + } } } diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs index 93b9aa3e7995..26de7815a990 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SetAzureSqlDatabaseThreatDetection.cs @@ -17,6 +17,7 @@ using System.Management.Automation; using System.Text.RegularExpressions; using Microsoft.Azure.Commands.Sql.Common; +using Microsoft.Azure.Commands.Sql.Services; using Microsoft.Azure.Commands.Sql.ThreatDetection.Model; namespace Microsoft.Azure.Commands.Sql.ThreatDetection.Cmdlet @@ -50,7 +51,9 @@ public class SetAzureSqlDatabaseThreatDetection : SqlDatabaseThreatDetectionCmdl /// Gets or sets the names of the detection types to filter. /// [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Detection types to exclude")] - [ValidateSet(SecurityConstants.Successful_SQLi, SecurityConstants.Attempted_SQLi, SecurityConstants.Client_GEO_Anomaly, SecurityConstants.Failed_Logins_Anomaly, SecurityConstants.Failed_Queries_Anomaly, SecurityConstants.Data_Extraction_Anomaly, SecurityConstants.Data_Alteration_Anomaly, IgnoreCase = false)] + [ValidateSet(SecurityConstants.Sql_Injection, + SecurityConstants.Sql_Injection_Vulnerability, SecurityConstants.Access_Anomaly, + SecurityConstants.Usage_Anomaly, SecurityConstants.None, IgnoreCase = false)] public string[] ExcludedDetectionType { get; set; } /// @@ -79,6 +82,8 @@ protected override DatabaseThreatDetectionPolicyModel ApplyUserInputToModel(Data model.EmailAdmins = (bool)EmailAdmins; } + ExcludedDetectionType = Util.ProcessExcludedDetectionTypes(ExcludedDetectionType); + if (ExcludedDetectionType != null) { model.ExcludedDetectionTypes = ExcludedDetectionType.Select(s => SecurityConstants.ExcludedDetectionToExcludedDetectionTypes[s]).ToArray(); diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs index 4f3bc69ba7ef..e53f1926a48c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Cmdlet/SqlDatabaseThreatDetectionCmdletBase.cs @@ -13,7 +13,6 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Sql.Common; -using Microsoft.Azure.Commands.Sql.Auditing.Services; using Microsoft.Azure.Commands.Sql.ThreatDetection.Model; using Microsoft.Azure.Commands.Sql.ThreatDetection.Services; using Microsoft.Azure.Common.Authentication.Models; diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs index 91a9d451092a..36fbcaf0cbae 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Model/BaseThreatDetectionPolicyModel.cs @@ -24,13 +24,10 @@ public enum ThreatDetectionStateType { Enabled, Disabled, New }; /// public enum DetectionType { - Successful_SQLi, - Attempted_SQLi, - Client_GEO_Anomaly, - Failed_Logins_Anomaly, - Failed_Queries_Anomaly, - Data_Extraction_Anomaly, - Data_Alteration_Anomaly + Sql_Injection, + Sql_Injection_Vulnerability, + Access_Anomaly, + Usage_Anomaly, }; /// diff --git a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs index 9f9feeac5b4d..7ef6cac7e05a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ThreatDetection/Services/SqlThreatDetectionAdapter.cs @@ -132,14 +132,13 @@ private bool ModelizeThreatDetectionEmailAdmins(string emailAccountAdminsState) /// private void ModelizeDisabledAlerts(DatabaseThreatDetectionPolicyModel model, string disabledAlerts) { + List disabledAlertsArray = disabledAlerts.Split(';').Select(p => p.Trim()).ToList(); + HashSet detectionTypes = new HashSet(); - if (disabledAlerts.IndexOf(SecurityConstants.Successful_SQLi) != -1) detectionTypes.Add(DetectionType.Successful_SQLi); - if (disabledAlerts.IndexOf(SecurityConstants.Attempted_SQLi) != -1) detectionTypes.Add(DetectionType.Attempted_SQLi); - if (disabledAlerts.IndexOf(SecurityConstants.Client_GEO_Anomaly) != -1) detectionTypes.Add(DetectionType.Client_GEO_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Failed_Logins_Anomaly) != -1) detectionTypes.Add(DetectionType.Failed_Logins_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Failed_Queries_Anomaly) != -1) detectionTypes.Add(DetectionType.Failed_Queries_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Data_Extraction_Anomaly) != -1) detectionTypes.Add(DetectionType.Data_Extraction_Anomaly); - if (disabledAlerts.IndexOf(SecurityConstants.Data_Alteration_Anomaly) != -1) detectionTypes.Add(DetectionType.Data_Alteration_Anomaly); + if (disabledAlertsArray.Contains(SecurityConstants.Sql_Injection)) detectionTypes.Add(DetectionType.Sql_Injection); + if (disabledAlertsArray.Contains(SecurityConstants.Sql_Injection_Vulnerability)) detectionTypes.Add(DetectionType.Sql_Injection_Vulnerability); + if (disabledAlertsArray.Contains(SecurityConstants.Access_Anomaly)) detectionTypes.Add(DetectionType.Access_Anomaly); + if (disabledAlertsArray.Contains(SecurityConstants.Usage_Anomaly)) detectionTypes.Add(DetectionType.Usage_Anomaly); model.ExcludedDetectionTypes = detectionTypes.ToArray(); } @@ -212,37 +211,25 @@ private string ExtractExcludedDetectionType(BaseThreatDetectionPolicyModel model } StringBuilder detectionTypes = new StringBuilder(); - if (IsDetectionTypeOn(DetectionType.Successful_SQLi, model.ExcludedDetectionTypes)) - { - detectionTypes.Append(SecurityConstants.Successful_SQLi).Append(";"); - } - if (IsDetectionTypeOn(DetectionType.Attempted_SQLi, model.ExcludedDetectionTypes)) - { - detectionTypes.Append(SecurityConstants.Attempted_SQLi).Append(";"); - } - if (IsDetectionTypeOn(DetectionType.Client_GEO_Anomaly, model.ExcludedDetectionTypes)) - { - detectionTypes.Append(SecurityConstants.Client_GEO_Anomaly).Append(";"); - } - if (IsDetectionTypeOn(DetectionType.Failed_Logins_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Sql_Injection, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Failed_Logins_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Sql_Injection).Append(";"); } - if (IsDetectionTypeOn(DetectionType.Failed_Queries_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Sql_Injection_Vulnerability, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Failed_Queries_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Sql_Injection_Vulnerability).Append(";"); } - if (IsDetectionTypeOn(DetectionType.Data_Extraction_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Access_Anomaly, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Data_Extraction_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Access_Anomaly).Append(";"); } - if (IsDetectionTypeOn(DetectionType.Data_Alteration_Anomaly, model.ExcludedDetectionTypes)) + if (IsDetectionTypeOn(DetectionType.Usage_Anomaly, model.ExcludedDetectionTypes)) { - detectionTypes.Append(SecurityConstants.Data_Alteration_Anomaly).Append(";"); + detectionTypes.Append(SecurityConstants.Usage_Anomaly).Append(";"); } if (detectionTypes.Length != 0) { - detectionTypes.Remove(detectionTypes.Length - 1, 1); // remove trailing comma + detectionTypes.Remove(detectionTypes.Length - 1, 1); // remove trailing semi-colon } return detectionTypes.ToString(); }