diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpanded.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpanded.cs index 35a0a5ab200f..852011d3d45f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpanded.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpanded.cs @@ -4,7 +4,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Azure.ResourceManager.Core.Generated +namespace Azure.ResourceManager.Core { /// /// A class representing an expanded generic azure resource along with the instance operations that can be performed on it. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpandedOperations.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpandedOperations.cs index 1120f4755b6b..0f4c3726d7d6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpandedOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/src/Generated/GenericResourceExpandedOperations.cs @@ -5,7 +5,7 @@ using System.Threading; using System.Threading.Tasks; -namespace Azure.ResourceManager.Core.Generated +namespace Azure.ResourceManager.Core { /// /// A class representing the operations that can be performed over a specific ArmResource. diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs index 679e7ef9ddab..b3ca47f82fd4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/Scenario/ArmClientTests.cs @@ -1,10 +1,8 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using NUnit.Framework; using System.Threading.Tasks; using Azure.Core.TestFramework; +using NUnit.Framework; namespace Azure.ResourceManager.Core.Tests.Scenario { @@ -12,7 +10,7 @@ class ArmClientTests : ResourceManagerTestBase { private string _rgName; private readonly string _location = "southcentralus"; - + public ArmClientTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { @@ -40,18 +38,25 @@ public void GetGenericOperationsTests() var genericResourceOperationsList = Client.GetGenericResourceOperations(ids); - foreach(GenericResourceOperations operations in genericResourceOperationsList) + foreach (GenericResourceOperations operations in genericResourceOperationsList) { - Assert.AreEqual(operations.Id, ids[0]); + Assert.AreEqual(ids[0], operations.Id.StringValue); ids.RemoveAt(0); } } + [TestCase] + public void GetGenericResourcesOperationsTests() + { + string id = $"/providers/Microsoft.Compute/virtualMachines/myVm"; + Assert.AreEqual(id, Client.GetGenericResourcesOperations(new TenantResourceIdentifier(id)).Id.StringValue); + } + [TestCase] public void GetGenericResourceOperationsSingleIDTests() { string id = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1/"; - Assert.AreEqual(Client.GetGenericResourceOperations(id).Id, id); + Assert.AreEqual(id, Client.GetGenericResourceOperations(id).Id.StringValue); } [TestCase] @@ -120,8 +125,8 @@ public void GetGenericResourceOperationWithNullSetOfIds() [TestCase] public void GetGenericResourceOperationWithNullId() { - string x = null; - Assert.Throws(() => { Client.GetGenericResourceOperations(x); }); + string x = null; + Assert.Throws(() => { Client.GetGenericResourceOperations(x); }); } [TestCase] diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json index f6d619d18a32..45334ea831fd 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "0eb3d93b133c8a58c719ba989fc8bd8f", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:40 GMT", + "Date": "Mon, 07 Jun 2021 22:04:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6727d820-6512-4dd6-b700-29c494f2b20a", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "6727d820-6512-4dd6-b700-29c494f2b20a", - "x-ms-routing-request-id": "WESTUS2:20210513T224041Z:6727d820-6512-4dd6-b700-29c494f2b20a" + "x-ms-correlation-request-id": "9a5cd478-1251-456e-95e8-a99cb9a406f9", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "9a5cd478-1251-456e-95e8-a99cb9a406f9", + "x-ms-routing-request-id": "WESTUS2:20210607T220447Z:9a5cd478-1251-456e-95e8-a99cb9a406f9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json index c7dfdecacc28..2ebe0a01a34a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "ed82218f3b5be08677d154bfc82678b3", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:40 GMT", + "Date": "Mon, 07 Jun 2021 22:04:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "117d20e5-35a5-4a47-8c8f-2fd718fa0f39", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "117d20e5-35a5-4a47-8c8f-2fd718fa0f39", - "x-ms-routing-request-id": "WESTUS2:20210513T224041Z:117d20e5-35a5-4a47-8c8f-2fd718fa0f39" + "x-ms-correlation-request-id": "65d30277-000a-49f9-bd8f-0fd48b2749ee", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "65d30277-000a-49f9-bd8f-0fd48b2749ee", + "x-ms-routing-request-id": "WESTUS2:20210607T220447Z:65d30277-000a-49f9-bd8f-0fd48b2749ee" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json index c4ab59a9dafd..9791879cc7ee 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fff178d6ed5866066762532553bb0b30", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:41 GMT", + "Date": "Mon, 07 Jun 2021 21:26:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da1bc5f5-4fcf-4c6a-b5c6-e3ea11db9867", + "x-ms-correlation-request-id": "3a4c2ebf-bc50-4426-91a3-9c95da398909", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "da1bc5f5-4fcf-4c6a-b5c6-e3ea11db9867", - "x-ms-routing-request-id": "WESTUS2:20210513T224041Z:da1bc5f5-4fcf-4c6a-b5c6-e3ea11db9867" + "x-ms-request-id": "3a4c2ebf-bc50-4426-91a3-9c95da398909", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:3a4c2ebf-bc50-4426-91a3-9c95da398909" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a28a19d2-9700-4094-aebf-f7d1c5e8d4c6", + "x-ms-correlation-request-id": "49ffa7cf-1f95-42da-b498-8d5237086005", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "a28a19d2-9700-4094-aebf-f7d1c5e8d4c6", - "x-ms-routing-request-id": "WESTUS2:20210513T224042Z:a28a19d2-9700-4094-aebf-f7d1c5e8d4c6" + "x-ms-request-id": "49ffa7cf-1f95-42da-b498-8d5237086005", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:49ffa7cf-1f95-42da-b498-8d5237086005" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "681d18f8bcf8700deb324820f46c97ef", "x-ms-return-client-request-id": "true" }, @@ -1247,16 +1249,16 @@ "Cache-Control": "no-cache", "Content-Length": "104", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b57e6e8-3778-40d7-a18d-3ade7ae82ed4", + "x-ms-correlation-request-id": "2d069386-7898-4c74-92a1-496f8447811c", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "8b57e6e8-3778-40d7-a18d-3ade7ae82ed4", - "x-ms-routing-request-id": "WESTUS2:20210513T224042Z:8b57e6e8-3778-40d7-a18d-3ade7ae82ed4" + "x-ms-request-id": "2d069386-7898-4c74-92a1-496f8447811c", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:2d069386-7898-4c74-92a1-496f8447811c" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json index 97f5a703c949..2797ded262c9 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "fff178d6ed5866066762532553bb0b30", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:41 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fb9351b-f4a5-4d02-9d3a-130fc479143b", + "x-ms-correlation-request-id": "a8d802c4-9c33-453e-bfcd-cdf87a5380da", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "6fb9351b-f4a5-4d02-9d3a-130fc479143b", - "x-ms-routing-request-id": "WESTUS2:20210513T224041Z:6fb9351b-f4a5-4d02-9d3a-130fc479143b" + "x-ms-request-id": "a8d802c4-9c33-453e-bfcd-cdf87a5380da", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:a8d802c4-9c33-453e-bfcd-cdf87a5380da" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:41 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b6ee28f-fb5f-4902-ad66-610aa62b6f4e", + "x-ms-correlation-request-id": "baec7758-bf2b-4d4f-aa1e-8ea5b0e5789d", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "6b6ee28f-fb5f-4902-ad66-610aa62b6f4e", - "x-ms-routing-request-id": "WESTUS2:20210513T224042Z:6b6ee28f-fb5f-4902-ad66-610aa62b6f4e" + "x-ms-request-id": "baec7758-bf2b-4d4f-aa1e-8ea5b0e5789d", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:baec7758-bf2b-4d4f-aa1e-8ea5b0e5789d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "681d18f8bcf8700deb324820f46c97ef", "x-ms-return-client-request-id": "true" }, @@ -1247,16 +1249,16 @@ "Cache-Control": "no-cache", "Content-Length": "104", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62f5a2f6-273a-43f7-b519-410b99c961aa", + "x-ms-correlation-request-id": "ba8e584a-e545-446f-9616-3177e92c27a4", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "62f5a2f6-273a-43f7-b519-410b99c961aa", - "x-ms-routing-request-id": "WESTUS2:20210513T224042Z:62f5a2f6-273a-43f7-b519-410b99c961aa" + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ba8e584a-e545-446f-9616-3177e92c27a4", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:ba8e584a-e545-446f-9616-3177e92c27a4" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json index 15e5a1d5ef4c..aea52ec216a6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "03b22673cd589bc632da34fa8ebeecdd", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5b40753-435c-4800-8fc6-6cec112a0b30", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "f5b40753-435c-4800-8fc6-6cec112a0b30", - "x-ms-routing-request-id": "WESTUS2:20210513T224042Z:f5b40753-435c-4800-8fc6-6cec112a0b30" + "x-ms-correlation-request-id": "84a6d460-b44c-4ad8-99ba-fce070e4f574", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "84a6d460-b44c-4ad8-99ba-fce070e4f574", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:84a6d460-b44c-4ad8-99ba-fce070e4f574" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40d54216-90ea-461f-8472-1affe2e0141e", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "40d54216-90ea-461f-8472-1affe2e0141e", - "x-ms-routing-request-id": "WESTUS2:20210513T224042Z:40d54216-90ea-461f-8472-1affe2e0141e" + "x-ms-correlation-request-id": "be6b8e2e-4d02-4d0f-83a8-e9555bcafeb2", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "be6b8e2e-4d02-4d0f-83a8-e9555bcafeb2", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:be6b8e2e-4d02-4d0f-83a8-e9555bcafeb2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b060e2a71de0d9a31829b05fa7214486", "x-ms-return-client-request-id": "true" }, @@ -1247,15 +1249,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eba9ee84-0f2a-4ea9-9bd5-2928320a1296", + "x-ms-correlation-request-id": "eaedfab6-ccb0-4990-b0ab-37439d5ee267", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "eba9ee84-0f2a-4ea9-9bd5-2928320a1296", - "x-ms-routing-request-id": "WESTUS2:20210513T224043Z:eba9ee84-0f2a-4ea9-9bd5-2928320a1296" + "x-ms-request-id": "eaedfab6-ccb0-4990-b0ab-37439d5ee267", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:eaedfab6-ccb0-4990-b0ab-37439d5ee267" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json index 1c8b2cbf16b7..aebde21820ef 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "15cd3fd2bc0730150f9cc5c030808029", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7ba25df-7afb-4447-9dde-550488492396", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "e7ba25df-7afb-4447-9dde-550488492396", - "x-ms-routing-request-id": "WESTUS2:20210513T224043Z:e7ba25df-7afb-4447-9dde-550488492396" + "x-ms-correlation-request-id": "b5dcb743-732f-4c33-9c2a-d3562a1aa25f", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b5dcb743-732f-4c33-9c2a-d3562a1aa25f", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:b5dcb743-732f-4c33-9c2a-d3562a1aa25f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16987816-c142-44e7-9930-3b518d89f1d7", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "16987816-c142-44e7-9930-3b518d89f1d7", - "x-ms-routing-request-id": "WESTUS2:20210513T224043Z:16987816-c142-44e7-9930-3b518d89f1d7" + "x-ms-correlation-request-id": "11450eb7-50f1-4f9c-9c70-7633083e06d8", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "11450eb7-50f1-4f9c-9c70-7633083e06d8", + "x-ms-routing-request-id": "WESTUS2:20210607T212618Z:11450eb7-50f1-4f9c-9c70-7633083e06d8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "94377ed6ad3d8024b8e3d077bdc8cea6", "x-ms-return-client-request-id": "true" }, @@ -1247,15 +1249,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:42 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9eccee4-0d45-4f9a-b2f5-d5f59799add3", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "c9eccee4-0d45-4f9a-b2f5-d5f59799add3", - "x-ms-routing-request-id": "WESTUS2:20210513T224043Z:c9eccee4-0d45-4f9a-b2f5-d5f59799add3" + "x-ms-correlation-request-id": "08730b84-93cf-40ce-97fa-e244f16886cc", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "08730b84-93cf-40ce-97fa-e244f16886cc", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:08730b84-93cf-40ce-97fa-e244f16886cc" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json index 4d539c570ed0..e88682520fc1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8f53a9e517d6796610db2498ee0aa671", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:43 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bcb3265-0cc3-44f7-a3d1-3ebe42aa7ac5", + "x-ms-correlation-request-id": "dfce85d0-6bed-4402-a027-07d78fbbeb28", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "8bcb3265-0cc3-44f7-a3d1-3ebe42aa7ac5", - "x-ms-routing-request-id": "WESTUS2:20210513T224043Z:8bcb3265-0cc3-44f7-a3d1-3ebe42aa7ac5" + "x-ms-request-id": "dfce85d0-6bed-4402-a027-07d78fbbeb28", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:dfce85d0-6bed-4402-a027-07d78fbbeb28" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json index 77b518f559fc..cc478081bff4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "4a2c43a9d7fdc394e066c1f2f03f3a9d", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:43 GMT", + "Date": "Mon, 07 Jun 2021 21:26:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c67889b-9f5c-4fe6-b570-1a45ad4a5719", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "0c67889b-9f5c-4fe6-b570-1a45ad4a5719", - "x-ms-routing-request-id": "WESTUS2:20210513T224043Z:0c67889b-9f5c-4fe6-b570-1a45ad4a5719" + "x-ms-correlation-request-id": "1d92d088-c281-4799-a23d-f0f9998fad80", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "1d92d088-c281-4799-a23d-f0f9998fad80", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:1d92d088-c281-4799-a23d-f0f9998fad80" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json index b4e3903218cd..c81f49412427 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5b36cce4d8b6440da9769a1e4abf1f94", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:45 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "724b021f-0870-43a9-9c94-448efe213156", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "724b021f-0870-43a9-9c94-448efe213156", - "x-ms-routing-request-id": "WESTUS2:20210513T224046Z:724b021f-0870-43a9-9c94-448efe213156" + "x-ms-correlation-request-id": "a3587147-0300-4433-b8b8-b1b97d81cf88", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "a3587147-0300-4433-b8b8-b1b97d81cf88", + "x-ms-routing-request-id": "WESTUS2:20210607T212620Z:a3587147-0300-4433-b8b8-b1b97d81cf88" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json index 796a2181da6e..47533a8ca20e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d1fb875a5285579edf3d1821cd46642f", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:45 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "702b7003-b744-43df-856e-fbec18a14c33", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "702b7003-b744-43df-856e-fbec18a14c33", - "x-ms-routing-request-id": "WESTUS2:20210513T224046Z:702b7003-b744-43df-856e-fbec18a14c33" + "x-ms-correlation-request-id": "c5dc196d-f8c9-4b61-806d-805849a03583", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "c5dc196d-f8c9-4b61-806d-805849a03583", + "x-ms-routing-request-id": "WESTUS2:20210607T212620Z:c5dc196d-f8c9-4b61-806d-805849a03583" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json index f9a443289f4f..dbbd48a79729 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5df048b56051266ed016766021651ef4", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:45 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1e9eee7-3e93-4d0c-bb2f-0c130fc7a3f4", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "c1e9eee7-3e93-4d0c-bb2f-0c130fc7a3f4", - "x-ms-routing-request-id": "WESTUS2:20210513T224046Z:c1e9eee7-3e93-4d0c-bb2f-0c130fc7a3f4" + "x-ms-correlation-request-id": "5d8c1109-5306-4e3d-bea1-4e54e2b53c60", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "5d8c1109-5306-4e3d-bea1-4e54e2b53c60", + "x-ms-routing-request-id": "WESTUS2:20210607T212620Z:5d8c1109-5306-4e3d-bea1-4e54e2b53c60" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json index 2415dcaab17c..c6e4655e58a3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b1724a7f043f8f2db6a68e89e04c1eb4", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:46 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb8147fe-04ea-4096-b2a2-ff0e646b2060", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "fb8147fe-04ea-4096-b2a2-ff0e646b2060", - "x-ms-routing-request-id": "WESTUS2:20210513T224046Z:fb8147fe-04ea-4096-b2a2-ff0e646b2060" + "x-ms-correlation-request-id": "09c48f33-7426-4273-a533-d65bcf8e4fb1", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "09c48f33-7426-4273-a533-d65bcf8e4fb1", + "x-ms-routing-request-id": "WESTUS2:20210607T212620Z:09c48f33-7426-4273-a533-d65bcf8e4fb1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json index 85905d93c6a5..c1e6754e0f2d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "60080ba5a2ac8da3888d338db503af96", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 22:05:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c8ad9aa-ab4c-4cd6-8e44-608a58125a73", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "7c8ad9aa-ab4c-4cd6-8e44-608a58125a73", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:7c8ad9aa-ab4c-4cd6-8e44-608a58125a73" + "x-ms-correlation-request-id": "585efca5-8f6f-4919-875e-296ea6d8c28f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "585efca5-8f6f-4919-875e-296ea6d8c28f", + "x-ms-routing-request-id": "WESTUS2:20210607T220533Z:585efca5-8f6f-4919-875e-296ea6d8c28f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json index a830f1956ba4..4b6d18e87f8a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "2aa907ce87b7fb24b7c3375bf544f422", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:43 GMT", + "Date": "Mon, 07 Jun 2021 22:05:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9372e82f-bf68-43ed-9ed6-effd1227d4ac", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "9372e82f-bf68-43ed-9ed6-effd1227d4ac", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:9372e82f-bf68-43ed-9ed6-effd1227d4ac" + "x-ms-correlation-request-id": "aafcfa47-4cfd-4225-b348-e75b6ea44994", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "aafcfa47-4cfd-4225-b348-e75b6ea44994", + "x-ms-routing-request-id": "WESTUS2:20210607T220533Z:aafcfa47-4cfd-4225-b348-e75b6ea44994" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json index 889a0b3be687..fab080b0b344 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8452f61dcff28bd37c929efad100d5bf", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce7d2875-d7fa-4a43-9635-8a5b13e2fb50", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "ce7d2875-d7fa-4a43-9635-8a5b13e2fb50", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:ce7d2875-d7fa-4a43-9635-8a5b13e2fb50" + "x-ms-correlation-request-id": "3aca9c6d-f7ff-4131-ba8e-e0536220c63d", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "3aca9c6d-f7ff-4131-ba8e-e0536220c63d", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:3aca9c6d-f7ff-4131-ba8e-e0536220c63d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fb14776-36e2-4fc4-8ccd-ca0a5d34de61", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "6fb14776-36e2-4fc4-8ccd-ca0a5d34de61", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:6fb14776-36e2-4fc4-8ccd-ca0a5d34de61" + "x-ms-correlation-request-id": "efb353c4-b524-4e00-9e1b-c566a03beb78", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "efb353c4-b524-4e00-9e1b-c566a03beb78", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:efb353c4-b524-4e00-9e1b-c566a03beb78" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "256cf19cc1d06814db6a73585db96cf0", "x-ms-return-client-request-id": "true" }, @@ -1247,16 +1249,16 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "741f0498-6358-44d5-a296-f2638f662688", + "x-ms-correlation-request-id": "9e6ae0f5-3fcd-49af-b38f-36b4ab18d541", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "741f0498-6358-44d5-a296-f2638f662688", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:741f0498-6358-44d5-a296-f2638f662688" + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "9e6ae0f5-3fcd-49af-b38f-36b4ab18d541", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:9e6ae0f5-3fcd-49af-b38f-36b4ab18d541" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json index 72d8e13174e5..a6ab89e83498 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "d9d4f9e773e1f4926221b6248fe6d67f", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c58241f0-4363-41fa-8e02-6fd9b23793e4", + "x-ms-correlation-request-id": "ac336696-f3d7-4220-84a1-99adf06ec521", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "c58241f0-4363-41fa-8e02-6fd9b23793e4", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:c58241f0-4363-41fa-8e02-6fd9b23793e4" + "x-ms-request-id": "ac336696-f3d7-4220-84a1-99adf06ec521", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:ac336696-f3d7-4220-84a1-99adf06ec521" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c0f7fb5-2bcc-44ad-801a-200db3e59311", + "x-ms-correlation-request-id": "3095f509-3485-47b4-a057-1feceea89016", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "5c0f7fb5-2bcc-44ad-801a-200db3e59311", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:5c0f7fb5-2bcc-44ad-801a-200db3e59311" + "x-ms-request-id": "3095f509-3485-47b4-a057-1feceea89016", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:3095f509-3485-47b4-a057-1feceea89016" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "9ac66980cb80101e5fec3c01f035b843", "x-ms-return-client-request-id": "true" }, @@ -1247,16 +1249,16 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f00f9a3-5e6c-4f91-9717-f98d246e146f", + "x-ms-correlation-request-id": "e98db57d-57ef-416c-9e84-092fcc66b014", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "8f00f9a3-5e6c-4f91-9717-f98d246e146f", - "x-ms-routing-request-id": "WESTUS2:20210513T224044Z:8f00f9a3-5e6c-4f91-9717-f98d246e146f" + "x-ms-request-id": "e98db57d-57ef-416c-9e84-092fcc66b014", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:e98db57d-57ef-416c-9e84-092fcc66b014" }, "ResponseBody": { "error": { diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json index 770bf2beee8b..b446c08875bc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "abef9890c604fa01edaf32ba52b3ded4", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:45 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb40dd4a-4acf-4652-b5dc-eb8c3f34e672", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "fb40dd4a-4acf-4652-b5dc-eb8c3f34e672", - "x-ms-routing-request-id": "WESTUS2:20210513T224045Z:fb40dd4a-4acf-4652-b5dc-eb8c3f34e672" + "x-ms-correlation-request-id": "e9ec9b5a-e8c4-49f8-b39b-88cd514de5ee", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "e9ec9b5a-e8c4-49f8-b39b-88cd514de5ee", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:e9ec9b5a-e8c4-49f8-b39b-88cd514de5ee" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:45 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb5954b5-59ac-4987-9efa-7c88557be6cb", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "cb5954b5-59ac-4987-9efa-7c88557be6cb", - "x-ms-routing-request-id": "WESTUS2:20210513T224045Z:cb5954b5-59ac-4987-9efa-7c88557be6cb" + "x-ms-correlation-request-id": "d16af5f4-6ee1-496a-b758-26d12788e640", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "d16af5f4-6ee1-496a-b758-26d12788e640", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:d16af5f4-6ee1-496a-b758-26d12788e640" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "8de05a5389b3607407763250aa5af357", "x-ms-return-client-request-id": "true" }, @@ -1247,15 +1249,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:45 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06fdc7be-2167-444a-b7b9-2e5832c393c4", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "06fdc7be-2167-444a-b7b9-2e5832c393c4", - "x-ms-routing-request-id": "WESTUS2:20210513T224045Z:06fdc7be-2167-444a-b7b9-2e5832c393c4" + "x-ms-correlation-request-id": "6203e805-0c0f-4507-abc8-4afee5982476", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "6203e805-0c0f-4507-abc8-4afee5982476", + "x-ms-routing-request-id": "WESTUS2:20210607T212620Z:6203e805-0c0f-4507-abc8-4afee5982476" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json index 0d3ab843c2b0..b50963d70a75 100644 --- a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Resources/1.0.0-preview.2 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "b951bc0c279a2c2239922c8cacec9003", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "addc623f-8897-4b3c-bb4b-c259ee07afd3", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "addc623f-8897-4b3c-bb4b-c259ee07afd3", - "x-ms-routing-request-id": "WESTUS2:20210513T224045Z:addc623f-8897-4b3c-bb4b-c259ee07afd3" + "x-ms-correlation-request-id": "a495cfef-1cd8-46a1-a910-4b222fb2675e", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "a495cfef-1cd8-46a1-a910-4b222fb2675e", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:a495cfef-1cd8-46a1-a910-4b222fb2675e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -55,17 +55,17 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "16457", + "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5591919e-1b53-45d3-9b57-b7a0b216f3d3", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "5591919e-1b53-45d3-9b57-b7a0b216f3d3", - "x-ms-routing-request-id": "WESTUS2:20210513T224045Z:5591919e-1b53-45d3-9b57-b7a0b216f3d3" + "x-ms-correlation-request-id": "44807c8c-7a6b-4504-971c-bc9f3aea45fd", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "44807c8c-7a6b-4504-971c-bc9f3aea45fd", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:44807c8c-7a6b-4504-971c-bc9f3aea45fd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -594,7 +594,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -668,7 +669,8 @@ "Switzerland North", "Germany West Central", "Norway East", - "Jio India West" + "Jio India West", + "West US 3" ], "apiVersions": [ "2019-05-01", @@ -1237,7 +1239,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210513.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "22e807d2e26ee2084a54a792c274842f", "x-ms-return-client-request-id": "true" }, @@ -1247,15 +1249,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 13 May 2021 22:40:44 GMT", + "Date": "Mon, 07 Jun 2021 21:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "878588b8-30a0-46fd-841d-b062fcab9839", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "878588b8-30a0-46fd-841d-b062fcab9839", - "x-ms-routing-request-id": "WESTUS2:20210513T224045Z:878588b8-30a0-46fd-841d-b062fcab9839" + "x-ms-correlation-request-id": "561d7567-e600-4a0c-ab66-c7cd59044a9f", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "561d7567-e600-4a0c-ab66-c7cd59044a9f", + "x-ms-routing-request-id": "WESTUS2:20210607T212619Z:561d7567-e600-4a0c-ab66-c7cd59044a9f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests().json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests().json new file mode 100644 index 000000000000..0a6ff638dff3 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests().json @@ -0,0 +1,49 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a3a1de13593d44a71c3d5f3bc5e683e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 07 Jun 2021 21:30:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7011c2cf-7f7d-4f18-8254-74c1719fbea4", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "7011c2cf-7f7d-4f18-8254-74c1719fbea4", + "x-ms-routing-request-id": "WESTUS2:20210607T213036Z:7011c2cf-7f7d-4f18-8254-74c1719fbea4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1977607695", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests()Async.json new file mode 100644 index 000000000000..c0b9ecf30a2f --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager.Core/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests()Async.json @@ -0,0 +1,49 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210604.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "357170750c0ffc2170f3188efaa79fd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 07 Jun 2021 21:30:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "237dccfe-6d98-455f-82b2-098dc90906ba", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "237dccfe-6d98-455f-82b2-098dc90906ba", + "x-ms-routing-request-id": "WESTUS2:20210607T213036Z:237dccfe-6d98-455f-82b2-098dc90906ba" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": "Azure SDK sandbox", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "880551783", + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file