diff --git a/src/SDKs/SqlManagement/Management.Sql/Customizations/DatabasesOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Customizations/DatabasesOperations.cs
new file mode 100644
index 0000000000000..ff9f77bbc2403
--- /dev/null
+++ b/src/SDKs/SqlManagement/Management.Sql/Customizations/DatabasesOperations.cs
@@ -0,0 +1,65 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+
+namespace Microsoft.Azure.Management.Sql
+{
+ using Microsoft.Rest.Azure;
+ using System.Collections.Generic;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ internal partial class DatabasesOperations
+ {
+ ///
+ /// Renames a database.
+ ///
+ ///
+ /// The name of the resource group that contains the resource. You can
+ /// obtain this value from the Azure Resource Manager API or the
+ /// portal.
+ ///
+ ///
+ /// The name of the server.
+ ///
+ ///
+ /// The name of the database to rename.
+ ///
+ ///
+ /// The new name that the database should be renamed to.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ public async Task RenameWithHttpMessagesAsync(
+ string resourceGroupName,
+ string serverName,
+ string databaseName,
+ string newName,
+ Dictionary> customHeaders = null,
+ CancellationToken cancellationToken = default(CancellationToken))
+ {
+ return await this.RenameWithHttpMessagesAsync(
+ resourceGroupName,
+ serverName,
+ databaseName,
+ new Models.ResourceMoveDefinition(
+ string.Format("/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.Sql/servers/{2}/databases/{3}",
+ this.Client.SubscriptionId,
+ resourceGroupName,
+ serverName,
+ newName)),
+ customHeaders,
+ cancellationToken);
+ }
+ }
+}
diff --git a/src/SDKs/SqlManagement/Management.Sql/Customizations/DatabasesOperationsExtensions.cs b/src/SDKs/SqlManagement/Management.Sql/Customizations/DatabasesOperationsExtensions.cs
new file mode 100644
index 0000000000000..8de3c147b9b1e
--- /dev/null
+++ b/src/SDKs/SqlManagement/Management.Sql/Customizations/DatabasesOperationsExtensions.cs
@@ -0,0 +1,80 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+
+namespace Microsoft.Azure.Management.Sql
+{
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ public partial class DatabasesOperationsExtensions
+ {
+ ///
+ /// Renames a database.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The name of the resource group that contains the resource. You can obtain
+ /// this value from the Azure Resource Manager API or the portal.
+ ///
+ ///
+ /// The name of the server.
+ ///
+ ///
+ /// The name of the database to rename.
+ ///
+ ///
+ /// The new name that the database should be renamed to.
+ ///
+ public static void Rename(
+ this IDatabasesOperations operations,
+ string resourceGroupName,
+ string serverName,
+ string databaseName,
+ string newName)
+ {
+ RenameAsync(operations, resourceGroupName, serverName, databaseName, newName).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Renames a database.
+ ///
+ ///
+ /// The operations group for this extension method.
+ ///
+ ///
+ /// The name of the resource group that contains the resource. You can obtain
+ /// this value from the Azure Resource Manager API or the portal.
+ ///
+ ///
+ /// The name of the server.
+ ///
+ ///
+ /// The name of the database to rename.
+ ///
+ ///
+ /// The new name that the database should be renamed to.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task RenameAsync(
+ this IDatabasesOperations operations,
+ string resourceGroupName,
+ string serverName,
+ string databaseName,
+ string newName,
+ CancellationToken cancellationToken = default(CancellationToken))
+ {
+ (await operations.RenameWithHttpMessagesAsync(
+ resourceGroupName,
+ serverName,
+ databaseName,
+ newName,
+ null,
+ cancellationToken).ConfigureAwait(false)).Dispose();
+ }
+ }
+}
diff --git a/src/SDKs/SqlManagement/Management.Sql/Customizations/IDatabasesOperations.cs b/src/SDKs/SqlManagement/Management.Sql/Customizations/IDatabasesOperations.cs
new file mode 100644
index 0000000000000..fcd44c1c7f3ef
--- /dev/null
+++ b/src/SDKs/SqlManagement/Management.Sql/Customizations/IDatabasesOperations.cs
@@ -0,0 +1,51 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+
+namespace Microsoft.Azure.Management.Sql
+{
+ using Microsoft.Rest.Azure;
+ using System.Collections.Generic;
+ using System.Threading;
+ using System.Threading.Tasks;
+
+ public partial interface IDatabasesOperations
+ {
+ ///
+ /// Renames a database.
+ ///
+ ///
+ /// The name of the resource group that contains the resource. You can
+ /// obtain this value from the Azure Resource Manager API or the
+ /// portal.
+ ///
+ ///
+ /// The name of the server.
+ ///
+ ///
+ /// The name of the database to rename.
+ ///
+ ///
+ /// The new name that the database should be renamed to.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task RenameWithHttpMessagesAsync(
+ string resourceGroupName,
+ string serverName,
+ string databaseName,
+ string newName,
+ Dictionary> customHeaders = null,
+ CancellationToken cancellationToken = default(CancellationToken));
+ }
+}
diff --git a/src/SDKs/SqlManagement/Management.Sql/ServiceObjectiveId.cs b/src/SDKs/SqlManagement/Management.Sql/Customizations/ServiceObjectiveId.cs
similarity index 100%
rename from src/SDKs/SqlManagement/Management.Sql/ServiceObjectiveId.cs
rename to src/SDKs/SqlManagement/Management.Sql/Customizations/ServiceObjectiveId.cs
diff --git a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
index 884c6da035375..9c78afe753295 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
+++ b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
@@ -12,6 +12,7 @@
diff --git a/src/SDKs/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs b/src/SDKs/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs
index fd8624f3b101b..9259f43b8c8bb 100644
--- a/src/SDKs/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs
+++ b/src/SDKs/SqlManagement/Sql.Tests/DatabaseCrudScenarioTests.cs
@@ -126,7 +126,7 @@ public void TestRenameDatabase()
});
Assert.NotNull(db1);
- // Rename
+ // Rename using id
string newSuffix = "_renamed";
string newName = db1.Name + newSuffix;
string newId = db1.Id + newSuffix;
@@ -136,8 +136,18 @@ public void TestRenameDatabase()
});
// Get database at its new id
- Database db2 = sqlClient.Databases.Get(resourceGroup.Name, server.Name, newName);
- Assert.Equal(newId, db2.Id);
+ Database newDb = sqlClient.Databases.Get(resourceGroup.Name, server.Name, newName);
+ Assert.Equal(newId, newDb.Id);
+
+ // Rename using new name
+ string newSuffix2 = "2";
+ string newName2 = newName + newSuffix2;
+ string newId2 = newId + newSuffix2;
+ sqlClient.Databases.Rename(resourceGroup.Name, server.Name, newName, newName2);
+
+ // Get database at its new id
+ Database newDb2 = sqlClient.Databases.Get(resourceGroup.Name, server.Name, newName2);
+ Assert.Equal(newId2, newDb2.Id);
}
}
diff --git a/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRenameDatabase.json b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRenameDatabase.json
index 16bc061d6689b..1c35c5127bd02 100644
--- a/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRenameDatabase.json
+++ b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.DatabaseCrudScenarioTests/TestRenameDatabase.json
@@ -1,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-1705?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTE3MDU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-483?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ4Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"sqlcrudtest-1705\": \"2017-11-14 22:32:21Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"sqlcrudtest-483\": \"2018-02-07 21:25:06Z\"\r\n }\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "95"
+ "101"
],
"x-ms-client-request-id": [
- "95515bcc-81a5-49f4-b897-961ee511ef95"
+ "284ac5bf-b8f6-45cc-b3ed-3484cb5f4e86"
],
"accept-language": [
"en-US"
@@ -23,10 +23,10 @@
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705\",\r\n \"name\": \"sqlcrudtest-1705\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"sqlcrudtest-1705\": \"2017-11-14 22:32:21Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483\",\r\n \"name\": \"sqlcrudtest-483\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"sqlcrudtest-483\": \"2018-02-07 21:25:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "236"
+ "240"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -38,7 +38,7 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:32:24 GMT"
+ "Wed, 07 Feb 2018 21:25:17 GMT"
],
"Pragma": [
"no-cache"
@@ -47,13 +47,13 @@
"1199"
],
"x-ms-request-id": [
- "1c20f3a9-fa4e-4bb4-82d8-f1e6731c7e82"
+ "42d0c47e-6974-4fd9-a176-645ffdfc9d4b"
],
"x-ms-correlation-request-id": [
- "1c20f3a9-fa4e-4bb4-82d8-f1e6731c7e82"
+ "42d0c47e-6974-4fd9-a176-645ffdfc9d4b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223225Z:1c20f3a9-fa4e-4bb4-82d8-f1e6731c7e82"
+ "WESTUS2:20180207T212518Z:42d0c47e-6974-4fd9-a176-645ffdfc9d4b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -62,29 +62,29 @@
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1Mjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"tags\": {},\r\n \"location\": \"westus\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"version\": \"12.0\"\r\n },\r\n \"tags\": {},\r\n \"location\": \"southeastasia\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "180"
+ "187"
],
"x-ms-client-request-id": [
- "2ba802e4-f98a-4abb-9fd8-b256f7e57aaa"
+ "e0f6c76a-7a1b-45b3-8d6c-02b839d47256"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2017-11-14T22:32:31.663Z\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"UpsertLogicalServer\",\r\n \"startTime\": \"2018-02-07T21:25:15.743Z\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"74"
@@ -99,13 +99,13 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:32:30 GMT"
+ "Wed, 07 Feb 2018 21:25:12 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/locations/westus/serverOperationResults/06c3a9a1-d2c2-44e5-af21-508a8a387765?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/locations/southeastasia/serverOperationResults/b35b9857-c7ae-4f51-bb03-186be1cd9de7?api-version=2015-05-01-preview"
],
"Retry-After": [
"1"
@@ -114,19 +114,19 @@
"Microsoft-HTTPAPI/2.0"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/06c3a9a1-d2c2-44e5-af21-508a8a387765?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/b35b9857-c7ae-4f51-bb03-186be1cd9de7?api-version=2015-05-01-preview"
],
"x-ms-request-id": [
- "06c3a9a1-d2c2-44e5-af21-508a8a387765"
+ "b35b9857-c7ae-4f51-bb03-186be1cd9de7"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "10c8dee7-0651-488d-a604-63684fbdcae3"
+ "91f57f27-ce98-4fdd-93cc-76abfcbce104"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223231Z:10c8dee7-0651-488d-a604-63684fbdcae3"
+ "WESTUS2:20180207T212513Z:91f57f27-ce98-4fdd-93cc-76abfcbce104"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -135,17 +135,17 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/06c3a9a1-d2c2-44e5-af21-508a8a387765?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3R1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzA2YzNhOWExLWQyYzItNDRlNS1hZjIxLTUwOGE4YTM4Nzc2NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/b35b9857-c7ae-4f51-bb03-186be1cd9de7?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IzNWI5ODU3LWM3YWUtNGY1MS1iYjAzLTE4NmJlMWNkOWRlNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"06c3a9a1-d2c2-44e5-af21-508a8a387765\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2017-11-14T22:32:31.663Z\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"b35b9857-c7ae-4f51-bb03-186be1cd9de7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-02-07T21:25:15.743Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -157,7 +157,7 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:32:41 GMT"
+ "Wed, 07 Feb 2018 21:25:22 GMT"
],
"Pragma": [
"no-cache"
@@ -175,16 +175,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "d885db63-ee61-47ab-909d-47c1840ec6a2"
+ "0c92b735-d3a0-4912-954e-0430622fb3a8"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14999"
],
"x-ms-correlation-request-id": [
- "25cc3dc3-3b2f-4a5b-89ae-efb8c8f44362"
+ "037b77af-b741-465f-93b9-1c94c34b2ad4"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223241Z:25cc3dc3-3b2f-4a5b-89ae-efb8c8f44362"
+ "WESTUS2:20180207T212523Z:037b77af-b741-465f-93b9-1c94c34b2ad4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,17 +193,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/06c3a9a1-d2c2-44e5-af21-508a8a387765?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3R1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzA2YzNhOWExLWQyYzItNDRlNS1hZjIxLTUwOGE4YTM4Nzc2NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/b35b9857-c7ae-4f51-bb03-186be1cd9de7?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IzNWI5ODU3LWM3YWUtNGY1MS1iYjAzLTE4NmJlMWNkOWRlNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"06c3a9a1-d2c2-44e5-af21-508a8a387765\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2017-11-14T22:32:31.663Z\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"b35b9857-c7ae-4f51-bb03-186be1cd9de7\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-02-07T21:25:15.743Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -215,7 +215,7 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:33:01 GMT"
+ "Wed, 07 Feb 2018 21:25:43 GMT"
],
"Pragma": [
"no-cache"
@@ -233,16 +233,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "2d81c134-a3ee-4ee1-b2ea-3d3de42f0460"
+ "67a74de2-97f0-4f04-ba0e-6de651086cd6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14998"
],
"x-ms-correlation-request-id": [
- "29482a53-ba5d-42de-8a13-bb9853e933b3"
+ "9740e652-2f0e-4fa1-b5a4-e446ab82248b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223301Z:29482a53-ba5d-42de-8a13-bb9853e933b3"
+ "WESTUS2:20180207T212544Z:9740e652-2f0e-4fa1-b5a4-e446ab82248b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -251,17 +251,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/locations/westus/serverAzureAsyncOperation/06c3a9a1-d2c2-44e5-af21-508a8a387765?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3R1cy9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uLzA2YzNhOWExLWQyYzItNDRlNS1hZjIxLTUwOGE4YTM4Nzc2NT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/locations/southeastasia/serverAzureAsyncOperation/b35b9857-c7ae-4f51-bb03-186be1cd9de7?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9zZXJ2ZXJBenVyZUFzeW5jT3BlcmF0aW9uL2IzNWI5ODU3LWM3YWUtNGY1MS1iYjAzLTE4NmJlMWNkOWRlNz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"06c3a9a1-d2c2-44e5-af21-508a8a387765\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2017-11-14T22:32:31.663Z\"\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"b35b9857-c7ae-4f51-bb03-186be1cd9de7\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-02-07T21:25:15.743Z\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -273,7 +273,7 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:33:20 GMT"
+ "Wed, 07 Feb 2018 21:26:03 GMT"
],
"Pragma": [
"no-cache"
@@ -291,16 +291,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "d7a2335e-855e-431b-b4a2-02bf4aed2a68"
+ "6e9fc01d-1bb9-4f91-a255-f46264c0790a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14997"
],
"x-ms-correlation-request-id": [
- "dc5f3b9c-f223-45c2-90fc-247ed8df6ca5"
+ "7f2111ab-aa59-4ada-b738-5e04bc1c9670"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223321Z:dc5f3b9c-f223-45c2-90fc-247ed8df6ca5"
+ "WESTUS2:20180207T212604Z:7f2111ab-aa59-4ada-b738-5e04bc1c9670"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -309,17 +309,17 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1Mjc/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-8729.database.windows.net\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729\",\r\n \"name\": \"sqlcrudtest-8729\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}",
+ "ResponseBody": "{\r\n \"kind\": \"v12.0\",\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"version\": \"12.0\",\r\n \"state\": \"Ready\",\r\n \"fullyQualifiedDomainName\": \"sqlcrudtest-2527.database.windows.net\"\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527\",\r\n \"name\": \"sqlcrudtest-2527\",\r\n \"type\": \"Microsoft.Sql/servers\"\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -331,7 +331,7 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:33:21 GMT"
+ "Wed, 07 Feb 2018 21:26:03 GMT"
],
"Pragma": [
"no-cache"
@@ -346,16 +346,16 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "a5e0036e-41ef-4a49-9ff4-40bd1dbdabc0"
+ "4c57b459-2ed3-420f-afe4-6944b9ad299a"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14996"
],
"x-ms-correlation-request-id": [
- "1d2b1f9a-5b7e-406d-9575-0a37ebd2e45a"
+ "89d0795b-6ff2-4b03-aa25-90cf164fa867"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223322Z:1d2b1f9a-5b7e-406d-9575-0a37ebd2e45a"
+ "WESTUS2:20180207T212604Z:89d0795b-6ff2-4b03-aa25-90cf164fa867"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -364,29 +364,29 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03MzQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
+ "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "28"
+ "35"
],
"x-ms-client-request-id": [
- "139b4251-bb48-4ea5-9c0d-ac3586831117"
+ "0eb8862f-926d-4809-b179-a510367aad8d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2017-11-14T14:33:23.219-08:00\"\r\n}",
+ "ResponseBody": "{\r\n \"operation\": \"CreateLogicalDatabase\",\r\n \"startTime\": \"2018-02-07T13:26:06.568-08:00\"\r\n}",
"ResponseHeaders": {
"Content-Length": [
"80"
@@ -398,10 +398,10 @@
"no-store, no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:33:22 GMT"
+ "Wed, 07 Feb 2018 21:26:07 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/operationResults/374af873-d409-4c6d-85bc-73cd09139f62?api-version=2014-04-01-Preview"
+ "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172/operationResults/afb8ffe4-07e1-4729-b83c-fe7a5fcd99dc?api-version=2014-04-01-Preview"
],
"Retry-After": [
"30"
@@ -410,7 +410,7 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "374af873-d409-4c6d-85bc-73cd09139f62"
+ "afb8ffe4-07e1-4729-b83c-fe7a5fcd99dc"
],
"X-Content-Type-Options": [
"nosniff"
@@ -425,32 +425,32 @@
"max-age=31536000; includeSubDomains"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/azureAsyncOperation/374af873-d409-4c6d-85bc-73cd09139f62?api-version=2014-04-01-Preview"
+ "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172/azureAsyncOperation/afb8ffe4-07e1-4729-b83c-fe7a5fcd99dc?api-version=2014-04-01-Preview"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "37dabe89-bfe3-45fd-8610-83e521fdefe2"
+ "b07e0e5f-37d4-4aee-bd80-d9d97bb04fd0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223323Z:37dabe89-bfe3-45fd-8610-83e521fdefe2"
+ "WESTUS2:20180207T212608Z:b07e0e5f-37d4-4aee-bd80-d9d97bb04fd0"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/azureAsyncOperation/374af873-d409-4c6d-85bc-73cd09139f62?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03MzQ0L2F6dXJlQXN5bmNPcGVyYXRpb24vMzc0YWY4NzMtZDQwOS00YzZkLTg1YmMtNzNjZDA5MTM5ZjYyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172/azureAsyncOperation/afb8ffe4-07e1-4729-b83c-fe7a5fcd99dc?api-version=2014-04-01-Preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzIvYXp1cmVBc3luY09wZXJhdGlvbi9hZmI4ZmZlNC0wN2UxLTQ3MjktYjgzYy1mZTdhNWZjZDk5ZGM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1QcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"operationId\": \"374af873-d409-4c6d-85bc-73cd09139f62\",\r\n \"status\": \"InProgress\",\r\n \"error\": null\r\n}",
+ "ResponseBody": "{\r\n \"operationId\": \"afb8ffe4-07e1-4729-b83c-fe7a5fcd99dc\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -459,7 +459,7 @@
"no-store, no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:33:52 GMT"
+ "Wed, 07 Feb 2018 21:26:38 GMT"
],
"Transfer-Encoding": [
"chunked"
@@ -471,7 +471,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "5c064f73-0a67-4e4e-830d-71329c16e020"
+ "7f4b1d43-6f97-4091-8361-0b0bfb5cc401"
],
"X-Content-Type-Options": [
"nosniff"
@@ -483,32 +483,32 @@
"max-age=31536000; includeSubDomains"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/azureAsyncOperation/374af873-d409-4c6d-85bc-73cd09139f62?api-version=2014-04-01-Preview"
+ "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172/azureAsyncOperation/afb8ffe4-07e1-4729-b83c-fe7a5fcd99dc?api-version=2014-04-01-Preview"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14995"
],
"x-ms-correlation-request-id": [
- "8b27ff69-6944-46d8-8c84-759755d63ce1"
+ "fa6d538b-6894-440e-b114-1dba9a147f70"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223353Z:8b27ff69-6944-46d8-8c84-759755d63ce1"
+ "WESTUS2:20180207T212638Z:fa6d538b-6894-440e-b114-1dba9a147f70"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/azureAsyncOperation/374af873-d409-4c6d-85bc-73cd09139f62?api-version=2014-04-01-Preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03MzQ0L2F6dXJlQXN5bmNPcGVyYXRpb24vMzc0YWY4NzMtZDQwOS00YzZkLTg1YmMtNzNjZDA5MTM5ZjYyP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtUHJldmlldw==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"operationId\": \"374af873-d409-4c6d-85bc-73cd09139f62\",\r\n \"status\": \"Succeeded\",\r\n \"error\": null\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172\",\r\n \"name\": \"sqlcrudtest-5172\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8a5dd94d-1989-4d42-a199-62933fd6fa3b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2018-02-07T21:26:06.833Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"East Asia\",\r\n \"earliestRestoreDate\": \"2018-02-07T21:56:36.147Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null,\r\n \"zoneRedundant\": false,\r\n \"isUpgradeRequested\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -517,7 +517,7 @@
"no-store, no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:34:22 GMT"
+ "Wed, 07 Feb 2018 21:26:38 GMT"
],
"Transfer-Encoding": [
"chunked"
@@ -529,7 +529,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "e84ac15a-d23b-4783-b01b-1166f3447bcf"
+ "921d06a2-5e11-4e14-99f4-561727efd00d"
],
"X-Content-Type-Options": [
"nosniff"
@@ -540,33 +540,97 @@
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/azureAsyncOperation/374af873-d409-4c6d-85bc-73cd09139f62?api-version=2014-04-01-Preview"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14994"
],
"x-ms-correlation-request-id": [
- "7d32a5d4-4772-4195-8f46-89875f60bc37"
+ "8c9e7fb6-6ccf-4041-b27d-4f28036e50a3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223423Z:7d32a5d4-4772-4195-8f46-89875f60bc37"
+ "WESTUS2:20180207T212638Z:8c9e7fb6-6ccf-4041-b27d-4f28036e50a3"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03MzQ0P2FwaS12ZXJzaW9uPTIwMTQtMDQtMDE=",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172/move?api-version=2017-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzIvbW92ZT9hcGktdmVyc2lvbj0yMDE3LTAzLTAxLXByZXZpZXc=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed\"\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "182"
+ ],
+ "x-ms-client-request-id": [
+ "f2fd0d18-1ed4-417f-9958-db4ce447e3f1"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.25211.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 07 Feb 2018 21:26:54 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "63cf022f-ce8c-4859-beb1-601aedfa31dc"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "4562598c-39be-493e-944b-fd915a13da72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180207T212654Z:4562598c-39be-493e-944b-fd915a13da72"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzJfcmVuYW1lZD9hcGktdmVyc2lvbj0yMDE0LTA0LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4dc68983-58e1-4b94-b51e-58deeb84feac"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344\",\r\n \"name\": \"sqlcrudtest-7344\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"efe31509-2f9e-4cc6-b94f-c565c9df1262\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-11-14T22:33:23.423Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2017-11-14T22:43:55.533Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null,\r\n \"zoneRedundant\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed\",\r\n \"name\": \"sqlcrudtest-5172_renamed\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8a5dd94d-1989-4d42-a199-62933fd6fa3b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2018-02-07T21:26:06.833Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"East Asia\",\r\n \"earliestRestoreDate\": \"2018-02-07T21:56:36.147Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null,\r\n \"zoneRedundant\": false,\r\n \"isUpgradeRequested\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -575,7 +639,7 @@
"no-store, no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:34:22 GMT"
+ "Wed, 07 Feb 2018 21:26:54 GMT"
],
"Transfer-Encoding": [
"chunked"
@@ -587,7 +651,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "58afc5ba-f577-4990-a367-8db975b3a3aa"
+ "5e0ef076-64a7-479f-9606-32cc770dddc7"
],
"X-Content-Type-Options": [
"nosniff"
@@ -599,22 +663,22 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14993"
],
"x-ms-correlation-request-id": [
- "a485e247-c9e2-4390-a25f-316eec2cab6e"
+ "ed9be57a-a420-4ce5-bd00-605e1a701be7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223423Z:a485e247-c9e2-4390-a25f-316eec2cab6e"
+ "WESTUS2:20180207T212655Z:ed9be57a-a420-4ce5-bd00-605e1a701be7"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344/move?api-version=2017-03-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03MzQ0L21vdmU/YXBpLXZlcnNpb249MjAxNy0wMy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed/move?api-version=2017-03-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzJfcmVuYW1lZC9tb3ZlP2FwaS12ZXJzaW9uPTIwMTctMDMtMDEtcHJldmlldw==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344_renamed\"\r\n}",
+ "RequestBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed2\"\r\n}",
"RequestHeaders": {
"Content-Type": [
"application/json; charset=utf-8"
@@ -623,14 +687,14 @@
"183"
],
"x-ms-client-request-id": [
- "c7737882-5d23-4a16-8acb-f1025b62e3aa"
+ "f17b9368-6ed6-410e-9a98-e8304dc932da"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
"ResponseBody": "",
@@ -645,7 +709,7 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:34:33 GMT"
+ "Wed, 07 Feb 2018 21:27:06 GMT"
],
"Pragma": [
"no-cache"
@@ -654,16 +718,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "beb44463-b878-4623-a191-7042fc078ee3"
+ "e7e9c3c8-5e00-4e20-b3fe-788849e13c17"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1196"
],
"x-ms-correlation-request-id": [
- "8d5ce6b1-a797-4f4d-beb0-7704c38ccf9c"
+ "6557e003-3adc-49e1-b737-588f9e754d49"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223434Z:8d5ce6b1-a797-4f4d-beb0-7704c38ccf9c"
+ "WESTUS2:20180207T212706Z:6557e003-3adc-49e1-b737-588f9e754d49"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -672,23 +736,23 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344_renamed?api-version=2014-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTE3MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvc2VydmVycy9zcWxjcnVkdGVzdC04NzI5L2RhdGFiYXNlcy9zcWxjcnVkdGVzdC03MzQ0X3JlbmFtZWQ/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed2?api-version=2014-04-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTQ4My9wcm92aWRlcnMvTWljcm9zb2Z0LlNxbC9zZXJ2ZXJzL3NxbGNydWR0ZXN0LTI1MjcvZGF0YWJhc2VzL3NxbGNydWR0ZXN0LTUxNzJfcmVuYW1lZDI/YXBpLXZlcnNpb249MjAxNC0wNC0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7ed3f1ac-afdb-410c-88c9-ff28e6dac62d"
+ "2194074d-d20e-48bc-bfd7-292c4f6619d0"
],
"accept-language": [
"en-US"
],
"User-Agent": [
"FxVersion/4.6.25211.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.9.0.0"
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.11.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourceGroups/sqlcrudtest-1705/providers/Microsoft.Sql/servers/sqlcrudtest-8729/databases/sqlcrudtest-7344_renamed\",\r\n \"name\": \"sqlcrudtest-7344_renamed\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"West US\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"efe31509-2f9e-4cc6-b94f-c565c9df1262\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2017-11-14T22:33:23.423Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"East US\",\r\n \"earliestRestoreDate\": \"2017-11-14T22:43:55.533Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null,\r\n \"zoneRedundant\": false\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourceGroups/sqlcrudtest-483/providers/Microsoft.Sql/servers/sqlcrudtest-2527/databases/sqlcrudtest-5172_renamed2\",\r\n \"name\": \"sqlcrudtest-5172_renamed2\",\r\n \"type\": \"Microsoft.Sql/servers/databases\",\r\n \"location\": \"Southeast Asia\",\r\n \"kind\": \"v12.0,user\",\r\n \"properties\": {\r\n \"databaseId\": \"8a5dd94d-1989-4d42-a199-62933fd6fa3b\",\r\n \"edition\": \"Standard\",\r\n \"status\": \"Online\",\r\n \"serviceLevelObjective\": \"S0\",\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\",\r\n \"maxSizeBytes\": \"268435456000\",\r\n \"creationDate\": \"2018-02-07T21:26:06.833Z\",\r\n \"currentServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveId\": \"f1173c43-91bd-4aaa-973c-54e79e15235b\",\r\n \"requestedServiceObjectiveName\": \"S0\",\r\n \"sampleName\": null,\r\n \"defaultSecondaryLocation\": \"East Asia\",\r\n \"earliestRestoreDate\": \"2018-02-07T21:56:36.147Z\",\r\n \"elasticPoolName\": null,\r\n \"containmentState\": 2,\r\n \"readScale\": \"Disabled\",\r\n \"failoverGroupId\": null,\r\n \"zoneRedundant\": false,\r\n \"isUpgradeRequested\": false\r\n }\r\n}",
"ResponseHeaders": {
"Content-Type": [
"application/json; odata=minimalmetadata; streaming=true; charset=utf-8"
@@ -697,7 +761,7 @@
"no-store, no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:34:33 GMT"
+ "Wed, 07 Feb 2018 21:27:06 GMT"
],
"Transfer-Encoding": [
"chunked"
@@ -709,7 +773,7 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "93f926a7-277f-477a-8256-9d770e43efb0"
+ "68242caf-9973-41aa-8122-3a1a8077dcb6"
],
"X-Content-Type-Options": [
"nosniff"
@@ -721,25 +785,25 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14992"
],
"x-ms-correlation-request-id": [
- "7ba7ef56-b53e-4a4e-9a41-a6f73f8dc3d6"
+ "e911f4dd-f5fb-4471-99c4-75598ffde179"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223434Z:7ba7ef56-b53e-4a4e-9a41-a6f73f8dc3d6"
+ "WESTUS2:20180207T212707Z:e911f4dd-f5fb-4471-99c4-75598ffde179"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/resourcegroups/sqlcrudtest-1705?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMmU3ZmU0YmQtOTBjNy00NTRlLThiYjYtZGM0NDY0OWYyN2IyL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTE3MDU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/resourcegroups/sqlcrudtest-483?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjI4ODcyZDYtNGE5My00YmIxLTg0YjktYWVjYjAyYjZhZjRjL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTQ4Mz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ca1c57c-a7a1-4ae3-b37a-0adc74f9d2e0"
+ "2b396e78-2d36-4b4f-a4b4-dad0d5ab73fb"
],
"accept-language": [
"en-US"
@@ -761,13 +825,13 @@
"no-cache"
],
"Date": [
- "Tue, 14 Nov 2017 22:34:34 GMT"
+ "Wed, 07 Feb 2018 21:27:10 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2e7fe4bd-90c7-454e-8bb6-dc44649f27b2/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDE3MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/f28872d6-4a93-4bb1-84b9-aecb02b6af4c/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDQ4My1TT1VUSEVBU1RBU0lBIiwiam9iTG9jYXRpb24iOiJzb3V0aGVhc3Rhc2lhIn0?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -776,13 +840,13 @@
"1199"
],
"x-ms-request-id": [
- "73c37f86-4453-48f2-8721-b5f40285a561"
+ "94f32465-50cf-4551-a98f-4e078306f965"
],
"x-ms-correlation-request-id": [
- "73c37f86-4453-48f2-8721-b5f40285a561"
+ "94f32465-50cf-4551-a98f-4e078306f965"
],
"x-ms-routing-request-id": [
- "WESTUS2:20171114T223434Z:73c37f86-4453-48f2-8721-b5f40285a561"
+ "WESTUS2:20180207T212710Z:94f32465-50cf-4551-a98f-4e078306f965"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -793,17 +857,17 @@
],
"Names": {
"CreateResourceGroup": [
- "sqlcrudtest-1705"
+ "sqlcrudtest-483"
],
"CreateServer": [
- "sqlcrudtest-8729"
+ "sqlcrudtest-2527"
],
"TestRenameDatabase": [
- "sqlcrudtest-7344"
+ "sqlcrudtest-5172"
]
},
"Variables": {
- "SubscriptionId": "2e7fe4bd-90c7-454e-8bb6-dc44649f27b2",
- "DefaultLocation": "westus"
+ "SubscriptionId": "f28872d6-4a93-4bb1-84b9-aecb02b6af4c",
+ "DefaultLocation": "southeastasia"
}
}
\ No newline at end of file