diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/Azure.ResourceManager.ResourceMover.sln b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/Azure.ResourceManager.ResourceMover.sln index a96a23c46c0d..b67dc6cffd19 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/Azure.ResourceManager.ResourceMover.sln +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/Azure.ResourceManager.ResourceMover.sln @@ -1,21 +1,15 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30309.148 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33502.453 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{453629FD-DADF-41C7-9BAD-A874CE987DE6}") = "Azure.ResourceManager.ResourceMover", "src\Azure.ResourceManager.ResourceMover.csproj", "{3CAE750B-B797-49ED-8C98-A4C5EB9D9791}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.ResourceMover", "src\Azure.ResourceManager.ResourceMover.csproj", "{3CAE750B-B797-49ED-8C98-A4C5EB9D9791}" EndProject -Project("{453629FD-DADF-41C7-9BAD-A874CE987DE6}") = "Azure.ResourceManager.ResourceMover.Tests", "tests\Azure.ResourceManager.ResourceMover.Tests.csproj", "{EC754822-DFA3-4A21-8FAD-92A40BAD1685}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.ResourceMover.Tests", "tests\Azure.ResourceManager.ResourceMover.Tests.csproj", "{EC754822-DFA3-4A21-8FAD-92A40BAD1685}" EndProject -Project("{453629FD-DADF-41C7-9BAD-A874CE987DE6}") = "Azure.ResourceManager.ResourceMover.Samples", "samples\Azure.ResourceManager.ResourceMover.Samples.csproj", "{CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.ResourceManager.ResourceMover.Samples", "samples\Azure.ResourceManager.ResourceMover.Samples.csproj", "{CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}" EndProject Global - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {C29BC1BF-B5DD-4D5E-99AB-ADFBFB52D100} - EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 @@ -49,5 +43,23 @@ Global {EC754822-DFA3-4A21-8FAD-92A40BAD1685}.Release|x64.Build.0 = Release|Any CPU {EC754822-DFA3-4A21-8FAD-92A40BAD1685}.Release|x86.ActiveCfg = Release|Any CPU {EC754822-DFA3-4A21-8FAD-92A40BAD1685}.Release|x86.Build.0 = Release|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Debug|x64.ActiveCfg = Debug|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Debug|x64.Build.0 = Debug|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Debug|x86.ActiveCfg = Debug|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Debug|x86.Build.0 = Debug|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Release|Any CPU.Build.0 = Release|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Release|x64.ActiveCfg = Release|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Release|x64.Build.0 = Release|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Release|x86.ActiveCfg = Release|Any CPU + {CD59B3E2-819C-49D1-A2AE-4BD27EA539E0}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C29BC1BF-B5DD-4D5E-99AB-ADFBFB52D100} EndGlobalSection EndGlobal diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/ResourceMoverManagementTestBase.cs b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/ResourceMoverManagementTestBase.cs index ab980e828dae..84a00791c0c2 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/ResourceMoverManagementTestBase.cs +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/ResourceMoverManagementTestBase.cs @@ -54,26 +54,36 @@ protected async Task CreateMoverResourceSet(ResourceGr protected async Task CreareVirtualNetwork(ResourceGroupResource rg, string vnetName) { - VirtualNetworkData virtualNetworkData = new VirtualNetworkData() + if (Mode == RecordedTestMode.Playback) { - Location = AzureLocation.EastUS, - Subnets = + var vnetId = VirtualNetworkResource.CreateResourceIdentifier(rg.Id.SubscriptionId, rg.Id.Name, vnetName); + return Client.GetVirtualNetworkResource(vnetId); + } + else + { + using (Recording.DisableRecording()) { - new SubnetData() + VirtualNetworkData virtualNetworkData = new VirtualNetworkData() { - Name = Recording.GenerateAssetName("Subnet-"), - AddressPrefix = "10.0.0.0/24" - } - }, - AddressPrefixes = { "10.0.0.0/16" } - }; - var lro = await rg.GetVirtualNetworks().CreateOrUpdateAsync(WaitUntil.Completed, vnetName, virtualNetworkData); - return lro.Value; + Location = AzureLocation.EastUS, + Subnets = + { + new SubnetData() + { + Name = Recording.GenerateAssetName("Subnet-"), + AddressPrefix = "10.0.0.0/24" + } + }, + AddressPrefixes = { "10.0.0.0/16" } + }; + var lro = await rg.GetVirtualNetworks().CreateOrUpdateAsync(WaitUntil.Completed, vnetName, virtualNetworkData); + return lro.Value; + } + } } - protected async Task CreateMoverResource(MoverResourceSetResource moverResourceSet, ResourceIdentifier vnetId, string moverResourceName) + protected async Task CreateMoverResource(MoverResourceSetResource moverResourceSet, ResourceIdentifier vnetId, string moverResourceName, string targetVnetName) { - string targetVnetName = Recording.GenerateAssetName("targetVnet-"); MoverResourceData input = new MoverResourceData { Properties = new MoverResourceProperties(vnetId) diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceSetTests.cs b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceSetTests.cs index b240921fe905..ebb6f2029a77 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceSetTests.cs +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceSetTests.cs @@ -114,9 +114,12 @@ public async Task ValidateResourceMove() string rgName = Recording.GenerateAssetName("testRg-ResourceMover-"); ResourceGroupResource rg = await CreateResourceGroup(subscription, rgName, AzureLocation.EastUS); string vnetName = Recording.GenerateAssetName("Vnet-"); - VirtualNetworkResource virtualNetwork = await CreareVirtualNetwork(rg, vnetName); string moverResourceName = Recording.GenerateAssetName("MoverResource-"); - MoverResource moverResource = await CreateMoverResource(moverResourceSet, virtualNetwork.Id, moverResourceName); + string targetVnetName = Recording.GenerateAssetName("targetVnet-"); + string targetRgName = Recording.GenerateAssetName("testRg-ResourceMover-Target-"); + string moverDependentResourceName = Recording.GenerateAssetName("MoverResource-"); + VirtualNetworkResource virtualNetwork = await CreareVirtualNetwork(rg, vnetName); + MoverResource moverResource = await CreateMoverResource(moverResourceSet, virtualNetwork.Id, moverResourceName, targetVnetName); // Validate that the Vnet has an dependency. ArmOperation lro = await moverResourceSet.ResolveDependenciesAsync(WaitUntil.Completed); @@ -135,9 +138,7 @@ public async Task ValidateResourceMove() Assert.AreEqual(unresolvedDependencyId, rg.Id); // Add the source resource group to the moverResourceSet and verify there are no missed dependencies. - string targetRgName = Recording.GenerateAssetName("testRg-ResourceMover-Target-"); ResourceGroupResource targetRg = await CreateResourceGroup(subscription, targetRgName, AzureLocation.EastUS2); - string moverDependentResourceName = Recording.GenerateAssetName("MoverResource-"); MoverResourceData input = new MoverResourceData { Properties = new MoverResourceProperties(unresolvedDependencyId) diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceTests.cs b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceTests.cs index 1c9b57f6c118..088d3345b1a3 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceTests.cs +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/Scenario/MoverResourceTests.cs @@ -12,44 +12,47 @@ namespace Azure.ResourceManager.ResourceMover.Tests { internal class MoverResourceTests : ResourceMoverManagementTestBase { + private MoverResourceSetResource _moverResourceSet; + private ResourceIdentifier _virtualNetworkId; + private string _moverResourceName; + private string _targetVnetName; + public MoverResourceTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record) { } - [TestCase] - [RecordedTest] - public async Task CreateOrUpdate() + [SetUp] + public async Task SetUp() { SubscriptionResource subscription = await Client.GetDefaultSubscriptionAsync(); ResourceIdentifier moverResourceSetId = MoverResourceSetResource.CreateResourceIdentifier(subscription.Id.SubscriptionId, "testRG-ResourceMover", "testMoveCollection"); - MoverResourceSetResource moverResourceSet = await Client.GetMoverResourceSetResource(moverResourceSetId).GetAsync(); + _moverResourceSet = await Client.GetMoverResourceSetResource(moverResourceSetId).GetAsync(); string rgName = Recording.GenerateAssetName("testRg-ResourceMover-"); - ResourceGroupResource rg = await CreateResourceGroup(subscription, rgName, AzureLocation.EastUS); string vnetName = Recording.GenerateAssetName("Vnet-"); + _moverResourceName = Recording.GenerateAssetName("MoverResource-"); + _targetVnetName = Recording.GenerateAssetName("targetVnet-"); + ResourceGroupResource rg = await CreateResourceGroup(subscription, rgName, AzureLocation.EastUS); VirtualNetworkResource virtualNetwork = await CreareVirtualNetwork(rg, vnetName); - string moverResourceName = Recording.GenerateAssetName("MoverResource-"); - MoverResource moverResource = await CreateMoverResource(moverResourceSet, virtualNetwork.Id, moverResourceName); - Assert.AreEqual(moverResourceName, moverResource.Data.Name); + _virtualNetworkId = virtualNetwork.Id; } [TestCase] [RecordedTest] - public async Task List() + public async Task CreateOrUpdate() { - SubscriptionResource subscription = await Client.GetDefaultSubscriptionAsync(); - ResourceIdentifier moverResourceSetId = MoverResourceSetResource.CreateResourceIdentifier(subscription.Id.SubscriptionId, "testRG-ResourceMover", "testMoveCollection"); - MoverResourceSetResource moverResourceSet = await Client.GetMoverResourceSetResource(moverResourceSetId).GetAsync(); + MoverResource moverResource = await CreateMoverResource(_moverResourceSet, _virtualNetworkId, _moverResourceName, _targetVnetName); + Assert.AreEqual(_moverResourceName, moverResource.Data.Name); + } - string rgName = Recording.GenerateAssetName("testRg-ResourceMover-"); - ResourceGroupResource rg = await CreateResourceGroup(subscription, rgName, AzureLocation.EastUS); - string vnetName = Recording.GenerateAssetName("Vnet-"); - VirtualNetworkResource virtualNetwork = await CreareVirtualNetwork(rg, vnetName); - string moverResourceName = Recording.GenerateAssetName("MoverResource-"); - _ = await CreateMoverResource(moverResourceSet, virtualNetwork.Id, moverResourceName); + [TestCase] + [RecordedTest] + public async Task List() + { + _ = await CreateMoverResource(_moverResourceSet, _virtualNetworkId, _moverResourceName, _targetVnetName); int count = 0; - await foreach (var tempMoverResource in moverResourceSet.GetMoverResources().GetAllAsync()) + await foreach (var tempMoverResource in _moverResourceSet.GetMoverResources().GetAllAsync()) { count++; } @@ -60,17 +63,8 @@ public async Task List() [RecordedTest] public async Task Get() { - SubscriptionResource subscription = await Client.GetDefaultSubscriptionAsync(); - ResourceIdentifier moverResourceSetId = MoverResourceSetResource.CreateResourceIdentifier(subscription.Id.SubscriptionId, "testRG-ResourceMover", "testMoveCollection"); - MoverResourceSetResource moverResourceSet = await Client.GetMoverResourceSetResource(moverResourceSetId).GetAsync(); - - string rgName = Recording.GenerateAssetName("testRg-ResourceMover-"); - ResourceGroupResource rg = await CreateResourceGroup(subscription, rgName, AzureLocation.EastUS); - string vnetName = Recording.GenerateAssetName("Vnet-"); - VirtualNetworkResource virtualNetwork = await CreareVirtualNetwork(rg, vnetName); - string moverResourceName = Recording.GenerateAssetName("MoverResource-"); - MoverResource moverResource = await CreateMoverResource(moverResourceSet, virtualNetwork.Id, moverResourceName); - MoverResource getMoverResource = await moverResourceSet.GetMoverResources().GetAsync(moverResourceName); + MoverResource moverResource = await CreateMoverResource(_moverResourceSet, _virtualNetworkId, _moverResourceName, _targetVnetName); + MoverResource getMoverResource = await _moverResourceSet.GetMoverResources().GetAsync(_moverResourceName); AssertValidMoverResource(moverResource, getMoverResource); } @@ -78,16 +72,7 @@ public async Task Get() [RecordedTest] public async Task Delete() { - SubscriptionResource subscription = await Client.GetDefaultSubscriptionAsync(); - ResourceIdentifier moverResourceSetId = MoverResourceSetResource.CreateResourceIdentifier(subscription.Id.SubscriptionId, "testRG-ResourceMover", "testMoveCollection"); - MoverResourceSetResource moverResourceSet = await Client.GetMoverResourceSetResource(moverResourceSetId).GetAsync(); - - string rgName = Recording.GenerateAssetName("testRg-ResourceMover-"); - ResourceGroupResource rg = await CreateResourceGroup(subscription, rgName, AzureLocation.EastUS); - string vnetName = Recording.GenerateAssetName("Vnet-"); - VirtualNetworkResource virtualNetwork = await CreareVirtualNetwork(rg, vnetName); - string moverResourceName = Recording.GenerateAssetName("MoverResource-"); - MoverResource moverResource = await CreateMoverResource(moverResourceSet, virtualNetwork.Id, moverResourceName); + MoverResource moverResource = await CreateMoverResource(_moverResourceSet, _virtualNetworkId, _moverResourceName, _targetVnetName); await moverResource.DeleteAsync(WaitUntil.Completed); var ex = Assert.ThrowsAsync(async () => await moverResource.GetAsync()); Assert.AreEqual(404, ex.Status); diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove().json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove().json index 632244b6635c..e952eabc2555 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove().json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove().json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fe704422f7737b408149e2deec8a77db-6b71d2fc4206c042-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "2e70b8986f730dbd8b2c0c5ea912a599", + "traceparent": "00-5613c413a8eba28fae4f6995568fd688-f49eb01cd65973f8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "126a30b8bde3ba6de9d1f54ca675e360", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:14 GMT", + "Date": "Thu, 23 Mar 2023 02:21:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9269535-b9e9-45b4-a682-404d1a57a01b", + "x-ms-correlation-request-id": "33601f9b-84fe-4bab-995e-6bf334d43b11", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "c9269535-b9e9-45b4-a682-404d1a57a01b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082115Z:c9269535-b9e9-45b4-a682-404d1a57a01b" + "x-ms-request-id": "33601f9b-84fe-4bab-995e-6bf334d43b11", + "x-ms-routing-request-id": "JAPANEAST:20230323T022132Z:33601f9b-84fe-4bab-995e-6bf334d43b11" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-519db8a9ad3e1441b19bd0b62943e398-f916ca80401ea54e-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "648aec08fae8835a7fec5cc17ed4fd90", + "traceparent": "00-4a91a7cd61bd42ea1f8b2c53617ec8ab-470188d796040bf5-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "32240c2f43e68defb3c537fc0228660a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:15 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Thu, 23 Mar 2023 02:21:33 GMT", + "ETag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b786634-4211-446c-a1fe-6b88ba58374d", + "x-ms-correlation-request-id": "cb455b91-418a-4ee7-bc48-7b8724b2ac08", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "8162319d-2d23-4f79-ac04-7cd9f9e2937a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082116Z:6b786634-4211-446c-a1fe-6b88ba58374d" + "x-ms-request-id": "c6073491-3bf7-4c00-83b6-ece8f8d16aeb", + "x-ms-routing-request-id": "JAPANEAST:20230323T022133Z:cb455b91-418a-4ee7-bc48-7b8724b2ac08" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8131?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5224?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-4b80b4a9abbb904f9c4457ee800497c4-cd192cdef76dfc4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "efbafe1e78e1a146096dc19744ecfd88", + "traceparent": "00-1d913a0e106eb4d8b792487092306ae8-7a4836dc0dbde99c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2281cfbdb54f84ea9603a3953b46e25c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:21 GMT", + "Date": "Thu, 23 Mar 2023 02:21:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab654211-0779-408b-957f-8ac436b85638", + "x-ms-correlation-request-id": "a1d515d0-4cb5-491a-855a-033a3e1b8ac8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "ab654211-0779-408b-957f-8ac436b85638", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082121Z:ab654211-0779-408b-957f-8ac436b85638" + "x-ms-request-id": "a1d515d0-4cb5-491a-855a-033a3e1b8ac8", + "x-ms-routing-request-id": "JAPANEAST:20230323T022138Z:a1d515d0-4cb5-491a-855a-033a3e1b8ac8" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131", - "name": "testRg-ResourceMover-8131", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224", + "name": "testRg-ResourceMover-5224", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,383 +152,154 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-7816ce68aa8c4745ad968c122a21f583-a2cb62c6437fac44-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4e1fc0a25d9eafed8713fc8eb62e7cf2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-5942", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/eb80a116-6b25-4413-9331-f8fffba5eb03?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e679b63d-e96f-4f77-9dd2-1365297fffec", - "x-ms-client-request-id": "4e1fc0a25d9eafed8713fc8eb62e7cf2", - "x-ms-correlation-request-id": "55f9044a-905b-4c40-88ed-172f40bb88d6", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "eb80a116-6b25-4413-9331-f8fffba5eb03", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082126Z:55f9044a-905b-4c40-88ed-172f40bb88d6" - }, - "ResponseBody": { - "name": "Vnet-9499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499", - "etag": "W/\u0022fd6d946d-5305-42dd-af64-86548d2f2189\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "53aceabe-8bc2-4bb3-ac73-10e40f6b498c", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-5942", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499/subnets/Subnet-5942", - "etag": "W/\u0022fd6d946d-5305-42dd-af64-86548d2f2189\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/eb80a116-6b25-4413-9331-f8fffba5eb03?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7816ce68aa8c4745ad968c122a21f583-24b5b4945c915e40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "cf5b436bd04c5d600132f032a47ab692", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "640673e4-0ff9-451b-96c5-c35e4bddcacd", - "x-ms-client-request-id": "cf5b436bd04c5d600132f032a47ab692", - "x-ms-correlation-request-id": "891bd393-0e77-4660-9996-753057da5274", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "1b95babb-e8a4-494e-bd10-1bdf4c942214", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082126Z:891bd393-0e77-4660-9996-753057da5274" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/eb80a116-6b25-4413-9331-f8fffba5eb03?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7816ce68aa8c4745ad968c122a21f583-fc172f2b94229543-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e862511b699e2d697c5b6f11c3017487", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7b79fab3-38be-4f99-846c-0088b8ade875", - "x-ms-client-request-id": "e862511b699e2d697c5b6f11c3017487", - "x-ms-correlation-request-id": "c03826fc-1c97-42aa-b3cb-01b92e1c552c", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "e5f289eb-876e-466b-8ef1-a60d77a38265", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082136Z:c03826fc-1c97-42aa-b3cb-01b92e1c552c" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7816ce68aa8c4745ad968c122a21f583-6dd25aba2c4e4f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "7322c3b4acd3baa6b38ca8f583111f64", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:38 GMT", - "ETag": "W/\u00224f7171c6-cd4d-4aae-b9e4-df24681f0d4b\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "11d90e82-4f0e-4e39-9aef-e9c09737c504", - "x-ms-client-request-id": "7322c3b4acd3baa6b38ca8f583111f64", - "x-ms-correlation-request-id": "b6c3d552-3e88-4fe9-b4ab-1231b4b8fbd1", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "9dfefb05-3860-45fc-b052-c94e7a88ec3a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082138Z:b6c3d552-3e88-4fe9-b4ab-1231b4b8fbd1" - }, - "ResponseBody": { - "name": "Vnet-9499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499", - "etag": "W/\u00224f7171c6-cd4d-4aae-b9e4-df24681f0d4b\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "53aceabe-8bc2-4bb3-ac73-10e40f6b498c", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-5942", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499/subnets/Subnet-5942", - "etag": "W/\u00224f7171c6-cd4d-4aae-b9e4-df24681f0d4b\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-3088?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1581?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-563083ee3089384283640bbca732001c-0c9517566cc8384f-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "759de9d0029a2dda53f1604f9900bd69", + "traceparent": "00-30bf168b1c28d6a747e889ebff4c222f-a346856f20c656ba-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3aa418216b7ebf3ed6274b600af63242", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-8000" + "targetResourceName": "targetVnet-4818" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/326f2637-131b-4dd5-af6b-bbc1749a60d6?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2cb864ed-3c83-4ea3-a21e-45bf78623530?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:39 GMT", + "Date": "Thu, 23 Mar 2023 02:21:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3488309e-ce70-48f5-9b1a-5a4a04380b95", + "x-ms-correlation-request-id": "19a49d62-ce22-4c79-a21d-fc6a69dcb704", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "441597cc-5ab3-4e13-acfa-7078c2c03d3b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082139Z:3488309e-ce70-48f5-9b1a-5a4a04380b95" + "x-ms-request-id": "c668408e-15c3-4f91-8656-fe6885ce1e39", + "x-ms-routing-request-id": "JAPANEAST:20230323T022154Z:19a49d62-ce22-4c79-a21d-fc6a69dcb704" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/326f2637-131b-4dd5-af6b-bbc1749a60d6?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2cb864ed-3c83-4ea3-a21e-45bf78623530?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-563083ee3089384283640bbca732001c-5fc62acdde1cf94e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8a30bd3a3eea202999a559b55964f2a8", + "traceparent": "00-30bf168b1c28d6a747e889ebff4c222f-b96d71c1d3d03e31-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "187e0997fd2cc1dea580f123d698e4c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/326f2637-131b-4dd5-af6b-bbc1749a60d6?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2cb864ed-3c83-4ea3-a21e-45bf78623530?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:40 GMT", + "Date": "Thu, 23 Mar 2023 02:21:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ffdc7a0-2ef2-410d-8b4d-dd641a252c63", + "x-ms-correlation-request-id": "7e91cecc-494f-4d27-926d-4fce7660d1e2", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "e930c322-a810-486c-be8e-4cc97a7288ee", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082140Z:5ffdc7a0-2ef2-410d-8b4d-dd641a252c63" + "x-ms-request-id": "264e23f7-62cb-4b69-8867-94e5f2d80ec1", + "x-ms-routing-request-id": "JAPANEAST:20230323T022154Z:7e91cecc-494f-4d27-926d-4fce7660d1e2" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/326f2637-131b-4dd5-af6b-bbc1749a60d6", - "name": "326f2637-131b-4dd5-af6b-bbc1749a60d6", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2cb864ed-3c83-4ea3-a21e-45bf78623530", + "name": "2cb864ed-3c83-4ea3-a21e-45bf78623530", "status": "Running", - "startTime": "9/7/2022 8:21:39 AM", + "startTime": "3/23/2023 2:21:53 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/326f2637-131b-4dd5-af6b-bbc1749a60d6?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2cb864ed-3c83-4ea3-a21e-45bf78623530?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-563083ee3089384283640bbca732001c-977dbc52cb18df49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "3e941a37930d62473ef54088426583e8", + "traceparent": "00-30bf168b1c28d6a747e889ebff4c222f-25c0e6afcc47609d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "18ca57a386088b8027cbed89584ab9fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:55 GMT", + "Date": "Thu, 23 Mar 2023 02:22:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ed9703b-2ee5-4e36-a68f-ccd8bec21254", + "x-ms-correlation-request-id": "2a8581e0-6460-45e1-9cff-7f8e49a0ba4c", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "9d8ec564-2c1a-4c2a-aec4-ad2f1eb8365d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082156Z:5ed9703b-2ee5-4e36-a68f-ccd8bec21254" + "x-ms-request-id": "2bd93ed6-671d-4f10-9c08-ef12adbed4ca", + "x-ms-routing-request-id": "JAPANEAST:20230323T022210Z:2a8581e0-6460-45e1-9cff-7f8e49a0ba4c" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/326f2637-131b-4dd5-af6b-bbc1749a60d6", - "name": "326f2637-131b-4dd5-af6b-bbc1749a60d6", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2cb864ed-3c83-4ea3-a21e-45bf78623530", + "name": "2cb864ed-3c83-4ea3-a21e-45bf78623530", "status": "Succeeded", - "startTime": "9/7/2022 8:21:39 AM", - "endTime": "9/7/2022 8:21:41 AM", + "startTime": "3/23/2023 2:21:53 AM", + "endTime": "3/23/2023 2:21:55 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-3088?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1581?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-563083ee3089384283640bbca732001c-5637238c82190a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "dc1455b432cf3e7eb737a91914f64dd1", + "traceparent": "00-30bf168b1c28d6a747e889ebff4c222f-b3257e042d3684f0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01c86bf01a78a916064922dba4cd02b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1841", + "Content-Length": "1839", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:56 GMT", + "Date": "Thu, 23 Mar 2023 02:22:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38ef61a7-3707-4470-8813-87f48d96c041", + "x-ms-correlation-request-id": "2b71eed5-0d18-4985-9293-1dcef1dd9d2f", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "94544ef5-0853-43c6-b519-b5319620b91e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082156Z:38ef61a7-3707-4470-8813-87f48d96c041" + "x-ms-request-id": "1b213234-32e3-449f-87c6-70566adc2d41", + "x-ms-routing-request-id": "JAPANEAST:20230323T022210Z:2b71eed5-0d18-4985-9293-1dcef1dd9d2f" }, "ResponseBody": { - "name": "MoverResource-3088", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-3088", + "name": "MoverResource-1581", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1581", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-8000" + "targetResourceName": "targetVnet-4818" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,22 +334,22 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-5942", + "name": "Subnet-8494", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-9499" + "targetResourceName": "Vnet-1234" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T08:21:38.9584522Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:21:53.573257Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T08:21:38.9584522Z" + "lastModifiedAt": "2023-03-23T02:21:53.573257Z" } } }, @@ -589,101 +360,101 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-585d3e4a7aa97d4682779a9574d637bf-569e229e80a5f945-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8f3c181ffed5a7fd75cd4cf5fea1de33", + "traceparent": "00-99b778cc6f93d6db66a2fe648144b1b2-454090bcec24d258-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "af504b101e0f11d789f2f0600f55695a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d6ba0e55-f296-4303-939f-942be8e56ee3?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d13469ca-6834-4461-bd49-dca368f95c38?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:56 GMT", + "Date": "Thu, 23 Mar 2023 02:22:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7407c489-42e3-4fb9-9e84-80ad3d24f1b6", + "x-ms-correlation-request-id": "e0f37bd6-d361-4545-be29-f6f1ebd2f398", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "d3c7ff57-7fe9-420f-bd82-388fc40d2060", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082157Z:7407c489-42e3-4fb9-9e84-80ad3d24f1b6" + "x-ms-request-id": "e18e19d9-ab9a-41e3-aef2-353547ee6dac", + "x-ms-routing-request-id": "JAPANEAST:20230323T022211Z:e0f37bd6-d361-4545-be29-f6f1ebd2f398" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d6ba0e55-f296-4303-939f-942be8e56ee3?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d13469ca-6834-4461-bd49-dca368f95c38?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-585d3e4a7aa97d4682779a9574d637bf-19a26f1ced289448-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "29696fa7f328b612576d6701e6894016", + "traceparent": "00-99b778cc6f93d6db66a2fe648144b1b2-21df018cf6e96ba8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0d7939c909fad2ed93b6788529b699b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d6ba0e55-f296-4303-939f-942be8e56ee3?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d13469ca-6834-4461-bd49-dca368f95c38?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:21:57 GMT", + "Date": "Thu, 23 Mar 2023 02:22:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9db56eb-daf7-4ee7-8c87-634856b39528", + "x-ms-correlation-request-id": "67903183-d1e8-48a6-8534-8602257ac5ba", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "0d25cc77-a694-43c7-aecf-b6e74ff53119", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082158Z:a9db56eb-daf7-4ee7-8c87-634856b39528" + "x-ms-request-id": "f19ae9cd-1e0e-4fe4-bd29-07747eeb0756", + "x-ms-routing-request-id": "JAPANEAST:20230323T022211Z:67903183-d1e8-48a6-8534-8602257ac5ba" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d6ba0e55-f296-4303-939f-942be8e56ee3", - "name": "d6ba0e55-f296-4303-939f-942be8e56ee3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d13469ca-6834-4461-bd49-dca368f95c38", + "name": "d13469ca-6834-4461-bd49-dca368f95c38", "status": "Running", - "startTime": "9/7/2022 8:21:57 AM", + "startTime": "3/23/2023 2:22:11 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d6ba0e55-f296-4303-939f-942be8e56ee3?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d13469ca-6834-4461-bd49-dca368f95c38?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-585d3e4a7aa97d4682779a9574d637bf-34890031fd83754a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a3f7755949f509813f38f47f7728bd47", + "traceparent": "00-99b778cc6f93d6db66a2fe648144b1b2-38f49f24560db288-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "af14c7e0979b2de3fbc76eed0b18ade4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "814", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:13 GMT", + "Date": "Thu, 23 Mar 2023 02:22:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84e251b6-4a2e-41cf-a097-068d0199a883", + "x-ms-correlation-request-id": "fdc2545f-42bf-4509-898e-976bb8edd8fb", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "41e9923d-8852-4ba7-bf09-327dd938daff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082213Z:84e251b6-4a2e-41cf-a097-068d0199a883" + "x-ms-request-id": "4879ec89-c1e6-4d8b-bc04-84405b03005d", + "x-ms-routing-request-id": "JAPANEAST:20230323T022227Z:fdc2545f-42bf-4509-898e-976bb8edd8fb" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d6ba0e55-f296-4303-939f-942be8e56ee3", - "name": "d6ba0e55-f296-4303-939f-942be8e56ee3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d13469ca-6834-4461-bd49-dca368f95c38", + "name": "d13469ca-6834-4461-bd49-dca368f95c38", "status": "Succeeded", - "startTime": "9/7/2022 8:21:57 AM", - "endTime": "9/7/2022 8:21:59 AM", + "startTime": "3/23/2023 2:22:11 AM", + "endTime": "3/23/2023 2:22:13 AM", "error": { "code": "MoveCollectionResolveDependenciesOperationFailed", "message": "The resolve dependencies operation of one or more resources has failed. Check the move status of the resource for more details.\n Possible Causes: The resolve dependencies operation of one ore more resources has failed.\n Recommended Action: Retry the operation after resolving errors if any. If issue persists, contact support.\n ", @@ -699,9 +470,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3875acacdad5b8429a7596cb13a3d4f4-a5d14aef156fb541-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8e4d047fb4372e0a5e49ace2aed71e12", + "traceparent": "00-023b88da4494efc2d18d7772c1a8139a-537c59ad830c06df-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d597970b5bdcbd5f075fd7196aca5e89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -710,21 +481,21 @@ "Cache-Control": "no-cache", "Content-Length": "206", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:14 GMT", + "Date": "Thu, 23 Mar 2023 02:22:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df5c339a-596f-4eca-9630-7c77e8f32084", + "x-ms-correlation-request-id": "f9ce6ce5-5b04-49a4-8929-1a5dabde141d", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "de31bffa-84a4-42bf-9384-261a9c0e12e4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082214Z:df5c339a-596f-4eca-9630-7c77e8f32084" + "x-ms-request-id": "85eea4e5-eb79-4f98-aad5-9d77d2d4e715", + "x-ms-routing-request-id": "JAPANEAST:20230323T022227Z:f9ce6ce5-5b04-49a4-8929-1a5dabde141d" }, "ResponseBody": { "value": [ { "count": 1, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8131" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5224" } ], "totalCount": 1, @@ -736,16 +507,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-Target-5774?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-Target-4787?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-dddec2f2bae7e141aa9c60e3028de4b0-f8745b84e784a34a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "36737c7052abee5e5fe9f0ff923f2faf", + "traceparent": "00-1544f50b24ab59bb62a1142df8187d51-cc6a525555632d72-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9cdf6187378f31bd554b11339affc67b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -756,19 +527,19 @@ "Cache-Control": "no-cache", "Content-Length": "262", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:15 GMT", + "Date": "Thu, 23 Mar 2023 02:22:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3f1ced6-ba71-4ab0-9570-9624e95462bc", + "x-ms-correlation-request-id": "3be36804-d616-4168-b510-79b8e8dfa255", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "a3f1ced6-ba71-4ab0-9570-9624e95462bc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082216Z:a3f1ced6-ba71-4ab0-9570-9624e95462bc" + "x-ms-request-id": "3be36804-d616-4168-b510-79b8e8dfa255", + "x-ms-routing-request-id": "JAPANEAST:20230323T022230Z:3be36804-d616-4168-b510-79b8e8dfa255" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5774", - "name": "testRg-ResourceMover-Target-5774", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", + "name": "testRg-ResourceMover-Target-4787", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "properties": { @@ -777,129 +548,129 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-5824?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1653?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "345", "Content-Type": "application/json", - "traceparent": "00-8c6febd0077f134a8ef649ceb14d12cd-72118853bd87c845-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b13ce282a4dec96b44ac9c9f5b681ae1", + "traceparent": "00-66265891bef8d95788eec1fce40288ec-2ea9d98320ef1a16-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "92799308c41f84d46756a73bc0cac330", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8131", - "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5774", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5224", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", "resourceSettings": { "resourceType": "resourceGroups", - "targetResourceName": "testRg-ResourceMover-8131" + "targetResourceName": "testRg-ResourceMover-5224" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9f3c2f08-2910-48ea-825a-c863d4008db9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f91cd32f-61e1-4983-af2d-3a3b9044eeeb?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:16 GMT", + "Date": "Thu, 23 Mar 2023 02:22:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4156ab9-c7c2-45e0-9abf-5fbf9d4e837a", + "x-ms-correlation-request-id": "138625fd-e059-4f10-ad69-874acf16e8a4", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "4ede2408-e583-4f40-b203-d37224a94661", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082217Z:d4156ab9-c7c2-45e0-9abf-5fbf9d4e837a" + "x-ms-request-id": "4d2ff917-f514-480b-93a1-a9b7f245f0d2", + "x-ms-routing-request-id": "JAPANEAST:20230323T022231Z:138625fd-e059-4f10-ad69-874acf16e8a4" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9f3c2f08-2910-48ea-825a-c863d4008db9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f91cd32f-61e1-4983-af2d-3a3b9044eeeb?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8c6febd0077f134a8ef649ceb14d12cd-983f506d3979024b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "3b558e3363d6d892086c66a6c24f0481", + "traceparent": "00-66265891bef8d95788eec1fce40288ec-f124701bf50f5cab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d6105c98cc50c36a8d5a34399082718b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9f3c2f08-2910-48ea-825a-c863d4008db9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f91cd32f-61e1-4983-af2d-3a3b9044eeeb?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:17 GMT", + "Date": "Thu, 23 Mar 2023 02:22:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "604ffdc8-234a-4178-b45d-0b78842b8e5f", + "x-ms-correlation-request-id": "ec48f2c6-d3ac-4b54-8538-f285faf87a43", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "3bb25396-6863-471d-a667-e33e0b88af46", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082217Z:604ffdc8-234a-4178-b45d-0b78842b8e5f" + "x-ms-request-id": "477a56b9-4a30-4951-a3c9-46807cc63057", + "x-ms-routing-request-id": "JAPANEAST:20230323T022232Z:ec48f2c6-d3ac-4b54-8538-f285faf87a43" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9f3c2f08-2910-48ea-825a-c863d4008db9", - "name": "9f3c2f08-2910-48ea-825a-c863d4008db9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f91cd32f-61e1-4983-af2d-3a3b9044eeeb", + "name": "f91cd32f-61e1-4983-af2d-3a3b9044eeeb", "status": "Running", - "startTime": "9/7/2022 8:22:17 AM", + "startTime": "3/23/2023 2:22:31 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9f3c2f08-2910-48ea-825a-c863d4008db9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f91cd32f-61e1-4983-af2d-3a3b9044eeeb?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8c6febd0077f134a8ef649ceb14d12cd-5bb7e034e7dc1b43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "39281ed56483ae0d304d1106d9509a79", + "traceparent": "00-66265891bef8d95788eec1fce40288ec-88bff1df4edc1514-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b5cae1881c99f7413ea5b8b944433a3b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:32 GMT", + "Date": "Thu, 23 Mar 2023 02:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6286378-47ad-4044-9aa3-a2cc37429954", + "x-ms-correlation-request-id": "fc31f8ef-1f33-4129-bd89-11ed47720286", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "b158c49d-9f94-4767-b730-bcecfc183fcb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082233Z:d6286378-47ad-4044-9aa3-a2cc37429954" + "x-ms-request-id": "c434dc0b-9e0e-43b8-aa1a-b90e1e6bcc82", + "x-ms-routing-request-id": "JAPANEAST:20230323T022247Z:fc31f8ef-1f33-4129-bd89-11ed47720286" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9f3c2f08-2910-48ea-825a-c863d4008db9", - "name": "9f3c2f08-2910-48ea-825a-c863d4008db9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f91cd32f-61e1-4983-af2d-3a3b9044eeeb", + "name": "f91cd32f-61e1-4983-af2d-3a3b9044eeeb", "status": "Succeeded", - "startTime": "9/7/2022 8:22:17 AM", - "endTime": "9/7/2022 8:22:18 AM", + "startTime": "3/23/2023 2:22:31 AM", + "endTime": "3/23/2023 2:22:33 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-5824?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1653?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8c6febd0077f134a8ef649ceb14d12cd-00e491f3a4565440-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "cc6b1ea2de13060a73d341a46d0b2c50", + "traceparent": "00-66265891bef8d95788eec1fce40288ec-8f03eb2db826a929-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "63a29f34ecb99be07aa21cdedc1b4357", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -908,29 +679,29 @@ "Cache-Control": "no-cache", "Content-Length": "1084", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:33 GMT", + "Date": "Thu, 23 Mar 2023 02:22:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbb46e9d-d861-478d-998f-0dade2ceb707", + "x-ms-correlation-request-id": "5e55f56d-cf73-4152-beca-79c4c0fb15eb", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "4283bb05-ba8f-45c4-9c99-8c952c5b9001", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082234Z:bbb46e9d-d861-478d-998f-0dade2ceb707" + "x-ms-request-id": "3bcd0051-e255-4cea-acc9-0eaa5c62a24d", + "x-ms-routing-request-id": "JAPANEAST:20230323T022248Z:5e55f56d-cf73-4152-beca-79c4c0fb15eb" }, "ResponseBody": { - "name": "MoverResource-5824", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-5824", + "name": "MoverResource-1653", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1653", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": true, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8131", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5224", "targetId": null, - "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5774", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", "resourceSettings": { "resourceType": "resourceGroups", - "targetResourceName": "testRg-ResourceMover-8131" + "targetResourceName": "testRg-ResourceMover-5224" }, "moveStatus": { "moveState": "CommitPending", @@ -943,12 +714,12 @@ "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T08:22:16.6149443Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:22:31.0734353Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T08:22:16.6149443Z" + "lastModifiedAt": "2023-03-23T02:22:31.0734353Z" } } }, @@ -959,101 +730,101 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-f2bb6d6bd78e0346aa0a68daf4e6ed4b-5f58a3a384282c4d-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "104449d3d0a2cef980a70b89518cfeb7", + "traceparent": "00-4e0977a826d096839f0ba9864d4d0f34-038d52b01e0790c1-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6808f4f46c627b6e1a1997aa14b17f49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/df699d43-75a7-47c6-b16c-a9efc776bda5?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5023bf6c-364b-41b0-849d-6280f23c0a02?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:34 GMT", + "Date": "Thu, 23 Mar 2023 02:22:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "390ac3c6-79f2-4606-a9da-37f941677eb6", + "x-ms-correlation-request-id": "9323f722-d221-40a5-a676-accad29b87aa", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "44aba364-bbb1-470d-b260-532fa91264f1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082234Z:390ac3c6-79f2-4606-a9da-37f941677eb6" + "x-ms-request-id": "8a7b5992-11ea-425c-9d8a-9b8a426fc8a6", + "x-ms-routing-request-id": "JAPANEAST:20230323T022248Z:9323f722-d221-40a5-a676-accad29b87aa" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/df699d43-75a7-47c6-b16c-a9efc776bda5?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5023bf6c-364b-41b0-849d-6280f23c0a02?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f2bb6d6bd78e0346aa0a68daf4e6ed4b-4a6bc20de908c64e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8f32c021890bd1d6249d4b6bd381b4e6", + "traceparent": "00-4e0977a826d096839f0ba9864d4d0f34-ee4a340b34258018-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4fc46062d13ac7d9302648a0543587c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/df699d43-75a7-47c6-b16c-a9efc776bda5?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5023bf6c-364b-41b0-849d-6280f23c0a02?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:34 GMT", + "Date": "Thu, 23 Mar 2023 02:22:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1e1d8ed-8989-406b-b75e-8c0d8748cfc4", + "x-ms-correlation-request-id": "ae92c3fc-026c-4e2f-95fd-43c49b31ad64", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "2015a26e-2c3f-43b7-8c1d-8c37473fb4ab", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082235Z:a1e1d8ed-8989-406b-b75e-8c0d8748cfc4" + "x-ms-request-id": "0d63e27e-b609-4e9a-b96a-49ea71a9b4e0", + "x-ms-routing-request-id": "JAPANEAST:20230323T022249Z:ae92c3fc-026c-4e2f-95fd-43c49b31ad64" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/df699d43-75a7-47c6-b16c-a9efc776bda5", - "name": "df699d43-75a7-47c6-b16c-a9efc776bda5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5023bf6c-364b-41b0-849d-6280f23c0a02", + "name": "5023bf6c-364b-41b0-849d-6280f23c0a02", "status": "Running", - "startTime": "9/7/2022 8:22:34 AM", + "startTime": "3/23/2023 2:22:48 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/df699d43-75a7-47c6-b16c-a9efc776bda5?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5023bf6c-364b-41b0-849d-6280f23c0a02?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f2bb6d6bd78e0346aa0a68daf4e6ed4b-b857cb72c6b36147-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "80d28ad488079b6ddb4dfd800a49ab17", + "traceparent": "00-4e0977a826d096839f0ba9864d4d0f34-a7c48daaf76a2247-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e3bdd2235216e777226c673331787bb7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:50 GMT", + "Date": "Thu, 23 Mar 2023 02:23:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88453e74-e89f-4ac5-a11f-7d9cbf320d13", + "x-ms-correlation-request-id": "86c290b9-cc44-4e44-91dd-2050f82f72a1", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "e37cd4b8-20c8-4467-bb43-2ecb52ac980b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082251Z:88453e74-e89f-4ac5-a11f-7d9cbf320d13" + "x-ms-request-id": "0567e497-c822-41b5-a8a9-3051b9132bb0", + "x-ms-routing-request-id": "JAPANEAST:20230323T022304Z:86c290b9-cc44-4e44-91dd-2050f82f72a1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/df699d43-75a7-47c6-b16c-a9efc776bda5", - "name": "df699d43-75a7-47c6-b16c-a9efc776bda5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5023bf6c-364b-41b0-849d-6280f23c0a02", + "name": "5023bf6c-364b-41b0-849d-6280f23c0a02", "status": "Succeeded", - "startTime": "9/7/2022 8:22:34 AM", - "endTime": "9/7/2022 8:22:37 AM", + "startTime": "3/23/2023 2:22:48 AM", + "endTime": "3/23/2023 2:22:52 AM", "error": null, "properties": {} } @@ -1066,68 +837,106 @@ "Authorization": "Sanitized", "Content-Length": "161", "Content-Type": "application/json", - "traceparent": "00-2c771fccdc293f4495995f6fe64eff2a-e4646679a5205c4c-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "9167e5666f5a48ac16327e46ed022391", + "traceparent": "00-646b2aa57bb229b65af1b828c928f46e-d51bc12fb742caa6-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b34874fe2fec4f0f203dc0b8c43146cb", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/21c7ca06-e830-4aca-b3fd-80b3773ec9e5?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/812207bd-87d8-439c-bdc3-80a91c4f542d?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:51 GMT", + "Date": "Thu, 23 Mar 2023 02:23:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf7f4568-150d-48b1-a3cf-4ad1876cd640", + "x-ms-correlation-request-id": "d435b6f4-43fd-4435-9c1a-ba19f55abc92", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "4f3c2bec-4cff-4422-a950-bcd40f898978", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082251Z:bf7f4568-150d-48b1-a3cf-4ad1876cd640" + "x-ms-request-id": "e8960f98-1894-4f38-894b-c624e5b086a1", + "x-ms-routing-request-id": "JAPANEAST:20230323T022305Z:d435b6f4-43fd-4435-9c1a-ba19f55abc92" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/21c7ca06-e830-4aca-b3fd-80b3773ec9e5?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/812207bd-87d8-439c-bdc3-80a91c4f542d?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2c771fccdc293f4495995f6fe64eff2a-9d556dca457d814e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "ed0533f1231a658cdd896ad40a26add8", + "traceparent": "00-646b2aa57bb229b65af1b828c928f46e-a3607a76bb8e9359-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e0a191aad3edf4dcc36ec3d991bf22f1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/812207bd-87d8-439c-bdc3-80a91c4f542d?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:51 GMT", + "Date": "Thu, 23 Mar 2023 02:23:05 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c6e5622-fbc5-41de-a6ee-9bb7d32b3ad8", + "x-ms-correlation-request-id": "a91ad519-6a75-47fd-8021-c14c1fc3195f", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "a7e21f17-67cb-4017-b509-96f8a6fe03ce", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082252Z:0c6e5622-fbc5-41de-a6ee-9bb7d32b3ad8" + "x-ms-request-id": "ff4b3e73-69e9-4e7b-963d-0ab68c517265", + "x-ms-routing-request-id": "JAPANEAST:20230323T022305Z:a91ad519-6a75-47fd-8021-c14c1fc3195f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/812207bd-87d8-439c-bdc3-80a91c4f542d", + "name": "812207bd-87d8-439c-bdc3-80a91c4f542d", + "status": "Running", + "startTime": "3/23/2023 2:23:05 AM", + "endTime": null, + "error": null, + "properties": {} + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/812207bd-87d8-439c-bdc3-80a91c4f542d?api-version=2021-08-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-646b2aa57bb229b65af1b828c928f46e-bfee8c4fe3867d6d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "be8c9c254ea4c7106837ca0f0240e67a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "371", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Mar 2023 02:23:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e68a73b-bc76-4f93-818e-f31d07f1785a", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "6cf83302-56cf-4cfb-96ba-875fcd502c56", + "x-ms-routing-request-id": "JAPANEAST:20230323T022321Z:2e68a73b-bc76-4f93-818e-f31d07f1785a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/21c7ca06-e830-4aca-b3fd-80b3773ec9e5", - "name": "21c7ca06-e830-4aca-b3fd-80b3773ec9e5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/812207bd-87d8-439c-bdc3-80a91c4f542d", + "name": "812207bd-87d8-439c-bdc3-80a91c4f542d", "status": "Succeeded", - "startTime": "9/7/2022 8:22:51 AM", - "endTime": "9/7/2022 8:22:52 AM", + "startTime": "3/23/2023 2:23:05 AM", + "endTime": "3/23/2023 2:23:05 AM", "error": null, "properties": {} } @@ -1140,106 +949,106 @@ "Authorization": "Sanitized", "Content-Length": "161", "Content-Type": "application/json", - "traceparent": "00-486bd6df8937254bb962c69a4443e4e6-f216db5bf4e6be43-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "2b136b2a126ea580c7cf3dc2baeebcbf", + "traceparent": "00-646a4bddd4050534d8afead49beb8bfb-7bcfccd4ca0fff45-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "330d08a76690d3de95de693873337e29", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2c3fee2-2585-4243-8e8e-af078904f5fe?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac9b4a66-a927-4df6-b962-127e0c1b8e09?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:52 GMT", + "Date": "Thu, 23 Mar 2023 02:23:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "260fb9d7-33f9-4748-a793-5617ae52ff7f", + "x-ms-correlation-request-id": "b4f9d504-4f92-4e82-bf71-e1e0d4a09840", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "b0887b2f-c9f9-4f96-b6ef-d4d2a95684fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082253Z:260fb9d7-33f9-4748-a793-5617ae52ff7f" + "x-ms-request-id": "a718ab37-55b9-48a7-b3dd-c0b5e933d38e", + "x-ms-routing-request-id": "JAPANEAST:20230323T022321Z:b4f9d504-4f92-4e82-bf71-e1e0d4a09840" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2c3fee2-2585-4243-8e8e-af078904f5fe?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac9b4a66-a927-4df6-b962-127e0c1b8e09?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-486bd6df8937254bb962c69a4443e4e6-0626f2ea95217c45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "2093dbe99b42de6bb25f254ae6c9aaef", + "traceparent": "00-646a4bddd4050534d8afead49beb8bfb-d4261fdabfe6d8b7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "89314888eeb1bf61bdb928c6e5d85434", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2c3fee2-2585-4243-8e8e-af078904f5fe?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac9b4a66-a927-4df6-b962-127e0c1b8e09?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:22:53 GMT", + "Date": "Thu, 23 Mar 2023 02:23:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5038833-c2c6-48a3-be1e-6438c0a2f305", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "0c54054d-b850-4c80-8b9c-b653a18a34cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082254Z:e5038833-c2c6-48a3-be1e-6438c0a2f305" + "x-ms-correlation-request-id": "8bca879a-ccd3-48ad-82bb-aba7a66e3ab3", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "6bef8424-74b1-47a2-bee2-9e138dc58ef9", + "x-ms-routing-request-id": "JAPANEAST:20230323T022322Z:8bca879a-ccd3-48ad-82bb-aba7a66e3ab3" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2c3fee2-2585-4243-8e8e-af078904f5fe", - "name": "e2c3fee2-2585-4243-8e8e-af078904f5fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac9b4a66-a927-4df6-b962-127e0c1b8e09", + "name": "ac9b4a66-a927-4df6-b962-127e0c1b8e09", "status": "Running", - "startTime": "9/7/2022 8:22:53 AM", + "startTime": "3/23/2023 2:23:21 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2c3fee2-2585-4243-8e8e-af078904f5fe?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac9b4a66-a927-4df6-b962-127e0c1b8e09?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-486bd6df8937254bb962c69a4443e4e6-d3e44575181aa149-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "6668aacdf3d2f4dcf4cad9f95773507e", + "traceparent": "00-646a4bddd4050534d8afead49beb8bfb-21581ca61d33e06e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c654a1b81898d061f4b1b2b6ee29c9c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:08 GMT", + "Date": "Thu, 23 Mar 2023 02:23:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6577b7ab-f96b-4139-8b2b-b490fa8362fe", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "842a1470-fa19-44bd-94db-3c2ab88bf4ae", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082309Z:6577b7ab-f96b-4139-8b2b-b490fa8362fe" + "x-ms-correlation-request-id": "1830e6de-a5ce-4b53-8c6d-899be6e14c83", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "34230031-114b-44d3-8d5b-29798ffe212c", + "x-ms-routing-request-id": "JAPANEAST:20230323T022338Z:1830e6de-a5ce-4b53-8c6d-899be6e14c83" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2c3fee2-2585-4243-8e8e-af078904f5fe", - "name": "e2c3fee2-2585-4243-8e8e-af078904f5fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac9b4a66-a927-4df6-b962-127e0c1b8e09", + "name": "ac9b4a66-a927-4df6-b962-127e0c1b8e09", "status": "Succeeded", - "startTime": "9/7/2022 8:22:53 AM", - "endTime": "9/7/2022 8:22:54 AM", + "startTime": "3/23/2023 2:23:21 AM", + "endTime": "3/23/2023 2:23:22 AM", "error": null, "properties": {} } @@ -1252,106 +1061,106 @@ "Authorization": "Sanitized", "Content-Length": "161", "Content-Type": "application/json", - "traceparent": "00-62a3e14fa8869d4789fcc44940616f41-2c413f32133dcc42-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "dfd911409c5ad07d3776079d102c6288", + "traceparent": "00-4d6d296bc72e63ba2e1657093271335a-7873b503df948a1e-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2ab0e6ecf501cb77dae90f5fae4d76a7", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/05d6c401-aa9e-45be-b5d0-7e2f4bf2262b?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f74cff80-3bcb-417f-802b-8d91196cec86?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:09 GMT", + "Date": "Thu, 23 Mar 2023 02:23:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6ba9fa9-4ce5-45e6-9512-1c9967988817", + "x-ms-correlation-request-id": "6052290e-1d4b-406b-bdd0-cf35488345f8", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "b165a3a4-ef54-41c2-aa3c-c5f1eaecc169", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082310Z:e6ba9fa9-4ce5-45e6-9512-1c9967988817" + "x-ms-request-id": "68755711-c235-41ec-9f8f-7d395b90378c", + "x-ms-routing-request-id": "JAPANEAST:20230323T022338Z:6052290e-1d4b-406b-bdd0-cf35488345f8" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/05d6c401-aa9e-45be-b5d0-7e2f4bf2262b?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f74cff80-3bcb-417f-802b-8d91196cec86?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-62a3e14fa8869d4789fcc44940616f41-7e46b4162b3a7a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d50aa70fcbf030952c972e5cec3ee4c8", + "traceparent": "00-4d6d296bc72e63ba2e1657093271335a-5e47283068099675-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ffd95fef2928c3332989ebae080121a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/05d6c401-aa9e-45be-b5d0-7e2f4bf2262b?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f74cff80-3bcb-417f-802b-8d91196cec86?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:10 GMT", + "Date": "Thu, 23 Mar 2023 02:23:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "407ccdd3-e8fe-42d2-bc2e-06f82bba86e2", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "a5397f8d-143c-47c5-a6de-4dc52dcae86c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082311Z:407ccdd3-e8fe-42d2-bc2e-06f82bba86e2" + "x-ms-correlation-request-id": "321c41ed-944e-42b1-a0f2-df1058ccb2e4", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "17c65b3d-6692-4e2d-a1e3-d0acc6cdcac4", + "x-ms-routing-request-id": "JAPANEAST:20230323T022339Z:321c41ed-944e-42b1-a0f2-df1058ccb2e4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/05d6c401-aa9e-45be-b5d0-7e2f4bf2262b", - "name": "05d6c401-aa9e-45be-b5d0-7e2f4bf2262b", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f74cff80-3bcb-417f-802b-8d91196cec86", + "name": "f74cff80-3bcb-417f-802b-8d91196cec86", "status": "Running", - "startTime": "9/7/2022 8:23:10 AM", + "startTime": "3/23/2023 2:23:38 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/05d6c401-aa9e-45be-b5d0-7e2f4bf2262b?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f74cff80-3bcb-417f-802b-8d91196cec86?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-62a3e14fa8869d4789fcc44940616f41-457f8f31fa1cfa40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8c2f5067a433199db6e3e0bb70050ec5", + "traceparent": "00-4d6d296bc72e63ba2e1657093271335a-c6989c1175b17fc8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa310b3a612dc051fb4043a061768f30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:26 GMT", + "Date": "Thu, 23 Mar 2023 02:23:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2ca9086-b3ad-41d6-a909-8df39b86d0f6", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "a4f8d4ec-e85e-428e-8be1-372ab4d23524", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082326Z:c2ca9086-b3ad-41d6-a909-8df39b86d0f6" + "x-ms-correlation-request-id": "785f2be9-1bd1-4f84-a58a-fc8bf1a3e8c8", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "13d43ed0-e4f8-4b68-8f44-76b505735ce4", + "x-ms-routing-request-id": "JAPANEAST:20230323T022354Z:785f2be9-1bd1-4f84-a58a-fc8bf1a3e8c8" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/05d6c401-aa9e-45be-b5d0-7e2f4bf2262b", - "name": "05d6c401-aa9e-45be-b5d0-7e2f4bf2262b", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f74cff80-3bcb-417f-802b-8d91196cec86", + "name": "f74cff80-3bcb-417f-802b-8d91196cec86", "status": "Succeeded", - "startTime": "9/7/2022 8:23:10 AM", - "endTime": "9/7/2022 8:23:13 AM", + "startTime": "3/23/2023 2:23:38 AM", + "endTime": "3/23/2023 2:23:40 AM", "error": null, "properties": {} } @@ -1364,106 +1173,106 @@ "Authorization": "Sanitized", "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-79f9d67b6e87d041ba8253f96fbb7138-fc2a942bd272c444-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "688dc8ef8d22fe97350f7e49f9fe08c0", + "traceparent": "00-457bda7b1b5a06691db53cf068140ace-71f42eddd1af6f7d-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4e707c1877735b7f10383eee403c66e4", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90caff87-e9b0-47f0-b35f-b108390def2c?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5e206148-9a9f-4411-8c59-5ba3b3679a92?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:27 GMT", + "Date": "Thu, 23 Mar 2023 02:23:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a79e4a85-c15b-44c5-8501-b7a61e06182a", + "x-ms-correlation-request-id": "5de611e0-3687-448d-9dbc-21bdc03b4948", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "c4cd156e-3c0f-4936-aa72-d7eaea1d0bde", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082327Z:a79e4a85-c15b-44c5-8501-b7a61e06182a" + "x-ms-request-id": "4bc68a65-a508-4dd6-9fcd-fa91a8f4c838", + "x-ms-routing-request-id": "JAPANEAST:20230323T022355Z:5de611e0-3687-448d-9dbc-21bdc03b4948" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90caff87-e9b0-47f0-b35f-b108390def2c?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5e206148-9a9f-4411-8c59-5ba3b3679a92?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-79f9d67b6e87d041ba8253f96fbb7138-4bd9f8097da70f4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "236c69897cb1d9a5b830562425531fb8", + "traceparent": "00-457bda7b1b5a06691db53cf068140ace-6f5d386bb213a850-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8c95bbf9d391c2348cd69af4226280be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90caff87-e9b0-47f0-b35f-b108390def2c?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5e206148-9a9f-4411-8c59-5ba3b3679a92?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:28 GMT", + "Date": "Thu, 23 Mar 2023 02:23:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "696229c8-ca03-49c2-899b-0a15165a7bea", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "09eaf775-a267-4a83-a152-b57770b17165", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082328Z:696229c8-ca03-49c2-899b-0a15165a7bea" + "x-ms-correlation-request-id": "31aeec35-77f1-4873-81c2-b30a4b4e0ad1", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "418f1acf-9c80-4056-ac8e-2b6413018567", + "x-ms-routing-request-id": "JAPANEAST:20230323T022356Z:31aeec35-77f1-4873-81c2-b30a4b4e0ad1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90caff87-e9b0-47f0-b35f-b108390def2c", - "name": "90caff87-e9b0-47f0-b35f-b108390def2c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5e206148-9a9f-4411-8c59-5ba3b3679a92", + "name": "5e206148-9a9f-4411-8c59-5ba3b3679a92", "status": "Running", - "startTime": "9/7/2022 8:23:27 AM", + "startTime": "3/23/2023 2:23:55 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90caff87-e9b0-47f0-b35f-b108390def2c?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5e206148-9a9f-4411-8c59-5ba3b3679a92?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-79f9d67b6e87d041ba8253f96fbb7138-2d9b5e6b1be3484c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "0c0120da9df5f582bd225e316f8a135c", + "traceparent": "00-457bda7b1b5a06691db53cf068140ace-a49256c60d1e37fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "75615eda5eb0f2b715e23f597497757e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:43 GMT", + "Date": "Thu, 23 Mar 2023 02:24:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd5cf875-6240-461a-904c-a4a9a5672157", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "698ab016-17a2-4ed2-af9d-e63ad2c11b00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082343Z:cd5cf875-6240-461a-904c-a4a9a5672157" + "x-ms-correlation-request-id": "6270e6e2-2403-4ccc-8699-1e47b34350cc", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "2188ed54-159a-49a9-b6e4-c07b1456780c", + "x-ms-routing-request-id": "JAPANEAST:20230323T022411Z:6270e6e2-2403-4ccc-8699-1e47b34350cc" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90caff87-e9b0-47f0-b35f-b108390def2c", - "name": "90caff87-e9b0-47f0-b35f-b108390def2c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5e206148-9a9f-4411-8c59-5ba3b3679a92", + "name": "5e206148-9a9f-4411-8c59-5ba3b3679a92", "status": "Succeeded", - "startTime": "9/7/2022 8:23:27 AM", - "endTime": "9/7/2022 8:23:29 AM", + "startTime": "3/23/2023 2:23:55 AM", + "endTime": "3/23/2023 2:23:57 AM", "error": null, "properties": {} } @@ -1476,258 +1285,258 @@ "Authorization": "Sanitized", "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-63b55bca1843d04e-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8fc0574ee5913e0fbe36b811a3e645b6", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-aba9ba6e8f99faeb-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85f58cd7d9a66b53b703a4a28b726aac", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:44 GMT", + "Date": "Thu, 23 Mar 2023 02:24:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e18e4b2-a2fe-43d4-80ec-459d482156c5", + "x-ms-correlation-request-id": "e28af28e-71ea-4e18-a923-b804229bd288", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "b10ad5cb-abda-4cb5-91e0-b3c005d32c09", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082344Z:5e18e4b2-a2fe-43d4-80ec-459d482156c5" + "x-ms-request-id": "a5d83e76-390e-4b95-bd42-4a5f9805055c", + "x-ms-routing-request-id": "JAPANEAST:20230323T022412Z:e28af28e-71ea-4e18-a923-b804229bd288" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-7facd29cadc43542-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "ced5fa1c9093f52710c34ebee47152d7", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-1fec40e4f098aae0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "961c1c60fb6c00180bf5beadba1566a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:23:44 GMT", + "Date": "Thu, 23 Mar 2023 02:24:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c62181e3-0f68-4798-b54b-8395f4e95532", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "bd28e5b7-2b9a-4f6b-85d7-3cdcf71b2f2a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082345Z:c62181e3-0f68-4798-b54b-8395f4e95532" + "x-ms-correlation-request-id": "cca530ff-a0ac-4c4a-a982-dfc244abd000", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "f0829403-4536-497d-96d8-08d61cfc43f8", + "x-ms-routing-request-id": "JAPANEAST:20230323T022412Z:cca530ff-a0ac-4c4a-a982-dfc244abd000" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966", - "name": "ebc31684-b1c9-4123-a5e1-3016ad9bf966", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5", + "name": "cbe3415c-80b6-4ab5-a601-701c5a35d4a5", "status": "Running", - "startTime": "9/7/2022 8:23:44 AM", + "startTime": "3/23/2023 2:24:11 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-0245cc1ccb910246-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "0960a8dd48579a8526d3a9197f80204a", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-55035dac911fae40-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2fc09277ee8aeb4c8a5b810362a4d7dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:24:00 GMT", + "Date": "Thu, 23 Mar 2023 02:24:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5da132fc-9ed4-4d2b-9641-14887580939a", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "46b55cdd-5360-4717-a026-9465dbe06771", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082400Z:5da132fc-9ed4-4d2b-9641-14887580939a" + "x-ms-correlation-request-id": "42e84c31-7d5d-4cb6-a9e2-7ba8b768baff", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "76a9f548-fc98-4750-8870-32e14ecbeec5", + "x-ms-routing-request-id": "JAPANEAST:20230323T022428Z:42e84c31-7d5d-4cb6-a9e2-7ba8b768baff" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966", - "name": "ebc31684-b1c9-4123-a5e1-3016ad9bf966", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5", + "name": "cbe3415c-80b6-4ab5-a601-701c5a35d4a5", "status": "Running", - "startTime": "9/7/2022 8:23:44 AM", + "startTime": "3/23/2023 2:24:11 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-8558a1c2fbe32b4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a8f489cc771040223e3dba1365730775", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-ab73e91afdebdefa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f41b0b4d4559d402c0c7b3b2d53e0ed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:24:15 GMT", + "Date": "Thu, 23 Mar 2023 02:24:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95f9e212-16d3-4e5a-b31f-c8dc0447c953", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "68bb8196-0c2c-49cd-becc-25bcb3b164d4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082416Z:95f9e212-16d3-4e5a-b31f-c8dc0447c953" + "x-ms-correlation-request-id": "9d3d9f72-9ce1-4aa1-9282-7810f826143b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "2bf0c1af-11e0-48ab-92a8-fe226d501837", + "x-ms-routing-request-id": "JAPANEAST:20230323T022443Z:9d3d9f72-9ce1-4aa1-9282-7810f826143b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966", - "name": "ebc31684-b1c9-4123-a5e1-3016ad9bf966", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5", + "name": "cbe3415c-80b6-4ab5-a601-701c5a35d4a5", "status": "Running", - "startTime": "9/7/2022 8:23:44 AM", + "startTime": "3/23/2023 2:24:11 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-1fd3487abb119e4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "75b18e256013d4d6743aa8bfe70e768f", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-eb3a057001ec02dd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0137d33c1f1a716acf310b1179149d66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:24:31 GMT", + "Date": "Thu, 23 Mar 2023 02:24:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c029d06d-3de4-48ad-8fb8-d0e8843cee31", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "0cec2acb-573b-4539-a0e3-7faae380f868", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082432Z:c029d06d-3de4-48ad-8fb8-d0e8843cee31" + "x-ms-correlation-request-id": "2a67b618-74dd-4c9c-a210-fb878bf509bd", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "b307d393-baca-45cc-9c50-469610988914", + "x-ms-routing-request-id": "JAPANEAST:20230323T022459Z:2a67b618-74dd-4c9c-a210-fb878bf509bd" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966", - "name": "ebc31684-b1c9-4123-a5e1-3016ad9bf966", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5", + "name": "cbe3415c-80b6-4ab5-a601-701c5a35d4a5", "status": "Running", - "startTime": "9/7/2022 8:23:44 AM", + "startTime": "3/23/2023 2:24:11 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-ed2db59db881cd40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "5af104a3a97c65c6851fcb1a8e7135b2", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-6d0a92da5dcc0fc5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "09f9e11ef7d3a34e5223037d7311bd37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:24:46 GMT", + "Date": "Thu, 23 Mar 2023 02:25:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e53280b1-5c40-48d1-99cc-d52f854779da", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "bf7bf2ea-2a48-42c0-a82d-821eabf9d8bd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082447Z:e53280b1-5c40-48d1-99cc-d52f854779da" + "x-ms-correlation-request-id": "264108ff-655d-4d69-ba65-3645666948ea", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "22cdc1b1-3ce5-4422-bbb7-7311d8f235a0", + "x-ms-routing-request-id": "JAPANEAST:20230323T022514Z:264108ff-655d-4d69-ba65-3645666948ea" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966", - "name": "ebc31684-b1c9-4123-a5e1-3016ad9bf966", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5", + "name": "cbe3415c-80b6-4ab5-a601-701c5a35d4a5", "status": "Running", - "startTime": "9/7/2022 8:23:44 AM", + "startTime": "3/23/2023 2:24:11 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7d87e26c993ee34a8e0b7065254eda8e-32b4f55b9efb9e4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "f0f333ccaacf6c36b32034d5cf62592f", + "traceparent": "00-15a03b6a790a2abfe9a40f99eefab5fb-c3a557199fd8e2c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8fc7947ad56d94c245d0a023c82e2417", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:02 GMT", + "Date": "Thu, 23 Mar 2023 02:25:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4df6a9ab-01b8-43b7-b5da-12f24087a8e1", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "77a41d63-feb5-4247-8855-bd6316973bb3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082503Z:4df6a9ab-01b8-43b7-b5da-12f24087a8e1" + "x-ms-correlation-request-id": "fcd8ea2e-f5a1-4a56-b710-1474a6ee6a66", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "f37b98fc-4474-42c1-982c-8e261cd1263b", + "x-ms-routing-request-id": "JAPANEAST:20230323T022530Z:fcd8ea2e-f5a1-4a56-b710-1474a6ee6a66" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ebc31684-b1c9-4123-a5e1-3016ad9bf966", - "name": "ebc31684-b1c9-4123-a5e1-3016ad9bf966", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cbe3415c-80b6-4ab5-a601-701c5a35d4a5", + "name": "cbe3415c-80b6-4ab5-a601-701c5a35d4a5", "status": "Succeeded", - "startTime": "9/7/2022 8:23:44 AM", - "endTime": "9/7/2022 8:24:47 AM", + "startTime": "3/23/2023 2:24:11 AM", + "endTime": "3/23/2023 2:25:15 AM", "error": null, "properties": {} } @@ -1740,106 +1549,106 @@ "Authorization": "Sanitized", "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-c650525410609a45b1be32b847441450-40e7a9e2c6488644-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "616f2ac6ad817cf9c84bf0f394bc4502", + "traceparent": "00-317b856b59fa5f2f3b05dbc6f4df256e-dcb2f2da3062a62c-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4c1d146ed65a44198593aff61cedfebe", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/357a5e7c-2042-43d7-afd0-7a4134f3c93f?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ed52a7b3-d1c7-488f-b4ca-b9bd07a42917?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:03 GMT", + "Date": "Thu, 23 Mar 2023 02:25:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fcf2028-6bf8-4121-887b-831f53618ef1", + "x-ms-correlation-request-id": "976b4072-0256-4d14-a7b8-a01513fa660f", "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "b360190e-bb6e-4015-9a93-425a0c6add84", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082504Z:6fcf2028-6bf8-4121-887b-831f53618ef1" + "x-ms-request-id": "ce3e0af7-e734-4940-b95e-8669f3abf92f", + "x-ms-routing-request-id": "JAPANEAST:20230323T022530Z:976b4072-0256-4d14-a7b8-a01513fa660f" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/357a5e7c-2042-43d7-afd0-7a4134f3c93f?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ed52a7b3-d1c7-488f-b4ca-b9bd07a42917?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c650525410609a45b1be32b847441450-4e6069d4a0d3b744-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "64539bc6d4011f313a762884ba42d8f6", + "traceparent": "00-317b856b59fa5f2f3b05dbc6f4df256e-eb802c1dba094c2a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5e0eebff71f3a3dd7a820ad926cb7858", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/357a5e7c-2042-43d7-afd0-7a4134f3c93f?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ed52a7b3-d1c7-488f-b4ca-b9bd07a42917?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:03 GMT", + "Date": "Thu, 23 Mar 2023 02:25:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57bd7a1c-94c3-4766-b7eb-e96449794d5e", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "31bfafd7-a8f5-495f-bdd5-579153874f2d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082504Z:57bd7a1c-94c3-4766-b7eb-e96449794d5e" + "x-ms-correlation-request-id": "2199fe3c-fb44-4d82-afbd-771d5b35b595", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "f42d4ac2-0019-443b-b945-467243ceed05", + "x-ms-routing-request-id": "JAPANEAST:20230323T022531Z:2199fe3c-fb44-4d82-afbd-771d5b35b595" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/357a5e7c-2042-43d7-afd0-7a4134f3c93f", - "name": "357a5e7c-2042-43d7-afd0-7a4134f3c93f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ed52a7b3-d1c7-488f-b4ca-b9bd07a42917", + "name": "ed52a7b3-d1c7-488f-b4ca-b9bd07a42917", "status": "Running", - "startTime": "9/7/2022 8:25:03 AM", + "startTime": "3/23/2023 2:25:30 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/357a5e7c-2042-43d7-afd0-7a4134f3c93f?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ed52a7b3-d1c7-488f-b4ca-b9bd07a42917?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c650525410609a45b1be32b847441450-8e91438bfd125945-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "dad031dba56e4115697693fb059d07d7", + "traceparent": "00-317b856b59fa5f2f3b05dbc6f4df256e-a90293cb94651f2f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f4afe1d23e9760ca1bd52df51216ee5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:20 GMT", + "Date": "Thu, 23 Mar 2023 02:25:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad23adb1-6457-4513-b686-634342986911", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "32ac8b23-a4a8-4a9c-84e6-8f0b91750ed9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082520Z:ad23adb1-6457-4513-b686-634342986911" + "x-ms-correlation-request-id": "c8765dbd-ac6d-4f35-a629-3349847065d9", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "16197d0b-0e9e-4488-ac18-9439784c66bb", + "x-ms-routing-request-id": "JAPANEAST:20230323T022546Z:c8765dbd-ac6d-4f35-a629-3349847065d9" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/357a5e7c-2042-43d7-afd0-7a4134f3c93f", - "name": "357a5e7c-2042-43d7-afd0-7a4134f3c93f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ed52a7b3-d1c7-488f-b4ca-b9bd07a42917", + "name": "ed52a7b3-d1c7-488f-b4ca-b9bd07a42917", "status": "Succeeded", - "startTime": "9/7/2022 8:25:03 AM", - "endTime": "9/7/2022 8:25:16 AM", + "startTime": "3/23/2023 2:25:30 AM", + "endTime": "3/23/2023 2:25:43 AM", "error": null, "properties": {} } @@ -1852,106 +1661,106 @@ "Authorization": "Sanitized", "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-08675b2717ae3748af82cf5a8c4f4c0a-36fca5a4d65e3446-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "f82dccb4e0693000c3d479a35d3c3e8a", + "traceparent": "00-8e8ce6a095ebabcd7f43b9d32248a8da-a4eb3de7c230a3a8-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31f78cb99fde02caf7f26aca041f2253", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-8131/providers/Microsoft.Network/virtualNetworks/Vnet-9499" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5224/providers/Microsoft.Network/virtualNetworks/Vnet-1234" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/338a8183-891c-4942-8336-cccc06ba4124?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5244ff26-bb1a-4d48-80e9-f097c0ebdf37?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:21 GMT", + "Date": "Thu, 23 Mar 2023 02:25:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "974ee9df-5be3-4f01-a040-3f2eef0deb55", + "x-ms-correlation-request-id": "3dec9321-6514-44d2-bdc8-82a4aedc9ef0", "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "d2486f46-cfc4-4163-9e2a-124cc39a453a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082521Z:974ee9df-5be3-4f01-a040-3f2eef0deb55" + "x-ms-request-id": "28034445-3300-4312-86d0-d28211d520db", + "x-ms-routing-request-id": "JAPANEAST:20230323T022547Z:3dec9321-6514-44d2-bdc8-82a4aedc9ef0" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/338a8183-891c-4942-8336-cccc06ba4124?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5244ff26-bb1a-4d48-80e9-f097c0ebdf37?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08675b2717ae3748af82cf5a8c4f4c0a-be3aef83a767ff4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "edcf516fdf15fb8d30a0179a2c71e32d", + "traceparent": "00-8e8ce6a095ebabcd7f43b9d32248a8da-9f55d096d576484e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9a20b09447d3337917adfca5d4005bfb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/338a8183-891c-4942-8336-cccc06ba4124?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5244ff26-bb1a-4d48-80e9-f097c0ebdf37?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:21 GMT", + "Date": "Thu, 23 Mar 2023 02:25:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fe14eef-956a-4386-8cf0-29caf28ec532", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "6d1004df-72d6-4374-8a08-3c0ad1311453", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082521Z:0fe14eef-956a-4386-8cf0-29caf28ec532" + "x-ms-correlation-request-id": "aeddee5a-a5a2-459f-9d5f-91fc2f43cc5b", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "0d990418-c049-489b-bf9f-27e6a116da84", + "x-ms-routing-request-id": "JAPANEAST:20230323T022547Z:aeddee5a-a5a2-459f-9d5f-91fc2f43cc5b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/338a8183-891c-4942-8336-cccc06ba4124", - "name": "338a8183-891c-4942-8336-cccc06ba4124", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5244ff26-bb1a-4d48-80e9-f097c0ebdf37", + "name": "5244ff26-bb1a-4d48-80e9-f097c0ebdf37", "status": "Running", - "startTime": "9/7/2022 8:25:21 AM", + "startTime": "3/23/2023 2:25:47 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/338a8183-891c-4942-8336-cccc06ba4124?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5244ff26-bb1a-4d48-80e9-f097c0ebdf37?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08675b2717ae3748af82cf5a8c4f4c0a-56a771ebdd378648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "544e0838c41df8b7180d7156e575ef8c", + "traceparent": "00-8e8ce6a095ebabcd7f43b9d32248a8da-4ce012b29cdebae3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a709dab379e4d3de003710305bacbe0f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:25:37 GMT", + "Date": "Thu, 23 Mar 2023 02:26:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86b01105-16cc-46d3-967b-e3b4c4fd6504", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "02f706f5-0749-4c50-9f49-0b26dd937c00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T082537Z:86b01105-16cc-46d3-967b-e3b4c4fd6504" + "x-ms-correlation-request-id": "9887413c-90b0-4301-9cfa-ac1dbbb1e788", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "0db43b60-3b3e-4512-ac2e-72fbbf04b85c", + "x-ms-routing-request-id": "JAPANEAST:20230323T022603Z:9887413c-90b0-4301-9cfa-ac1dbbb1e788" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/338a8183-891c-4942-8336-cccc06ba4124", - "name": "338a8183-891c-4942-8336-cccc06ba4124", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/5244ff26-bb1a-4d48-80e9-f097c0ebdf37", + "name": "5244ff26-bb1a-4d48-80e9-f097c0ebdf37", "status": "Succeeded", - "startTime": "9/7/2022 8:25:21 AM", - "endTime": "9/7/2022 8:25:22 AM", + "startTime": "3/23/2023 2:25:47 AM", + "endTime": "3/23/2023 2:25:49 AM", "error": null, "properties": {} } @@ -1959,7 +1768,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "109020892", + "RandomSeed": "1709104228", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove()Async.json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove()Async.json index b2818f4f689d..7d6759a086df 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove()Async.json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceSetTests/ValidateResourceMove()Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5c440fa610c0264090ab5dae79aef861-9750d24cc274a340-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "65900140fe4109aab82e6c0694ed7c86", + "traceparent": "00-ffda23d83ad9dc0a865734c714e3c705-cdfe241b31c0eacf-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e56507583737df16c44fd1950969dbc6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:40:54 GMT", + "Date": "Thu, 23 Mar 2023 02:16:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23de42fd-ccbb-426e-a087-3e95e58cb595", + "x-ms-correlation-request-id": "40211754-b88c-4959-b9c2-89fb5fc0e9c2", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "23de42fd-ccbb-426e-a087-3e95e58cb595", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084054Z:23de42fd-ccbb-426e-a087-3e95e58cb595" + "x-ms-request-id": "40211754-b88c-4959-b9c2-89fb5fc0e9c2", + "x-ms-routing-request-id": "JAPANEAST:20230323T021636Z:40211754-b88c-4959-b9c2-89fb5fc0e9c2" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0c858a4877a2ea469e0b0597659b8393-e02ad86ceae45c41-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "006e202260a32fa3dd7a29d41ba449fc", + "traceparent": "00-474cee0ed0c014235b3e91ff3509213a-2767e946671c570b-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "65a01b15c217bc32733c79bbf654dccb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:40:56 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Thu, 23 Mar 2023 02:16:36 GMT", + "ETag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2f694a7-48bd-4004-af96-41bfeb049599", + "x-ms-correlation-request-id": "c77ed8dc-17d2-4286-bba8-842c386b2b27", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "03aa959d-29be-4033-ac0f-6908e3fd15e1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084056Z:a2f694a7-48bd-4004-af96-41bfeb049599" + "x-ms-request-id": "4ed27a62-2619-48f5-afb5-058baaf02aa3", + "x-ms-routing-request-id": "JAPANEAST:20230323T021637Z:c77ed8dc-17d2-4286-bba8-842c386b2b27" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-843?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3174?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-5c6fd0cd14e5b94e85f22238aab8dd3b-35198422b0e01c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c334bd61c114f6fb90097a1fda79d89d", + "traceparent": "00-47c61d1e6cee4c13a7f62af4f99b2566-8383523f980f7a48-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cb8da4787fa00107c78fc02fe92b9131", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -129,21 +129,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "245", + "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:01 GMT", + "Date": "Thu, 23 Mar 2023 02:16:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c06cc144-f239-420c-8842-db6e6be40c56", + "x-ms-correlation-request-id": "1c3802ed-0b9a-4475-b681-8255bdde7d1d", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "c06cc144-f239-420c-8842-db6e6be40c56", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084101Z:c06cc144-f239-420c-8842-db6e6be40c56" + "x-ms-request-id": "1c3802ed-0b9a-4475-b681-8255bdde7d1d", + "x-ms-routing-request-id": "JAPANEAST:20230323T021641Z:1c3802ed-0b9a-4475-b681-8255bdde7d1d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843", - "name": "testRg-ResourceMover-843", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174", + "name": "testRg-ResourceMover-3174", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,346 +152,154 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2085?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "167", + "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-c51194b9ce68794bbe7b45570dc0e466-2feab723214e8a42-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "3df547475edf8861c6d4d6ed14e47027", + "traceparent": "00-72680728d564a3203891ffbda3516a5f-610ae125f13674ff-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dda61b773b5b1ea931ab5309469a72d5", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-2014", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/86057617-6e68-4e06-818b-c5461c165999?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1253", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d92672c4-2926-45bd-9deb-d45fb05d7748", - "x-ms-client-request-id": "3df547475edf8861c6d4d6ed14e47027", - "x-ms-correlation-request-id": "00c95841-77de-43b9-9530-bb35628c3e5c", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "86057617-6e68-4e06-818b-c5461c165999", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084108Z:00c95841-77de-43b9-9530-bb35628c3e5c" - }, - "ResponseBody": { - "name": "Vnet-3810", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810", - "etag": "W/\u00222497d241-36be-4b97-9aca-5cae5332c046\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", "properties": { - "provisioningState": "Updating", - "resourceGuid": "b7b902f4-9c98-4d66-bf6f-dcd3f18ed8cb", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-2014", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810/subnets/Subnet-2014", - "etag": "W/\u00222497d241-36be-4b97-9aca-5cae5332c046\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/86057617-6e68-4e06-818b-c5461c165999?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-c51194b9ce68794bbe7b45570dc0e466-baf0243da9d41e45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b402340d24e9d6dd628cfb2620a3f596", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a1fe9b05-a5c8-4865-b2bc-ab650b8c6c75", - "x-ms-client-request-id": "b402340d24e9d6dd628cfb2620a3f596", - "x-ms-correlation-request-id": "f61eaf0b-5787-4130-9f49-c998d36e2400", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "61aec502-60b2-4110-8cae-4c9091682109", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084109Z:f61eaf0b-5787-4130-9f49-c998d36e2400" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-c51194b9ce68794bbe7b45570dc0e466-63c4793338d6f143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a846b2ae4b54e862d4ec2a89355185c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:09 GMT", - "ETag": "W/\u00226457ca3a-bc77-49b2-a8b8-28ab2fdd50e1\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1daa77e9-2ba5-44d5-8fdb-cc9655229938", - "x-ms-client-request-id": "a846b2ae4b54e862d4ec2a89355185c5", - "x-ms-correlation-request-id": "ac22095b-1165-4334-b84f-d48c52733f76", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "471c7895-7303-4bff-8081-d22143a2c4b0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084109Z:ac22095b-1165-4334-b84f-d48c52733f76" - }, - "ResponseBody": { - "name": "Vnet-3810", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810", - "etag": "W/\u00226457ca3a-bc77-49b2-a8b8-28ab2fdd50e1\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "b7b902f4-9c98-4d66-bf6f-dcd3f18ed8cb", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-2014", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810/subnets/Subnet-2014", - "etag": "W/\u00226457ca3a-bc77-49b2-a8b8-28ab2fdd50e1\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-831?api-version=2021-08-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "286", - "Content-Type": "application/json", - "traceparent": "00-2b2e76f964ff8c478c869ca77e479d8d-35ef4923ffd10346-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "bce2e0df0f3e72526081634ce96f6192", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-7992" + "targetResourceName": "targetVnet-9227" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7af3ae0e-6e0a-49c4-a882-41ee13d83264?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/763eeba7-48a6-40d8-8912-c22c2aeee9f3?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:10 GMT", + "Date": "Thu, 23 Mar 2023 02:16:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "300c7a26-232f-4fb6-b4f0-f69de2d6d86d", + "x-ms-correlation-request-id": "85b927cc-aa08-4751-a48a-f440b37aff5c", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "ab9517a8-70af-47ca-a19b-91b699e6ef55", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084110Z:300c7a26-232f-4fb6-b4f0-f69de2d6d86d" + "x-ms-request-id": "332df0c0-50e9-461b-ade4-33be3fcce754", + "x-ms-routing-request-id": "JAPANEAST:20230323T021658Z:85b927cc-aa08-4751-a48a-f440b37aff5c" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7af3ae0e-6e0a-49c4-a882-41ee13d83264?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/763eeba7-48a6-40d8-8912-c22c2aeee9f3?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2b2e76f964ff8c478c869ca77e479d8d-82b28b8ba429bc4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "14c381a3f2b4367355e2ebe1858703bb", + "traceparent": "00-72680728d564a3203891ffbda3516a5f-111b60e1559cc4fe-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bb7241b59e2af9f5efc0320b42ce007c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7af3ae0e-6e0a-49c4-a882-41ee13d83264?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/763eeba7-48a6-40d8-8912-c22c2aeee9f3?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:11 GMT", + "Date": "Thu, 23 Mar 2023 02:16:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "079c55f5-92e2-43c2-a45c-3942dbd8b3eb", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "3251406f-404a-4ce9-b788-395821b8dcdb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084111Z:079c55f5-92e2-43c2-a45c-3942dbd8b3eb" + "x-ms-correlation-request-id": "40f18a09-1a98-4249-8a10-dbe7f4911e09", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "261a656f-f4b1-442e-a359-497a78559d0e", + "x-ms-routing-request-id": "JAPANEAST:20230323T021658Z:40f18a09-1a98-4249-8a10-dbe7f4911e09" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7af3ae0e-6e0a-49c4-a882-41ee13d83264", - "name": "7af3ae0e-6e0a-49c4-a882-41ee13d83264", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/763eeba7-48a6-40d8-8912-c22c2aeee9f3", + "name": "763eeba7-48a6-40d8-8912-c22c2aeee9f3", "status": "Running", - "startTime": "9/7/2022 8:41:10 AM", + "startTime": "3/23/2023 2:16:58 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7af3ae0e-6e0a-49c4-a882-41ee13d83264?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/763eeba7-48a6-40d8-8912-c22c2aeee9f3?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2b2e76f964ff8c478c869ca77e479d8d-d23e3c54d549ed4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "34efa227d90a1ebb0fc8dc4115fdd14e", + "traceparent": "00-72680728d564a3203891ffbda3516a5f-f7e383648b506a84-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "460ee8ddd40b40a2055926e14f35d6a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:26 GMT", + "Date": "Thu, 23 Mar 2023 02:17:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e5f4f6f-1f39-46fe-bee6-b76ffa4e928d", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "11a0f704-ec0e-4fe7-82a8-ba3115f4306a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084127Z:5e5f4f6f-1f39-46fe-bee6-b76ffa4e928d" + "x-ms-correlation-request-id": "a5b9592f-9549-4606-870d-8e80b8835b35", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "0e1a5cef-6a66-4d3d-be74-351d78fedf9f", + "x-ms-routing-request-id": "JAPANEAST:20230323T021714Z:a5b9592f-9549-4606-870d-8e80b8835b35" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7af3ae0e-6e0a-49c4-a882-41ee13d83264", - "name": "7af3ae0e-6e0a-49c4-a882-41ee13d83264", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/763eeba7-48a6-40d8-8912-c22c2aeee9f3", + "name": "763eeba7-48a6-40d8-8912-c22c2aeee9f3", "status": "Succeeded", - "startTime": "9/7/2022 8:41:10 AM", - "endTime": "9/7/2022 8:41:12 AM", + "startTime": "3/23/2023 2:16:58 AM", + "endTime": "3/23/2023 2:16:59 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-831?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2085?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2b2e76f964ff8c478c869ca77e479d8d-e91f0418acf4c840-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "67a92d794cab6fdedc845300d5ef9458", + "traceparent": "00-72680728d564a3203891ffbda3516a5f-d6c622ca45936c7c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0554145db728c4aad71fa143030a0ae8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1837", + "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:27 GMT", + "Date": "Thu, 23 Mar 2023 02:17:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a171ff5-32e7-495d-97c0-ac5408b3bd12", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "5cf57498-7136-4dd4-bc78-a31ed928d878", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084127Z:9a171ff5-32e7-495d-97c0-ac5408b3bd12" + "x-ms-correlation-request-id": "94a01d3f-9702-47f9-a63a-e32bda469430", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "70b0056b-12ff-41e2-9573-3537498d840d", + "x-ms-routing-request-id": "JAPANEAST:20230323T021714Z:94a01d3f-9702-47f9-a63a-e32bda469430" }, "ResponseBody": { - "name": "MoverResource-831", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-831", + "name": "MoverResource-2085", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2085", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -501,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-7992" + "targetResourceName": "targetVnet-9227" }, "moveStatus": { "moveState": "PreparePending", @@ -509,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -526,22 +334,22 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-2014", + "name": "Subnet-3179", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-3810" + "targetResourceName": "Vnet-9419" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T08:41:10.2403768Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:16:57.9019641Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T08:41:10.2403768Z" + "lastModifiedAt": "2023-03-23T02:16:57.9019641Z" } } }, @@ -552,101 +360,101 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-c4acc458fb472443ba17a46787714e83-5897840d309e6449-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "fe2d3df9d221c92bc5a505ec15322057", + "traceparent": "00-32051a3d0fca7daf9ce6a0ac6fb20a00-7414d557caf7972a-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5f966e79087ce0349f31b5d17714aab9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9fdf73c4-9c54-40f6-96ed-6684c4facb2f?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:28 GMT", + "Date": "Thu, 23 Mar 2023 02:17:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "149ca9ad-9974-4564-a126-6af448e26feb", + "x-ms-correlation-request-id": "757892a0-0088-4a12-bb46-34fd0aa465b8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "6bfcf79d-88f4-4c83-b8b3-e6176ecb00eb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084128Z:149ca9ad-9974-4564-a126-6af448e26feb" + "x-ms-request-id": "f91a19d8-cceb-4ac1-9a6b-8772b0d89885", + "x-ms-routing-request-id": "JAPANEAST:20230323T021715Z:757892a0-0088-4a12-bb46-34fd0aa465b8" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9fdf73c4-9c54-40f6-96ed-6684c4facb2f?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c4acc458fb472443ba17a46787714e83-71cd595870378e44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d8488333d3d0a72d01dfa10647f259aa", + "traceparent": "00-32051a3d0fca7daf9ce6a0ac6fb20a00-db2bc7b9613028e3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e0673e4e769e552adf7366f602d94cc3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9fdf73c4-9c54-40f6-96ed-6684c4facb2f?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:28 GMT", + "Date": "Thu, 23 Mar 2023 02:17:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d983a560-cf29-4093-975d-c479df06dc6f", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "bea44338-fd94-479c-8f9c-d40bca8ed602", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084129Z:d983a560-cf29-4093-975d-c479df06dc6f" + "x-ms-correlation-request-id": "f8944dc1-0f03-4dba-b437-7b94268eba22", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "b17a39a4-a60d-48fa-9f7f-469005af44fe", + "x-ms-routing-request-id": "JAPANEAST:20230323T021715Z:f8944dc1-0f03-4dba-b437-7b94268eba22" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9fdf73c4-9c54-40f6-96ed-6684c4facb2f", - "name": "9fdf73c4-9c54-40f6-96ed-6684c4facb2f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d", + "name": "bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d", "status": "Running", - "startTime": "9/7/2022 8:41:28 AM", + "startTime": "3/23/2023 2:17:15 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9fdf73c4-9c54-40f6-96ed-6684c4facb2f?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c4acc458fb472443ba17a46787714e83-4eedeac215fd4f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "39effc633c875d7a2d5239a279a6430a", + "traceparent": "00-32051a3d0fca7daf9ce6a0ac6fb20a00-8eccfc5913600ba7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7859e775db5c7e6d1a7022329949ac40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "814", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:44 GMT", + "Date": "Thu, 23 Mar 2023 02:17:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48053c0c-82b2-4baa-a343-9a0662bf1137", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "1667db45-59ec-434a-88bd-7983b2583466", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084144Z:48053c0c-82b2-4baa-a343-9a0662bf1137" + "x-ms-correlation-request-id": "8e8eb8ea-2abd-44b7-87d1-fda7119c236a", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "f3e54d6e-3c4d-48b4-8621-cb5b5efedf9c", + "x-ms-routing-request-id": "JAPANEAST:20230323T021731Z:8e8eb8ea-2abd-44b7-87d1-fda7119c236a" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/9fdf73c4-9c54-40f6-96ed-6684c4facb2f", - "name": "9fdf73c4-9c54-40f6-96ed-6684c4facb2f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d", + "name": "bdfd4dc9-ac3c-4bb9-a0da-435a6febac8d", "status": "Succeeded", - "startTime": "9/7/2022 8:41:28 AM", - "endTime": "9/7/2022 8:41:29 AM", + "startTime": "3/23/2023 2:17:15 AM", + "endTime": "3/23/2023 2:17:17 AM", "error": { "code": "MoveCollectionResolveDependenciesOperationFailed", "message": "The resolve dependencies operation of one or more resources has failed. Check the move status of the resource for more details.\n Possible Causes: The resolve dependencies operation of one ore more resources has failed.\n Recommended Action: Retry the operation after resolving errors if any. If issue persists, contact support.\n ", @@ -662,32 +470,31 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-241a7783954c4f41ae42b403a3424092-5d519934b6310d43-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "92b8e65c48e93e866fbf56fefa0993d1", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3982baf4c9ad731a60584f06955d2463", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "205", + "Content-Length": "206", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:44 GMT", + "Date": "Thu, 23 Mar 2023 02:17:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64da63e0-269e-4e12-8ef8-1585335af253", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "bffe6442-d994-4d56-8bc2-7a29c7c7dc48", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084145Z:64da63e0-269e-4e12-8ef8-1585335af253" + "x-ms-correlation-request-id": "db01d394-d3da-4fa5-b080-9779e056a22f", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "c1ca3fe7-1a11-4038-a35b-d75d02e6356b", + "x-ms-routing-request-id": "JAPANEAST:20230323T021732Z:db01d394-d3da-4fa5-b080-9779e056a22f" }, "ResponseBody": { "value": [ { "count": 1, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-843" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3174" } ], "totalCount": 1, @@ -699,16 +506,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-Target-1162?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-Target-4657?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-92687038bd3f454caf618245c57cbc33-095aa7d750ff9c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "cb8a21ad970f08f6ebaa7e998a2e5b9b", + "traceparent": "00-76f20c720ffab71e959ff621880dccd5-8ee9fde6f0d0099b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4b76abfdc405739ed0e8c62e54f8bb96", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -719,19 +526,19 @@ "Cache-Control": "no-cache", "Content-Length": "262", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:46 GMT", + "Date": "Thu, 23 Mar 2023 02:17:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ee78cd7-c77a-462a-b373-4d8374c82d94", + "x-ms-correlation-request-id": "33b467eb-3483-4262-a9ff-dc774032a0c5", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "7ee78cd7-c77a-462a-b373-4d8374c82d94", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084147Z:7ee78cd7-c77a-462a-b373-4d8374c82d94" + "x-ms-request-id": "33b467eb-3483-4262-a9ff-dc774032a0c5", + "x-ms-routing-request-id": "JAPANEAST:20230323T021734Z:33b467eb-3483-4262-a9ff-dc774032a0c5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", - "name": "testRg-ResourceMover-Target-1162", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", + "name": "testRg-ResourceMover-Target-4657", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "properties": { @@ -740,160 +547,160 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-445?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8957?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "343", + "Content-Length": "345", "Content-Type": "application/json", - "traceparent": "00-4e45d9dded2fd2498c91622834b0faa3-b98e763041d1b943-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c73961aa1bc1b175c9c8e67c6224bf68", + "traceparent": "00-287d412b45952becb69209e43f2e2b4b-54d05c1aa34609f7-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "470225c61357ac16cce518038c67e9bc", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-843", - "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3174", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", "resourceSettings": { "resourceType": "resourceGroups", - "targetResourceName": "testRg-ResourceMover-843" + "targetResourceName": "testRg-ResourceMover-3174" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/c089976c-ac87-481c-8d21-f3a09b15ca1c?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:47 GMT", + "Date": "Thu, 23 Mar 2023 02:17:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "938b2f3f-2c7d-4610-9d86-b8f7c6bc1ac3", + "x-ms-correlation-request-id": "8bc5d194-6c81-4803-a270-a8ee6714040f", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "77f53dea-ed41-41a0-97d0-391b5e237864", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084148Z:938b2f3f-2c7d-4610-9d86-b8f7c6bc1ac3" + "x-ms-request-id": "0d426f95-25fb-4fb5-abb3-ad66125aee0d", + "x-ms-routing-request-id": "JAPANEAST:20230323T021734Z:8bc5d194-6c81-4803-a270-a8ee6714040f" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/c089976c-ac87-481c-8d21-f3a09b15ca1c?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4e45d9dded2fd2498c91622834b0faa3-8460753ea82d2a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "325f63635e9806ec141a45cf108c8885", + "traceparent": "00-287d412b45952becb69209e43f2e2b4b-fcdb3f0a5c857c49-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6f40b99ddc5be90c95ca7f20ac9be769", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/c089976c-ac87-481c-8d21-f3a09b15ca1c?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:41:48 GMT", + "Date": "Thu, 23 Mar 2023 02:17:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36fdbdd4-df2b-4ef6-935f-f5563b4c89a1", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "62fcb2bf-4478-482c-8e31-331cb7660df3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084148Z:36fdbdd4-df2b-4ef6-935f-f5563b4c89a1" + "x-ms-correlation-request-id": "a01b17f8-48ec-459b-8eba-e4ad38d480d9", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "f8ca5e91-b481-4052-a61f-e070fdb806ba", + "x-ms-routing-request-id": "JAPANEAST:20230323T021735Z:a01b17f8-48ec-459b-8eba-e4ad38d480d9" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/c089976c-ac87-481c-8d21-f3a09b15ca1c", - "name": "c089976c-ac87-481c-8d21-f3a09b15ca1c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4", + "name": "f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4", "status": "Running", - "startTime": "9/7/2022 8:41:47 AM", + "startTime": "3/23/2023 2:17:34 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/c089976c-ac87-481c-8d21-f3a09b15ca1c?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4e45d9dded2fd2498c91622834b0faa3-075a0797bdb3384d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "620f30bee1d65c5812773dc37c6c0ce4", + "traceparent": "00-287d412b45952becb69209e43f2e2b4b-35e246cef670fc5c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "96e20affcdc365c3ead22c48aa51a9e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:03 GMT", + "Date": "Thu, 23 Mar 2023 02:17:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66dd5241-4442-4f38-8a8f-eb6d948683e6", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "42fa4671-fdbc-41be-b256-6e06bd0860d6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084204Z:66dd5241-4442-4f38-8a8f-eb6d948683e6" + "x-ms-correlation-request-id": "cff20ec0-5e12-4f22-ac8a-319c855aaa49", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "d7c2ea30-8223-4421-97d7-cfc3d8f0e834", + "x-ms-routing-request-id": "JAPANEAST:20230323T021750Z:cff20ec0-5e12-4f22-ac8a-319c855aaa49" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/c089976c-ac87-481c-8d21-f3a09b15ca1c", - "name": "c089976c-ac87-481c-8d21-f3a09b15ca1c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4", + "name": "f4040ed9-f67e-4ebf-8ce5-0fe18ba934a4", "status": "Succeeded", - "startTime": "9/7/2022 8:41:47 AM", - "endTime": "9/7/2022 8:41:49 AM", + "startTime": "3/23/2023 2:17:34 AM", + "endTime": "3/23/2023 2:17:35 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-445?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8957?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4e45d9dded2fd2498c91622834b0faa3-3093539c8420d141-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "ff19ea368dc51dcfdf7da424077fb1fd", + "traceparent": "00-287d412b45952becb69209e43f2e2b4b-c9277d31a040ae5c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d265b0c67a277061b14b5908e11a847f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1078", + "Content-Length": "1084", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:04 GMT", + "Date": "Thu, 23 Mar 2023 02:17:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7148bebe-d18c-4aac-a2ad-6e2b927b3cec", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "e54f6db3-8a3a-4ebb-91da-b5e47319f6c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084204Z:7148bebe-d18c-4aac-a2ad-6e2b927b3cec" + "x-ms-correlation-request-id": "3258d0f4-f6ec-43d1-84fa-b8f9b7e80bb0", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "9db057c8-85db-4b51-8700-762910e6a923", + "x-ms-routing-request-id": "JAPANEAST:20230323T021751Z:3258d0f4-f6ec-43d1-84fa-b8f9b7e80bb0" }, "ResponseBody": { - "name": "MoverResource-445", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-445", + "name": "MoverResource-8957", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8957", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": true, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-843", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3174", "targetId": null, - "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", "resourceSettings": { "resourceType": "resourceGroups", - "targetResourceName": "testRg-ResourceMover-843" + "targetResourceName": "testRg-ResourceMover-3174" }, "moveStatus": { "moveState": "CommitPending", @@ -906,12 +713,12 @@ "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T08:41:47.459326Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:17:34.3401038Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T08:41:47.459326Z" + "lastModifiedAt": "2023-03-23T02:17:34.3401038Z" } } }, @@ -922,101 +729,101 @@ "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "0", - "traceparent": "00-f5cd87bde9920344be6cc2cb19954b2f-50849fe989862a4f-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "744a19752fd581240b021f2121298aa8", + "traceparent": "00-a115633f97f3bde82c268796190e7335-210752273cc0c718-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f8c4ff27880acfa4f5da8489afc33f43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/23fe6bf5-7224-4552-8c98-1266e1d3fc63?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/69544b2d-4a85-4e2c-86f6-bf2d91043cfe?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:06 GMT", + "Date": "Thu, 23 Mar 2023 02:17:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9156dcbc-cc91-4c18-9c4b-05d2c2e7debd", + "x-ms-correlation-request-id": "b5ff1a67-7a3f-4085-8e11-bac4e115a258", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "09efd674-1510-43dd-b833-98eb18cd5e15", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084207Z:9156dcbc-cc91-4c18-9c4b-05d2c2e7debd" + "x-ms-request-id": "c7dd476d-f507-448f-8e73-812765f47831", + "x-ms-routing-request-id": "JAPANEAST:20230323T021751Z:b5ff1a67-7a3f-4085-8e11-bac4e115a258" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/23fe6bf5-7224-4552-8c98-1266e1d3fc63?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/69544b2d-4a85-4e2c-86f6-bf2d91043cfe?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f5cd87bde9920344be6cc2cb19954b2f-dc87ae54d4d5f14b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "634e3fc59821070fc697f4c36daefbb5", + "traceparent": "00-a115633f97f3bde82c268796190e7335-87cde55fbd4c5146-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa21ad4eb18d3dd50c96dd4cf5d8c0ed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/23fe6bf5-7224-4552-8c98-1266e1d3fc63?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/69544b2d-4a85-4e2c-86f6-bf2d91043cfe?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:07 GMT", + "Date": "Thu, 23 Mar 2023 02:17:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4400bac-1d80-47a1-a0ae-b7660b0626c1", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "c2ee70fb-87b9-4f97-91a0-668450e95d9a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084208Z:d4400bac-1d80-47a1-a0ae-b7660b0626c1" + "x-ms-correlation-request-id": "dac71d1b-1f72-4d53-992f-350a409fe1f8", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "aced5b1c-2870-4b89-8254-23bab97e8a8d", + "x-ms-routing-request-id": "JAPANEAST:20230323T021752Z:dac71d1b-1f72-4d53-992f-350a409fe1f8" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/23fe6bf5-7224-4552-8c98-1266e1d3fc63", - "name": "23fe6bf5-7224-4552-8c98-1266e1d3fc63", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/69544b2d-4a85-4e2c-86f6-bf2d91043cfe", + "name": "69544b2d-4a85-4e2c-86f6-bf2d91043cfe", "status": "Running", - "startTime": "9/7/2022 8:42:07 AM", + "startTime": "3/23/2023 2:17:51 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/23fe6bf5-7224-4552-8c98-1266e1d3fc63?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/69544b2d-4a85-4e2c-86f6-bf2d91043cfe?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f5cd87bde9920344be6cc2cb19954b2f-463a44a8d8234244-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a615fcf38be6eb8a591912e3accb44d6", + "traceparent": "00-a115633f97f3bde82c268796190e7335-3e8c02cd7cc568db-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "42e7150b88c11249bd3f4f98a32b5b3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:23 GMT", + "Date": "Thu, 23 Mar 2023 02:18:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4808c797-5c07-4ed4-a2bb-7459e6b8739b", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "83ad96c8-71f3-4cfd-92f9-0355681bc009", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084223Z:4808c797-5c07-4ed4-a2bb-7459e6b8739b" + "x-ms-correlation-request-id": "62b3a1e1-b985-4645-92f2-86a606da4070", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "3e18c3a1-36ec-4a84-ad1d-f26c35cad1bd", + "x-ms-routing-request-id": "JAPANEAST:20230323T021807Z:62b3a1e1-b985-4645-92f2-86a606da4070" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/23fe6bf5-7224-4552-8c98-1266e1d3fc63", - "name": "23fe6bf5-7224-4552-8c98-1266e1d3fc63", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/69544b2d-4a85-4e2c-86f6-bf2d91043cfe", + "name": "69544b2d-4a85-4e2c-86f6-bf2d91043cfe", "status": "Succeeded", - "startTime": "9/7/2022 8:42:07 AM", - "endTime": "9/7/2022 8:42:09 AM", + "startTime": "3/23/2023 2:17:51 AM", + "endTime": "3/23/2023 2:17:53 AM", "error": null, "properties": {} } @@ -1027,70 +834,70 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "160", + "Content-Length": "161", "Content-Type": "application/json", - "traceparent": "00-f620a6044c70fe42be039bd2e2bef4f1-10d70ca7cdbc3341-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e25b8cad26db768651915fda95fcc2b3", + "traceparent": "00-ab598616c413b6c2279e2909265e35a8-36f8407d2b5ffbf1-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "023ab45695a26fb6c91bef9f37f58fd0", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/b7d6088f-8a1e-457a-92d5-d359e3dcce78?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/083f18ce-fffa-47f9-946c-0786c0daa05f?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:24 GMT", + "Date": "Thu, 23 Mar 2023 02:18:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a56a8b02-62b5-4eba-8e88-590f639eddb5", + "x-ms-correlation-request-id": "ee6f8cea-8d1b-40df-928e-4e0bfb186d15", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "cdd4b25d-209c-4c0f-b39d-fbc68129de6d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084224Z:a56a8b02-62b5-4eba-8e88-590f639eddb5" + "x-ms-request-id": "8284edee-329a-4244-897c-76c13dd4219d", + "x-ms-routing-request-id": "JAPANEAST:20230323T021808Z:ee6f8cea-8d1b-40df-928e-4e0bfb186d15" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/b7d6088f-8a1e-457a-92d5-d359e3dcce78?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/083f18ce-fffa-47f9-946c-0786c0daa05f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f620a6044c70fe42be039bd2e2bef4f1-d60935b107b6554e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e1161d531952cdda759f55552cb0565d", + "traceparent": "00-ab598616c413b6c2279e2909265e35a8-5c2c2bde1ef42d7d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "40f6a23abe9d764b5f7779a599aadbc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:24 GMT", + "Date": "Thu, 23 Mar 2023 02:18:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36749ad8-cacb-4156-8b0e-d1290d9030f5", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "7da4dadf-d1a3-48fd-911e-6c13447ca13c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084225Z:36749ad8-cacb-4156-8b0e-d1290d9030f5" + "x-ms-correlation-request-id": "db8d7a25-05ed-47e0-bb9f-72a73cf356f1", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "432a9cef-a837-4f4b-9680-ff39fe67ffc2", + "x-ms-routing-request-id": "JAPANEAST:20230323T021808Z:db8d7a25-05ed-47e0-bb9f-72a73cf356f1" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/b7d6088f-8a1e-457a-92d5-d359e3dcce78", - "name": "b7d6088f-8a1e-457a-92d5-d359e3dcce78", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/083f18ce-fffa-47f9-946c-0786c0daa05f", + "name": "083f18ce-fffa-47f9-946c-0786c0daa05f", "status": "Succeeded", - "startTime": "9/7/2022 8:42:24 AM", - "endTime": "9/7/2022 8:42:25 AM", + "startTime": "3/23/2023 2:18:08 AM", + "endTime": "3/23/2023 2:18:08 AM", "error": null, "properties": {} } @@ -1101,108 +908,70 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "160", + "Content-Length": "161", "Content-Type": "application/json", - "traceparent": "00-f530dea16add23499bb7f61d264e4336-38406c8def1eb049-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "deed5f560465ffb8e0222d781c7ef125", + "traceparent": "00-1afd1c820f0af0a942773dc9fea355f6-cf3e7656473249ba-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ace77eb0fdbe1566a5759e93a8680d8c", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/85f0f6c2-4263-4b98-9a45-a32eeb66ac08?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/881868ac-70c2-48d0-810c-48f066e0530a?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:25 GMT", + "Date": "Thu, 23 Mar 2023 02:18:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6aac1fa4-40b8-458e-a650-0ce22a1c620a", + "x-ms-correlation-request-id": "b7b68057-8533-429f-bc88-b8836a39c2f2", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "40fe28a7-7ca5-4d4e-88c1-df2310d7137c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084226Z:6aac1fa4-40b8-458e-a650-0ce22a1c620a" + "x-ms-request-id": "d50c2b34-cb09-4c7b-ad43-3ed34c9d7afb", + "x-ms-routing-request-id": "JAPANEAST:20230323T021809Z:b7b68057-8533-429f-bc88-b8836a39c2f2" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/85f0f6c2-4263-4b98-9a45-a32eeb66ac08?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f530dea16add23499bb7f61d264e4336-a0eb7d0fd2f5d948-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "25b1ac0c7c3e4f9465160030ec62b0f7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/85f0f6c2-4263-4b98-9a45-a32eeb66ac08?api-version=2021-08-01", - "Cache-Control": "no-cache", - "Content-Length": "350", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "15", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c879970-669d-4efd-9974-3a4cf23d1d63", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "04b9d261-da92-4583-a74f-bcbebc1b3b17", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084227Z:8c879970-669d-4efd-9974-3a4cf23d1d63" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/85f0f6c2-4263-4b98-9a45-a32eeb66ac08", - "name": "85f0f6c2-4263-4b98-9a45-a32eeb66ac08", - "status": "Running", - "startTime": "9/7/2022 8:42:26 AM", - "endTime": null, - "error": null, - "properties": {} - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/85f0f6c2-4263-4b98-9a45-a32eeb66ac08?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/881868ac-70c2-48d0-810c-48f066e0530a?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f530dea16add23499bb7f61d264e4336-1b56d1e340203348-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c71e2faede287477ff10ebcd3938a689", + "traceparent": "00-1afd1c820f0af0a942773dc9fea355f6-225c75a6215c0f89-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e39c2333ed553d223ce09b2820b7cdf6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:41 GMT", + "Date": "Thu, 23 Mar 2023 02:18:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5a433f1-427f-4cef-b908-f6684c72fc3d", + "x-ms-correlation-request-id": "99179354-8bff-4689-9525-57d761c1fa9c", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "1762ad8c-3feb-4ccf-961b-c15e719f0964", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084242Z:f5a433f1-427f-4cef-b908-f6684c72fc3d" + "x-ms-request-id": "109868fb-f7e2-4fd2-b7c6-e7b597b018ce", + "x-ms-routing-request-id": "JAPANEAST:20230323T021809Z:99179354-8bff-4689-9525-57d761c1fa9c" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/85f0f6c2-4263-4b98-9a45-a32eeb66ac08", - "name": "85f0f6c2-4263-4b98-9a45-a32eeb66ac08", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/881868ac-70c2-48d0-810c-48f066e0530a", + "name": "881868ac-70c2-48d0-810c-48f066e0530a", "status": "Succeeded", - "startTime": "9/7/2022 8:42:26 AM", - "endTime": "9/7/2022 8:42:27 AM", + "startTime": "3/23/2023 2:18:09 AM", + "endTime": "3/23/2023 2:18:09 AM", "error": null, "properties": {} } @@ -1213,108 +982,108 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "160", + "Content-Length": "161", "Content-Type": "application/json", - "traceparent": "00-16f799c61b398b4996a2d4cd4389de59-1e4a0513cf9ea549-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "6f6b2914cbccbae7cf3812cfe12ff090", + "traceparent": "00-d2fb107de1bad99f7cc2e9d18639ca68-6fb4f334c2859f5f-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8b23ec69464462c94af501c8fe094e3c", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2d90c264-c541-4f36-bf5c-57562c1b270e?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f57ca3b8-90ce-456e-8c1f-42c3b1dd670d?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:42 GMT", + "Date": "Thu, 23 Mar 2023 02:18:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2dc357b-6448-442c-a32a-448816116ed0", + "x-ms-correlation-request-id": "5b149891-692f-4279-9816-646052a49234", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "65be52cc-f97c-4aaa-a33f-fc9d640018d6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084243Z:d2dc357b-6448-442c-a32a-448816116ed0" + "x-ms-request-id": "153e7bf4-a1b0-471d-817f-2dbb0f86be91", + "x-ms-routing-request-id": "JAPANEAST:20230323T021810Z:5b149891-692f-4279-9816-646052a49234" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2d90c264-c541-4f36-bf5c-57562c1b270e?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f57ca3b8-90ce-456e-8c1f-42c3b1dd670d?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-16f799c61b398b4996a2d4cd4389de59-130571130abd7e43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c31b767041f6e22a4763f7f0cba893cf", + "traceparent": "00-d2fb107de1bad99f7cc2e9d18639ca68-d987806bdaa6933b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "daf20728a146ed745a3a985feb593f33", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2d90c264-c541-4f36-bf5c-57562c1b270e?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f57ca3b8-90ce-456e-8c1f-42c3b1dd670d?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:43 GMT", + "Date": "Thu, 23 Mar 2023 02:18:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51cd2cba-099c-40e2-abbc-d413d2619455", + "x-ms-correlation-request-id": "6357a5c7-ae8f-4756-b597-4ac57070e548", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "550bdd86-bb21-4863-91bd-332272a75e17", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084244Z:51cd2cba-099c-40e2-abbc-d413d2619455" + "x-ms-request-id": "fa388f3c-e42a-401d-8a1e-00eda6988800", + "x-ms-routing-request-id": "JAPANEAST:20230323T021811Z:6357a5c7-ae8f-4756-b597-4ac57070e548" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2d90c264-c541-4f36-bf5c-57562c1b270e", - "name": "2d90c264-c541-4f36-bf5c-57562c1b270e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f57ca3b8-90ce-456e-8c1f-42c3b1dd670d", + "name": "f57ca3b8-90ce-456e-8c1f-42c3b1dd670d", "status": "Running", - "startTime": "9/7/2022 8:42:43 AM", + "startTime": "3/23/2023 2:18:10 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2d90c264-c541-4f36-bf5c-57562c1b270e?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f57ca3b8-90ce-456e-8c1f-42c3b1dd670d?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-16f799c61b398b4996a2d4cd4389de59-3db6edf00e8ce74d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "65e55b207d67cf504d3d3a8fa4ba2a08", + "traceparent": "00-d2fb107de1bad99f7cc2e9d18639ca68-e52e67e51ffce88d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3bdf5e9148573f2ab58e9f1deeaaaf3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:58 GMT", + "Date": "Thu, 23 Mar 2023 02:18:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10961510-41c5-421a-b4e3-cb94f5c0e0a4", + "x-ms-correlation-request-id": "896e3367-82fa-44a9-8b8a-b46b4d236dea", "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "9a0c1348-ef6e-4784-955e-c7b7d949fc77", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084259Z:10961510-41c5-421a-b4e3-cb94f5c0e0a4" + "x-ms-request-id": "06e53262-1842-4de6-a991-f484782e5bd9", + "x-ms-routing-request-id": "JAPANEAST:20230323T021826Z:896e3367-82fa-44a9-8b8a-b46b4d236dea" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/2d90c264-c541-4f36-bf5c-57562c1b270e", - "name": "2d90c264-c541-4f36-bf5c-57562c1b270e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f57ca3b8-90ce-456e-8c1f-42c3b1dd670d", + "name": "f57ca3b8-90ce-456e-8c1f-42c3b1dd670d", "status": "Succeeded", - "startTime": "9/7/2022 8:42:43 AM", - "endTime": "9/7/2022 8:42:45 AM", + "startTime": "3/23/2023 2:18:10 AM", + "endTime": "3/23/2023 2:18:11 AM", "error": null, "properties": {} } @@ -1325,108 +1094,108 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "214", + "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-4eb44ac070410248aba24f603d90172b-dfae4491140f5242-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "6a5ee5212d13a69aa9eee1d54eeb628c", + "traceparent": "00-4b8fcb5db9fb8949524e604e2ab01af1-54cb6dc4918c522a-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f6a00d237316a7f670722a9292d8a992", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cecda511-4888-45f2-923b-bcfe70a80900?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/35b13511-4b5d-40b3-b7f9-e7151d3f1c5b?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:42:59 GMT", + "Date": "Thu, 23 Mar 2023 02:18:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67362ca9-86ea-4e91-b827-d2ca1260a65b", + "x-ms-correlation-request-id": "f263f42c-c1f9-4499-9979-c5c64203fb01", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "ebf4bc0f-d4d2-4e7f-9fe9-fd3855e2f2b3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084300Z:67362ca9-86ea-4e91-b827-d2ca1260a65b" + "x-ms-request-id": "4fe89da3-89e3-4c6a-b159-d3b430bb8737", + "x-ms-routing-request-id": "JAPANEAST:20230323T021827Z:f263f42c-c1f9-4499-9979-c5c64203fb01" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cecda511-4888-45f2-923b-bcfe70a80900?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/35b13511-4b5d-40b3-b7f9-e7151d3f1c5b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4eb44ac070410248aba24f603d90172b-531cdaa1995da344-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e5ceef382849f2bbc03ebc799b7b8061", + "traceparent": "00-4b8fcb5db9fb8949524e604e2ab01af1-62cb79c95bf53c57-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "de3b598a48b91d1c6837cae41e97addd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cecda511-4888-45f2-923b-bcfe70a80900?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/35b13511-4b5d-40b3-b7f9-e7151d3f1c5b?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:43:00 GMT", + "Date": "Thu, 23 Mar 2023 02:18:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5f5144d-1d42-479a-9379-23ad52205ae8", + "x-ms-correlation-request-id": "d903764c-25f6-4471-84b6-2d57f9ce8fa5", "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "1d85deac-ab8e-42f8-8537-2abc76e5167f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084301Z:d5f5144d-1d42-479a-9379-23ad52205ae8" + "x-ms-request-id": "8fe68f7b-d97d-4d9a-b564-b45b5eea05c9", + "x-ms-routing-request-id": "JAPANEAST:20230323T021827Z:d903764c-25f6-4471-84b6-2d57f9ce8fa5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cecda511-4888-45f2-923b-bcfe70a80900", - "name": "cecda511-4888-45f2-923b-bcfe70a80900", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/35b13511-4b5d-40b3-b7f9-e7151d3f1c5b", + "name": "35b13511-4b5d-40b3-b7f9-e7151d3f1c5b", "status": "Running", - "startTime": "9/7/2022 8:43:00 AM", + "startTime": "3/23/2023 2:18:26 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cecda511-4888-45f2-923b-bcfe70a80900?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/35b13511-4b5d-40b3-b7f9-e7151d3f1c5b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4eb44ac070410248aba24f603d90172b-575881a77c71754d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4ee6addbf5ad7126216b45c7b7e1a00e", + "traceparent": "00-4b8fcb5db9fb8949524e604e2ab01af1-117d7aa3d132b464-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ca340ce55a1d8d1271c018634e3ea519", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:43:16 GMT", + "Date": "Thu, 23 Mar 2023 02:18:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21c5b61b-f7f9-4687-81a2-d6b9a6f3a96d", + "x-ms-correlation-request-id": "bfa8224d-4629-4137-8721-daeb1e84fd81", "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "488b4776-438e-497f-9f4b-3283ddb9d42c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084316Z:21c5b61b-f7f9-4687-81a2-d6b9a6f3a96d" + "x-ms-request-id": "4d7a9ea2-b23f-4d01-a2c7-521ba1dc96a5", + "x-ms-routing-request-id": "JAPANEAST:20230323T021843Z:bfa8224d-4629-4137-8721-daeb1e84fd81" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/cecda511-4888-45f2-923b-bcfe70a80900", - "name": "cecda511-4888-45f2-923b-bcfe70a80900", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/35b13511-4b5d-40b3-b7f9-e7151d3f1c5b", + "name": "35b13511-4b5d-40b3-b7f9-e7151d3f1c5b", "status": "Succeeded", - "startTime": "9/7/2022 8:43:00 AM", - "endTime": "9/7/2022 8:43:02 AM", + "startTime": "3/23/2023 2:18:26 AM", + "endTime": "3/23/2023 2:18:28 AM", "error": null, "properties": {} } @@ -1437,222 +1206,260 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "214", + "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-eb102e3a33a8444abbdad90cb7602b5f-e735baeb32353942-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "5e9c54b07c1c81439b1a74a3f44b57aa", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-a1d0986f39a8e039-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "38077b74ca9c9fd8086fecf4cbb7c146", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:43:17 GMT", + "Date": "Thu, 23 Mar 2023 02:18:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0af659e-d9ca-43fb-a006-b4634337afd7", + "x-ms-correlation-request-id": "5d503747-e4ea-4efd-8229-acd3f6e59340", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "a545e493-988e-4714-9b80-980925f31555", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084317Z:a0af659e-d9ca-43fb-a006-b4634337afd7" + "x-ms-request-id": "39e0a1ae-878e-42c5-b7c8-b93a35eb423e", + "x-ms-routing-request-id": "JAPANEAST:20230323T021843Z:5d503747-e4ea-4efd-8229-acd3f6e59340" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-eb102e3a33a8444abbdad90cb7602b5f-8a3f550d92e6764c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "47c8ae9e21df5e446a64b29280827dd5", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-08b34a9b3e3e83b9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a270b192748f1a403395c1ad6d1ec1ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:43:18 GMT", + "Date": "Thu, 23 Mar 2023 02:18:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f7aa105-4fbe-4316-afad-1fd6d3111602", + "x-ms-correlation-request-id": "d7b62884-5fd2-4711-bb0b-616f3037c484", "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "668e153c-57c4-4bc7-86ec-6e11b6bac08d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084318Z:6f7aa105-4fbe-4316-afad-1fd6d3111602" + "x-ms-request-id": "b9aa67b0-e499-433d-b9d8-34aad77171be", + "x-ms-routing-request-id": "JAPANEAST:20230323T021844Z:d7b62884-5fd2-4711-bb0b-616f3037c484" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", - "name": "fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "name": "d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", "status": "Running", - "startTime": "9/7/2022 8:43:17 AM", + "startTime": "3/23/2023 2:18:43 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-eb102e3a33a8444abbdad90cb7602b5f-283de2cdb3efee48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a3fb9a134704c059745895bfb7649da6", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-2daea5456365bb27-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "065cd2ffaf6c40f7e8d7f2ed5de06f4f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:43:33 GMT", + "Date": "Thu, 23 Mar 2023 02:18:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41789dbc-a72b-4ea0-a184-16e79beafeac", + "x-ms-correlation-request-id": "1521da95-e095-4765-92b6-e4acbecaa341", "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "18212a4e-e8a0-4744-b4af-7bf946dbd740", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084333Z:41789dbc-a72b-4ea0-a184-16e79beafeac" + "x-ms-request-id": "2adca84f-2486-4726-afb8-4b3ca0786260", + "x-ms-routing-request-id": "JAPANEAST:20230323T021859Z:1521da95-e095-4765-92b6-e4acbecaa341" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", - "name": "fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "name": "d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", "status": "Running", - "startTime": "9/7/2022 8:43:17 AM", + "startTime": "3/23/2023 2:18:43 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-eb102e3a33a8444abbdad90cb7602b5f-c6a11ab2b86e4c43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "450495de1082aacacf7eed503d4dc246", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-bae1a14ae19e5ae3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1a61c3a01e4692b607b7c18c71e4c227", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:43:49 GMT", + "Date": "Thu, 23 Mar 2023 02:19:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c758eb37-000d-4c45-a30a-1774024dad7a", + "x-ms-correlation-request-id": "6904b2be-9065-4ceb-ae6e-f3fa12a1e9fd", "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "59def71d-cfa6-42fe-8c8e-43119209a652", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084349Z:c758eb37-000d-4c45-a30a-1774024dad7a" + "x-ms-request-id": "b1ac6a99-ee5e-42b5-9c62-5e4adedc9f9b", + "x-ms-routing-request-id": "JAPANEAST:20230323T021915Z:6904b2be-9065-4ceb-ae6e-f3fa12a1e9fd" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", - "name": "fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "name": "d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", "status": "Running", - "startTime": "9/7/2022 8:43:17 AM", + "startTime": "3/23/2023 2:18:43 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-eb102e3a33a8444abbdad90cb7602b5f-9d082f420ae8cf4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "48cbefe098f957d95408d2868c85a706", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-54deb99fddb7d021-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5df9b2edc85ce3bcb92fb9b88153bc53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:04 GMT", + "Date": "Thu, 23 Mar 2023 02:19:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c7d4755-9398-4e76-9617-c83d24c6d231", + "x-ms-correlation-request-id": "a42c2281-8578-4d09-b727-8df9bf62e08b", "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "4e62e0dd-98f4-44b5-94ab-b6d0fff67ecd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084405Z:0c7d4755-9398-4e76-9617-c83d24c6d231" + "x-ms-request-id": "4ea89dbd-6188-48c2-984b-32043341f112", + "x-ms-routing-request-id": "JAPANEAST:20230323T021930Z:a42c2281-8578-4d09-b727-8df9bf62e08b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", - "name": "fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "name": "d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", "status": "Running", - "startTime": "9/7/2022 8:43:17 AM", + "startTime": "3/23/2023 2:18:43 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-eb102e3a33a8444abbdad90cb7602b5f-e43dd577d58ef542-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "eab30bc6377e0252cf51d38659098326", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-71accbacbd570a48-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa0d7225a6bce0731ccafeb5ed6ace04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:20 GMT", + "Date": "Thu, 23 Mar 2023 02:19:46 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48f815cc-6580-4840-a10a-3c2c89fc8ec6", + "x-ms-correlation-request-id": "b8880ecc-50d1-4ffa-be91-fa43720f61d7", "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "b68df6fe-12f9-45f6-baa4-ac6f517ad49d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084420Z:48f815cc-6580-4840-a10a-3c2c89fc8ec6" + "x-ms-request-id": "0ab91fdf-9bee-452a-b733-4f9785554955", + "x-ms-routing-request-id": "JAPANEAST:20230323T021946Z:b8880ecc-50d1-4ffa-be91-fa43720f61d7" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "name": "d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "status": "Running", + "startTime": "3/23/2023 2:18:43 AM", + "endTime": null, + "error": null, + "properties": {} + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f?api-version=2021-08-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Authorization": "Sanitized", + "traceparent": "00-5cdc276524d15b7ed0721b58fa2cad42-61af65df084707e5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aaffcb1411e6d7f3077e601664fd11b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "371", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 23 Mar 2023 02:20:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bde9493d-8665-48bd-bddd-d28335ce8c61", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "4517d621-1d6a-4342-b96d-edafc6e242a6", + "x-ms-routing-request-id": "JAPANEAST:20230323T022001Z:bde9493d-8665-48bd-bddd-d28335ce8c61" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", - "name": "fb06d5c2-6583-49f1-99f8-9cfa4de28cd9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", + "name": "d0ec0c80-493f-4a8d-87e9-7b0328f94d9f", "status": "Succeeded", - "startTime": "9/7/2022 8:43:17 AM", - "endTime": "9/7/2022 8:44:20 AM", + "startTime": "3/23/2023 2:18:43 AM", + "endTime": "3/23/2023 2:19:46 AM", "error": null, "properties": {} } @@ -1663,108 +1470,108 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "214", + "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-fe92111c7d2df346802dfbcb0a27a17c-32e423144df56547-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c8df4e95559946adbcadf17a3d441d49", + "traceparent": "00-464f1b87fda31ed5df9aae74d66db530-a7e78bf7711355cd-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ff666efa18d6476a3f194191ca07f64f", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/394db2f3-d719-4d78-b878-640708a66ded?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d8ab469c-3b98-44b6-a0de-d6131ad06da7?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:21 GMT", + "Date": "Thu, 23 Mar 2023 02:20:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42973250-8c78-4c30-b41c-58bb51dac138", + "x-ms-correlation-request-id": "3ffdf250-75c5-4650-a055-320ecd1159e7", "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "1dd76c82-58cf-4898-9383-5165db2280eb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084421Z:42973250-8c78-4c30-b41c-58bb51dac138" + "x-ms-request-id": "13efd03a-3f87-488d-9bd9-e64b4a546ecc", + "x-ms-routing-request-id": "JAPANEAST:20230323T022002Z:3ffdf250-75c5-4650-a055-320ecd1159e7" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/394db2f3-d719-4d78-b878-640708a66ded?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d8ab469c-3b98-44b6-a0de-d6131ad06da7?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe92111c7d2df346802dfbcb0a27a17c-94e6d05f1c5b4c42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "3df0ac84dea6716d5d6d2ed145d8c48b", + "traceparent": "00-464f1b87fda31ed5df9aae74d66db530-1e0b2fb48383bf67-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7fba4ab9cf03fc2d60b86bcdcf610d00", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/394db2f3-d719-4d78-b878-640708a66ded?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d8ab469c-3b98-44b6-a0de-d6131ad06da7?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:21 GMT", + "Date": "Thu, 23 Mar 2023 02:20:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3f0eeba-bd36-4e09-9681-e681c7780c66", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "808a4393-9bab-4aec-a1fa-7b11579515b7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084422Z:c3f0eeba-bd36-4e09-9681-e681c7780c66" + "x-ms-correlation-request-id": "fed1ed9d-979c-40a2-9467-a748a3bd9411", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "2c8f007c-a363-489c-889d-2962172071eb", + "x-ms-routing-request-id": "JAPANEAST:20230323T022002Z:fed1ed9d-979c-40a2-9467-a748a3bd9411" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/394db2f3-d719-4d78-b878-640708a66ded", - "name": "394db2f3-d719-4d78-b878-640708a66ded", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d8ab469c-3b98-44b6-a0de-d6131ad06da7", + "name": "d8ab469c-3b98-44b6-a0de-d6131ad06da7", "status": "Running", - "startTime": "9/7/2022 8:44:21 AM", + "startTime": "3/23/2023 2:20:02 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/394db2f3-d719-4d78-b878-640708a66ded?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d8ab469c-3b98-44b6-a0de-d6131ad06da7?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fe92111c7d2df346802dfbcb0a27a17c-45c0a417183bb74a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "72ae8a335280bd8d86362bd0dc058268", + "traceparent": "00-464f1b87fda31ed5df9aae74d66db530-5103bda32eb1dc90-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "afb511885a5ae860005280a0752c01e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:37 GMT", + "Date": "Thu, 23 Mar 2023 02:20:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81dd9e89-5c1a-4a6f-8604-7493c987293f", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "09ec23cb-1381-4b50-a571-4ba98825b3b2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084437Z:81dd9e89-5c1a-4a6f-8604-7493c987293f" + "x-ms-correlation-request-id": "59cf245e-d027-41b4-a124-e6577720ebde", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "a1de5b19-b340-4128-bad1-283ef22b1ae3", + "x-ms-routing-request-id": "JAPANEAST:20230323T022018Z:59cf245e-d027-41b4-a124-e6577720ebde" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/394db2f3-d719-4d78-b878-640708a66ded", - "name": "394db2f3-d719-4d78-b878-640708a66ded", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/d8ab469c-3b98-44b6-a0de-d6131ad06da7", + "name": "d8ab469c-3b98-44b6-a0de-d6131ad06da7", "status": "Succeeded", - "startTime": "9/7/2022 8:44:21 AM", - "endTime": "9/7/2022 8:44:34 AM", + "startTime": "3/23/2023 2:20:02 AM", + "endTime": "3/23/2023 2:20:14 AM", "error": null, "properties": {} } @@ -1775,108 +1582,108 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "214", + "Content-Length": "215", "Content-Type": "application/json", - "traceparent": "00-25079e6cf8bfa441a5910f594a4540ac-c59e36e0df9e394e-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "91f6a6afdf53f8a37a17d32ca9f663c4", + "traceparent": "00-d55e9b8b4fdc588aa27ba9b2603d1496-7b8aa10d854f5dde-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7fd8239d764c924c87a7569aa6a0441d", "x-ms-return-client-request-id": "true" }, "RequestBody": { "moveResources": [ - "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-843/providers/Microsoft.Network/virtualNetworks/Vnet-3810" + "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3174/providers/Microsoft.Network/virtualNetworks/Vnet-9419" ], "moveResourceInputType": "MoveResourceSourceId" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/6f69b74b-61cb-4b93-98ad-db1aeb342d53?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:38 GMT", + "Date": "Thu, 23 Mar 2023 02:20:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edc446fd-3c76-45d6-a7b0-5aca7746d2d3", + "x-ms-correlation-request-id": "1b4180fa-b85b-4ddb-80b1-930841cfa726", "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "e05ab652-0f9b-4225-a84e-cd26bbb640a8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084438Z:edc446fd-3c76-45d6-a7b0-5aca7746d2d3" + "x-ms-request-id": "f59a2368-d2d2-47f5-a902-2b5695d6f668", + "x-ms-routing-request-id": "JAPANEAST:20230323T022018Z:1b4180fa-b85b-4ddb-80b1-930841cfa726" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/6f69b74b-61cb-4b93-98ad-db1aeb342d53?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-25079e6cf8bfa441a5910f594a4540ac-16e588bb1e7fab47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "9f21c6ea32e15337e6b6f8687e61148f", + "traceparent": "00-d55e9b8b4fdc588aa27ba9b2603d1496-fe3dba7ed6b6902f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ac2f88b78e8811b3c52327b304c64260", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/6f69b74b-61cb-4b93-98ad-db1aeb342d53?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:38 GMT", + "Date": "Thu, 23 Mar 2023 02:20:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ce39dda-db88-4066-aa2e-eb2ad770edee", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "62c6e67c-dd44-4a66-9d78-e6943563367b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084439Z:6ce39dda-db88-4066-aa2e-eb2ad770edee" + "x-ms-correlation-request-id": "4fae1d60-9ed5-4fa8-a96f-c641f6ec6949", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "10e66001-b791-418e-9319-0882858286b7", + "x-ms-routing-request-id": "JAPANEAST:20230323T022019Z:4fae1d60-9ed5-4fa8-a96f-c641f6ec6949" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e", - "name": "f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/6f69b74b-61cb-4b93-98ad-db1aeb342d53", + "name": "6f69b74b-61cb-4b93-98ad-db1aeb342d53", "status": "Running", - "startTime": "9/7/2022 8:44:38 AM", + "startTime": "3/23/2023 2:20:18 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/6f69b74b-61cb-4b93-98ad-db1aeb342d53?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-25079e6cf8bfa441a5910f594a4540ac-013a3e101a17c04d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "efcc67d3489124c3dbc37320293445dd", + "traceparent": "00-d55e9b8b4fdc588aa27ba9b2603d1496-c3b30a9e9f6b8df5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d278620dcd75d13b5f7a957bf89a43fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 08:44:54 GMT", + "Date": "Thu, 23 Mar 2023 02:20:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "930cda25-2c49-4c64-a820-b51b89c26bd7", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "14e075ad-4793-4ef0-8d98-1be800b6b1f7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T084454Z:930cda25-2c49-4c64-a820-b51b89c26bd7" + "x-ms-correlation-request-id": "0c339b35-ea4e-4d48-8d51-69022b2f0a69", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "1f143a70-24ac-4332-8aea-12aac464d1cd", + "x-ms-routing-request-id": "JAPANEAST:20230323T022034Z:0c339b35-ea4e-4d48-8d51-69022b2f0a69" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e", - "name": "f15e99aa-0ae5-4d0e-9d79-2c39c1c6652e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/6f69b74b-61cb-4b93-98ad-db1aeb342d53", + "name": "6f69b74b-61cb-4b93-98ad-db1aeb342d53", "status": "Succeeded", - "startTime": "9/7/2022 8:44:38 AM", - "endTime": "9/7/2022 8:44:40 AM", + "startTime": "3/23/2023 2:20:18 AM", + "endTime": "3/23/2023 2:20:20 AM", "error": null, "properties": {} } @@ -1884,7 +1691,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1028218876", + "RandomSeed": "1263785137", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate().json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate().json index 5310b6abddf9..49ca8a8fecfe 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate().json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate().json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d23d7a1f72e2c14b886f410cc1b1ce36-c3633e976beb0f45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "5e6e53e6ce81bfcff44e00bbce20ea30", + "traceparent": "00-7c877bb83f51c5f5dab489f2efe47e11-b898838df6a6a1ad-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b7329cb148ddd9759ced51269866efb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:08:59 GMT", + "Date": "Wed, 22 Mar 2023 07:19:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f8dd597-0915-42e1-9ac0-c9adec287240", + "x-ms-correlation-request-id": "c72d185a-8d42-4d67-b56b-9b400e82ec60", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0f8dd597-0915-42e1-9ac0-c9adec287240", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070900Z:0f8dd597-0915-42e1-9ac0-c9adec287240" + "x-ms-request-id": "c72d185a-8d42-4d67-b56b-9b400e82ec60", + "x-ms-routing-request-id": "JAPANEAST:20230322T071913Z:c72d185a-8d42-4d67-b56b-9b400e82ec60" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4f6cabf41d631140b3a44586942f8c46-8883fa2537b5b64a-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b7a0f1f1a70d80c3601e8722cd64af85", + "traceparent": "00-6cb8ae851e9fdf165cbfefa50886c12e-3ceb97228ac5f482-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b393d30219bd2845b398d4aedfd9451a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:01 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Wed, 22 Mar 2023 07:19:13 GMT", + "ETag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a11866d-e57b-4004-842b-38246c8a574a", + "x-ms-correlation-request-id": "6ab31e4f-8fe4-4f0a-aa7b-a4720f22cf44", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "4dc24090-2ca4-4c68-88b7-ce73a69bd819", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070902Z:9a11866d-e57b-4004-842b-38246c8a574a" + "x-ms-request-id": "e8b98731-97c9-426b-88bb-94d1a0a9b51e", + "x-ms-routing-request-id": "JAPANEAST:20230322T071914Z:6ab31e4f-8fe4-4f0a-aa7b-a4720f22cf44" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3500?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-9318?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-aa5aff11d7cb194daf419939188be061-83d64dc5bb6d9e4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "bce43911700de6d31f7e523b4e8fbebe", + "traceparent": "00-497e117f68c3e9064f3547c82f3e8499-3d4ecc2bab38ad54-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b453e7fc4b70683719f8cc2523a3998", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:04 GMT", + "Date": "Wed, 22 Mar 2023 07:19:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81667eec-500c-4cfd-ac01-e778a3c697c1", + "x-ms-correlation-request-id": "a44289f9-0b82-4b23-bd38-31b24148b917", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "81667eec-500c-4cfd-ac01-e778a3c697c1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070905Z:81667eec-500c-4cfd-ac01-e778a3c697c1" + "x-ms-request-id": "a44289f9-0b82-4b23-bd38-31b24148b917", + "x-ms-routing-request-id": "JAPANEAST:20230322T071916Z:a44289f9-0b82-4b23-bd38-31b24148b917" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500", - "name": "testRg-ResourceMover-3500", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9318", + "name": "testRg-ResourceMover-9318", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,383 +152,154 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-778518f155340b4fbb9bce08346431c5-4cebd74c65072145-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "268750528f3ffded6246adf28f9e7a07", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-3497", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "azure-asyncnotification": "Enabled", - "azure-asyncoperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/3f82164b-84e3-4aaf-9b03-90528e798061?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f1deac0b-82ec-44f7-ac1b-9e10185f2fd1", - "x-ms-client-request-id": "268750528f3ffded6246adf28f9e7a07", - "x-ms-correlation-request-id": "bca13a75-feeb-43f4-8302-25e95fb7a3f5", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "3f82164b-84e3-4aaf-9b03-90528e798061", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070910Z:bca13a75-feeb-43f4-8302-25e95fb7a3f5" - }, - "ResponseBody": { - "name": "Vnet-2768", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768", - "etag": "W/\u0022dcf9fbcc-77fb-4c40-b7b8-8afed88ea131\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "79459d78-db83-4eaa-889f-3c606b314720", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-3497", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768/subnets/Subnet-3497", - "etag": "W/\u0022dcf9fbcc-77fb-4c40-b7b8-8afed88ea131\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/3f82164b-84e3-4aaf-9b03-90528e798061?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-778518f155340b4fbb9bce08346431c5-cecbd7ef37e3894d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "355d96d1eb2c54f9cf0f0d8c392deeb3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "64f64c22-e227-4464-8b69-ce8be4ac7669", - "x-ms-client-request-id": "355d96d1eb2c54f9cf0f0d8c392deeb3", - "x-ms-correlation-request-id": "dd2d3a1e-f610-40fe-a3e5-dc8703e859ae", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3fbd7017-69bc-4d8c-8511-7fde849f3b5c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070911Z:dd2d3a1e-f610-40fe-a3e5-dc8703e859ae" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/3f82164b-84e3-4aaf-9b03-90528e798061?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-778518f155340b4fbb9bce08346431c5-053dc3e91b293144-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d6d247c188b8d0ea82b638161ea9ebd2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ba1f350a-56b5-4c1d-8934-35f39d977e02", - "x-ms-client-request-id": "d6d247c188b8d0ea82b638161ea9ebd2", - "x-ms-correlation-request-id": "a00a25f0-e079-4ed7-bf3a-c55db511bd56", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "9fde80f7-4688-4dcf-8db7-b8516dbed17a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070921Z:a00a25f0-e079-4ed7-bf3a-c55db511bd56" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-778518f155340b4fbb9bce08346431c5-f6e4d89886203d49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "f921497d4440d1daeeb1a4d4734197c0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:22 GMT", - "ETag": "W/\u002251f7844b-5784-4e2c-927e-50c3650e7b88\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8aba880f-a0f7-49ac-8d99-b58272073add", - "x-ms-client-request-id": "f921497d4440d1daeeb1a4d4734197c0", - "x-ms-correlation-request-id": "abfe1940-d3a0-458c-a117-55586431923e", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "035c2105-e015-4ccd-a7c4-c402a6708f76", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070922Z:abfe1940-d3a0-458c-a117-55586431923e" - }, - "ResponseBody": { - "name": "Vnet-2768", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768", - "etag": "W/\u002251f7844b-5784-4e2c-927e-50c3650e7b88\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "79459d78-db83-4eaa-889f-3c606b314720", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-3497", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768/subnets/Subnet-3497", - "etag": "W/\u002251f7844b-5784-4e2c-927e-50c3650e7b88\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7643?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-667?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-f5659ba44cd96d4e956ac0f49acbccba-807511d15f938547-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "f2bdcb8248ab8dabb276b2e33626233a", + "traceparent": "00-ae7bdee561370d9af4598d73be6d8a51-9bfbfaf5444b0b86-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a510507d9efda22ae51186778d214bc5", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9318/providers/Microsoft.Network/virtualNetworks/Vnet-3917", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-6005" + "targetResourceName": "targetVnet-8084" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a5aeac2-8042-4e1e-96c2-9993eed3a66a?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/4db86396-a98d-4a77-8113-5229dd0eaab7?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:23 GMT", + "Date": "Wed, 22 Mar 2023 07:19:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d6a52ac-4914-4e28-b8c2-0d134ce45a73", + "x-ms-correlation-request-id": "a580ec2d-7efe-4857-9ea1-6ed66a93d09b", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "3c4ee21e-db09-4e4c-ae2f-620093842549", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070923Z:6d6a52ac-4914-4e28-b8c2-0d134ce45a73" + "x-ms-request-id": "f58fae13-e293-4025-b08c-5ff4a7452308", + "x-ms-routing-request-id": "JAPANEAST:20230322T071933Z:a580ec2d-7efe-4857-9ea1-6ed66a93d09b" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a5aeac2-8042-4e1e-96c2-9993eed3a66a?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/4db86396-a98d-4a77-8113-5229dd0eaab7?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f5659ba44cd96d4e956ac0f49acbccba-ef4da7cf24554d48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "202660db8b15d89e4db391641e0a7b7d", + "traceparent": "00-ae7bdee561370d9af4598d73be6d8a51-2347175e4b3edcf4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9fd6372abc29b76bf759ed1bc064bf9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a5aeac2-8042-4e1e-96c2-9993eed3a66a?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/4db86396-a98d-4a77-8113-5229dd0eaab7?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:24 GMT", + "Date": "Wed, 22 Mar 2023 07:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78a53856-0ba6-49ff-85df-890d01b3fd60", + "x-ms-correlation-request-id": "a0e31ffa-c904-4360-82a8-bb91b0516107", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "b0cf97b7-eb5e-406e-b474-bdee11df12bc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070924Z:78a53856-0ba6-49ff-85df-890d01b3fd60" + "x-ms-request-id": "34e4191a-6aac-4497-8468-635fcb982d76", + "x-ms-routing-request-id": "JAPANEAST:20230322T071933Z:a0e31ffa-c904-4360-82a8-bb91b0516107" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a5aeac2-8042-4e1e-96c2-9993eed3a66a", - "name": "0a5aeac2-8042-4e1e-96c2-9993eed3a66a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/4db86396-a98d-4a77-8113-5229dd0eaab7", + "name": "4db86396-a98d-4a77-8113-5229dd0eaab7", "status": "Running", - "startTime": "9/7/2022 7:09:23 AM", + "startTime": "3/22/2023 7:19:33 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a5aeac2-8042-4e1e-96c2-9993eed3a66a?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/4db86396-a98d-4a77-8113-5229dd0eaab7?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f5659ba44cd96d4e956ac0f49acbccba-72d22bdeeb74d04f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a73238b045b3054a5ebb09a363952f71", + "traceparent": "00-ae7bdee561370d9af4598d73be6d8a51-7d72feb8f08fa79a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "83cbc83e37b9177fb85b14eb573e26b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:39 GMT", + "Date": "Wed, 22 Mar 2023 07:19:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2561dec-259a-480a-a7aa-ffc104a6a10f", + "x-ms-correlation-request-id": "a309212c-9b17-4b7f-86e1-5b0ae5eacb27", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "aab7f2c7-bdea-4364-90ab-74e9cb816d8f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070939Z:c2561dec-259a-480a-a7aa-ffc104a6a10f" + "x-ms-request-id": "6343d01d-206b-4493-b945-fc0b882fae4c", + "x-ms-routing-request-id": "JAPANEAST:20230322T071949Z:a309212c-9b17-4b7f-86e1-5b0ae5eacb27" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a5aeac2-8042-4e1e-96c2-9993eed3a66a", - "name": "0a5aeac2-8042-4e1e-96c2-9993eed3a66a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/4db86396-a98d-4a77-8113-5229dd0eaab7", + "name": "4db86396-a98d-4a77-8113-5229dd0eaab7", "status": "Succeeded", - "startTime": "9/7/2022 7:09:23 AM", - "endTime": "9/7/2022 7:09:25 AM", + "startTime": "3/22/2023 7:19:33 AM", + "endTime": "3/22/2023 7:19:35 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7643?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-667?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f5659ba44cd96d4e956ac0f49acbccba-9c1227f27f37ec4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d5073a5603ff83255133a7bfeb08e3de", + "traceparent": "00-ae7bdee561370d9af4598d73be6d8a51-19f80e30fefae799-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "564df07eab4ac99c1bbda607787bf42c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1841", + "Content-Length": "1839", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:09:40 GMT", + "Date": "Wed, 22 Mar 2023 07:19:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f6d15f5-3845-4075-81f5-3d0cb6f7dcce", + "x-ms-correlation-request-id": "adb9e0a8-7d85-4a43-8fad-8df455bdb6d0", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "3d2382c7-c024-4e31-bd9d-a767a106a2ff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T070940Z:5f6d15f5-3845-4075-81f5-3d0cb6f7dcce" + "x-ms-request-id": "84bb299d-8f34-4509-a295-d91d1c385964", + "x-ms-routing-request-id": "JAPANEAST:20230322T071949Z:adb9e0a8-7d85-4a43-8fad-8df455bdb6d0" }, "ResponseBody": { - "name": "MoverResource-7643", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7643", + "name": "MoverResource-667", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-667", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9318/providers/Microsoft.Network/virtualNetworks/Vnet-3917", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-6005" + "targetResourceName": "targetVnet-8084" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9318/providers/Microsoft.Network/virtualNetworks/Vnet-3917\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,29 +334,29 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-3497", + "name": "Subnet-2507", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-2768" + "targetResourceName": "Vnet-3917" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:09:23.0039944Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:19:32.8609275Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:09:23.0039944Z" + "lastModifiedAt": "2023-03-22T07:19:32.8609275Z" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1137556416", + "RandomSeed": "832584734", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate()Async.json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate()Async.json index 551440e4715b..a7a37e0c4fd6 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate()Async.json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/CreateOrUpdate()Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-10c23f8acf75e34284d017f58cc33761-eaff4a7fcff3cd45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "791c6866a37717c98ab3f9ae1c13ff09", + "traceparent": "00-a20dd057b7fe03c3635e7361334b3d7b-c9526cab37c6b0a6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "71df9bf095ba33315c780c85d3cf3fa5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:24 GMT", + "Date": "Wed, 22 Mar 2023 07:15:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d6c8236-5d6d-4d91-8814-748fc77234ba", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "8d6c8236-5d6d-4d91-8814-748fc77234ba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072424Z:8d6c8236-5d6d-4d91-8814-748fc77234ba" + "x-ms-correlation-request-id": "05b2c49b-a6d6-45d6-8c53-fc4409a61e3b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "05b2c49b-a6d6-45d6-8c53-fc4409a61e3b", + "x-ms-routing-request-id": "JAPANEAST:20230322T071544Z:05b2c49b-a6d6-45d6-8c53-fc4409a61e3b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ee5eb4eef8ef9641a1bc07322a1e1342-e776485d81308b46-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "3968d665a6f84b09e976a4f92495eefa", + "traceparent": "00-7b7ff5942caf804c999fa9a709d8e2df-854649d944dfe146-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d70a07704086e33fbc5e7c912d55e7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:25 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Wed, 22 Mar 2023 07:15:45 GMT", + "ETag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20210944-133d-4c14-8bd5-99394843111b", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "2ab10e8b-0e2a-4e39-b3bc-2f9f2cf4ae0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072426Z:20210944-133d-4c14-8bd5-99394843111b" + "x-ms-correlation-request-id": "c46b6e29-2ab6-4a6c-985d-26f499e3a2c5", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "13abb89b-80ac-403f-8560-bd1fa19bef91", + "x-ms-routing-request-id": "JAPANEAST:20230322T071545Z:c46b6e29-2ab6-4a6c-985d-26f499e3a2c5" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3801?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3260?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-aabaa32c897df84db924d7e579f3df82-c7c70982206db944-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d11c5b5661802329dc1e325119cb6e30", + "traceparent": "00-ff0135c0341c5addd336169881cf6827-22091e4a12227224-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "23a4103377618378a67d295271785478", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:29 GMT", + "Date": "Wed, 22 Mar 2023 07:15:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64044b0e-3e80-44f4-a394-225558df966f", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "64044b0e-3e80-44f4-a394-225558df966f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072429Z:64044b0e-3e80-44f4-a394-225558df966f" + "x-ms-correlation-request-id": "911c1255-a22b-4e7d-a916-757b15aba720", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "911c1255-a22b-4e7d-a916-757b15aba720", + "x-ms-routing-request-id": "JAPANEAST:20230322T071549Z:911c1255-a22b-4e7d-a916-757b15aba720" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801", - "name": "testRg-ResourceMover-3801", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3260", + "name": "testRg-ResourceMover-3260", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,346 +152,154 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2134?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "167", + "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-f10b7fbca928644b91d74aac4c5e771f-0c24ed95ab60e948-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "551c70cb5fc090d100ffcff2f5c5fec7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1734", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "azure-asyncnotification": "Enabled", - "azure-asyncoperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/4174ff34-dd40-40cf-b132-c68f3522a800?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "52def5e9-0052-41de-b79c-2ae0f712a448", - "x-ms-client-request-id": "551c70cb5fc090d100ffcff2f5c5fec7", - "x-ms-correlation-request-id": "d5f982ab-f1f0-4a52-82ee-f6d60a6e40a0", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "4174ff34-dd40-40cf-b132-c68f3522a800", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072437Z:d5f982ab-f1f0-4a52-82ee-f6d60a6e40a0" - }, - "ResponseBody": { - "name": "Vnet-9618", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618", - "etag": "W/\u00223e078811-609c-4238-a296-ef2a1d726095\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "7c344176-621f-4c7d-99e4-8578b6555abc", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1734", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618/subnets/Subnet-1734", - "etag": "W/\u00223e078811-609c-4238-a296-ef2a1d726095\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/4174ff34-dd40-40cf-b132-c68f3522a800?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f10b7fbca928644b91d74aac4c5e771f-fa1945faff85c349-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8a221a0400c9bc9a00f0602a54e9286d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1048310e-5cd5-43ed-bb84-8571526852db", - "x-ms-client-request-id": "8a221a0400c9bc9a00f0602a54e9286d", - "x-ms-correlation-request-id": "198dfd20-04cc-45b6-8525-4251e7093027", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "ca01cdb9-019e-458c-b405-c73982f94d56", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072438Z:198dfd20-04cc-45b6-8525-4251e7093027" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f10b7fbca928644b91d74aac4c5e771f-5192be037be52e4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b5055152e74d56963206393989d7bf55", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:38 GMT", - "ETag": "W/\u00224b20de0e-2eab-4c4c-b495-36233b073d19\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "37aded85-c824-4026-992d-e79211e62f01", - "x-ms-client-request-id": "b5055152e74d56963206393989d7bf55", - "x-ms-correlation-request-id": "03ade9e4-f81e-4821-84e6-d5159ac6af95", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "398875ef-7ee0-4494-9f7f-dfef12efa72c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072439Z:03ade9e4-f81e-4821-84e6-d5159ac6af95" - }, - "ResponseBody": { - "name": "Vnet-9618", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618", - "etag": "W/\u00224b20de0e-2eab-4c4c-b495-36233b073d19\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "7c344176-621f-4c7d-99e4-8578b6555abc", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1734", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618/subnets/Subnet-1734", - "etag": "W/\u00224b20de0e-2eab-4c4c-b495-36233b073d19\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2730?api-version=2021-08-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "286", - "Content-Type": "application/json", - "traceparent": "00-1cdb09ccdace354c8eabbde1a89b3f28-1ff7346e410b2c4e-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "74a2dbedc5fe251d37f41513c1325e69", + "traceparent": "00-9fcdfc8dea300bfb81c2bf689cb2d707-8c15041fa42b9047-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "05d1d3ae939c699368fe66c36918a255", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3260/providers/Microsoft.Network/virtualNetworks/Vnet-5282", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-578" + "targetResourceName": "targetVnet-6381" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/492be4f9-4948-4190-bcca-9414904fab7f?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/87f7b572-55ca-4400-8621-df2238dfd52b?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:40 GMT", + "Date": "Wed, 22 Mar 2023 07:16:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e61fb91-55ca-466d-b93f-d0b458025ba6", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "d6204e55-1219-456e-9bd3-874692589f45", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072440Z:4e61fb91-55ca-466d-b93f-d0b458025ba6" + "x-ms-correlation-request-id": "11034e59-e449-4913-ac17-fdc01eac083d", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "5cc773ee-7c31-4d79-8939-3512d8d8cfe2", + "x-ms-routing-request-id": "JAPANEAST:20230322T071605Z:11034e59-e449-4913-ac17-fdc01eac083d" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/492be4f9-4948-4190-bcca-9414904fab7f?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/87f7b572-55ca-4400-8621-df2238dfd52b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1cdb09ccdace354c8eabbde1a89b3f28-9e5af06ff42ae946-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4dfb4e61deca40539727b0a1411e4506", + "traceparent": "00-9fcdfc8dea300bfb81c2bf689cb2d707-9850b0c2faa16e9d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "24fb70c31388f37372ca55e1d4db2b96", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/492be4f9-4948-4190-bcca-9414904fab7f?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/87f7b572-55ca-4400-8621-df2238dfd52b?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:40 GMT", + "Date": "Wed, 22 Mar 2023 07:16:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b2c9c49-1d79-45bf-a722-ed3a466fdd18", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "4c45bb93-6b37-4503-a11b-a2ce906d551a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072441Z:0b2c9c49-1d79-45bf-a722-ed3a466fdd18" + "x-ms-correlation-request-id": "5b836329-7c13-453c-975a-99134dcc2769", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "4de2c08b-0599-477f-9df0-d147ec876ed1", + "x-ms-routing-request-id": "JAPANEAST:20230322T071605Z:5b836329-7c13-453c-975a-99134dcc2769" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/492be4f9-4948-4190-bcca-9414904fab7f", - "name": "492be4f9-4948-4190-bcca-9414904fab7f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/87f7b572-55ca-4400-8621-df2238dfd52b", + "name": "87f7b572-55ca-4400-8621-df2238dfd52b", "status": "Running", - "startTime": "9/7/2022 7:24:40 AM", + "startTime": "3/22/2023 7:16:05 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/492be4f9-4948-4190-bcca-9414904fab7f?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/87f7b572-55ca-4400-8621-df2238dfd52b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1cdb09ccdace354c8eabbde1a89b3f28-e341b47527eba34a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "412f1fda49afd08a57d61c3bfebcf20e", + "traceparent": "00-9fcdfc8dea300bfb81c2bf689cb2d707-1e2cf12d648b4057-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e878f728af695310094213763c7039d9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:56 GMT", + "Date": "Wed, 22 Mar 2023 07:16:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b88d5934-2285-4cf7-bd76-e5db40ef510e", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "91baa816-f00c-404a-9bcb-64b5399b03dd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072457Z:b88d5934-2285-4cf7-bd76-e5db40ef510e" + "x-ms-correlation-request-id": "9eabc0cc-0e8d-443f-83ea-711f31b395fa", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "23d56c46-c310-4477-98e9-013288236f73", + "x-ms-routing-request-id": "JAPANEAST:20230322T071621Z:9eabc0cc-0e8d-443f-83ea-711f31b395fa" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/492be4f9-4948-4190-bcca-9414904fab7f", - "name": "492be4f9-4948-4190-bcca-9414904fab7f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/87f7b572-55ca-4400-8621-df2238dfd52b", + "name": "87f7b572-55ca-4400-8621-df2238dfd52b", "status": "Succeeded", - "startTime": "9/7/2022 7:24:40 AM", - "endTime": "9/7/2022 7:24:41 AM", + "startTime": "3/22/2023 7:16:05 AM", + "endTime": "3/22/2023 7:16:06 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2730?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2134?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-1cdb09ccdace354c8eabbde1a89b3f28-8e599ee0df6d1249-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "73b20ac41136c89e2a65e8546ce38b3a", + "traceparent": "00-9fcdfc8dea300bfb81c2bf689cb2d707-d218830eada6adba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f9ffe0dc7d1d4acd76db796c04e8ba15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1838", + "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:24:56 GMT", + "Date": "Wed, 22 Mar 2023 07:16:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6798cebf-845a-427e-b593-4299e78c2012", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "7c3d8067-55e3-4ccd-9937-140615d6b0c4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072457Z:6798cebf-845a-427e-b593-4299e78c2012" + "x-ms-correlation-request-id": "78bcb5e2-26ba-4516-b59c-0d6d0f9a72e8", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "c95f46eb-7958-41d9-9797-a3ebd68b8fec", + "x-ms-routing-request-id": "JAPANEAST:20230322T071621Z:78bcb5e2-26ba-4516-b59c-0d6d0f9a72e8" }, "ResponseBody": { - "name": "MoverResource-2730", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2730", + "name": "MoverResource-2134", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2134", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3260/providers/Microsoft.Network/virtualNetworks/Vnet-5282", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -501,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-578" + "targetResourceName": "targetVnet-6381" }, "moveStatus": { "moveState": "PreparePending", @@ -509,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3260/providers/Microsoft.Network/virtualNetworks/Vnet-5282\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -526,29 +334,29 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-1734", + "name": "Subnet-6070", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-9618" + "targetResourceName": "Vnet-5282" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:24:39.664178Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:16:04.8165426Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:24:39.664178Z" + "lastModifiedAt": "2023-03-22T07:16:04.8165426Z" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1004352254", + "RandomSeed": "36518858", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete().json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete().json index 8c50d767794b..5d51de3c0e17 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete().json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete().json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b7852203f256f64e938e04555fae5c01-c36f102a8a16764a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "2e90524034bd90ccb53df740a691e498", + "traceparent": "00-9a1a4099aef92b031e61f1562a77dfa9-a7e8c2f8bcd7e83a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "08363e44bdb7a73b32041eda2087f87d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:02 GMT", + "Date": "Wed, 22 Mar 2023 07:19:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae0f18b2-0f9b-44c7-95ce-ecbcdd328897", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "ae0f18b2-0f9b-44c7-95ce-ecbcdd328897", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090502Z:ae0f18b2-0f9b-44c7-95ce-ecbcdd328897" + "x-ms-correlation-request-id": "c005983f-be32-4f6d-8a0a-3846a9a85288", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "c005983f-be32-4f6d-8a0a-3846a9a85288", + "x-ms-routing-request-id": "JAPANEAST:20230322T071955Z:c005983f-be32-4f6d-8a0a-3846a9a85288" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-506ff90ebac09b49a3b4e88ff4095d31-525785cd77926c4f-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "35c77f833e21b441e422de6420eee44d", + "traceparent": "00-b8c9bb2e7d8c56608752d7be0463939a-30d5df68221dbc92-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ddd3095cfced8aa8d6f19c66c04a1d58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:03 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Wed, 22 Mar 2023 07:19:54 GMT", + "ETag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66995b07-3d38-427d-a6f0-a7ea3a6dae61", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "8acae619-01d7-4654-903b-ab5e82c621a0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090503Z:66995b07-3d38-427d-a6f0-a7ea3a6dae61" + "x-ms-correlation-request-id": "109d2d74-cb72-4f97-a552-cc7dbbd80aa6", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "83c07b41-6510-4a32-8aaf-fd467e0c59b8", + "x-ms-routing-request-id": "JAPANEAST:20230322T071955Z:109d2d74-cb72-4f97-a552-cc7dbbd80aa6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-9766?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-1474?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-723027c77c7e1f42a3d17aa2311ae5ff-d1c5240a83b35e4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "78e90ebf31ad960a4fbee88f1bc189bf", + "traceparent": "00-ac2c26fd0d627b42057ee3e62f23a786-f81544a83ec506f7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "36f33500c061b89c10e33238f6bb6086", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:08 GMT", + "Date": "Wed, 22 Mar 2023 07:19:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83c14a61-8b8b-4161-9203-e221cf9e4eb7", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "83c14a61-8b8b-4161-9203-e221cf9e4eb7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090508Z:83c14a61-8b8b-4161-9203-e221cf9e4eb7" + "x-ms-correlation-request-id": "021c3f3d-7e5f-4af6-8619-78b7108e5f51", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "021c3f3d-7e5f-4af6-8619-78b7108e5f51", + "x-ms-routing-request-id": "JAPANEAST:20230322T071957Z:021c3f3d-7e5f-4af6-8619-78b7108e5f51" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766", - "name": "testRg-ResourceMover-9766", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1474", + "name": "testRg-ResourceMover-1474", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,383 +152,154 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-c143b790e6ee4c419cdae63210d238fc-0e860878696ccd4a-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4399337f11014adb9a566870c659a9d7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1797", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "azure-asyncnotification": "Enabled", - "azure-asyncoperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/81dbed7a-9b33-4a4f-a664-9a3fc2fb4b00?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f33ca86f-f069-4c0b-bb75-9a50aa1a0d9a", - "x-ms-client-request-id": "4399337f11014adb9a566870c659a9d7", - "x-ms-correlation-request-id": "b705809e-82c1-488d-b9a6-35cc7d1e78ea", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "81dbed7a-9b33-4a4f-a664-9a3fc2fb4b00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090514Z:b705809e-82c1-488d-b9a6-35cc7d1e78ea" - }, - "ResponseBody": { - "name": "Vnet-8818", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818", - "etag": "W/\u0022dfaae671-9e69-430d-a5ca-ad7163ac88ef\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "239ae212-ad0f-44a7-82fb-34e582055ea6", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1797", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818/subnets/Subnet-1797", - "etag": "W/\u0022dfaae671-9e69-430d-a5ca-ad7163ac88ef\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/81dbed7a-9b33-4a4f-a664-9a3fc2fb4b00?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-c143b790e6ee4c419cdae63210d238fc-7f90bca429594e45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "1a64d61b7ccfd80c9c6296b42edff88e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "69ef872d-6ae6-44c4-a365-7dc771715a81", - "x-ms-client-request-id": "1a64d61b7ccfd80c9c6296b42edff88e", - "x-ms-correlation-request-id": "18ebb6d2-d6e6-4e4d-8bee-4763e626be5e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3f12b7d6-e867-45bf-9191-4e989c16f42b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090515Z:18ebb6d2-d6e6-4e4d-8bee-4763e626be5e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/81dbed7a-9b33-4a4f-a664-9a3fc2fb4b00?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-c143b790e6ee4c419cdae63210d238fc-e29971c3c5450c4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "06db43e6e4c3314176fa7081b7b6813a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a1f425da-c3a5-41a5-85f2-669d8f47c414", - "x-ms-client-request-id": "06db43e6e4c3314176fa7081b7b6813a", - "x-ms-correlation-request-id": "caa2e12d-7031-4b13-b697-d334548dc78f", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "9edf6e61-f058-48b3-bd15-da4de5cbd08b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090525Z:caa2e12d-7031-4b13-b697-d334548dc78f" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-c143b790e6ee4c419cdae63210d238fc-92e290d3be6a8447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "ef54c3028ef46a0776238473b7086ff2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:26 GMT", - "ETag": "W/\u00221a954384-5839-4c3b-b43a-b621f41e087b\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "62651dbd-114d-4b7e-b8d9-848822f75c9e", - "x-ms-client-request-id": "ef54c3028ef46a0776238473b7086ff2", - "x-ms-correlation-request-id": "fd0dbf29-db27-41f3-a0cf-0d602cd762ac", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "3c05c576-ed92-4b09-b1e7-61fa0fe4583a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090526Z:fd0dbf29-db27-41f3-a0cf-0d602cd762ac" - }, - "ResponseBody": { - "name": "Vnet-8818", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818", - "etag": "W/\u00221a954384-5839-4c3b-b43a-b621f41e087b\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "239ae212-ad0f-44a7-82fb-34e582055ea6", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1797", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818/subnets/Subnet-1797", - "etag": "W/\u00221a954384-5839-4c3b-b43a-b621f41e087b\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-70?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8956?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-66a31fc53d6cd940912d0daf33c663d3-ab33954a23fb3d44-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4d85853e37e03394a4d40b8a20e5e15c", + "traceparent": "00-0909acf94ac388a8a18e9f64ce67c0eb-8310150ac932e4c8-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e50fee1ea58e1a42922e988ef54ab1d", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1474/providers/Microsoft.Network/virtualNetworks/Vnet-8050", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-8526" + "targetResourceName": "targetVnet-1585" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a1d1f3db-1a96-41a1-b805-c1bd778136ed?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/48423970-7fb9-425a-a075-669561a73810?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:26 GMT", + "Date": "Wed, 22 Mar 2023 07:20:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60b25076-6138-43ea-ba79-c821792daeac", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "2104397a-a676-4392-a960-2003a9709bb4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090527Z:60b25076-6138-43ea-ba79-c821792daeac" + "x-ms-correlation-request-id": "6a042c49-6c5a-4f85-bbd2-f09205a2cef7", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "2ccae4a2-019e-4cef-963b-2dd0b5ff74d8", + "x-ms-routing-request-id": "JAPANEAST:20230322T072002Z:6a042c49-6c5a-4f85-bbd2-f09205a2cef7" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a1d1f3db-1a96-41a1-b805-c1bd778136ed?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/48423970-7fb9-425a-a075-669561a73810?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-66a31fc53d6cd940912d0daf33c663d3-fd2ad287978e8043-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "fc78ecf9b4b41de25ac0ea325eeb039e", + "traceparent": "00-0909acf94ac388a8a18e9f64ce67c0eb-cd39a211d59329b1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b5f728573b8135fda2f21418877cad61", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a1d1f3db-1a96-41a1-b805-c1bd778136ed?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/48423970-7fb9-425a-a075-669561a73810?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:27 GMT", + "Date": "Wed, 22 Mar 2023 07:20:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a524b06d-6075-4646-bdb0-9885ab3c0dcb", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "824d97b2-f495-47da-b73e-f3a0cec57502", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090527Z:a524b06d-6075-4646-bdb0-9885ab3c0dcb" + "x-ms-correlation-request-id": "e750de33-ae50-4791-9d8a-0c3154855d9e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "21712172-7d92-40a0-b3df-53f08f338f57", + "x-ms-routing-request-id": "JAPANEAST:20230322T072003Z:e750de33-ae50-4791-9d8a-0c3154855d9e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a1d1f3db-1a96-41a1-b805-c1bd778136ed", - "name": "a1d1f3db-1a96-41a1-b805-c1bd778136ed", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/48423970-7fb9-425a-a075-669561a73810", + "name": "48423970-7fb9-425a-a075-669561a73810", "status": "Running", - "startTime": "9/7/2022 9:05:27 AM", + "startTime": "3/22/2023 7:20:02 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a1d1f3db-1a96-41a1-b805-c1bd778136ed?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/48423970-7fb9-425a-a075-669561a73810?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-66a31fc53d6cd940912d0daf33c663d3-bb61e3eccbc4044c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "03565b927f68e7304814bd40d7c6ba37", + "traceparent": "00-0909acf94ac388a8a18e9f64ce67c0eb-d5a9c07fa9a522a9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a103883da06719c84f295cc177404806", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:43 GMT", + "Date": "Wed, 22 Mar 2023 07:20:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6c7d011-735c-44b8-a540-c314062e323f", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "7ae45887-5bad-4574-a582-479fa19252ed", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090543Z:e6c7d011-735c-44b8-a540-c314062e323f" + "x-ms-correlation-request-id": "a40cd189-3d33-458a-adf1-0f0a46ca4fcd", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "958cd438-6ae3-46dc-8b1a-ab47c05be3ad", + "x-ms-routing-request-id": "JAPANEAST:20230322T072018Z:a40cd189-3d33-458a-adf1-0f0a46ca4fcd" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a1d1f3db-1a96-41a1-b805-c1bd778136ed", - "name": "a1d1f3db-1a96-41a1-b805-c1bd778136ed", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/48423970-7fb9-425a-a075-669561a73810", + "name": "48423970-7fb9-425a-a075-669561a73810", "status": "Succeeded", - "startTime": "9/7/2022 9:05:27 AM", - "endTime": "9/7/2022 9:05:28 AM", + "startTime": "3/22/2023 7:20:02 AM", + "endTime": "3/22/2023 7:20:04 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-70?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8956?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-66a31fc53d6cd940912d0daf33c663d3-e4c01881a10fac4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "33908d49e56dfea7896dadd96d0912a5", + "traceparent": "00-0909acf94ac388a8a18e9f64ce67c0eb-d98920b77d614d8a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c630c35df55df39ba06a7aa8b3969e36", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1837", + "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:43 GMT", + "Date": "Wed, 22 Mar 2023 07:20:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38b8c935-d002-4a76-a9f8-79cc48aed665", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "e70f3039-a064-4194-8749-992467f8d859", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090544Z:38b8c935-d002-4a76-a9f8-79cc48aed665" + "x-ms-correlation-request-id": "d03f84ac-1552-47f6-beff-caf3c621c60e", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "34d8f15b-64b2-471c-a17b-f819ff2fcec3", + "x-ms-routing-request-id": "JAPANEAST:20230322T072019Z:d03f84ac-1552-47f6-beff-caf3c621c60e" }, "ResponseBody": { - "name": "MoverResource-70", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-70", + "name": "MoverResource-8956", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8956", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1474/providers/Microsoft.Network/virtualNetworks/Vnet-8050", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-8526" + "targetResourceName": "targetVnet-1585" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9766/providers/Microsoft.Network/virtualNetworks/Vnet-8818\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1474/providers/Microsoft.Network/virtualNetworks/Vnet-8050\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,139 +334,139 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-1797", + "name": "Subnet-7843", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-8818" + "targetResourceName": "Vnet-8050" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T09:05:26.6782212Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:20:02.1111482Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T09:05:26.6782212Z" + "lastModifiedAt": "2023-03-22T07:20:02.1111482Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-70?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8956?api-version=2021-08-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7c888ae17adb5f45bf561d3bae35fe68-98fce69640e14a48-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "1e3bc19d87167a15bb91b3a0f7a14593", + "traceparent": "00-95a79f074fbd725a6615a1fd8bdfbb73-61d9340233f33d4d-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "112611e9241fb6be5fdd6558df3bbd61", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/607f3bcc-591a-42f9-b0d4-d188faf015c0?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a77bb80-cdce-46b0-95c9-baf3fbc50a9f?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:44 GMT", + "Date": "Wed, 22 Mar 2023 07:20:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d296ad2-3683-43b9-b27a-35410097cea0", + "x-ms-correlation-request-id": "0fcd7d7a-799e-48c6-ad9a-f0e172abcdf9", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "eae15ef3-f4c3-451e-b935-3f6e005740e0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090544Z:6d296ad2-3683-43b9-b27a-35410097cea0" + "x-ms-request-id": "7181ea87-c7fe-4a93-a56f-8ee016787f44", + "x-ms-routing-request-id": "JAPANEAST:20230322T072019Z:0fcd7d7a-799e-48c6-ad9a-f0e172abcdf9" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/607f3bcc-591a-42f9-b0d4-d188faf015c0?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a77bb80-cdce-46b0-95c9-baf3fbc50a9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c888ae17adb5f45bf561d3bae35fe68-0361c90679a46b4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "16a318019c8bc120781677dc310706e7", + "traceparent": "00-95a79f074fbd725a6615a1fd8bdfbb73-af3b34dec7ee2546-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "65d7268b361939e7047a667f8f431364", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/607f3bcc-591a-42f9-b0d4-d188faf015c0?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a77bb80-cdce-46b0-95c9-baf3fbc50a9f?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:05:45 GMT", + "Date": "Wed, 22 Mar 2023 07:20:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66b7c909-4a31-48a0-8192-2e60c56903f2", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "2d8b73e8-4353-478e-a404-a18f02c8413b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090545Z:66b7c909-4a31-48a0-8192-2e60c56903f2" + "x-ms-correlation-request-id": "84ae1564-abb7-4b64-8e28-7d7a5a4863ee", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "ea4304eb-535e-4e24-9326-a176fc6db45b", + "x-ms-routing-request-id": "JAPANEAST:20230322T072020Z:84ae1564-abb7-4b64-8e28-7d7a5a4863ee" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/607f3bcc-591a-42f9-b0d4-d188faf015c0", - "name": "607f3bcc-591a-42f9-b0d4-d188faf015c0", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a77bb80-cdce-46b0-95c9-baf3fbc50a9f", + "name": "0a77bb80-cdce-46b0-95c9-baf3fbc50a9f", "status": "Running", - "startTime": "9/7/2022 9:05:44 AM", + "startTime": "3/22/2023 7:20:19 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/607f3bcc-591a-42f9-b0d4-d188faf015c0?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a77bb80-cdce-46b0-95c9-baf3fbc50a9f?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c888ae17adb5f45bf561d3bae35fe68-5916b86a2fe5e741-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b9d21928421fcd4a908e6abe0c1aa764", + "traceparent": "00-95a79f074fbd725a6615a1fd8bdfbb73-8a18c186a3ccc9ac-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a5fe18acdadc02ea0cde240f23c0903f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:06:00 GMT", + "Date": "Wed, 22 Mar 2023 07:20:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e196fd8-9c5e-40e3-a9a4-80424dc4c99e", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "184382b2-09ad-42ba-9010-99281b9a3962", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090601Z:2e196fd8-9c5e-40e3-a9a4-80424dc4c99e" + "x-ms-correlation-request-id": "5ca5c148-5482-44d3-922e-b46d24767aa4", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "90eea276-6c1d-4f71-8113-54564befc3d5", + "x-ms-routing-request-id": "JAPANEAST:20230322T072035Z:5ca5c148-5482-44d3-922e-b46d24767aa4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/607f3bcc-591a-42f9-b0d4-d188faf015c0", - "name": "607f3bcc-591a-42f9-b0d4-d188faf015c0", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/0a77bb80-cdce-46b0-95c9-baf3fbc50a9f", + "name": "0a77bb80-cdce-46b0-95c9-baf3fbc50a9f", "status": "Succeeded", - "startTime": "9/7/2022 9:05:44 AM", - "endTime": "9/7/2022 9:05:46 AM", + "startTime": "3/22/2023 7:20:19 AM", + "endTime": "3/22/2023 7:20:21 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-70?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8956?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ccf2adfcd519d949be5b7eaf99746abb-15db9c87bb14644c-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "df9e73172ffe6a089327574458547bab", + "traceparent": "00-1e6dd54b0bbd7c8c8fef9104f37f0094-e60b2cc2c8987fa6-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b9ccac76586373472681bfd08084b7a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -704,15 +475,15 @@ "Cache-Control": "no-cache", "Content-Length": "225", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:06:01 GMT", + "Date": "Wed, 22 Mar 2023 07:20:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bc7c1d0-862a-472c-b047-1101db34441e", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "4b51444d-0827-4792-804a-9f58ed2f77d0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090601Z:6bc7c1d0-862a-472c-b047-1101db34441e" + "x-ms-correlation-request-id": "19f2a52c-e379-4c85-b735-941b97e3a317", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "04dbc67c-665a-40ac-a0f8-86e24e5d1e25", + "x-ms-routing-request-id": "JAPANEAST:20230322T072036Z:19f2a52c-e379-4c85-b735-941b97e3a317" }, "ResponseBody": { "error": { @@ -724,7 +495,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "641674300", + "RandomSeed": "586762025", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete()Async.json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete()Async.json index 82521f1c8c62..5c8d2fec75b3 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete()Async.json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Delete()Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-08d7914592198f43945fe036e9c0629a-63602956be84bf45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a7d48536820c5061d36ab29da7033a44", + "traceparent": "00-8d720b534c91bed173f4b8c16c8bf405-7770bed6fc843faa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5066a4524c6cdca6cb75dc7082206b00", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:08:43 GMT", + "Date": "Wed, 22 Mar 2023 07:16:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c09c983c-6203-4145-afd9-242673adf81f", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "c09c983c-6203-4145-afd9-242673adf81f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090843Z:c09c983c-6203-4145-afd9-242673adf81f" + "x-ms-correlation-request-id": "96901466-d58b-4eac-810e-920e7f0720d9", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "96901466-d58b-4eac-810e-920e7f0720d9", + "x-ms-routing-request-id": "JAPANEAST:20230322T071627Z:96901466-d58b-4eac-810e-920e7f0720d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cdb81cadfc53ea49ae8e016de29ee661-b262d1c732e5b241-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "23af8492f0712b3527ff174b5cdac0f1", + "traceparent": "00-59da7ce6476bfd819a5a74aad7bf5c24-c0bf94dc6b611f26-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fa0aaa99eb95b033b4973f2c6f2bd7dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:08:44 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Wed, 22 Mar 2023 07:16:27 GMT", + "ETag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84bb4c2b-1f3a-41fd-ac07-afacb520df9c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "4f9e6aff-e92e-4ee4-a113-6bd3ab5ec9f5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090844Z:84bb4c2b-1f3a-41fd-ac07-afacb520df9c" + "x-ms-correlation-request-id": "b792642c-550c-4413-9727-ef723ec689bf", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "599b7931-0af8-4072-b0a4-d59815848564", + "x-ms-routing-request-id": "JAPANEAST:20230322T071628Z:b792642c-550c-4413-9727-ef723ec689bf" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-7818?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5634?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-77f31f7d4b0c634a9044446026dc2496-fa90581d59fd3648-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "6007668285fd4a2e40ca248ec238e519", + "traceparent": "00-2b307184b317530f15cafd050d5404e9-8140b78d565d6ac5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5d2dbc3b02d36c830bb84ff2b0ed2d1a", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:08:47 GMT", + "Date": "Wed, 22 Mar 2023 07:16:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79322088-ecd2-414c-b945-e8db729d424a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "79322088-ecd2-414c-b945-e8db729d424a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090847Z:79322088-ecd2-414c-b945-e8db729d424a" + "x-ms-correlation-request-id": "59ffbbb8-1676-46e7-b893-01d4cf5f5145", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "59ffbbb8-1676-46e7-b893-01d4cf5f5145", + "x-ms-routing-request-id": "JAPANEAST:20230322T071629Z:59ffbbb8-1676-46e7-b893-01d4cf5f5145" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818", - "name": "testRg-ResourceMover-7818", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5634", + "name": "testRg-ResourceMover-5634", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,357 +152,128 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-b11ef95670b74b46a307ab1a720a8b07-e95478bfefe0854d-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "497a61784f4680a80c6a15f4f9a9c076", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1574", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/9007e168-ee34-4cd7-96af-4e980565a06d?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:08:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ec899ede-5749-4c24-a537-71bd7b297c2d", - "x-ms-client-request-id": "497a61784f4680a80c6a15f4f9a9c076", - "x-ms-correlation-request-id": "bf038e51-dbe2-4fd1-8fa7-34c951de3b52", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "9007e168-ee34-4cd7-96af-4e980565a06d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090853Z:bf038e51-dbe2-4fd1-8fa7-34c951de3b52" - }, - "ResponseBody": { - "name": "Vnet-2602", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602", - "etag": "W/\u00220905ef1f-ef28-412a-b4dd-5d830a6ba6c6\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "1ebb4e79-5b0f-4c13-b04b-48bb8097e778", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1574", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602/subnets/Subnet-1574", - "etag": "W/\u00220905ef1f-ef28-412a-b4dd-5d830a6ba6c6\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/9007e168-ee34-4cd7-96af-4e980565a06d?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-b11ef95670b74b46a307ab1a720a8b07-c2ba22f8e342464f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8f4830ad38abb820b87c78c3344cd17a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:08:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "03ea3e76-9da7-4d6e-9e1c-4d06cdb09ce1", - "x-ms-client-request-id": "8f4830ad38abb820b87c78c3344cd17a", - "x-ms-correlation-request-id": "d3cffda8-7ea0-42ec-af0b-45ac965b9aa6", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "03dd5da9-c055-4c25-b17b-a8ad37ca1730", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090854Z:d3cffda8-7ea0-42ec-af0b-45ac965b9aa6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/9007e168-ee34-4cd7-96af-4e980565a06d?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-b11ef95670b74b46a307ab1a720a8b07-d00fd73836654f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "49134bcdcae67915dfa218203d0b1b45", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "53308c64-4ca6-4048-b6a4-155e3a0d9a38", - "x-ms-client-request-id": "49134bcdcae67915dfa218203d0b1b45", - "x-ms-correlation-request-id": "e1b29143-aee3-4673-abb3-924c4ec95d68", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "8f82e79a-f86f-46d1-9870-282c51410612", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090904Z:e1b29143-aee3-4673-abb3-924c4ec95d68" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-b11ef95670b74b46a307ab1a720a8b07-343cea5ec75fb040-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c946e3393161eccb7b7a2c1885bea3e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:04 GMT", - "ETag": "W/\u0022f49b01e0-7864-46f9-99d4-54ba19a97557\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c4642135-50c0-41bf-848f-57c2ffc8e83e", - "x-ms-client-request-id": "c946e3393161eccb7b7a2c1885bea3e4", - "x-ms-correlation-request-id": "ab78df7d-620e-48a4-9463-cf55837a3a79", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "d77dec34-d116-41dc-ad7e-7e8f5da37d72", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090904Z:ab78df7d-620e-48a4-9463-cf55837a3a79" - }, - "ResponseBody": { - "name": "Vnet-2602", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602", - "etag": "W/\u0022f49b01e0-7864-46f9-99d4-54ba19a97557\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "1ebb4e79-5b0f-4c13-b04b-48bb8097e778", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1574", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602/subnets/Subnet-1574", - "etag": "W/\u0022f49b01e0-7864-46f9-99d4-54ba19a97557\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9834?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6754?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-270e662107ea2f4cac3716db72e86c69-b499c372c0871c45-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e7b319cfe24ccf1ab00920ff7aac6133", + "traceparent": "00-c3a6cfbef90e0a3556d070c18ffbf0ef-7859e4cd0d790154-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e8e0a2eb8d0855fb40bb245dccfe84f8", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5634/providers/Microsoft.Network/virtualNetworks/Vnet-4697", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-9871" + "targetResourceName": "targetVnet-3334" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7d6511d4-c52b-4f15-af2f-50e6d90b7aa7?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/32552683-adf7-431e-a083-3a489d0fd65b?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:05 GMT", + "Date": "Wed, 22 Mar 2023 07:16:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0cb87ad-851e-4af1-97b9-b19aede02b86", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "87efa1d0-dcae-449e-9629-1d77b1eda206", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090906Z:d0cb87ad-851e-4af1-97b9-b19aede02b86" + "x-ms-correlation-request-id": "fd4f7a57-b815-49b5-8852-bc974f09456c", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "85650feb-1ac4-4095-b6d6-5f683c240c88", + "x-ms-routing-request-id": "JAPANEAST:20230322T071634Z:fd4f7a57-b815-49b5-8852-bc974f09456c" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7d6511d4-c52b-4f15-af2f-50e6d90b7aa7?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/32552683-adf7-431e-a083-3a489d0fd65b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-270e662107ea2f4cac3716db72e86c69-09b5230b0253d745-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "013ba6cc51926497ae9180c1cc7c007f", + "traceparent": "00-c3a6cfbef90e0a3556d070c18ffbf0ef-c97ebe596cfa0297-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "40a85b8e23ee04989cb3e79578ba5602", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7d6511d4-c52b-4f15-af2f-50e6d90b7aa7?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/32552683-adf7-431e-a083-3a489d0fd65b?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:06 GMT", + "Date": "Wed, 22 Mar 2023 07:16:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63a8b4b3-6ea9-47be-9dfc-fb033cf2f1ae", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "c293b8e9-6fb3-4548-a6c7-9ac5c9054c49", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090907Z:63a8b4b3-6ea9-47be-9dfc-fb033cf2f1ae" + "x-ms-correlation-request-id": "73550575-eaf8-4c92-9043-f9b319135c09", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "2db1fa3b-2693-4255-aef5-4f2f5cbbb809", + "x-ms-routing-request-id": "JAPANEAST:20230322T071634Z:73550575-eaf8-4c92-9043-f9b319135c09" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7d6511d4-c52b-4f15-af2f-50e6d90b7aa7", - "name": "7d6511d4-c52b-4f15-af2f-50e6d90b7aa7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/32552683-adf7-431e-a083-3a489d0fd65b", + "name": "32552683-adf7-431e-a083-3a489d0fd65b", "status": "Running", - "startTime": "9/7/2022 9:09:05 AM", + "startTime": "3/22/2023 7:16:34 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7d6511d4-c52b-4f15-af2f-50e6d90b7aa7?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/32552683-adf7-431e-a083-3a489d0fd65b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-270e662107ea2f4cac3716db72e86c69-0867e59962b72446-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "523552b64bdf327d998d1ae0431ddb8f", + "traceparent": "00-c3a6cfbef90e0a3556d070c18ffbf0ef-78f4a8aa1b3e337c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4675b17a0cd8918af6c1e91d5c9cadca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:22 GMT", + "Date": "Wed, 22 Mar 2023 07:16:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2cbe32c-99c3-4046-9fc9-a76c42688b08", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "c3c010b7-81cf-4a2f-832f-b36aaab942a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090923Z:c2cbe32c-99c3-4046-9fc9-a76c42688b08" + "x-ms-correlation-request-id": "0581adbd-f16b-41bf-bad2-0bf432ac8146", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "507f446d-00fd-4bce-8f66-5769e2e70e53", + "x-ms-routing-request-id": "JAPANEAST:20230322T071650Z:0581adbd-f16b-41bf-bad2-0bf432ac8146" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/7d6511d4-c52b-4f15-af2f-50e6d90b7aa7", - "name": "7d6511d4-c52b-4f15-af2f-50e6d90b7aa7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/32552683-adf7-431e-a083-3a489d0fd65b", + "name": "32552683-adf7-431e-a083-3a489d0fd65b", "status": "Succeeded", - "startTime": "9/7/2022 9:09:05 AM", - "endTime": "9/7/2022 9:09:07 AM", + "startTime": "3/22/2023 7:16:34 AM", + "endTime": "3/22/2023 7:16:36 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9834?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6754?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-270e662107ea2f4cac3716db72e86c69-dc5bc5d033c11149-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d333ec0a5f7138a0b9a05a871bbe5951", + "traceparent": "00-c3a6cfbef90e0a3556d070c18ffbf0ef-ee75a1152eddb672-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "70cf5a3c4456760ac2b118bf7316a644", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -511,24 +282,24 @@ "Cache-Control": "no-cache", "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:22 GMT", + "Date": "Wed, 22 Mar 2023 07:16:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23646b98-daac-4a88-bc35-2bc39c4b2a03", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "334c9cdc-a9ba-4c04-a80e-8c25eb2fc64a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090923Z:23646b98-daac-4a88-bc35-2bc39c4b2a03" + "x-ms-correlation-request-id": "ed5ca4ac-53bb-4c7c-a89e-fef468c7f37c", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "f2715c0a-3c0a-49c9-868a-5d1a910523d8", + "x-ms-routing-request-id": "JAPANEAST:20230322T071650Z:ed5ca4ac-53bb-4c7c-a89e-fef468c7f37c" }, "ResponseBody": { - "name": "MoverResource-9834", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9834", + "name": "MoverResource-6754", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6754", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5634/providers/Microsoft.Network/virtualNetworks/Vnet-4697", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-9871" + "targetResourceName": "targetVnet-3334" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7818/providers/Microsoft.Network/virtualNetworks/Vnet-2602\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5634/providers/Microsoft.Network/virtualNetworks/Vnet-4697\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,139 +334,139 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-1574", + "name": "Subnet-6139", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-2602" + "targetResourceName": "Vnet-4697" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T09:09:05.2620081Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:16:34.0041823Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T09:09:05.2620081Z" + "lastModifiedAt": "2023-03-22T07:16:34.0041823Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9834?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6754?api-version=2021-08-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d8a15e85a241094cb0a8db1cee44264e-4f3f90d7c9217a40-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a0461f6bacec81532908670537b62190", + "traceparent": "00-caf7d7f796f6e62f2799967c5fe89828-c7e9c4cd585ef542-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f6e52e9439ff82f2d117492d3a7aa8ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2740fe5-2daf-4a0d-92fd-9b9e451006b5?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/76771832-56b1-457f-aed8-4e399c20546b?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:23 GMT", + "Date": "Wed, 22 Mar 2023 07:16:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d38508c-01d9-4b5e-bd4f-7ce1b5a37356", + "x-ms-correlation-request-id": "d0f90427-4bf6-4674-97d0-fe013e5655cd", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "833589bc-e2f6-47b8-9a3a-a934a8ca1534", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090924Z:0d38508c-01d9-4b5e-bd4f-7ce1b5a37356" + "x-ms-request-id": "ea1e8ca0-457d-4e3e-bae1-22f5b47f3d1c", + "x-ms-routing-request-id": "JAPANEAST:20230322T071651Z:d0f90427-4bf6-4674-97d0-fe013e5655cd" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2740fe5-2daf-4a0d-92fd-9b9e451006b5?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/76771832-56b1-457f-aed8-4e399c20546b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d8a15e85a241094cb0a8db1cee44264e-a4881e8fd2252f46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "2375c8333bd75ea398b1aa68f79b0003", + "traceparent": "00-caf7d7f796f6e62f2799967c5fe89828-984bd25ca002ce60-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2d88a41ab6b703ca684d9f3efbdc3c47", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2740fe5-2daf-4a0d-92fd-9b9e451006b5?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/76771832-56b1-457f-aed8-4e399c20546b?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:24 GMT", + "Date": "Wed, 22 Mar 2023 07:16:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7351fccb-55c8-43fd-9008-02586d33c6bb", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "8c7dcd42-0206-43ea-8ee9-f81fd72d2de7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090925Z:7351fccb-55c8-43fd-9008-02586d33c6bb" + "x-ms-correlation-request-id": "cd440130-c395-49bf-b1e5-8b80a22de1fd", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "cec0d730-8e52-415c-af46-14ce079b488a", + "x-ms-routing-request-id": "JAPANEAST:20230322T071652Z:cd440130-c395-49bf-b1e5-8b80a22de1fd" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2740fe5-2daf-4a0d-92fd-9b9e451006b5", - "name": "e2740fe5-2daf-4a0d-92fd-9b9e451006b5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/76771832-56b1-457f-aed8-4e399c20546b", + "name": "76771832-56b1-457f-aed8-4e399c20546b", "status": "Running", - "startTime": "9/7/2022 9:09:24 AM", + "startTime": "3/22/2023 7:16:51 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2740fe5-2daf-4a0d-92fd-9b9e451006b5?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/76771832-56b1-457f-aed8-4e399c20546b?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d8a15e85a241094cb0a8db1cee44264e-e2fede3cc1b6644a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "29d1ca7f79073e0811efeeef13149032", + "traceparent": "00-caf7d7f796f6e62f2799967c5fe89828-227e8f6795c6f454-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "56b9180987bdae5982af4f00b5cb8d05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:40 GMT", + "Date": "Wed, 22 Mar 2023 07:17:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec90222c-f58c-45a8-8cf5-9816478c877f", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "99a4f095-f319-4ed7-bcfc-2cc11eb683a8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090941Z:ec90222c-f58c-45a8-8cf5-9816478c877f" + "x-ms-correlation-request-id": "593916c6-d0f3-4443-9478-b92f259aa6e4", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "1a6f8ed6-06da-4251-98ac-a2ea0908dbe0", + "x-ms-routing-request-id": "JAPANEAST:20230322T071707Z:593916c6-d0f3-4443-9478-b92f259aa6e4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/e2740fe5-2daf-4a0d-92fd-9b9e451006b5", - "name": "e2740fe5-2daf-4a0d-92fd-9b9e451006b5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/76771832-56b1-457f-aed8-4e399c20546b", + "name": "76771832-56b1-457f-aed8-4e399c20546b", "status": "Succeeded", - "startTime": "9/7/2022 9:09:24 AM", - "endTime": "9/7/2022 9:09:25 AM", + "startTime": "3/22/2023 7:16:51 AM", + "endTime": "3/22/2023 7:16:52 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9834?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6754?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b63b2ca54ed62c499c0be6978ce9667e-0cc0791826f33b4c-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "6ed18df1fd407ab84e58479781a65e16", + "traceparent": "00-fcac31759c5f1369446ba3efbdd639df-ffae22d0bbfd051f-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "951269f97af14f485255b69d466d39ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -704,15 +475,15 @@ "Cache-Control": "no-cache", "Content-Length": "225", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 09:09:40 GMT", + "Date": "Wed, 22 Mar 2023 07:17:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27c39a8b-1542-4753-8e3e-0272302cc950", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "c2a4a7cf-1d82-4a08-a8b4-9397fd3d1f6c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T090941Z:27c39a8b-1542-4753-8e3e-0272302cc950" + "x-ms-correlation-request-id": "279d409f-8d47-4707-9c60-cbc840be34e7", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "8531c388-1dc0-423b-9160-bf96658824c7", + "x-ms-routing-request-id": "JAPANEAST:20230322T071707Z:279d409f-8d47-4707-9c60-cbc840be34e7" }, "ResponseBody": { "error": { @@ -724,7 +495,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1699921625", + "RandomSeed": "1631708580", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get().json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get().json index c4dc6ce4dc9d..f4d52ae25bb2 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get().json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get().json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-846a66f0e25a754bb621177332a37aa2-ba011a63320f9f4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a5b2dc4d1384b300e7c0a5119bc4e446", + "traceparent": "00-2f23f27f3f05414058435a60747f9b4b-ebaee7d86366efb9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85ff97d39057f8cc4cbb6fe614409b1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:29 GMT", + "Date": "Wed, 22 Mar 2023 07:20:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd4be63d-eb31-49e0-b6c5-d6851b8e7af1", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "dd4be63d-eb31-49e0-b6c5-d6851b8e7af1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071029Z:dd4be63d-eb31-49e0-b6c5-d6851b8e7af1" + "x-ms-correlation-request-id": "adcc96f5-a994-4be1-81d1-197f42189366", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "adcc96f5-a994-4be1-81d1-197f42189366", + "x-ms-routing-request-id": "JAPANEAST:20230322T072039Z:adcc96f5-a994-4be1-81d1-197f42189366" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-580a4073a7a0e441893bf1f2ff664200-39e78520a4d55141-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "81b8eeb278d59302001d24e3a9934a16", + "traceparent": "00-895d69b033a2e6fb98817e22bb553bba-3c72f59e8f64a3bf-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c7108cdfd41b9b0913875e504f032715", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:29 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Wed, 22 Mar 2023 07:20:39 GMT", + "ETag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f867be6-0105-4d15-80aa-f734fc39222b", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "76bee59c-b92b-49fa-a4b4-d8f134f8bc8b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071030Z:4f867be6-0105-4d15-80aa-f734fc39222b" + "x-ms-correlation-request-id": "227aebc8-21ef-45f5-8000-9a6a07c96266", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "48bdc127-0b95-4352-b1b6-3efaffe6fc40", + "x-ms-routing-request-id": "JAPANEAST:20230322T072039Z:227aebc8-21ef-45f5-8000-9a6a07c96266" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-9225?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-6370?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-67f9c85e7d1b4e48832f3a5cc14abaea-b30110fb42dbba4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e207037bfc5dbc9b575c23d8afdea04f", + "traceparent": "00-da356f9374f15b71ef528e89e410e225-10bf6038d4336714-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "39da4b5eecb40c2cb72dbac147e3fe33", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:30 GMT", + "Date": "Wed, 22 Mar 2023 07:20:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aacddb2d-1ac7-4cd8-916d-f67b0b4d2f80", + "x-ms-correlation-request-id": "9ea58c2a-51da-428b-9f0c-1b622d5c5bea", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "aacddb2d-1ac7-4cd8-916d-f67b0b4d2f80", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071031Z:aacddb2d-1ac7-4cd8-916d-f67b0b4d2f80" + "x-ms-request-id": "9ea58c2a-51da-428b-9f0c-1b622d5c5bea", + "x-ms-routing-request-id": "JAPANEAST:20230322T072041Z:9ea58c2a-51da-428b-9f0c-1b622d5c5bea" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225", - "name": "testRg-ResourceMover-9225", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6370", + "name": "testRg-ResourceMover-6370", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,383 +152,154 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-8f8f97d942a8bb49a6d5912bde4e1710-5bcf00fa8e49d54b-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d031df5ddad5a51e66ef1d0954758e5c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-3354", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/eccf8c21-03f4-4d13-b059-fc48a46aa39f?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9b068f93-def9-4f8b-a9ce-e7ef43f1739e", - "x-ms-client-request-id": "d031df5ddad5a51e66ef1d0954758e5c", - "x-ms-correlation-request-id": "289f617b-09eb-4d6c-a456-ab9cc58fadbe", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "eccf8c21-03f4-4d13-b059-fc48a46aa39f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071034Z:289f617b-09eb-4d6c-a456-ab9cc58fadbe" - }, - "ResponseBody": { - "name": "Vnet-5234", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", - "etag": "W/\u0022b8b5ffa8-a2f0-4b52-8ef6-caefc2172e6d\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "22a99f1d-be37-4915-b413-38d0ff1fe9c3", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-3354", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234/subnets/Subnet-3354", - "etag": "W/\u0022b8b5ffa8-a2f0-4b52-8ef6-caefc2172e6d\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/eccf8c21-03f4-4d13-b059-fc48a46aa39f?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8f8f97d942a8bb49a6d5912bde4e1710-b31c6fb6fce76745-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "37ed4e60ab842c2dc3b895ac9e4d07ad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "288598c4-86b2-45b2-9a42-0bcebd35376e", - "x-ms-client-request-id": "37ed4e60ab842c2dc3b895ac9e4d07ad", - "x-ms-correlation-request-id": "6f5d355d-034b-4d6e-a0f1-48101ac3a1cc", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "e2ffdd49-7ff3-4dbf-bf31-dd9c90a379a9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071034Z:6f5d355d-034b-4d6e-a0f1-48101ac3a1cc" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/eccf8c21-03f4-4d13-b059-fc48a46aa39f?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8f8f97d942a8bb49a6d5912bde4e1710-b5ec5d7d57658942-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "dfbd5349e5716befc26b52b9fa635427", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "60cbab9f-f2fc-4484-a8a4-4073649000e4", - "x-ms-client-request-id": "dfbd5349e5716befc26b52b9fa635427", - "x-ms-correlation-request-id": "bcff3888-0d54-4e95-81a9-7c9f4d996d7a", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "2aec61bb-d4f3-480b-96c3-cdb429a36fba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071044Z:bcff3888-0d54-4e95-81a9-7c9f4d996d7a" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-8f8f97d942a8bb49a6d5912bde4e1710-c3a79c215d19704c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "05a9896b568875d793b09f9c5d712630", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:44 GMT", - "ETag": "W/\u00220fcd5ba9-6e56-4753-97aa-24a1aef0387d\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1f6b5f9a-802f-4bb8-a9a7-457e612c4803", - "x-ms-client-request-id": "05a9896b568875d793b09f9c5d712630", - "x-ms-correlation-request-id": "a6e99656-f922-4c99-ac12-12bea7536c7a", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "ee570627-a2be-43f5-9f89-7a0b302dd65b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071045Z:a6e99656-f922-4c99-ac12-12bea7536c7a" - }, - "ResponseBody": { - "name": "Vnet-5234", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", - "etag": "W/\u00220fcd5ba9-6e56-4753-97aa-24a1aef0387d\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "22a99f1d-be37-4915-b413-38d0ff1fe9c3", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-3354", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234/subnets/Subnet-3354", - "etag": "W/\u00220fcd5ba9-6e56-4753-97aa-24a1aef0387d\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4400?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-63cfb3bc7eef324cab8738293041f3de-edb23291c6bee346-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "a481fd717a22825f741959743260636e", + "traceparent": "00-d4aeaab9c36ff01f912bd0b74223f24d-7f54b0182d6f4895-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4d4a9c85470b739a44e0cf7532784f06", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6370/providers/Microsoft.Network/virtualNetworks/Vnet-8281", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-4589" + "targetResourceName": "targetVnet-7911" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/81d0de9b-55eb-4f05-b674-c79c7e82ad6d?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ecf7a7bd-60dc-411a-85d2-0e6fe032c829?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:45 GMT", + "Date": "Wed, 22 Mar 2023 07:20:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b348e40b-c6a1-4507-9bca-9079bd32b14a", + "x-ms-correlation-request-id": "c0abec90-95f1-4fd1-b169-9ffc3f771bbb", "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "b0dfc2e2-daaa-41b9-ad7e-c1e8aa03dc4d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071046Z:b348e40b-c6a1-4507-9bca-9079bd32b14a" + "x-ms-request-id": "6525e6c9-d4c3-415a-b9e8-22786e74d55c", + "x-ms-routing-request-id": "JAPANEAST:20230322T072056Z:c0abec90-95f1-4fd1-b169-9ffc3f771bbb" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/81d0de9b-55eb-4f05-b674-c79c7e82ad6d?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ecf7a7bd-60dc-411a-85d2-0e6fe032c829?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-63cfb3bc7eef324cab8738293041f3de-9fae14850c84fa4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "56f2c9a5c6a52f67a606e1be1b1e7e3f", + "traceparent": "00-d4aeaab9c36ff01f912bd0b74223f24d-794a2a7b9f1a9ccb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "edfc0d9346b9f468a92b541a292f534d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/81d0de9b-55eb-4f05-b674-c79c7e82ad6d?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ecf7a7bd-60dc-411a-85d2-0e6fe032c829?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:10:46 GMT", + "Date": "Wed, 22 Mar 2023 07:20:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "928b7268-7e44-4297-b17b-5c026fc2af1a", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "60797b41-5321-442c-9979-4a92c57871cf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071046Z:928b7268-7e44-4297-b17b-5c026fc2af1a" + "x-ms-correlation-request-id": "f3eb22a2-b17f-4fc6-93dc-cef9fa92be57", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "4693f8b3-2797-44b4-a96a-dca2980e3072", + "x-ms-routing-request-id": "JAPANEAST:20230322T072056Z:f3eb22a2-b17f-4fc6-93dc-cef9fa92be57" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/81d0de9b-55eb-4f05-b674-c79c7e82ad6d", - "name": "81d0de9b-55eb-4f05-b674-c79c7e82ad6d", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ecf7a7bd-60dc-411a-85d2-0e6fe032c829", + "name": "ecf7a7bd-60dc-411a-85d2-0e6fe032c829", "status": "Running", - "startTime": "9/7/2022 7:10:46 AM", + "startTime": "3/22/2023 7:20:56 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/81d0de9b-55eb-4f05-b674-c79c7e82ad6d?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ecf7a7bd-60dc-411a-85d2-0e6fe032c829?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-63cfb3bc7eef324cab8738293041f3de-34461cdf3060e342-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "1130ee39128d7e0c81385760340c7423", + "traceparent": "00-d4aeaab9c36ff01f912bd0b74223f24d-69a7d10979e0cb74-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "165aa16a25e4bfaa4ec1a394e9e99995", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:01 GMT", + "Date": "Wed, 22 Mar 2023 07:21:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d66e8eed-06f2-4659-8faf-c25d48f660b3", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "f80574eb-c6bb-491f-8aef-b7c2fcc6543c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071102Z:d66e8eed-06f2-4659-8faf-c25d48f660b3" + "x-ms-correlation-request-id": "63ec9975-066f-42a4-a066-b56ccb251deb", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "88c84c06-400f-4c0e-a44c-bd0e50b019e7", + "x-ms-routing-request-id": "JAPANEAST:20230322T072112Z:63ec9975-066f-42a4-a066-b56ccb251deb" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/81d0de9b-55eb-4f05-b674-c79c7e82ad6d", - "name": "81d0de9b-55eb-4f05-b674-c79c7e82ad6d", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ecf7a7bd-60dc-411a-85d2-0e6fe032c829", + "name": "ecf7a7bd-60dc-411a-85d2-0e6fe032c829", "status": "Succeeded", - "startTime": "9/7/2022 7:10:46 AM", - "endTime": "9/7/2022 7:10:47 AM", + "startTime": "3/22/2023 7:20:56 AM", + "endTime": "3/22/2023 7:20:57 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4400?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-63cfb3bc7eef324cab8738293041f3de-a5fdd78cd4cf9d4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "68cf38d40c6e79c9ad745b1e11bd2d2e", + "traceparent": "00-d4aeaab9c36ff01f912bd0b74223f24d-265d2040780d7a32-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "25e14cb4617c2d4c5b11f5ad71345f7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1839", + "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:02 GMT", + "Date": "Wed, 22 Mar 2023 07:21:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b78a231d-6572-4b8b-874a-6372f184c956", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "e06fe000-714d-42a4-8839-a526fc0b81ef", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071103Z:b78a231d-6572-4b8b-874a-6372f184c956" + "x-ms-correlation-request-id": "1996d88a-c898-4981-a877-45edc8ce9f68", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "a10b642d-7c74-4d4f-8288-596e6f52ba18", + "x-ms-routing-request-id": "JAPANEAST:20230322T072112Z:1996d88a-c898-4981-a877-45edc8ce9f68" }, "ResponseBody": { - "name": "MoverResource-959", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959", + "name": "MoverResource-4400", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4400", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6370/providers/Microsoft.Network/virtualNetworks/Vnet-8281", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-4589" + "targetResourceName": "targetVnet-7911" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6370/providers/Microsoft.Network/virtualNetworks/Vnet-8281\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,60 +334,60 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-3354", + "name": "Subnet-2765", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-5234" + "targetResourceName": "Vnet-8281" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:10:45.6451777Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:20:55.7522071Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:10:45.6451777Z" + "lastModifiedAt": "2023-03-22T07:20:55.7522071Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4400?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2c843d28a99c9a4fbef4ab197a0bb161-27b8c0a48cb29142-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "1f19064233209393bd73d56c6f06fa9a", + "traceparent": "00-8caab6db2f0c4b023f20c51cf316066d-8c55d4bc2e0c04e7-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3845102315546e9f623c9ff8a2d40bc0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1839", + "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:03 GMT", + "Date": "Wed, 22 Mar 2023 07:21:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24cba7e7-2f51-461e-85b9-d3f212039f93", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "81458edf-f9ac-4e90-bdc4-821342f78cf4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071103Z:24cba7e7-2f51-461e-85b9-d3f212039f93" + "x-ms-correlation-request-id": "e185fd77-86c2-44cf-a63b-59ad81ccea0a", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "529d9ae8-28cf-4e67-b815-a3d338a377ec", + "x-ms-routing-request-id": "JAPANEAST:20230322T072113Z:e185fd77-86c2-44cf-a63b-59ad81ccea0a" }, "ResponseBody": { - "name": "MoverResource-959", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959", + "name": "MoverResource-4400", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4400", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6370/providers/Microsoft.Network/virtualNetworks/Vnet-8281", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -626,7 +397,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-4589" + "targetResourceName": "targetVnet-7911" }, "moveStatus": { "moveState": "PreparePending", @@ -634,7 +405,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6370/providers/Microsoft.Network/virtualNetworks/Vnet-8281\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -651,29 +422,29 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-3354", + "name": "Subnet-2765", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-5234" + "targetResourceName": "Vnet-8281" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:10:45.6451777Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:20:55.7522071Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:10:45.6451777Z" + "lastModifiedAt": "2023-03-22T07:20:55.7522071Z" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1383779879", + "RandomSeed": "290472546", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get()Async.json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get()Async.json index b2dcc7304f4c..b7a5929f47cc 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get()Async.json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/Get()Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-27ad4c400f01a340802fb1518cdd256a-9ae39061884ce84c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "61f391b1c9ffab5b48aad3c19a8f4b8b", + "traceparent": "00-7953fd0160cb240ea29f9ef68903d936-bf96801dae878e8b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "68132335d391d8b77ae639ec632f6296", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:13 GMT", + "Date": "Wed, 22 Mar 2023 07:17:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a72fccd-4795-4f94-8b1a-5bc46a2d8e77", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0a72fccd-4795-4f94-8b1a-5bc46a2d8e77", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072714Z:0a72fccd-4795-4f94-8b1a-5bc46a2d8e77" + "x-ms-correlation-request-id": "b91f90fa-f3e6-4e69-b494-262faef07391", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "b91f90fa-f3e6-4e69-b494-262faef07391", + "x-ms-routing-request-id": "JAPANEAST:20230322T071712Z:b91f90fa-f3e6-4e69-b494-262faef07391" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c506bae2e0b9bb478dc0846013905fff-4c45b9a87a53154a-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "5aed82597a133031d62d6623e159396c", + "traceparent": "00-a78f30d8c36045083e56ca710a4a4b86-6482388b833b8a2d-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7eb1ef0dcd8d994b93a839f74abd4270", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:15 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Wed, 22 Mar 2023 07:17:12 GMT", + "ETag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f10d5971-9914-45c1-8fef-6ce74e158616", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "d76ca316-0204-4fde-bb1e-11ffb950bf10", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072716Z:f10d5971-9914-45c1-8fef-6ce74e158616" + "x-ms-correlation-request-id": "141eb971-7281-47df-9fcc-143d42ab7d0c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "59822f48-670d-4d8b-9540-a2f49048f00e", + "x-ms-routing-request-id": "JAPANEAST:20230322T071712Z:141eb971-7281-47df-9fcc-143d42ab7d0c" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u0022420076a4-0000-0200-0000-6419f2610000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5470?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-4812?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-ed5c16c38f947a4ea2d88a0afe58e078-d6f514e2b4c3cd49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4cb3c1b34dbc3caaebf1f261f485cbef", + "traceparent": "00-8eb20d744509ac31e2f3922ca94d272f-134339e52a41f1dc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e9d8d9d4a859a5ccc6ce03d1567201f1", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:18 GMT", + "Date": "Wed, 22 Mar 2023 07:17:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13c784fd-001b-4ce2-bb99-60a563da0029", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "13c784fd-001b-4ce2-bb99-60a563da0029", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072719Z:13c784fd-001b-4ce2-bb99-60a563da0029" + "x-ms-correlation-request-id": "acb3ed1b-e89c-47db-868e-c7f10aafaa8f", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "acb3ed1b-e89c-47db-868e-c7f10aafaa8f", + "x-ms-routing-request-id": "JAPANEAST:20230322T071713Z:acb3ed1b-e89c-47db-868e-c7f10aafaa8f" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470", - "name": "testRg-ResourceMover-5470", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-4812", + "name": "testRg-ResourceMover-4812", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,357 +152,128 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-fdf4a88d03ec5f4eb3fbb0bbfa5818fa-78e84a80ebcff548-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "db34ec415f378ac2d26237c9ee716635", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-9563", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/9f1d9104-d444-40eb-b5a4-b23f2ba7c1cc?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1b474bbd-caff-4536-bb42-2bb54309611a", - "x-ms-client-request-id": "db34ec415f378ac2d26237c9ee716635", - "x-ms-correlation-request-id": "ab4c269a-4737-4e9d-90dc-79bcc910858f", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "9f1d9104-d444-40eb-b5a4-b23f2ba7c1cc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072726Z:ab4c269a-4737-4e9d-90dc-79bcc910858f" - }, - "ResponseBody": { - "name": "Vnet-8771", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771", - "etag": "W/\u0022b742d241-af9a-42c3-bca5-da03884a9f2c\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "6d68facc-61a7-4b5c-aa2d-88c6c79f9c3b", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-9563", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771/subnets/Subnet-9563", - "etag": "W/\u0022b742d241-af9a-42c3-bca5-da03884a9f2c\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/9f1d9104-d444-40eb-b5a4-b23f2ba7c1cc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-fdf4a88d03ec5f4eb3fbb0bbfa5818fa-13e004e93e126843-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "80f72656d758548989317b4704210381", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e162fd8e-3e4b-4d04-8203-145c43ab82dc", - "x-ms-client-request-id": "80f72656d758548989317b4704210381", - "x-ms-correlation-request-id": "51b335e3-5d73-4270-a74e-bea37c41d681", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "c7ebcf4b-f1e8-47cb-a24f-e7f772fefa6a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072726Z:51b335e3-5d73-4270-a74e-bea37c41d681" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/9f1d9104-d444-40eb-b5a4-b23f2ba7c1cc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-fdf4a88d03ec5f4eb3fbb0bbfa5818fa-b59e0d442a16d447-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "fd9dbefa4c570c96a915b3af20f3a82a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a0bebb8b-6d7e-45ce-b370-1ccf99dcf586", - "x-ms-client-request-id": "fd9dbefa4c570c96a915b3af20f3a82a", - "x-ms-correlation-request-id": "1a3599d7-d790-4f43-bd4d-283d3eedb131", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "d8de750c-9550-4e17-8ee8-246805dd66c0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072736Z:1a3599d7-d790-4f43-bd4d-283d3eedb131" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-fdf4a88d03ec5f4eb3fbb0bbfa5818fa-e2e97f796a56c74c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c87304c8e57910dc4444b46bb9fb1906", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:37 GMT", - "ETag": "W/\u0022ed6419e1-372a-49ac-b104-9e55148784c6\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "845d6c8e-3ae2-4cc3-b528-86ea52a5b0b4", - "x-ms-client-request-id": "c87304c8e57910dc4444b46bb9fb1906", - "x-ms-correlation-request-id": "26a5ec74-de6d-440b-a10e-757c88cb71ff", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "57a69a6f-b988-43fe-a656-307187f9cb75", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072737Z:26a5ec74-de6d-440b-a10e-757c88cb71ff" - }, - "ResponseBody": { - "name": "Vnet-8771", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771", - "etag": "W/\u0022ed6419e1-372a-49ac-b104-9e55148784c6\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "6d68facc-61a7-4b5c-aa2d-88c6c79f9c3b", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-9563", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771/subnets/Subnet-9563", - "etag": "W/\u0022ed6419e1-372a-49ac-b104-9e55148784c6\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1797?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4652?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-d640a6c11073704f9293391a252c7101-9f5ce3b93ffd8144-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "9d0923d40adceb8fd74223da33958850", + "traceparent": "00-496405d7636a9a770a9dbfcc8ff020ea-cc79ad9a2f06c989-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2b5201b49d9d1ad1683027778cc9f2a5", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-4812/providers/Microsoft.Network/virtualNetworks/Vnet-1238", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-5854" + "targetResourceName": "targetVnet-9513" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac10b6db-b84b-4119-a790-a26fd69f4a7c?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/88169779-dbfa-4146-9400-161ca36717e3?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:37 GMT", + "Date": "Wed, 22 Mar 2023 07:17:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ce0ceb1-9a58-4121-9e64-59b9b8e63861", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "e738135c-f1f6-495a-bae2-6243ca9951e7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072738Z:3ce0ceb1-9a58-4121-9e64-59b9b8e63861" + "x-ms-correlation-request-id": "133a82c5-a4bd-47a1-8a7f-f62f1b24354c", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "104e24f2-95d8-415b-907d-7556a5705eb0", + "x-ms-routing-request-id": "JAPANEAST:20230322T071718Z:133a82c5-a4bd-47a1-8a7f-f62f1b24354c" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac10b6db-b84b-4119-a790-a26fd69f4a7c?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/88169779-dbfa-4146-9400-161ca36717e3?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d640a6c11073704f9293391a252c7101-ba223409f29a054c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "851f622a2a206827388e0e9aec69101e", + "traceparent": "00-496405d7636a9a770a9dbfcc8ff020ea-74ae8f6dd3d18b05-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e66791fd1aecd84b2ea479cb2927e21", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac10b6db-b84b-4119-a790-a26fd69f4a7c?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/88169779-dbfa-4146-9400-161ca36717e3?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:38 GMT", + "Date": "Wed, 22 Mar 2023 07:17:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf385179-545f-4c37-9884-464d6fbccf41", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "10ceeab3-21d0-4b00-975f-f607f48c6850", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072739Z:bf385179-545f-4c37-9884-464d6fbccf41" + "x-ms-correlation-request-id": "1046f1a5-8268-48d8-a830-e00b8d3103d7", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a75f31d2-d338-44bc-817d-b8e395b97596", + "x-ms-routing-request-id": "JAPANEAST:20230322T071719Z:1046f1a5-8268-48d8-a830-e00b8d3103d7" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac10b6db-b84b-4119-a790-a26fd69f4a7c", - "name": "ac10b6db-b84b-4119-a790-a26fd69f4a7c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/88169779-dbfa-4146-9400-161ca36717e3", + "name": "88169779-dbfa-4146-9400-161ca36717e3", "status": "Running", - "startTime": "9/7/2022 7:27:38 AM", + "startTime": "3/22/2023 7:17:18 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac10b6db-b84b-4119-a790-a26fd69f4a7c?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/88169779-dbfa-4146-9400-161ca36717e3?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d640a6c11073704f9293391a252c7101-61c1eaba96d4c24f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "187b69e24a58bfb5417ce5c973649828", + "traceparent": "00-496405d7636a9a770a9dbfcc8ff020ea-ccad22d146a1b3d3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6fcf8b734d0b8b8213dc98998dbc12b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:54 GMT", + "Date": "Wed, 22 Mar 2023 07:17:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d514e485-0c3f-4821-aac1-0fe5fc78f596", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "fe307669-c37e-461d-9ce2-3eb088fd1ce4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072755Z:d514e485-0c3f-4821-aac1-0fe5fc78f596" + "x-ms-correlation-request-id": "95019545-9f79-4f7d-9e62-7f17fd59532b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "4f5f3598-ccce-4b26-b7ba-3612b43ca79d", + "x-ms-routing-request-id": "JAPANEAST:20230322T071734Z:95019545-9f79-4f7d-9e62-7f17fd59532b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/ac10b6db-b84b-4119-a790-a26fd69f4a7c", - "name": "ac10b6db-b84b-4119-a790-a26fd69f4a7c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/88169779-dbfa-4146-9400-161ca36717e3", + "name": "88169779-dbfa-4146-9400-161ca36717e3", "status": "Succeeded", - "startTime": "9/7/2022 7:27:38 AM", - "endTime": "9/7/2022 7:27:40 AM", + "startTime": "3/22/2023 7:17:18 AM", + "endTime": "3/22/2023 7:17:20 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1797?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4652?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d640a6c11073704f9293391a252c7101-d3d567ae0a599c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "d1b076460376552fd94502790647a14e", + "traceparent": "00-496405d7636a9a770a9dbfcc8ff020ea-fbcae050f177c171-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "12587d3ee36204f71d6b31b2e151c300", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -511,24 +282,24 @@ "Cache-Control": "no-cache", "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:55 GMT", + "Date": "Wed, 22 Mar 2023 07:17:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d978735c-ac93-4369-8f11-c758bc667a96", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "8e0d69e6-6fc6-4244-b71f-ad9d3deb08f1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072756Z:d978735c-ac93-4369-8f11-c758bc667a96" + "x-ms-correlation-request-id": "8ddd44f3-d57a-4cbe-8c1f-0984febbf0b0", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "8abde1d6-2cef-42a0-a3e6-867d7e38437a", + "x-ms-routing-request-id": "JAPANEAST:20230322T071734Z:8ddd44f3-d57a-4cbe-8c1f-0984febbf0b0" }, "ResponseBody": { - "name": "MoverResource-1797", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1797", + "name": "MoverResource-4652", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4652", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-4812/providers/Microsoft.Network/virtualNetworks/Vnet-1238", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-5854" + "targetResourceName": "targetVnet-9513" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-4812/providers/Microsoft.Network/virtualNetworks/Vnet-1238\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,34 +334,34 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-9563", + "name": "Subnet-7411", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-8771" + "targetResourceName": "Vnet-1238" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:27:37.8674156Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:17:18.0667549Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:27:37.8674156Z" + "lastModifiedAt": "2023-03-22T07:17:18.0667549Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1797?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4652?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d687cb5813fe6f44887bd6a30de60e15-d2c5e9aa6d82234c-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e9487802e332df55ad6043a4455df5d3", + "traceparent": "00-176f3e1f7e3e2716aa1c86b53beefa9a-54631ebc318a6e03-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230322.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ca1ee8582e4d19ff7dafbd139eb3ff6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -599,24 +370,24 @@ "Cache-Control": "no-cache", "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:27:55 GMT", + "Date": "Wed, 22 Mar 2023 07:17:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d6deb43-8052-4bc6-b15e-4973284031f2", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "52a28d96-96fc-41a9-88f0-94a4aa531c0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072756Z:7d6deb43-8052-4bc6-b15e-4973284031f2" + "x-ms-correlation-request-id": "94fda43c-0e4e-444f-a98b-21de68bb36b6", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "a952948a-85e8-4496-a8d7-0d5ba36942e2", + "x-ms-routing-request-id": "JAPANEAST:20230322T071735Z:94fda43c-0e4e-444f-a98b-21de68bb36b6" }, "ResponseBody": { - "name": "MoverResource-1797", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1797", + "name": "MoverResource-4652", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4652", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-4812/providers/Microsoft.Network/virtualNetworks/Vnet-1238", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -626,7 +397,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-5854" + "targetResourceName": "targetVnet-9513" }, "moveStatus": { "moveState": "PreparePending", @@ -634,7 +405,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-4812/providers/Microsoft.Network/virtualNetworks/Vnet-1238\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -651,29 +422,29 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-9563", + "name": "Subnet-7411", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-8771" + "targetResourceName": "Vnet-1238" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:27:37.8674156Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T07:17:18.0667549Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:27:37.8674156Z" + "lastModifiedAt": "2023-03-22T07:17:18.0667549Z" } } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1386519011", + "RandomSeed": "1728633519", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List().json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List().json index c465a9ccca15..16299f8f50ab 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List().json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List().json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2d150eee0053924d921f13725c989714-072e5283b8e88c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b90c58a21ac6cdf3caa1f564531c4e6b", + "traceparent": "00-1883ce2034160e2c6b5f88ac888aa8a7-4698571a2b7584ae-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e6f0c122f2ea3d4c50b1f005bbfc3cec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:11 GMT", + "Date": "Thu, 23 Mar 2023 02:52:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d173283-2495-4d9d-9af8-a70f1e63a06b", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "7d173283-2495-4d9d-9af8-a70f1e63a06b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071111Z:7d173283-2495-4d9d-9af8-a70f1e63a06b" + "x-ms-correlation-request-id": "4c80b14d-4e82-4328-8750-0ff863511eb6", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "4c80b14d-4e82-4328-8750-0ff863511eb6", + "x-ms-routing-request-id": "JAPANEAST:20230323T025244Z:4c80b14d-4e82-4328-8750-0ff863511eb6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c1947b7c4a448b42b065de82021e5727-bb4dbc7251bace43-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "70f005d40a88665a8f024e8b068181b2", + "traceparent": "00-7a7d78d4454ff71bb3fe68c948b71925-7fd6e0a5bcba0935-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230323.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5851c1c85ab7c9c000d65de067e94c1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:11 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Thu, 23 Mar 2023 02:52:44 GMT", + "ETag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43e10111-3ab6-4a80-9138-e5a3a92e65da", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "7dbd28f3-9895-4436-9e38-c9b74bc645f3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071112Z:43e10111-3ab6-4a80-9138-e5a3a92e65da" + "x-ms-correlation-request-id": "a1ee4c20-a4ef-4e70-b9dd-0a387aeda579", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "425b0273-2082-4188-96c6-7fb8f5efd215", + "x-ms-routing-request-id": "JAPANEAST:20230323T025245Z:a1ee4c20-a4ef-4e70-b9dd-0a387aeda579" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-214?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-1288?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-8f8861b9a843564f9c7bfa95f8c9958e-3ec6a0b8953d1143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "ae40b1d142fff26e00273aa05d15fa5b", + "traceparent": "00-cd14c9a87d2148c53a21e20e8424cf3d-31e55ec2118eb260-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4535e0be1f4cd055a36212eb272032ec", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -129,21 +129,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "245", + "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:13 GMT", + "Date": "Thu, 23 Mar 2023 02:52:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba564853-e676-4a41-ab82-f65a88510c4e", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "ba564853-e676-4a41-ab82-f65a88510c4e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071113Z:ba564853-e676-4a41-ab82-f65a88510c4e" + "x-ms-correlation-request-id": "6c30027e-dded-41c0-a2b5-e46673e6438b", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "6c30027e-dded-41c0-a2b5-e46673e6438b", + "x-ms-routing-request-id": "JAPANEAST:20230323T025247Z:6c30027e-dded-41c0-a2b5-e46673e6438b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214", - "name": "testRg-ResourceMover-214", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1288", + "name": "testRg-ResourceMover-1288", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,357 +152,128 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9734?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "167", + "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-aaafc2e529a6fc42b49a4e84b092a2b1-3e0fe40783c84644-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "73c3b86dfe972aa5c3cc67c74920433d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-5259", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/1253677f-8bac-46b3-94de-67a9a849d157?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1253", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "495c1bcf-216d-4cae-a00c-7e7b971ff025", - "x-ms-client-request-id": "73c3b86dfe972aa5c3cc67c74920433d", - "x-ms-correlation-request-id": "048314d1-5912-4069-befc-282a3cfde4a5", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "1253677f-8bac-46b3-94de-67a9a849d157", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071117Z:048314d1-5912-4069-befc-282a3cfde4a5" - }, - "ResponseBody": { - "name": "Vnet-6878", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878", - "etag": "W/\u00229f46ee97-7f40-4c48-9106-604168da5981\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "96b9ff46-a225-4d54-82ed-e82e9c56b7bd", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-5259", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878/subnets/Subnet-5259", - "etag": "W/\u00229f46ee97-7f40-4c48-9106-604168da5981\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/1253677f-8bac-46b3-94de-67a9a849d157?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aaafc2e529a6fc42b49a4e84b092a2b1-2254328d4447804b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "f914c6205d63411909d57ea18b38dd1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2c1605e4-7d8f-4570-83ae-07004b5439fc", - "x-ms-client-request-id": "f914c6205d63411909d57ea18b38dd1a", - "x-ms-correlation-request-id": "ab5f13a6-4ada-407f-ad8d-06832a59e1fe", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "30dbe9cd-a34f-4c86-8b9d-9ded3a65088c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071117Z:ab5f13a6-4ada-407f-ad8d-06832a59e1fe" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/1253677f-8bac-46b3-94de-67a9a849d157?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aaafc2e529a6fc42b49a4e84b092a2b1-026e77817a2f8b41-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8f931f5d284ea9e53545eab4dfdff8d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a1fdbf9a-9ce5-4b65-a7e8-0b220eafbc93", - "x-ms-client-request-id": "8f931f5d284ea9e53545eab4dfdff8d6", - "x-ms-correlation-request-id": "35893101-0db7-4da9-bac1-df40afaebbbe", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "b3844be5-958f-470b-904f-ec6499048591", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071128Z:35893101-0db7-4da9-bac1-df40afaebbbe" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aaafc2e529a6fc42b49a4e84b092a2b1-fa559cfcbe77b14a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "82a63678490c23d951cbb4ff45e0f24f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:28 GMT", - "ETag": "W/\u00226ec501a1-3cd0-4fd6-b19c-2a87ca908438\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "446b8a38-1fc2-4f4c-b918-fdb002a218a3", - "x-ms-client-request-id": "82a63678490c23d951cbb4ff45e0f24f", - "x-ms-correlation-request-id": "a0b51ed1-874a-4c4e-93c3-86851ee73d3e", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "570b42c8-4fda-4e83-82f8-b973bcbf6cac", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071129Z:a0b51ed1-874a-4c4e-93c3-86851ee73d3e" - }, - "ResponseBody": { - "name": "Vnet-6878", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878", - "etag": "W/\u00226ec501a1-3cd0-4fd6-b19c-2a87ca908438\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "96b9ff46-a225-4d54-82ed-e82e9c56b7bd", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-5259", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878/subnets/Subnet-5259", - "etag": "W/\u00226ec501a1-3cd0-4fd6-b19c-2a87ca908438\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1010?api-version=2021-08-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "286", - "Content-Type": "application/json", - "traceparent": "00-a01a48d91b21514e8f26707f5851baef-5e36b32825c6234b-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c45a1268f8e26ae1c41e73646229dca8", + "traceparent": "00-34ee991b9e71fb4625957090699ac255-88050c244e51ba8d-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230323.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8205ae8f29721baa95ec6b5a2a4e1484", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1288/providers/Microsoft.Network/virtualNetworks/Vnet-8490", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-2567" + "targetResourceName": "targetVnet-3240" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/818f5b0a-9f3a-4235-82cf-6f60b7f71349?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bb0f93d0-3f5d-41e7-aff6-be5b882185b8?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:29 GMT", + "Date": "Thu, 23 Mar 2023 02:52:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ae5dafb-8061-44d4-aaf1-fbe117a796bd", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "44dff795-adaf-415e-89e6-5994ac01a02e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071129Z:9ae5dafb-8061-44d4-aaf1-fbe117a796bd" + "x-ms-correlation-request-id": "6001b879-821a-4365-9b63-f2f91cc405e3", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "cc441ef4-62dc-435b-bd90-e71848690a08", + "x-ms-routing-request-id": "JAPANEAST:20230323T025253Z:6001b879-821a-4365-9b63-f2f91cc405e3" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/818f5b0a-9f3a-4235-82cf-6f60b7f71349?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bb0f93d0-3f5d-41e7-aff6-be5b882185b8?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a01a48d91b21514e8f26707f5851baef-48c398274b407b47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e576daafb47cae54a1a185bbb0ed698a", + "traceparent": "00-34ee991b9e71fb4625957090699ac255-98599a81ae601350-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "40b92c8c4a66d2cfd1615d5df55f03ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/818f5b0a-9f3a-4235-82cf-6f60b7f71349?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bb0f93d0-3f5d-41e7-aff6-be5b882185b8?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:29 GMT", + "Date": "Thu, 23 Mar 2023 02:52:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ed223cf-5b67-4527-8377-fa24f8232709", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "51d5fc81-5f01-4e67-aa10-0213b4aa8ac2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071130Z:7ed223cf-5b67-4527-8377-fa24f8232709" + "x-ms-correlation-request-id": "b0cb6510-81f1-476b-bebf-914086dde3e4", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "12660208-2d27-4388-afb9-c766a945e2fd", + "x-ms-routing-request-id": "JAPANEAST:20230323T025254Z:b0cb6510-81f1-476b-bebf-914086dde3e4" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/818f5b0a-9f3a-4235-82cf-6f60b7f71349", - "name": "818f5b0a-9f3a-4235-82cf-6f60b7f71349", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bb0f93d0-3f5d-41e7-aff6-be5b882185b8", + "name": "bb0f93d0-3f5d-41e7-aff6-be5b882185b8", "status": "Running", - "startTime": "9/7/2022 7:11:29 AM", + "startTime": "3/23/2023 2:52:53 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/818f5b0a-9f3a-4235-82cf-6f60b7f71349?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bb0f93d0-3f5d-41e7-aff6-be5b882185b8?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a01a48d91b21514e8f26707f5851baef-c3a1a2d3dff3cd4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "9eb79c23a9bd55f7ccea875f84fb066f", + "traceparent": "00-34ee991b9e71fb4625957090699ac255-55e6e469f9d98bce-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eba88eaf2d883b784105e8f558a99eff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:46 GMT", + "Date": "Thu, 23 Mar 2023 02:53:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "109b9af9-24a9-404a-8288-b9695845411b", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "2f013bb7-6410-46b9-b1b8-937dce3387c3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071146Z:109b9af9-24a9-404a-8288-b9695845411b" + "x-ms-correlation-request-id": "49432224-0603-45eb-bd62-aa32dfb2cd8d", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "ae24e603-e640-4bf8-896c-5df1672230af", + "x-ms-routing-request-id": "JAPANEAST:20230323T025309Z:49432224-0603-45eb-bd62-aa32dfb2cd8d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/818f5b0a-9f3a-4235-82cf-6f60b7f71349", - "name": "818f5b0a-9f3a-4235-82cf-6f60b7f71349", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/bb0f93d0-3f5d-41e7-aff6-be5b882185b8", + "name": "bb0f93d0-3f5d-41e7-aff6-be5b882185b8", "status": "Succeeded", - "startTime": "9/7/2022 7:11:29 AM", - "endTime": "9/7/2022 7:11:31 AM", + "startTime": "3/23/2023 2:52:53 AM", + "endTime": "3/23/2023 2:52:55 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1010?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9734?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a01a48d91b21514e8f26707f5851baef-f75fb62c5b905b4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "88b4d8ccf6b2752cffe4ba6b8e8bbe4f", + "traceparent": "00-34ee991b9e71fb4625957090699ac255-01fc6297e744c112-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fece9a38d4950e1d8bf524daf70f0a3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -511,24 +282,24 @@ "Cache-Control": "no-cache", "Content-Length": "1839", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:46 GMT", + "Date": "Thu, 23 Mar 2023 02:53:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b03a43ee-3264-4362-859b-7c8dfb0ed613", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "d79557f4-96c6-4ff6-9844-99fe190c26b2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071146Z:b03a43ee-3264-4362-859b-7c8dfb0ed613" + "x-ms-correlation-request-id": "170cd26b-b4bf-4504-a06e-7d48d04b4e0e", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "586d0abe-936e-4330-ba75-d59332490400", + "x-ms-routing-request-id": "JAPANEAST:20230323T025310Z:170cd26b-b4bf-4504-a06e-7d48d04b4e0e" }, "ResponseBody": { - "name": "MoverResource-1010", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1010", + "name": "MoverResource-9734", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9734", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1288/providers/Microsoft.Network/virtualNetworks/Vnet-8490", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -538,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-2567" + "targetResourceName": "targetVnet-3240" }, "moveStatus": { "moveState": "PreparePending", @@ -546,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1288/providers/Microsoft.Network/virtualNetworks/Vnet-8490\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -563,22 +334,22 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-5259", + "name": "Subnet-1269", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-6878" + "targetResourceName": "Vnet-8490" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:11:29.3485952Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:52:53.078135Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:11:29.3485952Z" + "lastModifiedAt": "2023-03-23T02:52:53.078135Z" } } }, @@ -588,577 +359,367 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0c3606eede780b40a2a7d8928e7827c1-6615ce8e6969254f-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c7c2e919b39d06dde22119912df42aa5", + "traceparent": "00-694e7c08c126a4be819dfff92d32a967-883fcd5fea9f60ac-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230323.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ef510179c8ed5e47b37efe6062da7927", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "22073", + "Content-Length": "17365", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:11:47 GMT", + "Date": "Thu, 23 Mar 2023 02:53:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a45c2c5-a545-42e0-971e-8e4e391e00ff", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "2fc6863c-312d-4777-9c65-d3a74cd3b231", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T071147Z:1a45c2c5-a545-42e0-971e-8e4e391e00ff" + "x-ms-correlation-request-id": "d13b9975-68c2-4940-afef-4a512c416d64", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "e154f87a-9216-45cf-8f67-bd59660260d5", + "x-ms-routing-request-id": "JAPANEAST:20230323T025310Z:d13b9975-68c2-4940-afef-4a512c416d64" }, "ResponseBody": { "value": [ { - "name": "MoverResource-7904", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7904", + "name": "MoverResource-445", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-445", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-5917", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-843", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-18" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-843" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-5917\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-2482", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-5917" - } + "sourceResourceSettings": null }, "systemData": { "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", "createdByType": "Application", - "createdAt": "2022-09-07T06:59:03.12393Z", + "createdAt": "2022-09-07T08:41:47.459326Z", "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T06:59:03.12393Z" + "lastModifiedAt": "2022-09-07T08:41:47.459326Z" } }, { - "name": "MoverResource-4740", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4740", + "name": "MoverResource-6665", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6665", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-3008", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8536", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-10", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-10", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-6827" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-8536" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-3008\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-7259", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-3008" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T06:59:36.2024321Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T05:48:24.4164814Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T06:59:36.2024321Z" + "lastModifiedAt": "2023-03-22T05:48:24.4164814Z" } }, { - "name": "MoverResource-145", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-145", + "name": "MoverResource-6918", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6918", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-7608", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8660", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4623", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4623", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-2991" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-8660" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-7608\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-4941", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-7608" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:00:01.6873298Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T05:53:21.9562828Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:00:01.6873298Z" + "lastModifiedAt": "2023-03-22T05:53:21.9562828Z" } }, { - "name": "MoverResource-8653", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8653", + "name": "MoverResource-1210", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1210", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2676", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-2229", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-9589", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-9589", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-1250" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-2229" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2676\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-3096", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2676" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:00:37.375515Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T05:57:36.3315634Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:00:37.375515Z" + "lastModifiedAt": "2023-03-22T05:57:36.3315634Z" } }, { - "name": "MoverResource-7163", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7163", + "name": "MoverResource-7186", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7186", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-1271", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-1244", "targetId": null, - "existingTargetId": null, + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4946", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-5415" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-1244" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "CommitPending", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-1271\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-9460", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-1271" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:01:13.7199167Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T06:02:02.9471173Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:01:13.7199167Z" + "lastModifiedAt": "2023-03-22T06:02:02.9471173Z" } }, { - "name": "MoverResource-9281", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9281", + "name": "MoverResource-1327", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1327", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2403", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-6297", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5375", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5375", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-2476" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-6297" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2403\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-4959", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2403" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:01:49.5798986Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T06:08:08.0482161Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:01:49.5798986Z" + "lastModifiedAt": "2023-03-22T06:08:08.0482161Z" } }, { - "name": "MoverResource-8382", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8382", + "name": "MoverResource-5528", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-5528", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-631", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3704", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-7346", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-7346", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-3570" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-3704" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-631\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-2978", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-631" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:02:14.5959265Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T06:12:42.8300299Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:02:14.5959265Z" + "lastModifiedAt": "2023-03-22T06:12:42.8300299Z" } }, { - "name": "MoverResource-8783", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8783", + "name": "MoverResource-1240", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1240", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-4965", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-2493", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1839", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1839", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-1666" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-2493" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-4965\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-4441", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-4965" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:02:48.9558314Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:04:11.8762457Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:02:48.9558314Z" + "lastModifiedAt": "2023-03-23T02:04:11.8762457Z" } }, { - "name": "MoverResource-7643", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7643", + "name": "MoverResource-8957", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8957", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3174", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-6005" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-3174" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-3497", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2768" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:09:23.0039944Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:17:34.3401038Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", + "lastModifiedByType": "Application", + "lastModifiedAt": "2023-03-23T02:17:34.3401038Z" + } + }, + { + "name": "MoverResource-1653", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1653", + "type": null, + "properties": { + "provisioningState": "Succeeded", + "isResolveRequired": false, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5224", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", + "resourceSettings": { + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-5224" + }, + "moveStatus": { + "moveState": "ResourceMoveCompleted", + "jobStatus": null, + "errors": null + }, + "dependsOn": [], + "dependsOnOverrides": [], + "errors": null, + "sourceResourceSettings": null + }, + "systemData": { + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", + "createdByType": "Application", + "createdAt": "2023-03-23T02:22:31.0734353Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:09:23.0039944Z" + "lastModifiedAt": "2023-03-23T02:22:31.0734353Z" } }, { - "name": "MoverResource-2629", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2629", + "name": "MoverResource000", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource000", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6629/providers/Microsoft.Network/virtualNetworks/Vnet-2706", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ResourceMoverRG1284/providers/Microsoft.Network/virtualNetworks/vnet0000", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -1168,7 +729,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-8417" + "targetResourceName": "targetVnet000" }, "moveStatus": { "moveState": "PreparePending", @@ -1176,7 +737,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6629/providers/Microsoft.Network/virtualNetworks/Vnet-2706\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ResourceMoverRG1284/providers/Microsoft.Network/virtualNetworks/vnet0000\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -1193,32 +754,32 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-2305", + "name": "Subnet0000", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-2706" + "targetResourceName": "vnet0000" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:10:05.691784Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:44:23.2161816Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:10:05.691784Z" + "lastModifiedAt": "2023-03-23T02:44:23.2161816Z" } }, { - "name": "MoverResource-959", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959", + "name": "MoverResource-9595", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9595", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -1228,7 +789,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-4589" + "targetResourceName": "targetVnet-9792" }, "moveStatus": { "moveState": "PreparePending", @@ -1236,7 +797,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -1253,32 +814,32 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-3354", + "name": "Subnet-5932", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-5234" + "targetResourceName": "Vnet-7223" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:10:45.6451777Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:52:10.6078659Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:10:45.6451777Z" + "lastModifiedAt": "2023-03-23T02:52:10.6078659Z" } }, { - "name": "MoverResource-1010", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1010", + "name": "MoverResource-9734", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9734", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1288/providers/Microsoft.Network/virtualNetworks/Vnet-8490", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -1288,7 +849,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-2567" + "targetResourceName": "targetVnet-3240" }, "moveStatus": { "moveState": "PreparePending", @@ -1296,7 +857,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-1288/providers/Microsoft.Network/virtualNetworks/Vnet-8490\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -1313,34 +874,34 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-5259", + "name": "Subnet-1269", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-6878" + "targetResourceName": "Vnet-8490" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:11:29.3485952Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:52:53.078135Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:11:29.3485952Z" + "lastModifiedAt": "2023-03-23T02:52:53.078135Z" } } ], "nextLink": null, - "totalCount": 12, + "totalCount": 13, "summaryCollection": null } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "57320644", + "RandomSeed": "277179818", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List()Async.json b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List()Async.json index 8fc2c660e432..420cd5d8f87d 100644 --- a/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List()Async.json +++ b/sdk/resourcemover/Azure.ResourceManager.ResourceMover/tests/SessionRecords/MoverResourceTests/List()Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-08255d3e37b6ac4d844258ad263cdb35-7ab3a13d1a777b47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "f9fcbf60ff996d22372f208a7cce72ca", + "traceparent": "00-8459930b977b8330bcf50086821b3d36-32fe4b362b0b85fa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a1d12ca25732796c089b55f80494b18b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:19 GMT", + "Date": "Thu, 23 Mar 2023 02:51:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b0cc359-83bd-48d4-bb1b-52be95f01593", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "0b0cc359-83bd-48d4-bb1b-52be95f01593", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072820Z:0b0cc359-83bd-48d4-bb1b-52be95f01593" + "x-ms-correlation-request-id": "d8964029-7e94-426c-bfd3-070b87da145e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "d8964029-7e94-426c-bfd3-070b87da145e", + "x-ms-routing-request-id": "JAPANEAST:20230323T025149Z:d8964029-7e94-426c-bfd3-070b87da145e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -61,9 +61,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6fb0af912cf97f4aa3b92f6b04a64610-f37a71e720f8a841-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "75b6f1faff2ca4b5007a1318433f6f75", + "traceparent": "00-a3c40513b7700ff86303d93188206ad2-c5d5bd01a6e32fb4-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230323.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0f752ff2dadc559bf60711708ac20226", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -72,22 +72,22 @@ "Cache-Control": "no-cache", "Content-Length": "782", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:22 GMT", - "ETag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "Date": "Thu, 23 Mar 2023 02:51:50 GMT", + "ETag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "263c9d41-8485-4aad-a41b-e33cb1e4ba21", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "43274d98-cdd2-40a7-b7e8-61a1cec38483", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072823Z:263c9d41-8485-4aad-a41b-e33cb1e4ba21" + "x-ms-correlation-request-id": "5e1173cb-5f77-40e4-b652-8ebbc482fc04", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "7f1e0c25-faf3-4c40-a639-a7553d738487", + "x-ms-routing-request-id": "JAPANEAST:20230323T025151Z:5e1173cb-5f77-40e4-b652-8ebbc482fc04" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection", "name": "testMoveCollection", "type": "Microsoft.Migrate/moveCollections", - "etag": "\u0022580033ea-0000-0200-0000-631816710000\u0022", + "etag": "\u00224f003e74-0000-0200-0000-641b43de0000\u0022", "location": "eastus2", "properties": { "sourceRegion": "eastus", @@ -111,16 +111,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-2500?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-7298?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "21", "Content-Type": "application/json", - "traceparent": "00-5470addeca8c994987646e6b562ba609-3d8ff7c302bf6f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "522e339e3b53f7cede23aa26232c4925", + "traceparent": "00-312f9ca0e7737ccf96ffa27c2287f387-52f9fc80d977e42e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8ebedba33690933da4ec930005dfe89c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -131,19 +131,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:25 GMT", + "Date": "Thu, 23 Mar 2023 02:51:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d268425-f61c-4f07-a87e-c0d30005e3f9", + "x-ms-correlation-request-id": "82d26e9a-3ee8-4ac2-afd2-64f62e1daf48", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "6d268425-f61c-4f07-a87e-c0d30005e3f9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072826Z:6d268425-f61c-4f07-a87e-c0d30005e3f9" + "x-ms-request-id": "82d26e9a-3ee8-4ac2-afd2-64f62e1daf48", + "x-ms-routing-request-id": "JAPANEAST:20230323T025154Z:82d26e9a-3ee8-4ac2-afd2-64f62e1daf48" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500", - "name": "testRg-ResourceMover-2500", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298", + "name": "testRg-ResourceMover-7298", "type": "Microsoft.Resources/resourceGroups", "location": "eastus", "properties": { @@ -152,320 +152,128 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "167", - "Content-Type": "application/json", - "traceparent": "00-ebec797626b9c44ca1663742f9d65322-bd6b1dae17addf45-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "8bd28d0d0961f9571eec092af7c0abad", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1603", - "properties": { - "addressPrefix": "10.0.0.0/24" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/b9d82c49-d619-413b-9629-33bfa7a1357e?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1255", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0f334926-9b1e-4c88-803b-f2ec49a21220", - "x-ms-client-request-id": "8bd28d0d0961f9571eec092af7c0abad", - "x-ms-correlation-request-id": "c0f350c4-8e8e-4c6d-b091-fb16f11d9a90", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b9d82c49-d619-413b-9629-33bfa7a1357e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072831Z:c0f350c4-8e8e-4c6d-b091-fb16f11d9a90" - }, - "ResponseBody": { - "name": "Vnet-9326", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326", - "etag": "W/\u00226b6e7ca3-0311-4a4d-8bbc-a2af3e73c1b7\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "2e9d3780-e155-45cb-9f21-db3b593767d6", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1603", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326/subnets/Subnet-1603", - "etag": "W/\u00226b6e7ca3-0311-4a4d-8bbc-a2af3e73c1b7\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/eastus/operations/b9d82c49-d619-413b-9629-33bfa7a1357e?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ebec797626b9c44ca1663742f9d65322-fd9fd568ca582143-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "e862ee97120b25d2fa5a1ce2edb42be9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c363c8d6-8e63-470b-aa23-ac05e20ca088", - "x-ms-client-request-id": "e862ee97120b25d2fa5a1ce2edb42be9", - "x-ms-correlation-request-id": "0a515a7e-af3b-4b00-96e5-fd31bf90de7a", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "7cb9f413-ea8b-41f7-9d2f-13c7702a8003", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072832Z:0a515a7e-af3b-4b00-96e5-fd31bf90de7a" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ebec797626b9c44ca1663742f9d65322-d583413a9c1c584b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "ae4e767b34e157aaa6533d84fdd91cd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1257", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:32 GMT", - "ETag": "W/\u002226bf8b5d-d73d-4b9e-be21-889ec95a8034\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "27984cb9-ca4e-4a52-a20f-e286f603cb93", - "x-ms-client-request-id": "ae4e767b34e157aaa6533d84fdd91cd0", - "x-ms-correlation-request-id": "4559e61f-0ab9-4508-bd01-d3c128e05beb", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "7dec2447-7707-4088-aa11-8377c09ca726", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072833Z:4559e61f-0ab9-4508-bd01-d3c128e05beb" - }, - "ResponseBody": { - "name": "Vnet-9326", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326", - "etag": "W/\u002226bf8b5d-d73d-4b9e-be21-889ec95a8034\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "eastus", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "2e9d3780-e155-45cb-9f21-db3b593767d6", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "subnets": [ - { - "name": "Subnet-1603", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326/subnets/Subnet-1603", - "etag": "W/\u002226bf8b5d-d73d-4b9e-be21-889ec95a8034\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.0.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8230?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9595?api-version=2021-08-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "287", "Content-Type": "application/json", - "traceparent": "00-0c592f59775989418d1bac6993097cb5-5786c8a99c882843-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "c25d0993cba21fc77c4c98049099b121", + "traceparent": "00-a6ebe80d488f0665ba38ae56fad03ba2-4f9d75c5fa598ad7-00", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230323.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a6672a3cb5953b074ef8ad0a655d90de", "x-ms-return-client-request-id": "true" }, "RequestBody": { "properties": { - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223", "resourceSettings": { "resourceType": "Microsoft.Network/virtualNetworks", - "targetResourceName": "targetVnet-2466" + "targetResourceName": "targetVnet-9792" } } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90d9c3df-11e3-48d1-9e4b-5cb6e437b432?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a5b15fea-339d-4b89-a0ca-a44fe96457d9?api-version=2021-08-01", "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:32 GMT", + "Date": "Thu, 23 Mar 2023 02:52:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bb369fa-16cb-4b3e-9f8e-3480f5448f80", + "x-ms-correlation-request-id": "c257fc26-5840-403f-97b7-8b4289f8f72c", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "ccd8251d-df6b-4b22-ac1f-4597c156a67a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072833Z:9bb369fa-16cb-4b3e-9f8e-3480f5448f80" + "x-ms-request-id": "3159e102-5aa9-4e39-b4a9-d94a1359043e", + "x-ms-routing-request-id": "JAPANEAST:20230323T025211Z:c257fc26-5840-403f-97b7-8b4289f8f72c" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90d9c3df-11e3-48d1-9e4b-5cb6e437b432?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a5b15fea-339d-4b89-a0ca-a44fe96457d9?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0c592f59775989418d1bac6993097cb5-09a2015301dbff49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "2220d7bfb88b83d3e6c2b75dbfa1c2a3", + "traceparent": "00-a6ebe80d488f0665ba38ae56fad03ba2-9057c1d97ce04d6d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "768d7b848f4e8dfb64f899621655dd64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90d9c3df-11e3-48d1-9e4b-5cb6e437b432?api-version=2021-08-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a5b15fea-339d-4b89-a0ca-a44fe96457d9?api-version=2021-08-01", "Cache-Control": "no-cache", - "Content-Length": "350", + "Content-Length": "351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:33 GMT", + "Date": "Thu, 23 Mar 2023 02:52:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "15", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ee883f0-69c9-4ccb-8c7d-03943650182f", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "65c4b864-07d6-4d0f-8007-b943bafea409", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072834Z:6ee883f0-69c9-4ccb-8c7d-03943650182f" + "x-ms-correlation-request-id": "ec166a2a-0d94-484e-b3bb-3e5ddd2ee313", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "8a5981ff-44b2-46f7-b5da-3b3f6d994c22", + "x-ms-routing-request-id": "JAPANEAST:20230323T025211Z:ec166a2a-0d94-484e-b3bb-3e5ddd2ee313" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90d9c3df-11e3-48d1-9e4b-5cb6e437b432", - "name": "90d9c3df-11e3-48d1-9e4b-5cb6e437b432", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a5b15fea-339d-4b89-a0ca-a44fe96457d9", + "name": "a5b15fea-339d-4b89-a0ca-a44fe96457d9", "status": "Running", - "startTime": "9/7/2022 7:28:33 AM", + "startTime": "3/23/2023 2:52:10 AM", "endTime": null, "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90d9c3df-11e3-48d1-9e4b-5cb6e437b432?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a5b15fea-339d-4b89-a0ca-a44fe96457d9?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0c592f59775989418d1bac6993097cb5-73cd414cad00304c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b5d6dcd307d13004c45380eaf679f75c", + "traceparent": "00-a6ebe80d488f0665ba38ae56fad03ba2-6c2e13df0faa4aa6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e78dfe541c58af47a61f9d04801bedf5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "369", + "Content-Length": "371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:49 GMT", + "Date": "Thu, 23 Mar 2023 02:52:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ac3039f-778a-4565-9185-d35819108e8e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "5fa98b90-5b91-4bea-92a5-02d8f71bfcd4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072850Z:1ac3039f-778a-4565-9185-d35819108e8e" + "x-ms-correlation-request-id": "9c99d352-f76e-4e1f-b916-09801cfe31aa", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "135ffea9-2d7d-4f6b-a29b-bcc27c14feeb", + "x-ms-routing-request-id": "JAPANEAST:20230323T025227Z:9c99d352-f76e-4e1f-b916-09801cfe31aa" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/90d9c3df-11e3-48d1-9e4b-5cb6e437b432", - "name": "90d9c3df-11e3-48d1-9e4b-5cb6e437b432", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/operations/a5b15fea-339d-4b89-a0ca-a44fe96457d9", + "name": "a5b15fea-339d-4b89-a0ca-a44fe96457d9", "status": "Succeeded", - "startTime": "9/7/2022 7:28:33 AM", - "endTime": "9/7/2022 7:28:35 AM", + "startTime": "3/23/2023 2:52:10 AM", + "endTime": "3/23/2023 2:52:12 AM", "error": null, "properties": {} } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8230?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9595?api-version=2021-08-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-0c592f59775989418d1bac6993097cb5-ff4b0ab07f12ae46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "b9454c0f8e794a95927b344fabe74ba0", + "traceparent": "00-a6ebe80d488f0665ba38ae56fad03ba2-8268de236914d1de-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ea86f6291acf838f077725cdf32131b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -474,24 +282,24 @@ "Cache-Control": "no-cache", "Content-Length": "1841", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:50 GMT", + "Date": "Thu, 23 Mar 2023 02:52:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9397aa00-b6c1-4704-8305-1b9eb688174e", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "62294559-9e12-40f3-9da1-dba159d67c66", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072850Z:9397aa00-b6c1-4704-8305-1b9eb688174e" + "x-ms-correlation-request-id": "a5762c6b-bfdf-45c4-ad00-4f047ac78947", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "be8de8a4-3d2b-4637-80a9-233579342a7b", + "x-ms-routing-request-id": "JAPANEAST:20230323T025227Z:a5762c6b-bfdf-45c4-ad00-4f047ac78947" }, "ResponseBody": { - "name": "MoverResource-8230", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8230", + "name": "MoverResource-9595", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9595", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -501,7 +309,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-2466" + "targetResourceName": "targetVnet-9792" }, "moveStatus": { "moveState": "PreparePending", @@ -509,7 +317,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -526,22 +334,22 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-1603", + "name": "Subnet-5932", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-9326" + "targetResourceName": "Vnet-7223" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:28:33.3180484Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:52:10.6078659Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:28:33.3180484Z" + "lastModifiedAt": "2023-03-23T02:52:10.6078659Z" } } }, @@ -551,817 +359,366 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ae02caa6f9edea419954c97661e7e42f-e779264d373c744a-00", - "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.0.0-alpha.20220907.1 (.NET Framework 4.8.4510.0; Microsoft Windows 10.0.19044 )", - "x-ms-client-request-id": "4b7a30f48749b77ad2f05d3837e98d6d", + "User-Agent": "azsdk-net-ResourceManager.ResourceMover/1.1.0-alpha.20230323.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4e97d0b3e8cb675f33decf2ff2f70d49", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "27596", + "Content-Length": "15525", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 07 Sep 2022 07:28:51 GMT", + "Date": "Thu, 23 Mar 2023 02:52:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d0f78ac-186e-4c13-92a4-acc67abc94c8", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "ecf4a010-ad60-4efe-9e36-eb376daa85f6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220907T072851Z:2d0f78ac-186e-4c13-92a4-acc67abc94c8" + "x-ms-correlation-request-id": "ca135627-8f14-43e7-8e79-08d23b04f931", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "054388c1-6aeb-4cae-82c0-af51bc9f9ed2", + "x-ms-routing-request-id": "JAPANEAST:20230323T025228Z:ca135627-8f14-43e7-8e79-08d23b04f931" }, "ResponseBody": { "value": [ { - "name": "MoverResource-7904", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7904", + "name": "MoverResource-445", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-445", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-5917", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-843", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1162", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-18" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-843" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-5917\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-2482", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-5917" - } + "sourceResourceSettings": null }, "systemData": { "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", "createdByType": "Application", - "createdAt": "2022-09-07T06:59:03.12393Z", + "createdAt": "2022-09-07T08:41:47.459326Z", "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T06:59:03.12393Z" + "lastModifiedAt": "2022-09-07T08:41:47.459326Z" } }, { - "name": "MoverResource-4740", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-4740", + "name": "MoverResource-6665", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6665", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-3008", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8536", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-10", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-10", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-6827" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-8536" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-3008\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-7259", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-3008" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T06:59:36.2024321Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T05:48:24.4164814Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T06:59:36.2024321Z" + "lastModifiedAt": "2023-03-22T05:48:24.4164814Z" } }, { - "name": "MoverResource-145", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-145", + "name": "MoverResource-6918", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-6918", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-7608", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-8660", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4623", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4623", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-2991" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-8660" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-7608\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-4941", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-7608" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:00:01.6873298Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T05:53:21.9562828Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:00:01.6873298Z" + "lastModifiedAt": "2023-03-22T05:53:21.9562828Z" } }, { - "name": "MoverResource-8653", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8653", + "name": "MoverResource-1210", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1210", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2676", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-2229", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-9589", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-9589", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-1250" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-2229" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2676\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-3096", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2676" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:00:37.375515Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T05:57:36.3315634Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:00:37.375515Z" + "lastModifiedAt": "2023-03-22T05:57:36.3315634Z" } }, { - "name": "MoverResource-7163", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7163", + "name": "MoverResource-7186", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7186", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-1271", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-1244", "targetId": null, - "existingTargetId": null, + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4946", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-5415" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-1244" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "CommitPending", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-1271\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-9460", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-1271" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:01:13.7199167Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T06:02:02.9471173Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:01:13.7199167Z" + "lastModifiedAt": "2023-03-22T06:02:02.9471173Z" } }, { - "name": "MoverResource-9281", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9281", + "name": "MoverResource-1327", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1327", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2403", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-6297", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5375", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-5375", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-2476" - }, - "moveStatus": { - "moveState": "PreparePending", - "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-2403\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } - }, - "dependsOn": [], - "dependsOnOverrides": [], - "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-4959", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2403" - } - }, - "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", - "createdByType": "Application", - "createdAt": "2022-09-07T07:01:49.5798986Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:01:49.5798986Z" - } - }, - { - "name": "MoverResource-8382", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8382", - "type": null, - "properties": { - "provisioningState": "Succeeded", - "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-631", - "targetId": null, - "existingTargetId": null, - "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-3570" - }, - "moveStatus": { - "moveState": "PreparePending", - "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-631\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } - }, - "dependsOn": [], - "dependsOnOverrides": [], - "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-2978", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-631" - } - }, - "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", - "createdByType": "Application", - "createdAt": "2022-09-07T07:02:14.5959265Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:02:14.5959265Z" - } - }, - { - "name": "MoverResource-8783", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8783", - "type": null, - "properties": { - "provisioningState": "Succeeded", - "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-4965", - "targetId": null, - "existingTargetId": null, - "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-1666" - }, - "moveStatus": { - "moveState": "PreparePending", - "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Network/virtualNetworks/Vnet-4965\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } - }, - "dependsOn": [], - "dependsOnOverrides": [], - "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-4441", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-4965" - } - }, - "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", - "createdByType": "Application", - "createdAt": "2022-09-07T07:02:48.9558314Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:02:48.9558314Z" - } - }, - { - "name": "MoverResource-7643", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-7643", - "type": null, - "properties": { - "provisioningState": "Succeeded", - "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768", - "targetId": null, - "existingTargetId": null, - "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-6005" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-6297" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3500/providers/Microsoft.Network/virtualNetworks/Vnet-2768\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-3497", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2768" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:09:23.0039944Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T06:08:08.0482161Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:09:23.0039944Z" + "lastModifiedAt": "2023-03-22T06:08:08.0482161Z" } }, { - "name": "MoverResource-2629", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2629", + "name": "MoverResource-5528", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-5528", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6629/providers/Microsoft.Network/virtualNetworks/Vnet-2706", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3704", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-7346", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-7346", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-8417" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-3704" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-6629/providers/Microsoft.Network/virtualNetworks/Vnet-2706\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-2305", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-2706" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:10:05.691784Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-22T06:12:42.8300299Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:10:05.691784Z" + "lastModifiedAt": "2023-03-22T06:12:42.8300299Z" } }, { - "name": "MoverResource-959", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-959", + "name": "MoverResource-1240", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1240", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-2493", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1839", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-1839", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-4589" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-2493" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-9225/providers/Microsoft.Network/virtualNetworks/Vnet-5234\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-3354", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-5234" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:10:45.6451777Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:04:11.8762457Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:10:45.6451777Z" + "lastModifiedAt": "2023-03-23T02:04:11.8762457Z" } }, { - "name": "MoverResource-1010", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1010", + "name": "MoverResource-8957", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8957", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-3174", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4657", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-2567" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-3174" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-214/providers/Microsoft.Network/virtualNetworks/Vnet-6878\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-5259", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-6878" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:11:29.3485952Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:17:34.3401038Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:11:29.3485952Z" + "lastModifiedAt": "2023-03-23T02:17:34.3401038Z" } }, { - "name": "MoverResource-2730", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-2730", + "name": "MoverResource-1653", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1653", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618", - "targetId": null, - "existingTargetId": null, + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testRg-ResourceMover-5224", + "targetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", + "existingTargetId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-Target-4787", "resourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": null, - "dnsServers": null, - "subnets": null, - "tags": null, - "targetResourceName": "targetVnet-578" + "resourceType": "resourceGroups", + "targetResourceName": "testRg-ResourceMover-5224" }, "moveStatus": { - "moveState": "PreparePending", + "moveState": "ResourceMoveCompleted", "jobStatus": null, - "errors": { - "properties": { - "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-3801/providers/Microsoft.Network/virtualNetworks/Vnet-9618\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", - "details": [] - } - } + "errors": null }, "dependsOn": [], "dependsOnOverrides": [], "errors": null, - "sourceResourceSettings": { - "resourceType": "Microsoft.Network/virtualNetworks", - "enableDdosProtection": null, - "addressSpace": [ - "10.0.0.0/16" - ], - "dnsServers": [], - "subnets": [ - { - "name": "Subnet-1734", - "addressPrefix": "10.0.0.0/24", - "networkSecurityGroup": null - } - ], - "tags": null, - "targetResourceName": "Vnet-9618" - } + "sourceResourceSettings": null }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:24:39.664178Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:22:31.0734353Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:24:39.664178Z" + "lastModifiedAt": "2023-03-23T02:22:31.0734353Z" } }, { - "name": "MoverResource-1797", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-1797", + "name": "MoverResource000", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource000", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ResourceMoverRG1284/providers/Microsoft.Network/virtualNetworks/vnet0000", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -1371,7 +728,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-5854" + "targetResourceName": "targetVnet000" }, "moveStatus": { "moveState": "PreparePending", @@ -1379,7 +736,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-5470/providers/Microsoft.Network/virtualNetworks/Vnet-8771\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/ResourceMoverRG1284/providers/Microsoft.Network/virtualNetworks/vnet0000\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -1396,32 +753,32 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-9563", + "name": "Subnet0000", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-8771" + "targetResourceName": "vnet0000" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:27:37.8674156Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:44:23.2161816Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:27:37.8674156Z" + "lastModifiedAt": "2023-03-23T02:44:23.2161816Z" } }, { - "name": "MoverResource-8230", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-8230", + "name": "MoverResource-9595", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-ResourceMover/providers/Microsoft.Migrate/moveCollections/testMoveCollection/moveResources/MoverResource-9595", "type": null, "properties": { "provisioningState": "Succeeded", "isResolveRequired": false, - "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326", + "sourceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223", "targetId": null, "existingTargetId": null, "resourceSettings": { @@ -1431,7 +788,7 @@ "dnsServers": null, "subnets": null, "tags": null, - "targetResourceName": "targetVnet-2466" + "targetResourceName": "targetVnet-9792" }, "moveStatus": { "moveState": "PreparePending", @@ -1439,7 +796,7 @@ "errors": { "properties": { "code": "DependencyComputationPending", - "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-2500/providers/Microsoft.Network/virtualNetworks/Vnet-9326\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", + "message": "The dependency computation is not completed for resource - /subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-ResourceMover-7298/providers/Microsoft.Network/virtualNetworks/Vnet-7223\u0027.\n Possible Causes: Dependency computation is pending for resource.\n Recommended Action: Validate dependencies to compute the dependencies.\n ", "details": [] } } @@ -1456,34 +813,34 @@ "dnsServers": [], "subnets": [ { - "name": "Subnet-1603", + "name": "Subnet-5932", "addressPrefix": "10.0.0.0/24", "networkSecurityGroup": null } ], "tags": null, - "targetResourceName": "Vnet-9326" + "targetResourceName": "Vnet-7223" } }, "systemData": { - "createdBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-09-07T07:28:33.3180484Z", - "lastModifiedBy": "ea0eddd2-3d60-47f8-b3bf-7ec8ae554d10", + "createdAt": "2023-03-23T02:52:10.6078659Z", + "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-07T07:28:33.3180484Z" + "lastModifiedAt": "2023-03-23T02:52:10.6078659Z" } } ], "nextLink": null, - "totalCount": 15, + "totalCount": 12, "summaryCollection": null } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1807830330", + "RandomSeed": "1811312061", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/storage/Azure.ResourceManager.Storage/Azure.ResourceManager.Storage.sln b/sdk/storage/Azure.ResourceManager.Storage/Azure.ResourceManager.Storage.sln index b42a4f02cde2..d00d9163159f 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/Azure.ResourceManager.Storage.sln +++ b/sdk/storage/Azure.ResourceManager.Storage/Azure.ResourceManager.Storage.sln @@ -16,10 +16,6 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {94E23818-B4C6-4E73-A3B5-7BFE379999CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {94E23818-B4C6-4E73-A3B5-7BFE379999CD}.Debug|Any CPU.Build.0 = Debug|Any CPU - {94E23818-B4C6-4E73-A3B5-7BFE379999CD}.Release|Any CPU.ActiveCfg = Release|Any CPU - {94E23818-B4C6-4E73-A3B5-7BFE379999CD}.Release|Any CPU.Build.0 = Release|Any CPU {EE26B4BC-37DB-4C5C-8519-4B8081012AF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EE26B4BC-37DB-4C5C-8519-4B8081012AF8}.Debug|Any CPU.Build.0 = Debug|Any CPU {EE26B4BC-37DB-4C5C-8519-4B8081012AF8}.Release|Any CPU.ActiveCfg = Release|Any CPU @@ -32,6 +28,10 @@ Global {48D7DDA4-78A6-40D2-9366-32CDBB14E841}.Debug|Any CPU.Build.0 = Debug|Any CPU {48D7DDA4-78A6-40D2-9366-32CDBB14E841}.Release|Any CPU.ActiveCfg = Release|Any CPU {48D7DDA4-78A6-40D2-9366-32CDBB14E841}.Release|Any CPU.Build.0 = Release|Any CPU + {3A8E7468-6F29-4C5C-83B5-EB817E308C85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3A8E7468-6F29-4C5C-83B5-EB817E308C85}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3A8E7468-6F29-4C5C-83B5-EB817E308C85}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3A8E7468-6F29-4C5C-83B5-EB817E308C85}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnection.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnection.json index 2fd340f714c8..9c573285893f 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnection.json +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnection.json @@ -1,39 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d7506b3067c6da46be6662cd427cdeab-0d6e5e008af9614c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "bcc0c9102f270b9ac9aea67f935321ca", + "Connection": "keep-alive", + "traceparent": "00-ba6e04873c61a34488688d050d8d5ce6-39a5bfb8049f484b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "84c298aa8704c834cc4b992da02cc520", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "411", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:00:53 GMT", + "Date": "Wed, 22 Mar 2023 08:45:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b60c77d9-7fea-486f-91b1-7f3ca5e9c8bf", + "x-ms-correlation-request-id": "4ac6866e-bfc5-41d4-bba3-1a2542ac0d7f", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "b60c77d9-7fea-486f-91b1-7f3ca5e9c8bf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100054Z:b60c77d9-7fea-486f-91b1-7f3ca5e9c8bf" + "x-ms-request-id": "4ac6866e-bfc5-41d4-bba3-1a2542ac0d7f", + "x-ms-routing-request-id": "JAPANEAST:20230322T084546Z:4ac6866e-bfc5-41d4-bba3-1a2542ac0d7f" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e", + "tags": { + "TagKey-9823": "TagValue-1254", + "TagKey-3481": "TagValue-320", + "TagKey-4926": "TagValue-1187", + "TagKey-751": "TagValue-3921", + "TagKey-1866": "TagValue-8559", + "TagKey-3094": "TagValue-9190", + "TagKey-2449": "TagValue-9", + "TagKey-8379": "TagValue-164", + "TagKey-7470": "TagValue-2205", + "TagKey-4236": "TagValue-3698", + "TagKey-5316": "TagValue-2725" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "AzureStorage_DMStaging_10041369", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -43,16 +57,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/teststorageRG-1998?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-1075?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "traceparent": "00-0e5e3f8a354e07488939ebb71d0f00cc-9afbf7bbe14cbd49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "2b16358ff4b553d93db77a6489ad3660", + "traceparent": "00-43845d2cb4de694abc17625bded8f085-7dfe9addf31a2248-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0e1d0ac94c613044707a53c35c998c59", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -66,19 +80,19 @@ "Cache-Control": "no-cache", "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:00:57 GMT", + "Date": "Wed, 22 Mar 2023 08:45:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf4d0c07-9702-4533-b679-7d4e86caf1fa", + "x-ms-correlation-request-id": "3c08a7da-596d-4710-ab80-3e145f7d4bcc", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "bf4d0c07-9702-4533-b679-7d4e86caf1fa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100057Z:bf4d0c07-9702-4533-b679-7d4e86caf1fa" + "x-ms-request-id": "3c08a7da-596d-4710-ab80-3e145f7d4bcc", + "x-ms-routing-request-id": "JAPANEAST:20230322T084549Z:3c08a7da-596d-4710-ab80-3e145f7d4bcc" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998", - "name": "teststorageRG-1998", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075", + "name": "teststorageRG-1075", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "tags": { @@ -90,20 +104,20 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-e7c9c2e3ffb0e84f832ba2a8a837932a-2c30caac712e404c-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "3525812984c4c4e9c47e816e4af42b3f", + "traceparent": "00-149e8796443bab41af9524f27e2e8ba2-08716bec4edc4648-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f6939b44a52ff0c497c4373b30a57d3f", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "teststoragemgmt9392", + "name": "teststoragemgmt5584", "type": "Microsoft.Storage/storageAccounts" }, "StatusCode": 200, @@ -111,33 +125,33 @@ "Cache-Control": "no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:00:58 GMT", + "Date": "Wed, 22 Mar 2023 08:45:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3525812984c4c4e9c47e816e4af42b3f", - "x-ms-correlation-request-id": "9c12e492-3479-45b9-9a01-6731f2160b2f", + "x-ms-client-request-id": "f6939b44a52ff0c497c4373b30a57d3f", + "x-ms-correlation-request-id": "99f0235f-2125-453b-b370-197a6b82f9c3", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "b69489bb-81c3-45c7-b3a7-f57360bf077c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100058Z:9c12e492-3479-45b9-9a01-6731f2160b2f" + "x-ms-request-id": "f3a2a59d-890d-47a3-8353-d82cf4c44419", + "x-ms-routing-request-id": "JAPANEAST:20230322T084551Z:99f0235f-2125-453b-b370-197a6b82f9c3" }, "ResponseBody": { "nameAvailable": true } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-9c09e760608e2c4c9ce3c063cc0a9523-9e6b8b03c4857741-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "b0749c5b5b8de7d569e9771fa63f0170", + "traceparent": "00-eee63445af73e94e9c4c612020b108a6-dc963d0f6374ca4c-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e4581b2849757e4b53940ce10470b10d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -157,30 +171,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:06 GMT", + "Date": "Wed, 22 Mar 2023 08:45:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2e48c3c6-f048-4d89-8759-1835025c190d?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2bdee523-b93d-4f7b-89bf-2903dce9d7df?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b0749c5b5b8de7d569e9771fa63f0170", - "x-ms-correlation-request-id": "2e430e55-9ef6-43f7-a1dc-7215df82002f", + "x-ms-client-request-id": "e4581b2849757e4b53940ce10470b10d", + "x-ms-correlation-request-id": "3fcdbfaa-db3c-434c-8cc4-15b80d22c0ba", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "2e48c3c6-f048-4d89-8759-1835025c190d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100106Z:2e430e55-9ef6-43f7-a1dc-7215df82002f" + "x-ms-request-id": "2bdee523-b93d-4f7b-89bf-2903dce9d7df", + "x-ms-routing-request-id": "JAPANEAST:20230322T084556Z:3fcdbfaa-db3c-434c-8cc4-15b80d22c0ba" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2e48c3c6-f048-4d89-8759-1835025c190d?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2bdee523-b93d-4f7b-89bf-2903dce9d7df?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9c09e760608e2c4c9ce3c063cc0a9523-e95f3006990cac48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "102e254fb0c1cec8ab3ecbdb0cc91d85", + "traceparent": "00-eee63445af73e94e9c4c612020b108a6-bd9b2aab2980bc4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7e3383d67533fb764f14a39a98e3eb27", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -189,30 +203,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:06 GMT", + "Date": "Wed, 22 Mar 2023 08:45:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2e48c3c6-f048-4d89-8759-1835025c190d?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2bdee523-b93d-4f7b-89bf-2903dce9d7df?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "102e254fb0c1cec8ab3ecbdb0cc91d85", - "x-ms-correlation-request-id": "34a886f4-14cf-4661-8642-9dfc4bf340fd", + "x-ms-client-request-id": "7e3383d67533fb764f14a39a98e3eb27", + "x-ms-correlation-request-id": "9d3b60ff-7d5f-44b4-a5e9-ca77a57c1f29", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "3d45694c-7e0d-4846-beab-236a15e6fed3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100107Z:34a886f4-14cf-4661-8642-9dfc4bf340fd" + "x-ms-request-id": "8e52b9ab-2011-4aa7-a8e2-e27ce6dc2719", + "x-ms-routing-request-id": "JAPANEAST:20230322T084556Z:9d3b60ff-7d5f-44b4-a5e9-ca77a57c1f29" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2e48c3c6-f048-4d89-8759-1835025c190d?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/2bdee523-b93d-4f7b-89bf-2903dce9d7df?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-9c09e760608e2c4c9ce3c063cc0a9523-182ea73c3a92ef44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "0d4f107c8aca7d9ad1c383276b5f8f84", + "traceparent": "00-eee63445af73e94e9c4c612020b108a6-e73fc7533aee6b40-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7d672a1252bd74b280f38b5780c3715e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -221,17 +235,17 @@ "Cache-Control": "no-cache", "Content-Length": "1545", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:01:23 GMT", + "Date": "Wed, 22 Mar 2023 08:46:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0d4f107c8aca7d9ad1c383276b5f8f84", - "x-ms-correlation-request-id": "df1fbf61-5426-4652-b4de-07042535cd94", + "x-ms-client-request-id": "7d672a1252bd74b280f38b5780c3715e", + "x-ms-correlation-request-id": "c47683fe-dd86-40a1-9788-2bb61aa43c6d", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "67211e21-16a7-40f4-9259-89a55f67073e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100124Z:df1fbf61-5426-4652-b4de-07042535cd94" + "x-ms-request-id": "c2e88766-5e06-4009-827b-01af7ca584b6", + "x-ms-routing-request-id": "JAPANEAST:20230322T084613Z:c47683fe-dd86-40a1-9788-2bb61aa43c6d" }, "ResponseBody": { "sku": { @@ -239,8 +253,8 @@ "tier": "Standard" }, "kind": "StorageV2", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392", - "name": "teststoragemgmt9392", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584", + "name": "teststoragemgmt5584", "type": "Microsoft.Storage/storageAccounts", "location": "eastus2", "tags": { @@ -249,8 +263,8 @@ }, "properties": { "keyCreationTime": { - "key1": "2022-11-17T10:01:03.6839530Z", - "key2": "2022-11-17T10:01:03.6839530Z" + "key1": "2023-03-22T08:45:54.6193301Z", + "key2": "2023-03-22T08:45:54.6193301Z" }, "privateEndpointConnections": [], "minimumTlsVersion": "TLS1_0", @@ -267,26 +281,26 @@ "file": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:01:04.0745938Z" + "lastEnabledTime": "2023-03-22T08:45:54.7912338Z" }, "blob": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:01:04.0745938Z" + "lastEnabledTime": "2023-03-22T08:45:54.7912338Z" } }, "keySource": "Microsoft.Storage" }, "accessTier": "Hot", "provisioningState": "Succeeded", - "creationTime": "2022-11-17T10:01:03.5433238Z", + "creationTime": "2023-03-22T08:45:54.4630799Z", "primaryEndpoints": { - "dfs": "https://teststoragemgmt9392.dfs.core.windows.net/", - "web": "https://teststoragemgmt9392.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt9392.blob.core.windows.net/", - "queue": "https://teststoragemgmt9392.queue.core.windows.net/", - "table": "https://teststoragemgmt9392.table.core.windows.net/", - "file": "https://teststoragemgmt9392.file.core.windows.net/" + "dfs": "https://teststoragemgmt5584.dfs.core.windows.net/", + "web": "https://teststoragemgmt5584.z20.web.core.windows.net/", + "blob": "https://teststoragemgmt5584.blob.core.windows.net/", + "queue": "https://teststoragemgmt5584.queue.core.windows.net/", + "table": "https://teststoragemgmt5584.table.core.windows.net/", + "file": "https://teststoragemgmt5584.file.core.windows.net/" }, "primaryLocation": "eastus2", "statusOfPrimary": "available", @@ -296,519 +310,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "traceparent": "00-597de7d29652644184b378b122ac33f3-23f3b8b192a5bb40-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "1180cfb4aff1746e5bf46612efa46348", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/0d1c21bd-e14f-4c2a-971d-9daaa06167ae?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "69fdec3a-cf86-40fd-bbe9-1785dbf607bc", - "x-ms-client-request-id": "1180cfb4aff1746e5bf46612efa46348", - "x-ms-correlation-request-id": "e653aec4-6f7d-466b-bc2a-ffbe99298eed", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "0d1c21bd-e14f-4c2a-971d-9daaa06167ae", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100128Z:e653aec4-6f7d-466b-bc2a-ffbe99298eed" - }, - "ResponseBody": { - "name": "vnet-9603", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603", - "etag": "W/\u0022ef357b78-f3dc-416b-b20e-1e4c9ce81cb9\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "a7c31a1a-aa06-481e-b4e3-4ed6bcfa084c", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603/subnets/default", - "etag": "W/\u0022ef357b78-f3dc-416b-b20e-1e4c9ce81cb9\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/0d1c21bd-e14f-4c2a-971d-9daaa06167ae?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-597de7d29652644184b378b122ac33f3-cfbcb9a4f2d4f24b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "fa58e547749d618be0986f95336ae21e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6eb2b8dc-91d4-43b2-84bf-a8a6a3e860ae", - "x-ms-client-request-id": "fa58e547749d618be0986f95336ae21e", - "x-ms-correlation-request-id": "6e38b3fa-e954-4aea-bf7d-e8b8fcd8f13c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "1994f0ea-37e8-405c-8240-84a04208a676", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100129Z:6e38b3fa-e954-4aea-bf7d-e8b8fcd8f13c" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-597de7d29652644184b378b122ac33f3-a86e49456d63a643-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "6600de1fee48bb100af460b2b141d3f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:28 GMT", - "ETag": "W/\u0022a6e40936-5dc1-475e-997d-8169ef597843\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "379e39e6-6330-4443-a79c-e307d022b231", - "x-ms-client-request-id": "6600de1fee48bb100af460b2b141d3f8", - "x-ms-correlation-request-id": "c70f1c1d-7db8-4f5d-b8b2-407ca6e3769e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "4d873267-51d8-4049-b033-5dd344dcb66f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100129Z:c70f1c1d-7db8-4f5d-b8b2-407ca6e3769e" - }, - "ResponseBody": { - "name": "vnet-9603", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603", - "etag": "W/\u0022a6e40936-5dc1-475e-997d-8169ef597843\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "a7c31a1a-aa06-481e-b4e3-4ed6bcfa084c", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603/subnets/default", - "etag": "W/\u0022a6e40936-5dc1-475e-997d-8169ef597843\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "728", - "Content-Type": "application/json", - "traceparent": "00-629db1e03cacb246ae38639d84bef346-2cd0dec340bd8047-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "694b09cbf6abe46db44d892f58465cde", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603/subnets/default", - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec4386", - "properties": { - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/faa8b0f8-830d-4732-b098-1e7fd5750b08?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1950", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d9c6c90c-dfb0-4f01-8f3b-e061983a04f5", - "x-ms-client-request-id": "694b09cbf6abe46db44d892f58465cde", - "x-ms-correlation-request-id": "9c591fc7-04fa-46ae-8ce6-8097d7db32e3", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "faa8b0f8-830d-4732-b098-1e7fd5750b08", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100134Z:9c591fc7-04fa-46ae-8ce6-8097d7db32e3" - }, - "ResponseBody": { - "name": "pe-9169", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169", - "etag": "W/\u0022d7504d0c-dcb6-4b26-85fa-2dc9e88ef0e3\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "f6fa2edb-f2ac-4560-938d-f5bddd03b78f", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec4386", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169/manualPrivateLinkServiceConnections/pec4386", - "etag": "W/\u0022d7504d0c-dcb6-4b26-85fa-2dc9e88ef0e3\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/networkInterfaces/pe-9169.nic.20dd8726-ecb1-4be4-ab6b-e8a642bf9daa" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/faa8b0f8-830d-4732-b098-1e7fd5750b08?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-629db1e03cacb246ae38639d84bef346-b5b62295f26f5c46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "d89f7aecb6d30a33f8643ac331da9c19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9d8ca4ec-7686-4037-a675-bab98126b823", - "x-ms-client-request-id": "d89f7aecb6d30a33f8643ac331da9c19", - "x-ms-correlation-request-id": "1bf13732-018b-4dc8-8086-1e39ded781f1", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "a56fc23a-c70b-42e8-b06d-e8772f594bf2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100134Z:1bf13732-018b-4dc8-8086-1e39ded781f1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/faa8b0f8-830d-4732-b098-1e7fd5750b08?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-629db1e03cacb246ae38639d84bef346-b7e0903907349f4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "1134d256c396725334ae7902e2943415", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:01:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4dd41264-c4c6-4b73-89b8-63424d4f3344", - "x-ms-client-request-id": "1134d256c396725334ae7902e2943415", - "x-ms-correlation-request-id": "1bb2a47e-8dd4-4698-af35-b7b983f1acdb", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "2bf9b847-2ec5-4e04-8c2c-5dcd9f0e6c34", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100144Z:1bb2a47e-8dd4-4698-af35-b7b983f1acdb" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/faa8b0f8-830d-4732-b098-1e7fd5750b08?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-629db1e03cacb246ae38639d84bef346-3dd0b62dc4a7e047-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "dd43118883a6560b8f57ec011e126b14", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c836d529-0b9f-42f7-9a67-66c9cf5f90f8", - "x-ms-client-request-id": "dd43118883a6560b8f57ec011e126b14", - "x-ms-correlation-request-id": "499b1a9b-bd46-47fa-a439-90a71f9d6567", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "00aa207d-7e38-4e67-9e7d-4dae19df950e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100204Z:499b1a9b-bd46-47fa-a439-90a71f9d6567" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-629db1e03cacb246ae38639d84bef346-b5bff5354f8f0f4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "de82fa0cb36a29e1272ca4253d302864", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1951", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:05 GMT", - "ETag": "W/\u00227d5bf8f5-f789-424e-9c64-60d4a47b2943\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "582675ae-93f5-4363-855d-9339bb4d998d", - "x-ms-client-request-id": "de82fa0cb36a29e1272ca4253d302864", - "x-ms-correlation-request-id": "a8ee31c1-4a0a-4227-9740-028c0b74c7cb", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "8263c7da-d35d-4524-af84-49e2f341231a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100205Z:a8ee31c1-4a0a-4227-9740-028c0b74c7cb" - }, - "ResponseBody": { - "name": "pe-9169", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169", - "etag": "W/\u00227d5bf8f5-f789-424e-9c64-60d4a47b2943\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "f6fa2edb-f2ac-4560-938d-f5bddd03b78f", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec4386", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169/manualPrivateLinkServiceConnections/pec4386", - "etag": "W/\u00227d5bf8f5-f789-424e-9c64-60d4a47b2943\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/networkInterfaces/pe-9169.nic.20dd8726-ecb1-4be4-ab6b-e8a642bf9daa" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-98ceb4d21abccb44ab9315965d3c96b9-541404bb85765146-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "1f3a2430be97d273c6de813ed6515422", + "traceparent": "00-c69b0c3f0862204aade27f8f012bb958-c61cdadbb385cd47-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "016d77bfaef65ffe5ac78b81fcc63152", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -817,28 +326,28 @@ "Cache-Control": "no-cache", "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:02:06 GMT", + "Date": "Wed, 22 Mar 2023 08:47:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1f3a2430be97d273c6de813ed6515422", - "x-ms-correlation-request-id": "68bfd152-6e0d-46ee-84e8-65338fa3f03a", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "0f4d88a8-c5a6-41ee-9054-a5509e613807", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100206Z:68bfd152-6e0d-46ee-84e8-65338fa3f03a" + "x-ms-client-request-id": "016d77bfaef65ffe5ac78b81fcc63152", + "x-ms-correlation-request-id": "c4e2a9f6-bac0-4a2a-8fa1-41f9afef8369", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "1b0bade0-af3c-4273-b197-669dfb23497b", + "x-ms-routing-request-id": "JAPANEAST:20230322T084702Z:c4e2a9f6-bac0-4a2a-8fa1-41f9afef8369" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", - "name": "teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", + "name": "teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Network/privateEndpoints/pe-5363" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -851,16 +360,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "107", "Content-Type": "application/json", - "traceparent": "00-11d21bb86afd8245a54eb4ab812ebd1f-13a01b9c10a27a49-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "e7f664425511d5ab3019b579dee6185f", + "traceparent": "00-ac23e6064f6532469682ed31882db195-b872c18c4086654e-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "ca00b79875efba39e5f807ae7c2b8e03", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -876,26 +385,26 @@ "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:02:09 GMT", + "Date": "Wed, 22 Mar 2023 08:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e7f664425511d5ab3019b579dee6185f", - "x-ms-correlation-request-id": "39e25968-7a21-41cd-bad1-6cb081a9da18", + "x-ms-client-request-id": "ca00b79875efba39e5f807ae7c2b8e03", + "x-ms-correlation-request-id": "07227ab5-7c12-4816-b3c8-1354c08a1686", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "ac2ec116-2fd4-4033-8ced-3e7955ee2fa4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100209Z:39e25968-7a21-41cd-bad1-6cb081a9da18" + "x-ms-request-id": "ad886d91-e832-496c-ac53-9cfa33abc3d7", + "x-ms-routing-request-id": "JAPANEAST:20230322T084704Z:07227ab5-7c12-4816-b3c8-1354c08a1686" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", - "name": "teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", + "name": "teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Network/privateEndpoints/pe-5363" }, "privateLinkServiceConnectionState": { "status": "Approved", @@ -906,91 +415,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-163e4212b66ad949a81f168cb4093a42-9743cd40a8ef4e4a-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "fad1882f4bd74d7d86b0188c31a252d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1960", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:09 GMT", - "ETag": "W/\u002236686729-defa-4a27-b36a-d2d894303663\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a66ce77d-68ff-4301-808f-01924621e7a5", - "x-ms-client-request-id": "fad1882f4bd74d7d86b0188c31a252d5", - "x-ms-correlation-request-id": "105a35e2-784b-4a23-9242-5376bd666414", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "1924f92e-f975-47a9-b556-b9908783b956", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100209Z:105a35e2-784b-4a23-9242-5376bd666414" - }, - "ResponseBody": { - "name": "pe-9169", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169", - "etag": "W/\u002236686729-defa-4a27-b36a-d2d894303663\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "f6fa2edb-f2ac-4560-938d-f5bddd03b78f", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec4386", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169/manualPrivateLinkServiceConnections/pec4386", - "etag": "W/\u002236686729-defa-4a27-b36a-d2d894303663\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Approved by test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/virtualNetworks/vnet-9603/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/networkInterfaces/pe-9169.nic.20dd8726-ecb1-4be4-ab6b-e8a642bf9daa" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7f07dbad32a6c842817bc6da2532c2ab-330bbfd446d75446-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "d9e282d84039da527865ef7d08faf3df", + "traceparent": "00-8543bf7a9163764eb5bd31e2b744d8ed-b9ecb8a3cb10c349-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b3d4550ddbde6cd75e5198d35be1ff62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -999,26 +431,26 @@ "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:02:10 GMT", + "Date": "Wed, 22 Mar 2023 08:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d9e282d84039da527865ef7d08faf3df", - "x-ms-correlation-request-id": "7be31c11-5dfb-4721-83e6-efa0145a4b72", + "x-ms-client-request-id": "b3d4550ddbde6cd75e5198d35be1ff62", + "x-ms-correlation-request-id": "7df5c2a7-3af2-4d13-bb8a-d95c18f5d8ec", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "ef87374d-e91d-427c-9155-b800087a2ec9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100210Z:7be31c11-5dfb-4721-83e6-efa0145a4b72" + "x-ms-request-id": "4f1472fb-0845-438c-aaec-facdb7bf45e5", + "x-ms-routing-request-id": "JAPANEAST:20230322T084704Z:7df5c2a7-3af2-4d13-bb8a-d95c18f5d8ec" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", - "name": "teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", + "name": "teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Network/privateEndpoints/pe-5363" }, "privateLinkServiceConnectionState": { "status": "Approved", @@ -1029,14 +461,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f758a474a3d07f4e86e1526864fc65ec-6b7986d23a55664d-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "4e0e22c55a80f64be7a860613d1ea38d", + "traceparent": "00-80d51937024ec3498726c2179fc13fef-8635dc6b58b67a44-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "d3c7311367a349773db31bfda64fe32e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1045,28 +477,28 @@ "Cache-Control": "no-cache", "Content-Length": "718", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:02:10 GMT", + "Date": "Wed, 22 Mar 2023 08:47:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4e0e22c55a80f64be7a860613d1ea38d", - "x-ms-correlation-request-id": "f059d249-226c-43eb-91b9-1d02919fd810", + "x-ms-client-request-id": "d3c7311367a349773db31bfda64fe32e", + "x-ms-correlation-request-id": "fd159f7f-8069-400e-bf44-65043807d2ca", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "f42169a3-da8a-497f-9b89-bd593c22e11f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100211Z:f059d249-226c-43eb-91b9-1d02919fd810" + "x-ms-request-id": "295a5324-0aef-4b88-acbb-04b5f612238f", + "x-ms-routing-request-id": "JAPANEAST:20230322T084705Z:fd159f7f-8069-400e-bf44-65043807d2ca" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", - "name": "teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", + "name": "teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Network/privateEndpoints/pe-9169" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Network/privateEndpoints/pe-5363" }, "privateLinkServiceConnectionState": { "status": "Approved", @@ -1079,14 +511,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392/privateEndpointConnections/teststoragemgmt9392.ac963776-2a37-467a-bcd1-578edf18655b?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584/privateEndpointConnections/teststoragemgmt5584.0a73241a-493b-4d4e-9550-cb4f64e50aec?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b4f265cd6b5e5e4aad0f22fc55c4a18a-c5cebb2a5981b047-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "5ca1dfc73f03ef2535f681715cff448c", + "traceparent": "00-03139a2ef4e6d04c86909d3869134330-1c93a3862993e14c-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a77388397df1bc73e0936c9edd665f04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1095,28 +527,28 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:13 GMT", + "Date": "Wed, 22 Mar 2023 08:47:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5ca1dfc73f03ef2535f681715cff448c", - "x-ms-correlation-request-id": "f870391b-a4ce-49d7-94b0-b5dc45dbdc0d", + "x-ms-client-request-id": "a77388397df1bc73e0936c9edd665f04", + "x-ms-correlation-request-id": "11f87cd9-92bc-4f30-ae43-9c78ba143c43", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "af843f4b-2bf0-4304-a1f0-8a85774114a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100213Z:f870391b-a4ce-49d7-94b0-b5dc45dbdc0d" + "x-ms-request-id": "4c8dc403-347a-4512-a0ea-3c2fc8f47423", + "x-ms-routing-request-id": "JAPANEAST:20230322T084707Z:11f87cd9-92bc-4f30-ae43-9c78ba143c43" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1998/providers/Microsoft.Storage/storageAccounts/teststoragemgmt9392?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1075/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5584?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-35f7200c924abd41b9756fdc8e555981-825affccb8860c42-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "0ec738bc03937d5537ecf190dff19d5a", + "traceparent": "00-29d1c630b17a0546828f71140ba2bf03-9e7b4c567a27a841-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "4a9ba5f8ba64a660dd8b752bbfd9c60e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1125,25 +557,25 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:21 GMT", + "Date": "Wed, 22 Mar 2023 08:47:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0ec738bc03937d5537ecf190dff19d5a", - "x-ms-correlation-request-id": "6ce938af-d9df-46a0-9745-ff2e4aa7e783", + "x-ms-client-request-id": "4a9ba5f8ba64a660dd8b752bbfd9c60e", + "x-ms-correlation-request-id": "cf80659d-0d7e-4ced-bcb3-3d505800844e", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "ea781b16-7c15-4a21-ba55-77b36bf6100f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100222Z:6ce938af-d9df-46a0-9745-ff2e4aa7e783" + "x-ms-request-id": "9198d713-bbf1-4437-9c30-7052848480ab", + "x-ms-routing-request-id": "JAPANEAST:20230322T084712Z:cf80659d-0d7e-4ced-bcb3-3d505800844e" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1406700912", + "RandomSeed": "836925239", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "45b60d85-fd72-427a-a708-f994d26e593e" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnectionAsync.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnectionAsync.json index 969d68537923..71ed1c9e2ba2 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnectionAsync.json +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/CreatePrivateEndpointConnectionAsync.json @@ -1,39 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-729c905205517f4fa8bf44973f42f6ce-20cb4d29a2303c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "4770ce54d32a88d0b68a0f76fc36a532", + "Connection": "keep-alive", + "traceparent": "00-f20a263344c14346ae0019976edd6b53-45e2837928eb4241-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "6c14713cc70a6ae6e0d13bf34db35a55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "411", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:28:31 GMT", + "Date": "Wed, 22 Mar 2023 08:57:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e45bdba6-d620-4deb-bc4a-f25d9391caf5", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "e45bdba6-d620-4deb-bc4a-f25d9391caf5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102832Z:e45bdba6-d620-4deb-bc4a-f25d9391caf5" + "x-ms-correlation-request-id": "e13cda49-ed94-4be4-9aed-171a4b666c92", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "e13cda49-ed94-4be4-9aed-171a4b666c92", + "x-ms-routing-request-id": "JAPANEAST:20230322T085740Z:e13cda49-ed94-4be4-9aed-171a4b666c92" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e", + "tags": { + "TagKey-9823": "TagValue-1254", + "TagKey-3481": "TagValue-320", + "TagKey-4926": "TagValue-1187", + "TagKey-751": "TagValue-3921", + "TagKey-1866": "TagValue-8559", + "TagKey-3094": "TagValue-9190", + "TagKey-2449": "TagValue-9", + "TagKey-8379": "TagValue-164", + "TagKey-7470": "TagValue-2205", + "TagKey-4236": "TagValue-3698", + "TagKey-5316": "TagValue-2725" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "AzureStorage_DMStaging_10041369", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -43,16 +57,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/teststorageRG-5968?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-744?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "traceparent": "00-f6a536aac69df24295c1e60b2d5a526d-10c8f6eaca5caa4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "a68429c19d8969d9d094da3d10500372", + "traceparent": "00-ba8fbf01a9031549a7f81b5c4d01bd19-9fa0a88267137142-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1b6a450aa7bfa899d34e428a021908cc", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,21 +78,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "256", + "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:28:35 GMT", + "Date": "Wed, 22 Mar 2023 08:57:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1391c506-735f-4307-b034-6c5b18960688", + "x-ms-correlation-request-id": "0135f6c9-ff37-4177-bc28-7ce5ff661bbe", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "1391c506-735f-4307-b034-6c5b18960688", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102835Z:1391c506-735f-4307-b034-6c5b18960688" + "x-ms-request-id": "0135f6c9-ff37-4177-bc28-7ce5ff661bbe", + "x-ms-routing-request-id": "JAPANEAST:20230322T085741Z:0135f6c9-ff37-4177-bc28-7ce5ff661bbe" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968", - "name": "teststorageRG-5968", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744", + "name": "teststorageRG-744", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "tags": { @@ -90,20 +104,20 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-306fbd01b739ba488cdd23d194c1f161-3693f4af0be82244-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "b82671d67d6b9d55a9328e03186df167", + "traceparent": "00-4453b13c68eace44891a4e17b0a1713b-fe48c15400f9254d-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "09805125a07df4996d9a5aa018e9a43b", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "teststoragemgmt4039", + "name": "teststoragemgmt2506", "type": "Microsoft.Storage/storageAccounts" }, "StatusCode": 200, @@ -111,33 +125,33 @@ "Cache-Control": "no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:28:36 GMT", + "Date": "Wed, 22 Mar 2023 08:57:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b82671d67d6b9d55a9328e03186df167", - "x-ms-correlation-request-id": "1fde5b22-3273-4b6a-a62b-3042236ed533", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "5f8aad43-5a90-4d9a-86d2-7df328692028", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102837Z:1fde5b22-3273-4b6a-a62b-3042236ed533" + "x-ms-client-request-id": "09805125a07df4996d9a5aa018e9a43b", + "x-ms-correlation-request-id": "f2574bed-ebdb-4498-902b-7d78397c860a", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "b62b01a0-82bb-4e32-8184-a530aa562983", + "x-ms-routing-request-id": "JAPANEAST:20230322T085743Z:f2574bed-ebdb-4498-902b-7d78397c860a" }, "ResponseBody": { "nameAvailable": true } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-679d5978c8c9974d8fcf1d826108b253-b98c6b71c14fe643-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "047623f5cad19730dd593ff64aa53a0c", + "traceparent": "00-6a60ae9aafba1740b2409e885efbe873-851e2ca64fb9474b-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "3943643a7d047bcac43779a4e0ddb732", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -157,30 +171,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:28:42 GMT", + "Date": "Wed, 22 Mar 2023 08:57:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b0137e41-ce3f-4cfe-9050-46cfdbfcda04?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b92cda98-145e-4616-b8e9-e34ccaf12896?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "047623f5cad19730dd593ff64aa53a0c", - "x-ms-correlation-request-id": "e84faf13-b9b6-49b6-90bf-12cf3af9b313", + "x-ms-client-request-id": "3943643a7d047bcac43779a4e0ddb732", + "x-ms-correlation-request-id": "38767e7c-4092-42b7-9b88-df6e696f46ed", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "b0137e41-ce3f-4cfe-9050-46cfdbfcda04", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102842Z:e84faf13-b9b6-49b6-90bf-12cf3af9b313" + "x-ms-request-id": "b92cda98-145e-4616-b8e9-e34ccaf12896", + "x-ms-routing-request-id": "JAPANEAST:20230322T085749Z:38767e7c-4092-42b7-9b88-df6e696f46ed" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b0137e41-ce3f-4cfe-9050-46cfdbfcda04?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b92cda98-145e-4616-b8e9-e34ccaf12896?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-679d5978c8c9974d8fcf1d826108b253-77f3ef687b577741-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "2c1bd6e86e8d0c51408fdb113e5f5203", + "traceparent": "00-6a60ae9aafba1740b2409e885efbe873-536310dcf354534f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b5c84e9d92c5a72e8604454627f5148f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -189,49 +203,49 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:28:43 GMT", + "Date": "Wed, 22 Mar 2023 08:57:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b0137e41-ce3f-4cfe-9050-46cfdbfcda04?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b92cda98-145e-4616-b8e9-e34ccaf12896?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2c1bd6e86e8d0c51408fdb113e5f5203", - "x-ms-correlation-request-id": "03b046dd-841b-4d3f-b9e3-aa3f2cfdf05b", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b90c2a35-01b5-48b7-a46d-6543c91f8bfc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102843Z:03b046dd-841b-4d3f-b9e3-aa3f2cfdf05b" + "x-ms-client-request-id": "b5c84e9d92c5a72e8604454627f5148f", + "x-ms-correlation-request-id": "bd618843-31b1-4fe6-a37b-ce66781da0ec", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "2ea660cc-c01c-4642-99a0-d3e13b0b824c", + "x-ms-routing-request-id": "JAPANEAST:20230322T085749Z:bd618843-31b1-4fe6-a37b-ce66781da0ec" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b0137e41-ce3f-4cfe-9050-46cfdbfcda04?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b92cda98-145e-4616-b8e9-e34ccaf12896?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-679d5978c8c9974d8fcf1d826108b253-6391124e5ed68147-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "3ffe82f8bd0dc05acdcad5c8eac64c76", + "traceparent": "00-6a60ae9aafba1740b2409e885efbe873-274c59934e33c94e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "fd7928e29a5bcd66d69e68dd2bbd3cbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1545", + "Content-Length": "1544", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:29:00 GMT", + "Date": "Wed, 22 Mar 2023 08:58:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3ffe82f8bd0dc05acdcad5c8eac64c76", - "x-ms-correlation-request-id": "8d50a1ad-c8b2-41b5-abea-53c3ef4b74c3", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "e0e8fe4c-1ae1-449c-b863-db8efe0ca701", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102900Z:8d50a1ad-c8b2-41b5-abea-53c3ef4b74c3" + "x-ms-client-request-id": "fd7928e29a5bcd66d69e68dd2bbd3cbc", + "x-ms-correlation-request-id": "53961274-1055-4ca3-91bd-383391ff94bb", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "b4be0105-5d07-4635-979e-aa62339e86ed", + "x-ms-routing-request-id": "JAPANEAST:20230322T085807Z:53961274-1055-4ca3-91bd-383391ff94bb" }, "ResponseBody": { "sku": { @@ -239,8 +253,8 @@ "tier": "Standard" }, "kind": "StorageV2", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039", - "name": "teststoragemgmt4039", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506", + "name": "teststoragemgmt2506", "type": "Microsoft.Storage/storageAccounts", "location": "eastus2", "tags": { @@ -249,8 +263,8 @@ }, "properties": { "keyCreationTime": { - "key1": "2022-11-17T10:28:41.1268955Z", - "key2": "2022-11-17T10:28:41.1268955Z" + "key1": "2023-03-22T08:57:47.9371627Z", + "key2": "2023-03-22T08:57:47.9371627Z" }, "privateEndpointConnections": [], "minimumTlsVersion": "TLS1_0", @@ -267,26 +281,26 @@ "file": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:28:41.4081368Z" + "lastEnabledTime": "2023-03-22T08:57:48.1246628Z" }, "blob": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:28:41.4081368Z" + "lastEnabledTime": "2023-03-22T08:57:48.1246628Z" } }, "keySource": "Microsoft.Storage" }, "accessTier": "Hot", "provisioningState": "Succeeded", - "creationTime": "2022-11-17T10:28:41.0019286Z", + "creationTime": "2023-03-22T08:57:47.8121821Z", "primaryEndpoints": { - "dfs": "https://teststoragemgmt4039.dfs.core.windows.net/", - "web": "https://teststoragemgmt4039.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt4039.blob.core.windows.net/", - "queue": "https://teststoragemgmt4039.queue.core.windows.net/", - "table": "https://teststoragemgmt4039.table.core.windows.net/", - "file": "https://teststoragemgmt4039.file.core.windows.net/" + "dfs": "https://teststoragemgmt2506.dfs.core.windows.net/", + "web": "https://teststoragemgmt2506.z20.web.core.windows.net/", + "blob": "https://teststoragemgmt2506.blob.core.windows.net/", + "queue": "https://teststoragemgmt2506.queue.core.windows.net/", + "table": "https://teststoragemgmt2506.table.core.windows.net/", + "file": "https://teststoragemgmt2506.file.core.windows.net/" }, "primaryLocation": "eastus2", "statusOfPrimary": "available", @@ -296,549 +310,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "traceparent": "00-0c781008b7cc2f47bae5b6948b9cc286-abf0efffc3f9fd45-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "8a740d177e0d869553f27d5a446dcfb6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/f1dea203-bab7-4daf-a7a7-7b43995502be?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "746a950e-338a-4e07-abe7-af009a16ea90", - "x-ms-client-request-id": "8a740d177e0d869553f27d5a446dcfb6", - "x-ms-correlation-request-id": "a369ae30-e347-43bc-a2d7-58da27d0499f", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "f1dea203-bab7-4daf-a7a7-7b43995502be", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102905Z:a369ae30-e347-43bc-a2d7-58da27d0499f" - }, - "ResponseBody": { - "name": "vnet-5024", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024", - "etag": "W/\u00226788d7ac-1c18-45f4-84e1-a1d057716a2b\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "f076eda8-41d9-4b14-a386-944658e0019a", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024/subnets/default", - "etag": "W/\u00226788d7ac-1c18-45f4-84e1-a1d057716a2b\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/f1dea203-bab7-4daf-a7a7-7b43995502be?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0c781008b7cc2f47bae5b6948b9cc286-6766c8a0bd327b44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "5126706479de03ea69b9b9cadd66885c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b8f636b8-cea6-4280-b972-062e3e29a561", - "x-ms-client-request-id": "5126706479de03ea69b9b9cadd66885c", - "x-ms-correlation-request-id": "6b91f2a1-fec0-4088-a292-ad751e72d39e", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "eaa9ac87-79bb-4433-8085-bfa7be765bf2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102905Z:6b91f2a1-fec0-4088-a292-ad751e72d39e" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0c781008b7cc2f47bae5b6948b9cc286-a5a03e8de3194148-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "540d12050e85fd29e2f830aebbfdfd31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:05 GMT", - "ETag": "W/\u0022097892d1-353d-42fb-999a-a825580ec898\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1091e6b0-c124-4a9c-bfa8-305b2e09709a", - "x-ms-client-request-id": "540d12050e85fd29e2f830aebbfdfd31", - "x-ms-correlation-request-id": "7725a817-0864-47fa-b657-acae7bfd8ac9", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "b6e11ea1-24cb-4bd2-b0c7-0eb0b339bbd2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102906Z:7725a817-0864-47fa-b657-acae7bfd8ac9" - }, - "ResponseBody": { - "name": "vnet-5024", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024", - "etag": "W/\u0022097892d1-353d-42fb-999a-a825580ec898\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "f076eda8-41d9-4b14-a386-944658e0019a", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024/subnets/default", - "etag": "W/\u0022097892d1-353d-42fb-999a-a825580ec898\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "728", - "Content-Type": "application/json", - "traceparent": "00-e6f158d668ea6a48a23efb3f33c4fee9-0c7ca37255dfbf4e-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "7d47d4f563d7c387febe61609ef4d666", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024/subnets/default", - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3682", - "properties": { - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/d837f43f-2c1d-4e79-ace7-2360ea6e9a85?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1946", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "202206b9-8193-4cf5-be81-34115f44a6c5", - "x-ms-client-request-id": "7d47d4f563d7c387febe61609ef4d666", - "x-ms-correlation-request-id": "6a20ca78-04ca-46bf-bad8-71f972153451", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "d837f43f-2c1d-4e79-ace7-2360ea6e9a85", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102909Z:6a20ca78-04ca-46bf-bad8-71f972153451" - }, - "ResponseBody": { - "name": "pe-959", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959", - "etag": "W/\u00221d75a0dd-e384-41f1-9f84-eff4a52397a9\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "066b1a8d-6c3b-4799-adf0-a12b9675da8e", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3682", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959/manualPrivateLinkServiceConnections/pec3682", - "etag": "W/\u00221d75a0dd-e384-41f1-9f84-eff4a52397a9\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/networkInterfaces/pe-959.nic.d724421c-d288-425a-8733-53f35ff7c1aa" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/d837f43f-2c1d-4e79-ace7-2360ea6e9a85?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e6f158d668ea6a48a23efb3f33c4fee9-874d3303abaff940-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "b471a3528814aa3accc10f6a9c825a3b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ed89b6cf-5e5c-4c41-a185-597511d2d9eb", - "x-ms-client-request-id": "b471a3528814aa3accc10f6a9c825a3b", - "x-ms-correlation-request-id": "53853704-f524-48d0-8aa6-49d98c2aab33", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "25b1d384-5cb8-418d-bc83-b003c1869f5f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102910Z:53853704-f524-48d0-8aa6-49d98c2aab33" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/d837f43f-2c1d-4e79-ace7-2360ea6e9a85?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e6f158d668ea6a48a23efb3f33c4fee9-3f6a8508a715bb45-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "856a54d7511d9e7c8d1e0ef21a4a7c92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e9d9602d-04a4-42d4-a116-eb1b40996625", - "x-ms-client-request-id": "856a54d7511d9e7c8d1e0ef21a4a7c92", - "x-ms-correlation-request-id": "3806d16d-ec11-4f05-8b88-ee485224f21c", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "9205a3f4-c425-4f08-bc83-42245e2c1077", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102920Z:3806d16d-ec11-4f05-8b88-ee485224f21c" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/d837f43f-2c1d-4e79-ace7-2360ea6e9a85?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e6f158d668ea6a48a23efb3f33c4fee9-b0a7d993c51faf47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "fa0dda0322820a523d6a59fc47dc8cec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a6c2ba5e-1118-4e35-9ab6-90dcdfc9b88c", - "x-ms-client-request-id": "fa0dda0322820a523d6a59fc47dc8cec", - "x-ms-correlation-request-id": "e8feb682-e492-46dd-8b18-37e23e7ad472", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "bdc225d7-1380-4d02-a1b9-2736383565f8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102940Z:e8feb682-e492-46dd-8b18-37e23e7ad472" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-e6f158d668ea6a48a23efb3f33c4fee9-167ac1afcd05324e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "f2640d8a3601016926d226f679479082", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1947", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:40 GMT", - "ETag": "W/\u0022815b03b3-2175-4035-b843-c76265268279\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8dcc32a4-651c-415b-8cef-cb78dc3ba7c4", - "x-ms-client-request-id": "f2640d8a3601016926d226f679479082", - "x-ms-correlation-request-id": "f8b2c0c1-0609-4c66-909f-7b1cdc9f6f57", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "cee33bb7-53ed-411a-a245-3d83c89da2db", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102941Z:f8b2c0c1-0609-4c66-909f-7b1cdc9f6f57" - }, - "ResponseBody": { - "name": "pe-959", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959", - "etag": "W/\u0022815b03b3-2175-4035-b843-c76265268279\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "066b1a8d-6c3b-4799-adf0-a12b9675da8e", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3682", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959/manualPrivateLinkServiceConnections/pec3682", - "etag": "W/\u0022815b03b3-2175-4035-b843-c76265268279\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/networkInterfaces/pe-959.nic.d724421c-d288-425a-8733-53f35ff7c1aa" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f6d404fcac3ca042b0314d3d10ee23ee-82dd47013d6d0348-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c2677c456075b5b9025f48b3f78057b1", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "4a312cd9b39edc83d5ac9f809a085cbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "708", + "Content-Length": "707", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:29:41 GMT", + "Date": "Wed, 22 Mar 2023 08:58:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c2677c456075b5b9025f48b3f78057b1", - "x-ms-correlation-request-id": "92510d95-797c-46e4-a5d9-f9a26508f3d1", + "x-ms-client-request-id": "4a312cd9b39edc83d5ac9f809a085cbf", + "x-ms-correlation-request-id": "4393ca2d-730a-4f2a-b39a-ffb8d5ada380", "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "b6cad63d-e094-4d3a-b926-84f786435b51", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102941Z:92510d95-797c-46e4-a5d9-f9a26508f3d1" + "x-ms-request-id": "53d5f284-5d96-40ff-876f-a43744ac7fe8", + "x-ms-routing-request-id": "JAPANEAST:20230322T085857Z:4393ca2d-730a-4f2a-b39a-ffb8d5ada380" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", - "name": "teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", + "name": "teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Network/privateEndpoints/pe-5798" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -851,16 +359,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "107", "Content-Type": "application/json", - "traceparent": "00-8acdfc884c99784e933f79bc202ca043-6257daff2ef2d943-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "0c67219189e5cc91700bd4affb5c90f5", + "traceparent": "00-8c033646bb07ea4d89f79545c51f7ee7-a659dbf8e683cf49-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7ff52db19c24f3461d554adb8c4b4a97", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -874,28 +382,28 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "705", + "Content-Length": "704", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:29:43 GMT", + "Date": "Wed, 22 Mar 2023 08:58:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0c67219189e5cc91700bd4affb5c90f5", - "x-ms-correlation-request-id": "c1541ed6-22dc-4e59-96f4-9737a7405e3a", + "x-ms-client-request-id": "7ff52db19c24f3461d554adb8c4b4a97", + "x-ms-correlation-request-id": "69381d48-3385-4939-9ce9-a88419bd454b", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "ba24898b-8220-4d93-b497-a25c9b339f16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102944Z:c1541ed6-22dc-4e59-96f4-9737a7405e3a" + "x-ms-request-id": "d6a8f95c-d2c4-4c53-8923-6c553747f24e", + "x-ms-routing-request-id": "JAPANEAST:20230322T085859Z:69381d48-3385-4939-9ce9-a88419bd454b" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", - "name": "teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", + "name": "teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Network/privateEndpoints/pe-5798" }, "privateLinkServiceConnectionState": { "status": "Approved", @@ -906,119 +414,42 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1d5af8b2f1bccc4e835317c3ff8867dd-41ba678ac062304a-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "cab7d7daca742a7754aff0a2edb509a6", + "traceparent": "00-29221d9a0573ce409da39bef7433171a-d9a44f9b2518b049-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "73722f5bf3562e21d2fb1be1f1fcfbe1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1956", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:44 GMT", - "ETag": "W/\u00221c94af4d-f089-4fb3-90fb-52dc652b90a2\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f723a4a3-2573-4e7c-a36a-cfcc3fc9d457", - "x-ms-client-request-id": "cab7d7daca742a7754aff0a2edb509a6", - "x-ms-correlation-request-id": "36969d01-fc5c-47e0-9f89-efdd58e61923", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "3650dfcc-20a3-4f26-a665-048a6ed20aa1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102944Z:36969d01-fc5c-47e0-9f89-efdd58e61923" - }, - "ResponseBody": { - "name": "pe-959", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959", - "etag": "W/\u00221c94af4d-f089-4fb3-90fb-52dc652b90a2\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "066b1a8d-6c3b-4799-adf0-a12b9675da8e", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3682", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959/manualPrivateLinkServiceConnections/pec3682", - "etag": "W/\u00221c94af4d-f089-4fb3-90fb-52dc652b90a2\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Approved by test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/virtualNetworks/vnet-5024/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/networkInterfaces/pe-959.nic.d724421c-d288-425a-8733-53f35ff7c1aa" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09?api-version=2022-09-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f6405710574b13428c3f3f34b6bed7fc-94a9f68990bb604d-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "5764747b83dfbb9ceb9a51698b09b9a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "705", + "Content-Length": "704", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:29:44 GMT", + "Date": "Wed, 22 Mar 2023 08:58:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5764747b83dfbb9ceb9a51698b09b9a6", - "x-ms-correlation-request-id": "0783be66-9043-485d-8036-9800a133600d", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "1e2589e8-3858-47f6-bca1-ea1d92889086", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102945Z:0783be66-9043-485d-8036-9800a133600d" + "x-ms-client-request-id": "73722f5bf3562e21d2fb1be1f1fcfbe1", + "x-ms-correlation-request-id": "dab2bdf6-778a-41d0-8965-62c30d10de62", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "8d41a249-7361-48ea-81e5-e34dffb0280c", + "x-ms-routing-request-id": "JAPANEAST:20230322T085900Z:dab2bdf6-778a-41d0-8965-62c30d10de62" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", - "name": "teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", + "name": "teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Network/privateEndpoints/pe-5798" }, "privateLinkServiceConnectionState": { "status": "Approved", @@ -1029,44 +460,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-94e354b5d4d5224d98504753584cf55e-808e60f97a587743-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "20d952ce8cc8c63daa3db83698eedeba", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "66b51073ed993d4ee53d2c4869a74f89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "717", + "Content-Length": "716", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:29:45 GMT", + "Date": "Wed, 22 Mar 2023 08:59:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "20d952ce8cc8c63daa3db83698eedeba", - "x-ms-correlation-request-id": "ff0435fc-4438-4033-9afa-6bc7d31075cd", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "ee15c06d-99f4-4aee-91d0-4de06240529d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102945Z:ff0435fc-4438-4033-9afa-6bc7d31075cd" + "x-ms-client-request-id": "66b51073ed993d4ee53d2c4869a74f89", + "x-ms-correlation-request-id": "e0c64dc2-a458-40f9-b485-c2d70259e9e1", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "bf3d8b9b-db1c-4b75-9701-63dedd4c771d", + "x-ms-routing-request-id": "JAPANEAST:20230322T085900Z:e0c64dc2-a458-40f9-b485-c2d70259e9e1" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", - "name": "teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", + "name": "teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Network/privateEndpoints/pe-959" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Network/privateEndpoints/pe-5798" }, "privateLinkServiceConnectionState": { "status": "Approved", @@ -1079,14 +509,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039/privateEndpointConnections/teststoragemgmt4039.d7413d3d-4159-40aa-a770-c0fadda26e09?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506/privateEndpointConnections/teststoragemgmt2506.106a52b5-ad1b-4e6f-a082-3f7d23529b94?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2c03d4f3ff37374ea681de8a35b19282-dd01a6a19ff6114d-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "87332e0238f756163afbdfd9790e9e4b", + "traceparent": "00-25bec0c2127cd04ca701e860ec0435e1-9f3601e86eecbb4d-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "6a250761e996be690bc7ac2981650220", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1095,28 +525,28 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:47 GMT", + "Date": "Wed, 22 Mar 2023 08:59:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "87332e0238f756163afbdfd9790e9e4b", - "x-ms-correlation-request-id": "7b719c11-1a03-4cbe-b7dc-4a576558ce91", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "3a532292-2508-48fd-aaf9-62bc93362dc6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102948Z:7b719c11-1a03-4cbe-b7dc-4a576558ce91" + "x-ms-client-request-id": "6a250761e996be690bc7ac2981650220", + "x-ms-correlation-request-id": "c2a4e724-0472-457a-98dc-6b0c86a5458b", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "0b4d544a-dcbe-486d-8641-4d1a0275edb4", + "x-ms-routing-request-id": "JAPANEAST:20230322T085902Z:c2a4e724-0472-457a-98dc-6b0c86a5458b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-5968/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4039?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-744/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2506?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-11839a06f658c049bba9635dc2ff6f2c-7ba4ba1b6d67bb4b-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "9bd349f5e8dcefdd379dada2ca6522fc", + "traceparent": "00-132a3d64b0e52e499da278981746a9be-31636444cbf63141-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7c676859e3956dfde0348e18c6d9c52b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1125,25 +555,25 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:29:54 GMT", + "Date": "Wed, 22 Mar 2023 08:59:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9bd349f5e8dcefdd379dada2ca6522fc", - "x-ms-correlation-request-id": "1fbd8be8-64b8-4930-b997-84d4bd0fd5cd", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "9e66b05d-d7cf-4aa4-8a36-0cd4b9210d52", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T102955Z:1fbd8be8-64b8-4930-b997-84d4bd0fd5cd" + "x-ms-client-request-id": "7c676859e3956dfde0348e18c6d9c52b", + "x-ms-correlation-request-id": "f18bd8d1-2170-4a20-9ef1-21e7aec97f54", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "1eadd82c-0b43-4856-b728-3021ba91cec1", + "x-ms-routing-request-id": "JAPANEAST:20230322T085909Z:f18bd8d1-2170-4a20-9ef1-21e7aec97f54" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "785530460", + "RandomSeed": "1320149507", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "45b60d85-fd72-427a-a708-f994d26e593e" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnection.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnection.json index 54066ab9b1a9..14b9407a688c 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnection.json +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnection.json @@ -1,39 +1,52 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f47d872f22ec824bbbd9c91cd46dc1c5-3636c15acd02ec47-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "82e5ba4cdc148091226afdde4f267035", + "traceparent": "00-58afbcfd4dd91943a96b9645f94703f9-74892febf185f941-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "4ed5d617d20b840171cb6b02e55122a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "411", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:34 GMT", + "Date": "Wed, 22 Mar 2023 08:47:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a17276c1-6c80-4f6e-b307-23f981b61665", + "x-ms-correlation-request-id": "62dabbb1-1c02-4d99-87dc-21c1092ad276", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "a17276c1-6c80-4f6e-b307-23f981b61665", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100235Z:a17276c1-6c80-4f6e-b307-23f981b61665" + "x-ms-request-id": "62dabbb1-1c02-4d99-87dc-21c1092ad276", + "x-ms-routing-request-id": "JAPANEAST:20230322T084724Z:62dabbb1-1c02-4d99-87dc-21c1092ad276" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e", + "tags": { + "TagKey-9823": "TagValue-1254", + "TagKey-3481": "TagValue-320", + "TagKey-4926": "TagValue-1187", + "TagKey-751": "TagValue-3921", + "TagKey-1866": "TagValue-8559", + "TagKey-3094": "TagValue-9190", + "TagKey-2449": "TagValue-9", + "TagKey-8379": "TagValue-164", + "TagKey-7470": "TagValue-2205", + "TagKey-4236": "TagValue-3698", + "TagKey-5316": "TagValue-2725" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "AzureStorage_DMStaging_10041369", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -43,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/teststorageRG-3553?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-2361?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "traceparent": "00-41cdedaff72a034abf4f8e55307c11d0-62fd9cade7c40946-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "469a77d8ed12bb9cccda60e122bcc2a3", + "traceparent": "00-d674e1eebb2eac41b8b60bcaa6c8e7b6-21ab4a53fe1fb843-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7eb88b3ef394e98742eb74dce17e19b6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -66,19 +79,19 @@ "Cache-Control": "no-cache", "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:37 GMT", + "Date": "Wed, 22 Mar 2023 08:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80d09cbd-cb5a-4a41-a44f-1d8fab9cc4ba", + "x-ms-correlation-request-id": "ef464cec-6a37-49fa-a7ba-869fe588a1ee", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "80d09cbd-cb5a-4a41-a44f-1d8fab9cc4ba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100238Z:80d09cbd-cb5a-4a41-a44f-1d8fab9cc4ba" + "x-ms-request-id": "ef464cec-6a37-49fa-a7ba-869fe588a1ee", + "x-ms-routing-request-id": "JAPANEAST:20230322T084726Z:ef464cec-6a37-49fa-a7ba-869fe588a1ee" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553", - "name": "teststorageRG-3553", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361", + "name": "teststorageRG-2361", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "tags": { @@ -90,20 +103,20 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-414154ba77e7dc4e97492e1eb086ec4b-1f47bfea494dfc46-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "4a4b32a81496779787d4f8836ad921e4", + "traceparent": "00-ca617c1dce2a544585d3aa9867ffd7d7-b9f5d08f6c6c4e4d-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "dd70526c43ee76b42502873812f9cf00", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "teststoragemgmt2260", + "name": "teststoragemgmt4522", "type": "Microsoft.Storage/storageAccounts" }, "StatusCode": 200, @@ -111,33 +124,33 @@ "Cache-Control": "no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:02:38 GMT", + "Date": "Wed, 22 Mar 2023 08:47:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4a4b32a81496779787d4f8836ad921e4", - "x-ms-correlation-request-id": "f46701db-ee88-4299-a499-2a49dbc713ef", + "x-ms-client-request-id": "dd70526c43ee76b42502873812f9cf00", + "x-ms-correlation-request-id": "95531634-4575-432e-8c4d-3f693ae35359", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "530033b1-4448-4e75-b7f4-8e25d2bee515", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100239Z:f46701db-ee88-4299-a499-2a49dbc713ef" + "x-ms-request-id": "dea3d2fb-286a-4a63-aa6f-10d7e7a07657", + "x-ms-routing-request-id": "JAPANEAST:20230322T084728Z:95531634-4575-432e-8c4d-3f693ae35359" }, "ResponseBody": { "nameAvailable": true } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-6f7c46684a758a4a826524ec58e4cd04-9a2eddce33fa3145-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "55eede7c394c49cdc74701309fffae3b", + "traceparent": "00-f3fb8511d8977d41abd3be8803c14859-05b3ed44a6256242-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "5d30b215822f4de364c9e78da8904d52", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -157,30 +170,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:42 GMT", + "Date": "Wed, 22 Mar 2023 08:47:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fc51403b-4c10-449c-b8c4-0f803ae497b6?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/87111ac9-ece0-4527-bebc-0107563fe224?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "55eede7c394c49cdc74701309fffae3b", - "x-ms-correlation-request-id": "33b11a2f-c293-4116-a656-21ab3d03cd94", + "x-ms-client-request-id": "5d30b215822f4de364c9e78da8904d52", + "x-ms-correlation-request-id": "4a4ae2bf-dc08-4fff-b55c-1b070625d7a1", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "fc51403b-4c10-449c-b8c4-0f803ae497b6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100243Z:33b11a2f-c293-4116-a656-21ab3d03cd94" + "x-ms-request-id": "87111ac9-ece0-4527-bebc-0107563fe224", + "x-ms-routing-request-id": "JAPANEAST:20230322T084731Z:4a4ae2bf-dc08-4fff-b55c-1b070625d7a1" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fc51403b-4c10-449c-b8c4-0f803ae497b6?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/87111ac9-ece0-4527-bebc-0107563fe224?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6f7c46684a758a4a826524ec58e4cd04-fa6302d8f10b4d46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "dea5fc3f4dd36f7b6401824f1267d887", + "traceparent": "00-f3fb8511d8977d41abd3be8803c14859-c22786e5df012e4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "cbcbdba459e9ea986e2279255c27cd95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -189,30 +202,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:02:42 GMT", + "Date": "Wed, 22 Mar 2023 08:47:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fc51403b-4c10-449c-b8c4-0f803ae497b6?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/87111ac9-ece0-4527-bebc-0107563fe224?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "dea5fc3f4dd36f7b6401824f1267d887", - "x-ms-correlation-request-id": "b353917a-eb06-42f9-b68c-1c7edcd1a5cd", + "x-ms-client-request-id": "cbcbdba459e9ea986e2279255c27cd95", + "x-ms-correlation-request-id": "c133aaf9-2fcf-448e-a0bc-582481437a40", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "8e253cc3-79b2-47b3-9151-e5469ec739cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100243Z:b353917a-eb06-42f9-b68c-1c7edcd1a5cd" + "x-ms-request-id": "93751751-bffc-40bf-b424-673130c51e77", + "x-ms-routing-request-id": "JAPANEAST:20230322T084731Z:c133aaf9-2fcf-448e-a0bc-582481437a40" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/fc51403b-4c10-449c-b8c4-0f803ae497b6?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/87111ac9-ece0-4527-bebc-0107563fe224?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6f7c46684a758a4a826524ec58e4cd04-4b07327939128049-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "e147bd25e25bd6fa9c8b527cadb4a68f", + "traceparent": "00-f3fb8511d8977d41abd3be8803c14859-41b83a3100794d42-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "f3ec35b5ff1549cb62e8592613f24db2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -221,17 +234,17 @@ "Cache-Control": "no-cache", "Content-Length": "1545", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:03:01 GMT", + "Date": "Wed, 22 Mar 2023 08:47:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e147bd25e25bd6fa9c8b527cadb4a68f", - "x-ms-correlation-request-id": "22729ce8-3305-425c-b447-77cde3a7400a", + "x-ms-client-request-id": "f3ec35b5ff1549cb62e8592613f24db2", + "x-ms-correlation-request-id": "e79a33be-03ef-44c9-a0c6-446bce03eb9d", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "7dbcbd46-bf32-4015-9e28-6beb681bfa69", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100301Z:22729ce8-3305-425c-b447-77cde3a7400a" + "x-ms-request-id": "ca683b4b-aeee-4962-8b82-c1f832e9538b", + "x-ms-routing-request-id": "JAPANEAST:20230322T084748Z:e79a33be-03ef-44c9-a0c6-446bce03eb9d" }, "ResponseBody": { "sku": { @@ -239,8 +252,8 @@ "tier": "Standard" }, "kind": "StorageV2", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260", - "name": "teststoragemgmt2260", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522", + "name": "teststoragemgmt4522", "type": "Microsoft.Storage/storageAccounts", "location": "eastus2", "tags": { @@ -249,8 +262,8 @@ }, "properties": { "keyCreationTime": { - "key1": "2022-11-17T10:02:41.5473618Z", - "key2": "2022-11-17T10:02:41.5473618Z" + "key1": "2023-03-22T08:47:29.5888822Z", + "key2": "2023-03-22T08:47:29.5888822Z" }, "privateEndpointConnections": [], "minimumTlsVersion": "TLS1_0", @@ -267,26 +280,26 @@ "file": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:02:41.9223563Z" + "lastEnabledTime": "2023-03-22T08:47:29.7139278Z" }, "blob": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:02:41.9223563Z" + "lastEnabledTime": "2023-03-22T08:47:29.7139278Z" } }, "keySource": "Microsoft.Storage" }, "accessTier": "Hot", "provisioningState": "Succeeded", - "creationTime": "2022-11-17T10:02:41.4067287Z", + "creationTime": "2023-03-22T08:47:29.4326352Z", "primaryEndpoints": { - "dfs": "https://teststoragemgmt2260.dfs.core.windows.net/", - "web": "https://teststoragemgmt2260.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt2260.blob.core.windows.net/", - "queue": "https://teststoragemgmt2260.queue.core.windows.net/", - "table": "https://teststoragemgmt2260.table.core.windows.net/", - "file": "https://teststoragemgmt2260.file.core.windows.net/" + "dfs": "https://teststoragemgmt4522.dfs.core.windows.net/", + "web": "https://teststoragemgmt4522.z20.web.core.windows.net/", + "blob": "https://teststoragemgmt4522.blob.core.windows.net/", + "queue": "https://teststoragemgmt4522.queue.core.windows.net/", + "table": "https://teststoragemgmt4522.table.core.windows.net/", + "file": "https://teststoragemgmt4522.file.core.windows.net/" }, "primaryLocation": "eastus2", "statusOfPrimary": "available", @@ -296,519 +309,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "traceparent": "00-d50f51517e84a642b875f5abf47a07f4-591dab205adc7f42-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "59a2f10167d00dee0fd9e823f2519bf6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/a3dd7856-031a-48c9-a006-0ed0f3a108a9?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b6420a3f-54f6-439e-b393-38f0752427ab", - "x-ms-client-request-id": "59a2f10167d00dee0fd9e823f2519bf6", - "x-ms-correlation-request-id": "39c96e91-f97e-417a-aaec-7129a3fc1f9d", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "a3dd7856-031a-48c9-a006-0ed0f3a108a9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100305Z:39c96e91-f97e-417a-aaec-7129a3fc1f9d" - }, - "ResponseBody": { - "name": "vnet-3370", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370", - "etag": "W/\u00224f72b83d-3142-4404-9502-71d2134ff345\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "3a540edd-cff6-40ed-be40-4eee19e636a2", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370/subnets/default", - "etag": "W/\u00224f72b83d-3142-4404-9502-71d2134ff345\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/a3dd7856-031a-48c9-a006-0ed0f3a108a9?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-d50f51517e84a642b875f5abf47a07f4-5f2fbfb3aff7d742-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "761069f22d36555558d44c0912b2a939", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bbe083cb-1e2a-47a2-89cd-74d1b2830822", - "x-ms-client-request-id": "761069f22d36555558d44c0912b2a939", - "x-ms-correlation-request-id": "a5b77172-1c89-4cd0-82e5-e732182a2bcd", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "d47001d6-27f5-4872-b46f-78c509eb1d55", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100305Z:a5b77172-1c89-4cd0-82e5-e732182a2bcd" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-d50f51517e84a642b875f5abf47a07f4-5c7f8db611f95c4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c1a985b69ec05d64949f8a8e1ff40e4d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:06 GMT", - "ETag": "W/\u0022e822a248-d23f-47b0-92d7-53a7b9afc9c1\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9b929316-a68d-4324-8bff-01a4a56734c3", - "x-ms-client-request-id": "c1a985b69ec05d64949f8a8e1ff40e4d", - "x-ms-correlation-request-id": "bde481bd-4c0e-48a6-a6f5-1e86eefccac3", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "6862e0dd-5cba-45dc-95dc-b279b960569c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100306Z:bde481bd-4c0e-48a6-a6f5-1e86eefccac3" - }, - "ResponseBody": { - "name": "vnet-3370", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370", - "etag": "W/\u0022e822a248-d23f-47b0-92d7-53a7b9afc9c1\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "3a540edd-cff6-40ed-be40-4eee19e636a2", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370/subnets/default", - "etag": "W/\u0022e822a248-d23f-47b0-92d7-53a7b9afc9c1\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877?api-version=2021-02-01", - "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "728", - "Content-Type": "application/json", - "traceparent": "00-abeeb601b811c4458f2dc4163144fa00-ac38ce199548574a-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "25408831d6c0909d98ab5853f01c980e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370/subnets/default", - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3526", - "properties": { - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/78f36bd2-c4c3-481b-946f-93a93262887e?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1950", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "989b1992-0d7e-49bc-ae0b-eded83d98638", - "x-ms-client-request-id": "25408831d6c0909d98ab5853f01c980e", - "x-ms-correlation-request-id": "106f9abe-d834-4937-96a9-ed30983cdb8d", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "78f36bd2-c4c3-481b-946f-93a93262887e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100310Z:106f9abe-d834-4937-96a9-ed30983cdb8d" - }, - "ResponseBody": { - "name": "pe-8877", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877", - "etag": "W/\u00228ef5c7b8-cc97-4e94-85d9-69697ddf7162\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "a47ead30-88fb-4573-a8ca-6111f5d61312", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3526", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877/manualPrivateLinkServiceConnections/pec3526", - "etag": "W/\u00228ef5c7b8-cc97-4e94-85d9-69697ddf7162\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/networkInterfaces/pe-8877.nic.13c434f5-550b-4e1b-aab2-ac87fa3fd2b4" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/78f36bd2-c4c3-481b-946f-93a93262887e?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-abeeb601b811c4458f2dc4163144fa00-bb3e9e59c497294b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "218186e090f9d3c5233006b90441af6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a7ff993d-e546-4844-8158-733006d815c4", - "x-ms-client-request-id": "218186e090f9d3c5233006b90441af6e", - "x-ms-correlation-request-id": "24bdf71b-cd5a-40ce-9a9c-5f29bbc83c12", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "02ac35ba-e481-48f5-8bb7-0d5a225fde00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100310Z:24bdf71b-cd5a-40ce-9a9c-5f29bbc83c12" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/78f36bd2-c4c3-481b-946f-93a93262887e?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-abeeb601b811c4458f2dc4163144fa00-c5436a4efabd8545-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "95b011f63936dcf0838d442a32d65933", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6f6336de-b9cd-4630-8fa9-05b0b1c340b3", - "x-ms-client-request-id": "95b011f63936dcf0838d442a32d65933", - "x-ms-correlation-request-id": "1cb48542-8993-4020-ac1e-d901f37446b9", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "2c673315-47a6-4b88-b1c0-8bf3862e6707", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100320Z:1cb48542-8993-4020-ac1e-d901f37446b9" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/78f36bd2-c4c3-481b-946f-93a93262887e?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-abeeb601b811c4458f2dc4163144fa00-6706b49fbcfb3545-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "697259e5779ab215b343cc6b4d4bae9f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bc6356ed-1aa6-459a-8839-df76914a987e", - "x-ms-client-request-id": "697259e5779ab215b343cc6b4d4bae9f", - "x-ms-correlation-request-id": "74255c2b-5ec2-465a-b588-0034a5702e98", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "81b6f3c1-4c77-47c4-afd2-c96a322ffa47", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100341Z:74255c2b-5ec2-465a-b588-0034a5702e98" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-abeeb601b811c4458f2dc4163144fa00-96ef73b1a7285644-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "25d134e630b4a7c895a49d6c4c9ba14d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1951", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:41 GMT", - "ETag": "W/\u0022b6d46df0-a27d-49fc-90eb-0ef80a7b8116\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4436dd66-9d8e-494d-982b-88776961965b", - "x-ms-client-request-id": "25d134e630b4a7c895a49d6c4c9ba14d", - "x-ms-correlation-request-id": "b0d15ae4-9cfb-4ff8-b1aa-30b819a3018a", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "2889c01c-6549-40a6-b1d0-ea9a21dc8f8f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100341Z:b0d15ae4-9cfb-4ff8-b1aa-30b819a3018a" - }, - "ResponseBody": { - "name": "pe-8877", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877", - "etag": "W/\u0022b6d46df0-a27d-49fc-90eb-0ef80a7b8116\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "a47ead30-88fb-4573-a8ca-6111f5d61312", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3526", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877/manualPrivateLinkServiceConnections/pec3526", - "etag": "W/\u0022b6d46df0-a27d-49fc-90eb-0ef80a7b8116\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/virtualNetworks/vnet-3370/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/networkInterfaces/pe-8877.nic.13c434f5-550b-4e1b-aab2-ac87fa3fd2b4" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260/privateEndpointConnections?api-version=2022-09-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-d3c8252e10c0694c9660c1cb04ff18a1-635ab41978eca049-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "abd4d2d645ce7fd4fbfde2f26d858f37", + "traceparent": "00-1d946a9f4ec8e747bf0bce12d3becb8b-d3d67b0751a84f40-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a416df3f97b8ae2f5cb446696b476015", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -817,28 +325,28 @@ "Cache-Control": "no-cache", "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:03:41 GMT", + "Date": "Wed, 22 Mar 2023 08:48:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "abd4d2d645ce7fd4fbfde2f26d858f37", - "x-ms-correlation-request-id": "585649ba-deba-49c3-85cd-edcb4c340805", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "213059c4-5fd6-4125-9607-b032068bf12b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100342Z:585649ba-deba-49c3-85cd-edcb4c340805" + "x-ms-client-request-id": "a416df3f97b8ae2f5cb446696b476015", + "x-ms-correlation-request-id": "f0a0e871-7cc8-44f1-b0e4-256b6ae34fa9", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "173ccc97-c950-4388-9b48-f475ac934958", + "x-ms-routing-request-id": "JAPANEAST:20230322T084837Z:f0a0e871-7cc8-44f1-b0e4-256b6ae34fa9" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260/privateEndpointConnections/teststoragemgmt2260.c3cd090f-30a3-49d9-b548-a6107fcfe6f8", - "name": "teststoragemgmt2260.c3cd090f-30a3-49d9-b548-a6107fcfe6f8", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522/privateEndpointConnections/teststoragemgmt4522.ac284377-3f0b-4476-ba0e-990b2819a762", + "name": "teststoragemgmt4522.ac284377-3f0b-4476-ba0e-990b2819a762", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Network/privateEndpoints/pe-4985" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -851,14 +359,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-352395c970b1d8439915dab0483275e7-7ba9c926184bde45-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "fe43a4de3404b47f91cbd4f5d9a86618", + "traceparent": "00-98f047be17bd6148bc2f2274a4084db6-ccc46785e4b6a14b-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "56e453b6698b50d341e52ac30b508f76", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -867,28 +375,28 @@ "Cache-Control": "no-cache", "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:03:42 GMT", + "Date": "Wed, 22 Mar 2023 08:48:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fe43a4de3404b47f91cbd4f5d9a86618", - "x-ms-correlation-request-id": "670b9d39-789f-4eb6-96fc-87cafd8f7750", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "4fa13345-dd44-4d9c-a886-852c23b2be4c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100342Z:670b9d39-789f-4eb6-96fc-87cafd8f7750" + "x-ms-client-request-id": "56e453b6698b50d341e52ac30b508f76", + "x-ms-correlation-request-id": "44f9ad36-8fb0-47f3-9c09-ba8af6b5ef35", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "6d163293-81e7-4671-a61e-6cda12702b08", + "x-ms-routing-request-id": "JAPANEAST:20230322T084838Z:44f9ad36-8fb0-47f3-9c09-ba8af6b5ef35" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260/privateEndpointConnections/teststoragemgmt2260.c3cd090f-30a3-49d9-b548-a6107fcfe6f8", - "name": "teststoragemgmt2260.c3cd090f-30a3-49d9-b548-a6107fcfe6f8", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522/privateEndpointConnections/teststoragemgmt4522.ac284377-3f0b-4476-ba0e-990b2819a762", + "name": "teststoragemgmt4522.ac284377-3f0b-4476-ba0e-990b2819a762", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Network/privateEndpoints/pe-8877" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Network/privateEndpoints/pe-4985" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -901,14 +409,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260/privateEndpointConnections/teststoragemgmt2260.c3cd090f-30a3-49d9-b548-a6107fcfe6f8?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522/privateEndpointConnections/teststoragemgmt4522.ac284377-3f0b-4476-ba0e-990b2819a762?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6236077771257846884813b04ecdf28f-4922d32bca053a41-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "7b957ea20377a1d1605229b64ed53a0f", + "traceparent": "00-f568f697e91caa458d52dd89f3051ef7-26c9dceca9836e40-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "610460ba10a653092f683038472ce390", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -917,28 +425,28 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:44 GMT", + "Date": "Wed, 22 Mar 2023 08:48:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7b957ea20377a1d1605229b64ed53a0f", - "x-ms-correlation-request-id": "f8f47513-4c50-41ef-b5a2-eb23475bab08", + "x-ms-client-request-id": "610460ba10a653092f683038472ce390", + "x-ms-correlation-request-id": "5a8b8fef-ffca-4384-ae4a-14b9a13bf90d", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "8ad5af6a-1971-4d9a-8fa1-9faaf6752b15", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100344Z:f8f47513-4c50-41ef-b5a2-eb23475bab08" + "x-ms-request-id": "94e20a3b-6c45-4182-8c99-20b68c82b10f", + "x-ms-routing-request-id": "JAPANEAST:20230322T084840Z:5a8b8fef-ffca-4384-ae4a-14b9a13bf90d" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-3553/providers/Microsoft.Storage/storageAccounts/teststoragemgmt2260?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2361/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4522?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-ac558d63fc5991409c2a9463cbf28443-887a62c159be054f-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "a88d6515a257a148521f190270dea553", + "traceparent": "00-6908ab12b664f542a8d5d1b1c7fdf04e-4b7854b1c310cd45-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "b566a770a737d53f0bc663d36d6ba20b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -947,25 +455,25 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:03:50 GMT", + "Date": "Wed, 22 Mar 2023 08:48:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a88d6515a257a148521f190270dea553", - "x-ms-correlation-request-id": "db53453e-0b42-4949-a1ae-a95735f246a8", + "x-ms-client-request-id": "b566a770a737d53f0bc663d36d6ba20b", + "x-ms-correlation-request-id": "32deeb5f-3674-421f-8214-5c5b7f58e67f", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "a5f5e10b-1dbb-4625-bcf9-44d0f4117d92", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100351Z:db53453e-0b42-4949-a1ae-a95735f246a8" + "x-ms-request-id": "96ff0513-1848-494a-8f6c-57b6c5507e93", + "x-ms-routing-request-id": "JAPANEAST:20230322T084845Z:32deeb5f-3674-421f-8214-5c5b7f58e67f" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1082069787", + "RandomSeed": "481695338", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "45b60d85-fd72-427a-a708-f994d26e593e" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnectionAsync.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnectionAsync.json index 4966e2d97ea0..5f88a0c72f56 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnectionAsync.json +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllPrivateEndpointConnectionAsync.json @@ -1,39 +1,52 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-00f1bcd9b3a48a409057bfa39cda5295-9066549124344d44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "531b95bf90882a22e61703509ecf9b96", + "traceparent": "00-ab7a47f13a2d844088281e5df2ac2c70-67dffd2042fa9245-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "d0aa791a38c0342d1b07eff7fd3bf601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "411", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:07 GMT", + "Date": "Wed, 22 Mar 2023 08:59:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09a88740-0cd6-4de7-a8e5-5df232c450f1", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "09a88740-0cd6-4de7-a8e5-5df232c450f1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103007Z:09a88740-0cd6-4de7-a8e5-5df232c450f1" + "x-ms-correlation-request-id": "646c2d27-fa77-4f3c-a3fa-8e34d81410bc", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "646c2d27-fa77-4f3c-a3fa-8e34d81410bc", + "x-ms-routing-request-id": "JAPANEAST:20230322T085922Z:646c2d27-fa77-4f3c-a3fa-8e34d81410bc" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e", + "tags": { + "TagKey-9823": "TagValue-1254", + "TagKey-3481": "TagValue-320", + "TagKey-4926": "TagValue-1187", + "TagKey-751": "TagValue-3921", + "TagKey-1866": "TagValue-8559", + "TagKey-3094": "TagValue-9190", + "TagKey-2449": "TagValue-9", + "TagKey-8379": "TagValue-164", + "TagKey-7470": "TagValue-2205", + "TagKey-4236": "TagValue-3698", + "TagKey-5316": "TagValue-2725" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "AzureStorage_DMStaging_10041369", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -43,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/teststorageRG-2071?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-6400?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "traceparent": "00-d23924a39ef1af408bb4afc14489da0e-993dff45dd975847-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "3f3e6a1e4f58d26d72be0e51f250b9f1", + "traceparent": "00-6ebe7689453c444b8e6766498abac89a-5abcec25c12dad49-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "467c35751af263a82341479c712c5200", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -66,19 +79,19 @@ "Cache-Control": "no-cache", "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:10 GMT", + "Date": "Wed, 22 Mar 2023 08:59:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "937a1e5a-3339-4703-ac7d-c5fae64294b0", + "x-ms-correlation-request-id": "e8481793-de1b-400f-aa96-9b02b3760756", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "937a1e5a-3339-4703-ac7d-c5fae64294b0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103010Z:937a1e5a-3339-4703-ac7d-c5fae64294b0" + "x-ms-request-id": "e8481793-de1b-400f-aa96-9b02b3760756", + "x-ms-routing-request-id": "JAPANEAST:20230322T085923Z:e8481793-de1b-400f-aa96-9b02b3760756" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071", - "name": "teststorageRG-2071", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400", + "name": "teststorageRG-6400", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "tags": { @@ -90,20 +103,20 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-4a2d8e79af735f4dab6c50a534649604-a9151b30cabef644-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "8a1f77e7c40ac75c43b78108dfdf9a7a", + "traceparent": "00-f33bf781dcb1b440b9b88b908ae8161f-b0c720051f9f2b4f-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7500a0bec4e9a5a5db6eb8808502405d", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "teststoragemgmt5432", + "name": "teststoragemgmt3985", "type": "Microsoft.Storage/storageAccounts" }, "StatusCode": 200, @@ -111,33 +124,33 @@ "Cache-Control": "no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:30:11 GMT", + "Date": "Wed, 22 Mar 2023 08:59:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8a1f77e7c40ac75c43b78108dfdf9a7a", - "x-ms-correlation-request-id": "5945320b-d81f-43d7-8e58-6b3ab8a017ed", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "53435186-d154-484d-ac45-1f6bf1a37cbf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103011Z:5945320b-d81f-43d7-8e58-6b3ab8a017ed" + "x-ms-client-request-id": "7500a0bec4e9a5a5db6eb8808502405d", + "x-ms-correlation-request-id": "6dfe2f7a-5a4d-4a7b-a383-ff96063049ea", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "26f7d95d-e640-4169-9d4c-723f25cede65", + "x-ms-routing-request-id": "JAPANEAST:20230322T085925Z:6dfe2f7a-5a4d-4a7b-a383-ff96063049ea" }, "ResponseBody": { "nameAvailable": true } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-c10ee947fd50d3488285df0b445c60a4-874c561905a6bd42-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "2997158766ffae458015d114d9f3c64a", + "traceparent": "00-f1c06cabf0719f41a7219468ecff3162-f5d30542f7bc7845-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "a084d1fc282b015f6c9df6e697a9da9c", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -157,30 +170,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:14 GMT", + "Date": "Wed, 22 Mar 2023 08:59:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/da03edd3-1f74-4ddb-9e8a-17bbd13e71d1?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/08f0f534-197e-4780-bac8-1ec1bfee6d43?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2997158766ffae458015d114d9f3c64a", - "x-ms-correlation-request-id": "d4ad0314-d55f-4d48-b02e-176eb346fc1b", + "x-ms-client-request-id": "a084d1fc282b015f6c9df6e697a9da9c", + "x-ms-correlation-request-id": "f2fd733a-a2ca-4d35-a5a1-9325ecafa936", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "da03edd3-1f74-4ddb-9e8a-17bbd13e71d1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103014Z:d4ad0314-d55f-4d48-b02e-176eb346fc1b" + "x-ms-request-id": "08f0f534-197e-4780-bac8-1ec1bfee6d43", + "x-ms-routing-request-id": "JAPANEAST:20230322T085928Z:f2fd733a-a2ca-4d35-a5a1-9325ecafa936" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/da03edd3-1f74-4ddb-9e8a-17bbd13e71d1?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/08f0f534-197e-4780-bac8-1ec1bfee6d43?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c10ee947fd50d3488285df0b445c60a4-54f54e67281f2b40-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "3a6bd673c721818531710af4f247ee4f", + "traceparent": "00-f1c06cabf0719f41a7219468ecff3162-423db175f5f6f44f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "5b753f075fce96e141ff084ccdbe0e32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -189,30 +202,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:15 GMT", + "Date": "Wed, 22 Mar 2023 08:59:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/da03edd3-1f74-4ddb-9e8a-17bbd13e71d1?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/08f0f534-197e-4780-bac8-1ec1bfee6d43?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3a6bd673c721818531710af4f247ee4f", - "x-ms-correlation-request-id": "044787e2-33b0-49ef-8cbe-2bf71369d758", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "66f093f7-e0cb-438f-a5d1-5fa62270bf34", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103015Z:044787e2-33b0-49ef-8cbe-2bf71369d758" + "x-ms-client-request-id": "5b753f075fce96e141ff084ccdbe0e32", + "x-ms-correlation-request-id": "55424d19-fb0d-4c05-b288-a044728cd04b", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "5f09a3a7-2513-4ee9-9467-9c52ee2b4ab2", + "x-ms-routing-request-id": "JAPANEAST:20230322T085928Z:55424d19-fb0d-4c05-b288-a044728cd04b" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/da03edd3-1f74-4ddb-9e8a-17bbd13e71d1?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/08f0f534-197e-4780-bac8-1ec1bfee6d43?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c10ee947fd50d3488285df0b445c60a4-6792732aa873244e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c6a837f076f81d0301f2488850adc2b6", + "traceparent": "00-f1c06cabf0719f41a7219468ecff3162-e675ab38f57b304d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "948a1c94ea85f55c4412c98a11b31189", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -221,17 +234,17 @@ "Cache-Control": "no-cache", "Content-Length": "1545", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:30:32 GMT", + "Date": "Wed, 22 Mar 2023 08:59:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c6a837f076f81d0301f2488850adc2b6", - "x-ms-correlation-request-id": "15aa933e-96fc-436b-9a46-0eb855139dc3", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "71a6fc28-89d1-4f5c-9ec8-ef0ebf570a63", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103032Z:15aa933e-96fc-436b-9a46-0eb855139dc3" + "x-ms-client-request-id": "948a1c94ea85f55c4412c98a11b31189", + "x-ms-correlation-request-id": "9c9e4ba7-03f9-4b18-8d31-db4c8505d672", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "380f7284-9411-4d2b-bd1b-1f1524d907b3", + "x-ms-routing-request-id": "JAPANEAST:20230322T085945Z:9c9e4ba7-03f9-4b18-8d31-db4c8505d672" }, "ResponseBody": { "sku": { @@ -239,8 +252,8 @@ "tier": "Standard" }, "kind": "StorageV2", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432", - "name": "teststoragemgmt5432", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985", + "name": "teststoragemgmt3985", "type": "Microsoft.Storage/storageAccounts", "location": "eastus2", "tags": { @@ -249,8 +262,8 @@ }, "properties": { "keyCreationTime": { - "key1": "2022-11-17T10:30:13.0212763Z", - "key2": "2022-11-17T10:30:13.0212763Z" + "key1": "2023-03-22T08:59:26.6098273Z", + "key2": "2023-03-22T08:59:26.6098273Z" }, "privateEndpointConnections": [], "minimumTlsVersion": "TLS1_0", @@ -267,26 +280,26 @@ "file": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:30:13.2713210Z" + "lastEnabledTime": "2023-03-22T08:59:26.7504487Z" }, "blob": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:30:13.2713210Z" + "lastEnabledTime": "2023-03-22T08:59:26.7504487Z" } }, "keySource": "Microsoft.Storage" }, "accessTier": "Hot", "provisioningState": "Succeeded", - "creationTime": "2022-11-17T10:30:12.8963166Z", + "creationTime": "2023-03-22T08:59:26.4535468Z", "primaryEndpoints": { - "dfs": "https://teststoragemgmt5432.dfs.core.windows.net/", - "web": "https://teststoragemgmt5432.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt5432.blob.core.windows.net/", - "queue": "https://teststoragemgmt5432.queue.core.windows.net/", - "table": "https://teststoragemgmt5432.table.core.windows.net/", - "file": "https://teststoragemgmt5432.file.core.windows.net/" + "dfs": "https://teststoragemgmt3985.dfs.core.windows.net/", + "web": "https://teststoragemgmt3985.z20.web.core.windows.net/", + "blob": "https://teststoragemgmt3985.blob.core.windows.net/", + "queue": "https://teststoragemgmt3985.queue.core.windows.net/", + "table": "https://teststoragemgmt3985.table.core.windows.net/", + "file": "https://teststoragemgmt3985.file.core.windows.net/" }, "primaryLocation": "eastus2", "statusOfPrimary": "available", @@ -296,556 +309,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "traceparent": "00-57c78b15b844d14b906527d8b9a70048-325966874247004f-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "8802a1f3298c929765f305601fb39a88", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/95de70d2-fefe-43a8-893c-eb3961cc8611?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a86431fa-e00d-4b50-aff5-7a5c00c557d0", - "x-ms-client-request-id": "8802a1f3298c929765f305601fb39a88", - "x-ms-correlation-request-id": "8cc01860-b73a-4d8c-9646-623ab0692a44", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "95de70d2-fefe-43a8-893c-eb3961cc8611", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103035Z:8cc01860-b73a-4d8c-9646-623ab0692a44" - }, - "ResponseBody": { - "name": "vnet-8537", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537", - "etag": "W/\u0022687a0189-7084-4777-b346-fc15ff674ac9\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "c3724815-21da-4729-a2c2-33f569573482", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537/subnets/default", - "etag": "W/\u0022687a0189-7084-4777-b346-fc15ff674ac9\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/95de70d2-fefe-43a8-893c-eb3961cc8611?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57c78b15b844d14b906527d8b9a70048-84a3e6795ffe274f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "a6ff7353c6ec0e6410339282fdbce13e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8b133798-5cbd-47e0-9f79-5f6e2380a843", - "x-ms-client-request-id": "a6ff7353c6ec0e6410339282fdbce13e", - "x-ms-correlation-request-id": "572d7110-4183-47e3-9e93-7b0ee3439ad6", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "311c2831-13b8-4b36-a193-71967ca0f7ce", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103035Z:572d7110-4183-47e3-9e93-7b0ee3439ad6" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/95de70d2-fefe-43a8-893c-eb3961cc8611?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57c78b15b844d14b906527d8b9a70048-087005a41326cc48-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "068affad940d0cb4a32f3a52f9189535", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "957c84d3-e9f3-41a1-90e8-1de3d8517a54", - "x-ms-client-request-id": "068affad940d0cb4a32f3a52f9189535", - "x-ms-correlation-request-id": "6df84318-89ff-4fe9-ad97-c6712f32e73a", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "371e5218-f3ec-45b8-96f3-b8981686412e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103046Z:6df84318-89ff-4fe9-ad97-c6712f32e73a" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-57c78b15b844d14b906527d8b9a70048-630780073fb6e744-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "ac0c576ff4b3ff9c42a61099537ad590", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:45 GMT", - "ETag": "W/\u002257ed78ac-926d-476b-8de4-15e769cd8520\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f8d208e5-34d4-4b7e-a141-798272253dba", - "x-ms-client-request-id": "ac0c576ff4b3ff9c42a61099537ad590", - "x-ms-correlation-request-id": "8ff90093-7cde-4927-a88b-0b09b75893d5", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "12217e1b-7bcb-4e5a-b2ba-43a52ee98f64", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103046Z:8ff90093-7cde-4927-a88b-0b09b75893d5" - }, - "ResponseBody": { - "name": "vnet-8537", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537", - "etag": "W/\u002257ed78ac-926d-476b-8de4-15e769cd8520\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "c3724815-21da-4729-a2c2-33f569573482", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537/subnets/default", - "etag": "W/\u002257ed78ac-926d-476b-8de4-15e769cd8520\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "728", - "Content-Type": "application/json", - "traceparent": "00-cd17a66f054cb44d96566c8ca66b8fbc-e2016f68ec1a7b4d-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "7ca6fed1bea1f2be02bd8c1214f89e5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537/subnets/default", - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec5226", - "properties": { - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/3c3688ce-c4bd-4692-974a-2ceb845d20dc?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1950", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "144c10d7-6444-4028-8c4a-c26e26d15c38", - "x-ms-client-request-id": "7ca6fed1bea1f2be02bd8c1214f89e5d", - "x-ms-correlation-request-id": "139de638-28ab-4cc9-ad59-ba2d3fca6bf4", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "3c3688ce-c4bd-4692-974a-2ceb845d20dc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103049Z:139de638-28ab-4cc9-ad59-ba2d3fca6bf4" - }, - "ResponseBody": { - "name": "pe-4507", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507", - "etag": "W/\u0022db6cb0f4-cfc2-4070-8e7e-8d35dc710e54\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "e1a1898f-ae58-4f1c-84e5-65da0078ad0b", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec5226", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507/manualPrivateLinkServiceConnections/pec5226", - "etag": "W/\u0022db6cb0f4-cfc2-4070-8e7e-8d35dc710e54\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/networkInterfaces/pe-4507.nic.3bb24b13-e290-4e15-beac-b7fa9fa7edde" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/3c3688ce-c4bd-4692-974a-2ceb845d20dc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-cd17a66f054cb44d96566c8ca66b8fbc-fc33a3af0db4a244-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "964709f9f38e4eb5eec0f1df732f9218", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bcaeff39-a5a6-4c12-a21c-e7cf325acadc", - "x-ms-client-request-id": "964709f9f38e4eb5eec0f1df732f9218", - "x-ms-correlation-request-id": "a21e8cf7-b907-4aa4-87e5-573fb12a1a69", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "54464b33-19ce-4595-a801-0d7c6d2bdb59", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103049Z:a21e8cf7-b907-4aa4-87e5-573fb12a1a69" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/3c3688ce-c4bd-4692-974a-2ceb845d20dc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-cd17a66f054cb44d96566c8ca66b8fbc-4a2532979d98424b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "2e67f5fa23e017659b1ab83a3aa239d8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:30:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f5fc58d1-da18-42de-ae80-4351c1753333", - "x-ms-client-request-id": "2e67f5fa23e017659b1ab83a3aa239d8", - "x-ms-correlation-request-id": "d8451dcb-72e5-424e-b3df-a9c98c5e4542", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "8d39428b-8509-41d2-82fc-e2afac66c50a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103059Z:d8451dcb-72e5-424e-b3df-a9c98c5e4542" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/3c3688ce-c4bd-4692-974a-2ceb845d20dc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-cd17a66f054cb44d96566c8ca66b8fbc-77e1db29cd667540-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "0b18e26308b01fcff06246cac7831894", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "820211a8-ab8b-4773-b4b5-4a1aeec71dbe", - "x-ms-client-request-id": "0b18e26308b01fcff06246cac7831894", - "x-ms-correlation-request-id": "4a9960c2-e80d-473a-8631-4df832574e3f", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "4577f835-ced6-48c5-a4d5-9f822be3c57a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103120Z:4a9960c2-e80d-473a-8631-4df832574e3f" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-cd17a66f054cb44d96566c8ca66b8fbc-7985792bf8f9804b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c4216bd42ac2d6c9a32ffa733a7b134c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1951", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:20 GMT", - "ETag": "W/\u00225e308fd5-75a4-40a8-9ce1-18b92fde2de1\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0ac2b772-51a2-4212-b595-fc892b48345a", - "x-ms-client-request-id": "c4216bd42ac2d6c9a32ffa733a7b134c", - "x-ms-correlation-request-id": "314433e2-5f32-4810-855d-636cc360867a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "e6f766ec-0097-460c-944a-0235deecdd36", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103120Z:314433e2-5f32-4810-855d-636cc360867a" - }, - "ResponseBody": { - "name": "pe-4507", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507", - "etag": "W/\u00225e308fd5-75a4-40a8-9ce1-18b92fde2de1\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "e1a1898f-ae58-4f1c-84e5-65da0078ad0b", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec5226", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507/manualPrivateLinkServiceConnections/pec5226", - "etag": "W/\u00225e308fd5-75a4-40a8-9ce1-18b92fde2de1\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/virtualNetworks/vnet-8537/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/networkInterfaces/pe-4507.nic.3bb24b13-e290-4e15-beac-b7fa9fa7edde" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0ebfeb37969b3d40a4b93d4819db93f6-40a5b8b50465e04e-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "907b19878717f26726473e7edd9b4f18", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "75447d3ad103489bb2395cc881fb0ec1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -854,28 +324,28 @@ "Cache-Control": "no-cache", "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:31:21 GMT", + "Date": "Wed, 22 Mar 2023 09:00:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "907b19878717f26726473e7edd9b4f18", - "x-ms-correlation-request-id": "3e72dae2-a2a1-45d3-a885-188b9dbac182", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "53e4cf33-fe40-4921-828a-2ebfff0bf423", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103121Z:3e72dae2-a2a1-45d3-a885-188b9dbac182" + "x-ms-client-request-id": "75447d3ad103489bb2395cc881fb0ec1", + "x-ms-correlation-request-id": "8747b1f0-f85f-45e9-a060-033e7af1555f", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "355ac061-704a-4bac-8f4d-745f929a4ee0", + "x-ms-routing-request-id": "JAPANEAST:20230322T090034Z:8747b1f0-f85f-45e9-a060-033e7af1555f" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432/privateEndpointConnections/teststoragemgmt5432.fa55c54e-5ce2-4e54-a6b6-7f5760f69f93", - "name": "teststoragemgmt5432.fa55c54e-5ce2-4e54-a6b6-7f5760f69f93", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985/privateEndpointConnections/teststoragemgmt3985.6837081f-a6c5-4b9c-be29-99eadfd07b51", + "name": "teststoragemgmt3985.6837081f-a6c5-4b9c-be29-99eadfd07b51", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Network/privateEndpoints/pe-9491" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -888,14 +358,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3a739ecbffeb1f42a1285e4f71c38d6f-268ca0d844c1de45-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "ce66240274803916194267800d5be475", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "258715593936a81707f81b235b2d8078", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -904,28 +373,28 @@ "Cache-Control": "no-cache", "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:31:21 GMT", + "Date": "Wed, 22 Mar 2023 09:00:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ce66240274803916194267800d5be475", - "x-ms-correlation-request-id": "a789bd41-ea32-47f7-b468-6955ee86732e", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "baeb488e-092d-40b2-92be-af39ea0c0dc6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103122Z:a789bd41-ea32-47f7-b468-6955ee86732e" + "x-ms-client-request-id": "258715593936a81707f81b235b2d8078", + "x-ms-correlation-request-id": "f021f9cd-6504-4a68-8ad8-9efb30d842ef", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "3dd3b1ce-4296-448a-9367-972ad40a2187", + "x-ms-routing-request-id": "JAPANEAST:20230322T090035Z:f021f9cd-6504-4a68-8ad8-9efb30d842ef" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432/privateEndpointConnections/teststoragemgmt5432.fa55c54e-5ce2-4e54-a6b6-7f5760f69f93", - "name": "teststoragemgmt5432.fa55c54e-5ce2-4e54-a6b6-7f5760f69f93", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985/privateEndpointConnections/teststoragemgmt3985.6837081f-a6c5-4b9c-be29-99eadfd07b51", + "name": "teststoragemgmt3985.6837081f-a6c5-4b9c-be29-99eadfd07b51", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Network/privateEndpoints/pe-4507" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Network/privateEndpoints/pe-9491" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -938,14 +407,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432/privateEndpointConnections/teststoragemgmt5432.fa55c54e-5ce2-4e54-a6b6-7f5760f69f93?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985/privateEndpointConnections/teststoragemgmt3985.6837081f-a6c5-4b9c-be29-99eadfd07b51?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ba72726f58867840b3d0d76ac956166d-b71f551c2eca6f49-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "ae42fa4e87074c7c042f9d7aec4af808", + "traceparent": "00-4255250ec196b44e8f8aaea875c3eb0f-dd98e411cb34074d-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "de34cd953d3d9e3fbe6b4d4e5052d95f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -954,28 +423,28 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:23 GMT", + "Date": "Wed, 22 Mar 2023 09:00:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ae42fa4e87074c7c042f9d7aec4af808", - "x-ms-correlation-request-id": "d220ea71-0c68-4a53-8d8f-9c6a1be5ee70", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "fa1a67f7-8355-42fd-9fcd-adb5f3e1059c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103124Z:d220ea71-0c68-4a53-8d8f-9c6a1be5ee70" + "x-ms-client-request-id": "de34cd953d3d9e3fbe6b4d4e5052d95f", + "x-ms-correlation-request-id": "d8314ca3-ad25-4ed6-b058-03f43851d8ce", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "0d5842a8-f0c4-4144-acda-eb4fe5758ce2", + "x-ms-routing-request-id": "JAPANEAST:20230322T090037Z:d8314ca3-ad25-4ed6-b058-03f43851d8ce" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-2071/providers/Microsoft.Storage/storageAccounts/teststoragemgmt5432?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-6400/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3985?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8583a6cf830304498a1557d4b1ba47a3-6793c52b4f9fc242-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "1671e2df451512cb024177d420e7e5cb", + "traceparent": "00-86426f96c38dbb4a9255e7ef9d23ab1c-30b0088899815349-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "26a754a38be30176669b6d0ab578ed84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -984,25 +453,25 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:30 GMT", + "Date": "Wed, 22 Mar 2023 09:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1671e2df451512cb024177d420e7e5cb", - "x-ms-correlation-request-id": "2004f924-6aaa-4907-884b-12373bef7ed4", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "632ff56a-6735-48ae-a1c7-0d823b87de5b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103130Z:2004f924-6aaa-4907-884b-12373bef7ed4" + "x-ms-client-request-id": "26a754a38be30176669b6d0ab578ed84", + "x-ms-correlation-request-id": "64abc925-3b2a-4bde-abbe-39530a3f5d9a", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-request-id": "88b5f970-d8c0-4868-b37f-c7cec02359c3", + "x-ms-routing-request-id": "JAPANEAST:20230322T090042Z:64abc925-3b2a-4bde-abbe-39530a3f5d9a" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1334161735", + "RandomSeed": "906461437", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "45b60d85-fd72-427a-a708-f994d26e593e" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionDelete.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionDelete.json deleted file mode 100644 index fa01aad6dd70..000000000000 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionDelete.json +++ /dev/null @@ -1,1714 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1a104f2a4f53ba4aace4718d5e35367a-b995f665b6c17d45-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a6eb9885ea9e5a7c423c0ee0a9aa5f40", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe9451fc-fd32-45e4-9bb1-e451c3ca45cd", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "fe9451fc-fd32-45e4-9bb1-e451c3ca45cd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063509Z:fe9451fc-fd32-45e4-9bb1-e451c3ca45cd" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-1691?api-version=**", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "44", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "692e28e1854441cc272fe34521b5cff5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus2", - "tags": { - "test": "env" - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "256", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "359fe0a5-b73c-4442-b4a5-b4547e30ac63", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "359fe0a5-b73c-4442-b4a5-b4547e30ac63", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063510Z:359fe0a5-b73c-4442-b4a5-b4547e30ac63" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691", - "name": "teststorageRG-1691", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus2", - "tags": { - "test": "env" - }, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-08-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "73", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0aa96287bb6375f17fe09640fa5f9d03", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "name": "teststoragemgmt4000", - "type": "Microsoft.Storage/storageAccounts" - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:35:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0aa96287bb6375f17fe09640fa5f9d03", - "x-ms-correlation-request-id": "51e96b0c-b731-46b6-a470-066a7b907af8", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "e24a91fd-b373-46a1-bab5-cbedd8699485", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063511Z:51e96b0c-b731-46b6-a470-066a7b907af8" - }, - "ResponseBody": { - "nameAvailable": true - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000?api-version=2021-08-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "128", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "38dc363c40901f136577ba981520863f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "sku": { - "name": "Standard_GRS" - }, - "kind": "StorageV2", - "location": "eastus2", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "properties": {} - }, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:14 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "38dc363c40901f136577ba981520863f", - "x-ms-correlation-request-id": "fd394a55-54ac-4c5c-a3d0-e8478db14d90", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "77581b58-3b1a-4392-8bef-7232ad0d676b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063515Z:fd394a55-54ac-4c5c-a3d0-e8478db14d90" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7fe54145bdf347f64f8aa5eb0058605e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:15 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7fe54145bdf347f64f8aa5eb0058605e", - "x-ms-correlation-request-id": "82f1c41a-c3ba-4cf7-83ef-96bb85185a6c", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "874eeca3-bafa-4716-b84a-e4f89f8f0aa8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063515Z:82f1c41a-c3ba-4cf7-83ef-96bb85185a6c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d855575aa03cce6cb86ffb9c7a6fe864", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:16 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d855575aa03cce6cb86ffb9c7a6fe864", - "x-ms-correlation-request-id": "724e4d5d-04c3-49f8-a1a5-43bd1554ee51", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "d390e508-286d-4484-acc7-cd1f69addab6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063516Z:724e4d5d-04c3-49f8-a1a5-43bd1554ee51" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d352ea4b073a2d4b2bdbad0cc7926ce3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:17 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d352ea4b073a2d4b2bdbad0cc7926ce3", - "x-ms-correlation-request-id": "e12c4e4c-3a26-435c-b267-e186ca0c7174", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "8eb12b79-ba0f-4cd2-bf29-4d51aa0c45d6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063518Z:e12c4e4c-3a26-435c-b267-e186ca0c7174" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "de49669353aba593d416c683c15acce0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:18 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "de49669353aba593d416c683c15acce0", - "x-ms-correlation-request-id": "ebfb6f9a-9808-4546-b4c6-ee8a83a7e19a", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "fed46db0-2fe3-4ef5-9729-99d02fef78f3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063519Z:ebfb6f9a-9808-4546-b4c6-ee8a83a7e19a" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "15a041a18c0653230b27ad61f2600725", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:20 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "15a041a18c0653230b27ad61f2600725", - "x-ms-correlation-request-id": "c73fc72b-e94d-4920-980d-d3034eeb5271", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "6ac5acae-6d22-4efe-9592-ce6b4e9c4761", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063520Z:c73fc72b-e94d-4920-980d-d3034eeb5271" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "140817030a25f7b857adfe2440c86bd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:21 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "140817030a25f7b857adfe2440c86bd0", - "x-ms-correlation-request-id": "8d6f7add-fa78-4fa9-b710-e7c0764d8882", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "7000b0a6-b5f8-430a-969e-ba823bbb5364", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063522Z:8d6f7add-fa78-4fa9-b710-e7c0764d8882" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "866acd0e56f206dd42f6d384a631b274", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:22 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "866acd0e56f206dd42f6d384a631b274", - "x-ms-correlation-request-id": "fff543ac-eefe-447c-bd09-250b5db4716d", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "b7fc9d95-bcbe-4468-9b7f-c03610befe9a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063523Z:fff543ac-eefe-447c-bd09-250b5db4716d" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a980a10fb85197ba89a8bd588dff1242", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a980a10fb85197ba89a8bd588dff1242", - "x-ms-correlation-request-id": "c8433025-698b-47da-87b4-9ce5d8cd184e", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "94881dc8-37ae-4207-9704-7590502b213f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063524Z:c8433025-698b-47da-87b4-9ce5d8cd184e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2552dcbc81f5ac323a01d12e36335025", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:25 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2552dcbc81f5ac323a01d12e36335025", - "x-ms-correlation-request-id": "9c7a8d39-6a7f-43e9-91f5-73f55571b5a5", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "8bffb2ca-135b-4540-9e10-9f0e40d32528", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063526Z:9c7a8d39-6a7f-43e9-91f5-73f55571b5a5" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9e158afbc247557e12d3fc4998857943", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:26 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9e158afbc247557e12d3fc4998857943", - "x-ms-correlation-request-id": "f9d19506-10dc-49d2-aa55-99b1790d2f64", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "aa8636c9-dfad-401e-b83c-aa3497de931e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063527Z:f9d19506-10dc-49d2-aa55-99b1790d2f64" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c9c890e38ddf8d7e6ed36f50e78c6155", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:28 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c9c890e38ddf8d7e6ed36f50e78c6155", - "x-ms-correlation-request-id": "3dc8750f-7fd5-42fb-ab66-34629bdd4259", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "d9fd43ca-2ce3-47b2-8d02-4ae1488c920c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063528Z:3dc8750f-7fd5-42fb-ab66-34629bdd4259" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "035d985874eafafa5dfc122284e913b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:29 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "035d985874eafafa5dfc122284e913b5", - "x-ms-correlation-request-id": "dbd9b34b-1df6-472d-965f-21a36e0fb3a3", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "5ea4dc0b-fa4d-4eef-b2db-c54b12c28a68", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063530Z:dbd9b34b-1df6-472d-965f-21a36e0fb3a3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/77581b58-3b1a-4392-8bef-7232ad0d676b?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a54a8e88876b6d460c872f74522e6e85", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1487", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:35:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a54a8e88876b6d460c872f74522e6e85", - "x-ms-correlation-request-id": "ae93bd51-d01a-4799-aa5e-a0f680092c0e", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "0c08dac4-fec2-4dba-a6fd-a1f45a8c5a68", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063531Z:ae93bd51-d01a-4799-aa5e-a0f680092c0e" - }, - "ResponseBody": { - "sku": { - "name": "Standard_GRS", - "tier": "Standard" - }, - "kind": "StorageV2", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000", - "name": "teststoragemgmt4000", - "type": "Microsoft.Storage/storageAccounts", - "location": "eastus2", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "properties": { - "keyCreationTime": { - "key1": "2021-11-18T06:35:13.8161798Z", - "key2": "2021-11-18T06:35:13.8161798Z" - }, - "privateEndpointConnections": [], - "networkAcls": { - "bypass": "AzureServices", - "virtualNetworkRules": [], - "ipRules": [], - "defaultAction": "Allow" - }, - "supportsHttpsTrafficOnly": true, - "encryption": { - "services": { - "file": { - "keyType": "Account", - "enabled": true, - "lastEnabledTime": "2021-11-18T06:35:13.8161798Z" - }, - "blob": { - "keyType": "Account", - "enabled": true, - "lastEnabledTime": "2021-11-18T06:35:13.8161798Z" - } - }, - "keySource": "Microsoft.Storage" - }, - "accessTier": "Hot", - "provisioningState": "Succeeded", - "creationTime": "2021-11-18T06:35:13.7068250Z", - "primaryEndpoints": { - "dfs": "https://teststoragemgmt4000.dfs.core.windows.net/", - "web": "https://teststoragemgmt4000.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt4000.blob.core.windows.net/", - "queue": "https://teststoragemgmt4000.queue.core.windows.net/", - "table": "https://teststoragemgmt4000.table.core.windows.net/", - "file": "https://teststoragemgmt4000.file.core.windows.net/" - }, - "primaryLocation": "eastus2", - "statusOfPrimary": "available", - "secondaryLocation": "centralus", - "statusOfSecondary": "available" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-beta.3 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2700f1a65875956fcd6be27a5b0885c0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d262b64d-dfdf-4570-83ae-334ac6162306?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5ed8479f-c147-4d90-93bb-06cede635956", - "x-ms-client-request-id": "2700f1a65875956fcd6be27a5b0885c0", - "x-ms-correlation-request-id": "fab9adaa-6024-4b0f-91b2-59def97cdfb0", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "d262b64d-dfdf-4570-83ae-334ac6162306", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063535Z:fab9adaa-6024-4b0f-91b2-59def97cdfb0" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022vnet-1903\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022be63cf8a-2f98-4d63-b794-7b21b4363b34\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", - " \u0022resourceGuid\u0022: \u0022a3643a9a-2c76-4af3-a15d-55146f1a1448\u0022,\r\n", - " \u0022addressSpace\u0022: {\r\n", - " \u0022addressPrefixes\u0022: [\r\n", - " \u002210.0.0.0/16\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022dhcpOptions\u0022: {\r\n", - " \u0022dnsServers\u0022: [\r\n", - " \u002210.1.1.1\u0022,\r\n", - " \u002210.1.2.4\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022subnets\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022default\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903/subnets/default\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022be63cf8a-2f98-4d63-b794-7b21b4363b34\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", - " \u0022addressPrefix\u0022: \u002210.0.1.0/24\u0022,\r\n", - " \u0022delegations\u0022: [],\r\n", - " \u0022privateEndpointNetworkPolicies\u0022: \u0022Disabled\u0022,\r\n", - " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022virtualNetworkPeerings\u0022: [],\r\n", - " \u0022enableDdosProtection\u0022: false\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d262b64d-dfdf-4570-83ae-334ac6162306?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f8ddb08c8d133513db0f9d1b64f3b07e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d475d0f3-6a0f-46a0-9466-2703b963b9ee", - "x-ms-client-request-id": "f8ddb08c8d133513db0f9d1b64f3b07e", - "x-ms-correlation-request-id": "14289ca1-2174-46f7-a73a-098d1a957e8f", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "d472d822-5084-4ce8-b539-fadfba2df28f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063535Z:14289ca1-2174-46f7-a73a-098d1a957e8f" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022Succeeded\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6698b3aa4316bdb620af377ef62b0f26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:35 GMT", - "ETag": "W/\u002261e0262a-6681-43cf-8c74-a27389d1c0fa\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "670f7e89-7f88-4aec-a8f1-ff62ef9e9a7b", - "x-ms-client-request-id": "6698b3aa4316bdb620af377ef62b0f26", - "x-ms-correlation-request-id": "fb1154a0-a5bb-45ab-92fa-ece6f7562948", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "8d1b7709-804d-4b08-82c4-7bd859927c5d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063536Z:fb1154a0-a5bb-45ab-92fa-ece6f7562948" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022vnet-1903\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u002261e0262a-6681-43cf-8c74-a27389d1c0fa\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022resourceGuid\u0022: \u0022a3643a9a-2c76-4af3-a15d-55146f1a1448\u0022,\r\n", - " \u0022addressSpace\u0022: {\r\n", - " \u0022addressPrefixes\u0022: [\r\n", - " \u002210.0.0.0/16\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022dhcpOptions\u0022: {\r\n", - " \u0022dnsServers\u0022: [\r\n", - " \u002210.1.1.1\u0022,\r\n", - " \u002210.1.2.4\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022subnets\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022default\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903/subnets/default\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u002261e0262a-6681-43cf-8c74-a27389d1c0fa\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022addressPrefix\u0022: \u002210.0.1.0/24\u0022,\r\n", - " \u0022delegations\u0022: [],\r\n", - " \u0022privateEndpointNetworkPolicies\u0022: \u0022Disabled\u0022,\r\n", - " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022virtualNetworkPeerings\u0022: [],\r\n", - " \u0022enableDdosProtection\u0022: false\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "728", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-beta.3 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8d2babed2cad22b467ab4bb5edfc46e4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903/subnets/default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec4398", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1950", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ffe6e62c-4c48-4ed0-a8be-92da5130d81d", - "x-ms-client-request-id": "8d2babed2cad22b467ab4bb5edfc46e4", - "x-ms-correlation-request-id": "d69dd398-ed81-4977-a1eb-2ef8f166c18b", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "3924ef37-24d0-4775-9345-5be2b87944e8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063542Z:d69dd398-ed81-4977-a1eb-2ef8f166c18b" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022pe-4823\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022d32d926e-9041-4647-bfe2-08d7a758ef9e\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", - " \u0022resourceGuid\u0022: \u00224abd1dd9-4522-4bcd-8555-631ddcefe78a\u0022,\r\n", - " \u0022privateLinkServiceConnections\u0022: [],\r\n", - " \u0022manualPrivateLinkServiceConnections\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022pec4398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823/manualPrivateLinkServiceConnections/pec4398\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022d32d926e-9041-4647-bfe2-08d7a758ef9e\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022privateLinkServiceId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000\u0022,\r\n", - " \u0022groupIds\u0022: [\r\n", - " \u0022Blob\u0022\r\n", - " ],\r\n", - " \u0022requestMessage\u0022: \u0022SDK test\u0022,\r\n", - " \u0022privateLinkServiceConnectionState\u0022: {\r\n", - " \u0022status\u0022: \u0022Pending\u0022,\r\n", - " \u0022description\u0022: \u0022SDK test\u0022,\r\n", - " \u0022actionsRequired\u0022: \u0022None\u0022\r\n", - " }\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022subnet\u0022: {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903/subnets/default\u0022\r\n", - " },\r\n", - " \u0022networkInterfaces\u0022: [\r\n", - " {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/networkInterfaces/pe-4823.nic.ebe0aeb8-6e75-4357-82fd-9e22e37704bf\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022customDnsConfigs\u0022: []\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "05060fde1d536c06b2f3dc0b716ac13b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2fa53e40-0b06-43a2-91df-25df47f56ae6", - "x-ms-client-request-id": "05060fde1d536c06b2f3dc0b716ac13b", - "x-ms-correlation-request-id": "4dfafc31-c43f-4a11-a678-4d7129c70209", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "16e779e5-49a7-4150-a7dc-fdbedc54238e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063542Z:4dfafc31-c43f-4a11-a678-4d7129c70209" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3c9112377417a4ddb10ab549d520e3b7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c4b4cb63-2e72-4072-827c-4fcb5e854433", - "x-ms-client-request-id": "3c9112377417a4ddb10ab549d520e3b7", - "x-ms-correlation-request-id": "445ac03a-dc22-471a-9b27-e72e30128d02", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "60b47b1f-ba7e-49a1-aab1-f24567e0e03e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063543Z:445ac03a-dc22-471a-9b27-e72e30128d02" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ddd6d4aa41f57c90cba216836ceeae6c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e0f0d500-dbf9-4c1d-882c-79f7705865ce", - "x-ms-client-request-id": "ddd6d4aa41f57c90cba216836ceeae6c", - "x-ms-correlation-request-id": "76c2360e-eb03-4b43-b362-9bb613a1dac9", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "f9eb014c-eedd-4ef4-80ac-6a4566559490", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063544Z:76c2360e-eb03-4b43-b362-9bb613a1dac9" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2c5c1aa1c41e6a5f3261544867bd9692", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "40", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bdc54808-09c4-4725-95f8-baca8e973c0c", - "x-ms-client-request-id": "2c5c1aa1c41e6a5f3261544867bd9692", - "x-ms-correlation-request-id": "f21f9a17-8456-4e20-8304-81f823540d93", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "b60559b8-5690-45ae-a0a2-6d0302b42553", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063546Z:f21f9a17-8456-4e20-8304-81f823540d93" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9d60250fe493f645811570755d5938c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "40", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7b3d8533-0d31-4d5a-9cb3-c4136224fa7e", - "x-ms-client-request-id": "9d60250fe493f645811570755d5938c2", - "x-ms-correlation-request-id": "c4f638b5-2236-4e8e-bf84-5aecf8462ff3", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "ff3fe4c5-caab-4bb0-8476-672198d873b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063547Z:c4f638b5-2236-4e8e-bf84-5aecf8462ff3" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bba7485cb7c3e698746caa93ec47140e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "80", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "82b4be31-df6a-4c52-8713-335ff4a0f379", - "x-ms-client-request-id": "bba7485cb7c3e698746caa93ec47140e", - "x-ms-correlation-request-id": "10893239-c352-47a1-90fd-820a799308ee", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "c445d0a9-4261-446d-a1e6-453fe964919d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063548Z:10893239-c352-47a1-90fd-820a799308ee" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4673830c108ebdd9d465aa0953ea0cd9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "80", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d1f4f357-7296-4f4e-9f19-fec8559bf02d", - "x-ms-client-request-id": "4673830c108ebdd9d465aa0953ea0cd9", - "x-ms-correlation-request-id": "36e63477-e10a-4a00-906e-917c966ad0f5", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "f894bcd0-3f48-4510-89b1-d0a15b272af6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063550Z:36e63477-e10a-4a00-906e-917c966ad0f5" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1fec9129db1658cf8c7929273ab10939", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "160", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2c3bb797-6784-462f-b59b-f801afac08bb", - "x-ms-client-request-id": "1fec9129db1658cf8c7929273ab10939", - "x-ms-correlation-request-id": "0758ec0e-5e49-4d26-94cf-0a01f3d25d53", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "881f245c-3391-4747-9d22-3637a2d90982", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063551Z:0758ec0e-5e49-4d26-94cf-0a01f3d25d53" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "da686200f1e54b346fe9e65d0c8f9289", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "160", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2c1bda91-fbe1-483b-af64-0f4d8064b118", - "x-ms-client-request-id": "da686200f1e54b346fe9e65d0c8f9289", - "x-ms-correlation-request-id": "a004757f-2aae-4899-8651-af3d146e24df", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "acf4acad-a069-4f55-bf3c-b0a3abde78b5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063552Z:a004757f-2aae-4899-8651-af3d146e24df" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b6ad05ff55b30f7b41bb914e7b18222", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "100", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a54b4f36-bfe7-4155-aedd-b8ae91ddf2bd", - "x-ms-client-request-id": "5b6ad05ff55b30f7b41bb914e7b18222", - "x-ms-correlation-request-id": "204cb691-d870-42d4-adb9-4175e9df0c17", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "adb2846d-0eed-4914-be2e-a4947158d6a6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063553Z:204cb691-d870-42d4-adb9-4175e9df0c17" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f108715b328138f45da1af2cf4714cfd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "100", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "324f8fde-5ac5-44e3-b482-d179c9e64652", - "x-ms-client-request-id": "f108715b328138f45da1af2cf4714cfd", - "x-ms-correlation-request-id": "55bb1c51-5420-4dd0-91fd-b366a240ae1e", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "0c640a55-8a22-40ec-a057-135f052f7720", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063555Z:55bb1c51-5420-4dd0-91fd-b366a240ae1e" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/3924ef37-24d0-4775-9345-5be2b87944e8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "69c89fe7ae470bde6b3825ca371f63bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "20541d87-7700-47fb-9d3f-42154d00a220", - "x-ms-client-request-id": "69c89fe7ae470bde6b3825ca371f63bd", - "x-ms-correlation-request-id": "86f83f66-3154-4067-8de7-5d5c885fa57b", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "dc217eff-fbdf-4769-a7b8-714f48efa228", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063556Z:86f83f66-3154-4067-8de7-5d5c885fa57b" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022Succeeded\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9b01c366a1872c07dc31feba45ca3b43", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1951", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:56 GMT", - "ETag": "W/\u0022b9c89129-6e46-490f-ade8-cae166b9edf2\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9db53f75-f046-46b0-a826-3b1e259c0f86", - "x-ms-client-request-id": "9b01c366a1872c07dc31feba45ca3b43", - "x-ms-correlation-request-id": "6c8fb223-16e4-4626-ada7-ae22242bd659", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "a6976098-f2f9-4945-a9c0-38f140631443", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063557Z:6c8fb223-16e4-4626-ada7-ae22242bd659" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022pe-4823\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022b9c89129-6e46-490f-ade8-cae166b9edf2\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022resourceGuid\u0022: \u00224abd1dd9-4522-4bcd-8555-631ddcefe78a\u0022,\r\n", - " \u0022privateLinkServiceConnections\u0022: [],\r\n", - " \u0022manualPrivateLinkServiceConnections\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022pec4398\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823/manualPrivateLinkServiceConnections/pec4398\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022b9c89129-6e46-490f-ade8-cae166b9edf2\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022privateLinkServiceId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000\u0022,\r\n", - " \u0022groupIds\u0022: [\r\n", - " \u0022Blob\u0022\r\n", - " ],\r\n", - " \u0022requestMessage\u0022: \u0022SDK test\u0022,\r\n", - " \u0022privateLinkServiceConnectionState\u0022: {\r\n", - " \u0022status\u0022: \u0022Pending\u0022,\r\n", - " \u0022description\u0022: \u0022SDK test\u0022,\r\n", - " \u0022actionsRequired\u0022: \u0022None\u0022\r\n", - " }\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022subnet\u0022: {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/virtualNetworks/vnet-1903/subnets/default\u0022\r\n", - " },\r\n", - " \u0022networkInterfaces\u0022: [\r\n", - " {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/networkInterfaces/pe-4823.nic.ebe0aeb8-6e75-4357-82fd-9e22e37704bf\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022customDnsConfigs\u0022: []\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "472dbcce19e9addb92fd86490d2a003d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "709", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:35:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "472dbcce19e9addb92fd86490d2a003d", - "x-ms-correlation-request-id": "458da12a-1e6e-4d33-9063-4f19a3192fea", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "4106ffbf-d05e-4719-99fe-2d58037300d4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063557Z:458da12a-1e6e-4d33-9063-4f19a3192fea" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections/teststoragemgmt4000.a7018905-b288-44ee-a5da-7e0a67e59740", - "name": "teststoragemgmt4000.a7018905-b288-44ee-a5da-7e0a67e59740", - "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionRequired": "None" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections/teststoragemgmt4000.a7018905-b288-44ee-a5da-7e0a67e59740?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "31c6f13db1704576989b8d16b023c5a0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "697", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:35:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "31c6f13db1704576989b8d16b023c5a0", - "x-ms-correlation-request-id": "3d3a6cb1-96a9-4e24-8f00-2f41bf601425", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "3ec42343-fee9-42a7-a414-21136aa8f9af", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063557Z:3d3a6cb1-96a9-4e24-8f00-2f41bf601425" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections/teststoragemgmt4000.a7018905-b288-44ee-a5da-7e0a67e59740", - "name": "teststoragemgmt4000.a7018905-b288-44ee-a5da-7e0a67e59740", - "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Network/privateEndpoints/pe-4823" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionRequired": "None" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections/teststoragemgmt4000.a7018905-b288-44ee-a5da-7e0a67e59740?api-version=2021-08-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7bfbe2fc1cf14dd4e85408891abd1fb2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:35:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7bfbe2fc1cf14dd4e85408891abd1fb2", - "x-ms-correlation-request-id": "f04b4c1d-3d3d-401c-9ca5-eb6a5a3fa075", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "8a3909a4-99d6-41bd-8903-9a235fb61f71", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063559Z:f04b4c1d-3d3d-401c-9ca5-eb6a5a3fa075" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "547dc0310a041cd346e7af4d8cc5fd6f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:35:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "547dc0310a041cd346e7af4d8cc5fd6f", - "x-ms-correlation-request-id": "ef5594ea-643c-4a35-887d-3cf45af08a15", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "3f8bbecf-adcb-4e21-bae9-a6929a899641", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063559Z:ef5594ea-643c-4a35-887d-3cf45af08a15" - }, - "ResponseBody": { - "value": [] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000/privateEndpointConnections?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2b4de537852e204c1d78491ba9ec2bda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:35:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2b4de537852e204c1d78491ba9ec2bda", - "x-ms-correlation-request-id": "1e297842-35c2-4ffc-91dc-3b1366a9f1af", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-request-id": "e1b24c8c-1a88-4480-9e32-4b312e86ea25", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063600Z:1e297842-35c2-4ffc-91dc-3b1366a9f1af" - }, - "ResponseBody": { - "value": [] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-1691/providers/Microsoft.Storage/storageAccounts/teststoragemgmt4000?api-version=2021-08-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f0e4db7c71a6f19c0ede35096d86c123", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:36:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f0e4db7c71a6f19c0ede35096d86c123", - "x-ms-correlation-request-id": "f0d7ad27-9ea4-427a-97c4-9933ebb16d38", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "f3edc34e-39c8-4542-84d3-699cda8101e5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063607Z:f0d7ad27-9ea4-427a-97c4-9933ebb16d38" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "2033012717", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionDeleteAsync.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionDeleteAsync.json deleted file mode 100644 index d295190586f6..000000000000 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionDeleteAsync.json +++ /dev/null @@ -1,1790 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-726a2f515f666b45a79268f50d644101-11b1fa2d6b191d47-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea1e14ffec99fa6a6fa95af3c1907bf8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "624701fb-8e2d-4ace-8bfc-024e1c7bea83", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "624701fb-8e2d-4ace-8bfc-024e1c7bea83", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063834Z:624701fb-8e2d-4ace-8bfc-024e1c7bea83" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-4827?api-version=**", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "44", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "04257a3ccdb81fc6eb51ee64c9f11cfd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "eastus2", - "tags": { - "test": "env" - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "256", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ceba916c-3115-44e2-a7da-7a1ce82a7366", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "ceba916c-3115-44e2-a7da-7a1ce82a7366", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063835Z:ceba916c-3115-44e2-a7da-7a1ce82a7366" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827", - "name": "teststorageRG-4827", - "type": "Microsoft.Resources/resourceGroups", - "location": "eastus2", - "tags": { - "test": "env" - }, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-08-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "73", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4ac695c6369837db6a710e39d547bce8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "name": "teststoragemgmt7029", - "type": "Microsoft.Storage/storageAccounts" - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "22", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:38:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4ac695c6369837db6a710e39d547bce8", - "x-ms-correlation-request-id": "7df76dc8-41a6-41e5-9588-4c63fe7a889c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "ef5eb559-a3ff-4ebc-bc0a-1c49dee42d22", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063836Z:7df76dc8-41a6-41e5-9588-4c63fe7a889c" - }, - "ResponseBody": { - "nameAvailable": true - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029?api-version=2021-08-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "128", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b1784af446f85746cbae9a7b96a5b83e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "sku": { - "name": "Standard_GRS" - }, - "kind": "StorageV2", - "location": "eastus2", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "properties": {} - }, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:44 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b1784af446f85746cbae9a7b96a5b83e", - "x-ms-correlation-request-id": "657b39e2-bcef-43de-9811-d43bbd1e9218", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "dd143317-1566-4a99-99df-ecbbf1c5339d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063845Z:657b39e2-bcef-43de-9811-d43bbd1e9218" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a6d57b324ca380154e6e7fea9b60a0c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:45 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a6d57b324ca380154e6e7fea9b60a0c4", - "x-ms-correlation-request-id": "5d13183c-8c3f-4eaf-9375-a9c1984b299e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "a3fd1a79-048f-41aa-a234-4e6bacff8dc6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063845Z:5d13183c-8c3f-4eaf-9375-a9c1984b299e" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2143d0b8d57eb6b6a634672bf8eaa0e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:46 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2143d0b8d57eb6b6a634672bf8eaa0e5", - "x-ms-correlation-request-id": "5687195a-65f6-4dfc-864f-e4ace6889424", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "700b6913-f1e0-4e4a-8f79-5ef66ffa1073", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063847Z:5687195a-65f6-4dfc-864f-e4ace6889424" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1a48909712d0a99b9e4998c3beb8a8e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:48 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1a48909712d0a99b9e4998c3beb8a8e9", - "x-ms-correlation-request-id": "88a5bcce-a394-428c-994e-a6029c13dd67", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "c8f42f48-5429-46c4-a314-08f2e3d7a9f0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063848Z:88a5bcce-a394-428c-994e-a6029c13dd67" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e7a3892df4a25d8bc51eff6ee4ea8763", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:49 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e7a3892df4a25d8bc51eff6ee4ea8763", - "x-ms-correlation-request-id": "fc22c8c2-24ad-4a38-b315-cc6ac0e58fd6", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "3dc31a25-0928-4237-8c84-e1f4920a7180", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063850Z:fc22c8c2-24ad-4a38-b315-cc6ac0e58fd6" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0b5299ce8517a6f3349a83353cf2f7ee", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:50 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0b5299ce8517a6f3349a83353cf2f7ee", - "x-ms-correlation-request-id": "5947a81a-1141-4a12-a74f-a3aa2df6aa24", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "3f06440d-fd3a-429a-b94d-5762a22378d6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063851Z:5947a81a-1141-4a12-a74f-a3aa2df6aa24" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6efd7d8cb846a34304eb55b1122cc5b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:52 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6efd7d8cb846a34304eb55b1122cc5b4", - "x-ms-correlation-request-id": "bb36c23f-51ad-475d-9578-8545d80c28ff", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "c2d79b49-871e-4976-921d-1cf6273e2950", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063852Z:bb36c23f-51ad-475d-9578-8545d80c28ff" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "24f534c19c66a7d195fdb208715620d3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:53 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "24f534c19c66a7d195fdb208715620d3", - "x-ms-correlation-request-id": "58ccfae8-fa10-456c-8ea9-3e45a074ee42", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "cb70d053-045b-4b59-a202-9e0e67e8a238", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063854Z:58ccfae8-fa10-456c-8ea9-3e45a074ee42" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "66e1112719ec151c56af062c30419308", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:54 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "66e1112719ec151c56af062c30419308", - "x-ms-correlation-request-id": "40ea2ea7-ae39-4ff3-848a-227099e1d304", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "f82dfe7b-8bf6-4f18-9f0e-05c4c48cf337", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063855Z:40ea2ea7-ae39-4ff3-848a-227099e1d304" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0873ced5d2fdf087ac56d849063b31ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:56 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0873ced5d2fdf087ac56d849063b31ae", - "x-ms-correlation-request-id": "096bc910-b2cf-4ec2-b968-01d51183fe45", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "7a4e7859-e800-40bd-89d5-28bd3a1d227a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063856Z:096bc910-b2cf-4ec2-b968-01d51183fe45" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "018a81cb5e4aa8c817dfceb696a57753", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:57 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "018a81cb5e4aa8c817dfceb696a57753", - "x-ms-correlation-request-id": "c634935a-5c21-476c-a05a-c6c168589d89", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "df8e6871-cc0e-4567-94f4-506f0caa414f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063858Z:c634935a-5c21-476c-a05a-c6c168589d89" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a333aa6917e254d689f1ba9540d30f1b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:38:58 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "17", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a333aa6917e254d689f1ba9540d30f1b", - "x-ms-correlation-request-id": "539abb4d-ffca-46d2-a114-b15840f472b0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b400f7d5-abce-4d0c-b89a-86496f2006df", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063859Z:539abb4d-ffca-46d2-a114-b15840f472b0" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ae61577e92b776be06cbf01d04d15906", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:00 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ae61577e92b776be06cbf01d04d15906", - "x-ms-correlation-request-id": "7b68916a-0d2b-40ae-b107-80ac5af8f0a3", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "4b508e7a-91b7-463f-a9d4-4f15345eb1b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063900Z:7b68916a-0d2b-40ae-b107-80ac5af8f0a3" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/dd143317-1566-4a99-99df-ecbbf1c5339d?monitor=true\u0026api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5cdf84de8e08b3ccab357758a3326744", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1487", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:39:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5cdf84de8e08b3ccab357758a3326744", - "x-ms-correlation-request-id": "930281cf-74f8-47f6-a814-21681b6f3188", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "3fb03c32-6923-4a81-82c0-63f1ebd9536a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063902Z:930281cf-74f8-47f6-a814-21681b6f3188" - }, - "ResponseBody": { - "sku": { - "name": "Standard_GRS", - "tier": "Standard" - }, - "kind": "StorageV2", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029", - "name": "teststoragemgmt7029", - "type": "Microsoft.Storage/storageAccounts", - "location": "eastus2", - "tags": { - "key1": "value1", - "key2": "value2" - }, - "properties": { - "keyCreationTime": { - "key1": "2021-11-18T06:38:43.5575882Z", - "key2": "2021-11-18T06:38:43.5575882Z" - }, - "privateEndpointConnections": [], - "networkAcls": { - "bypass": "AzureServices", - "virtualNetworkRules": [], - "ipRules": [], - "defaultAction": "Allow" - }, - "supportsHttpsTrafficOnly": true, - "encryption": { - "services": { - "file": { - "keyType": "Account", - "enabled": true, - "lastEnabledTime": "2021-11-18T06:38:43.5575882Z" - }, - "blob": { - "keyType": "Account", - "enabled": true, - "lastEnabledTime": "2021-11-18T06:38:43.5575882Z" - } - }, - "keySource": "Microsoft.Storage" - }, - "accessTier": "Hot", - "provisioningState": "Succeeded", - "creationTime": "2021-11-18T06:38:43.4482159Z", - "primaryEndpoints": { - "dfs": "https://teststoragemgmt7029.dfs.core.windows.net/", - "web": "https://teststoragemgmt7029.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt7029.blob.core.windows.net/", - "queue": "https://teststoragemgmt7029.queue.core.windows.net/", - "table": "https://teststoragemgmt7029.table.core.windows.net/", - "file": "https://teststoragemgmt7029.file.core.windows.net/" - }, - "primaryLocation": "eastus2", - "statusOfPrimary": "available", - "secondaryLocation": "centralus", - "statusOfSecondary": "available" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-beta.3 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "433e38b29cc8ebd7bc9d1627b950b898", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/381d0836-323c-4a4e-9656-cd32fe093d79?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3cf1f3bf-60b1-45b2-9ad8-b8b101d8f332", - "x-ms-client-request-id": "433e38b29cc8ebd7bc9d1627b950b898", - "x-ms-correlation-request-id": "23f9c9b7-ae66-47dd-a295-94bf9a46f266", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "381d0836-323c-4a4e-9656-cd32fe093d79", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063905Z:23f9c9b7-ae66-47dd-a295-94bf9a46f266" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022vnet-6720\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u00225b5d5876-a881-4cfc-b8de-f8fb039c955a\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", - " \u0022resourceGuid\u0022: \u0022b84ef3ed-93ec-4fba-afb9-5301faac635b\u0022,\r\n", - " \u0022addressSpace\u0022: {\r\n", - " \u0022addressPrefixes\u0022: [\r\n", - " \u002210.0.0.0/16\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022dhcpOptions\u0022: {\r\n", - " \u0022dnsServers\u0022: [\r\n", - " \u002210.1.1.1\u0022,\r\n", - " \u002210.1.2.4\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022subnets\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022default\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720/subnets/default\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u00225b5d5876-a881-4cfc-b8de-f8fb039c955a\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", - " \u0022addressPrefix\u0022: \u002210.0.1.0/24\u0022,\r\n", - " \u0022delegations\u0022: [],\r\n", - " \u0022privateEndpointNetworkPolicies\u0022: \u0022Disabled\u0022,\r\n", - " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022virtualNetworkPeerings\u0022: [],\r\n", - " \u0022enableDdosProtection\u0022: false\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/381d0836-323c-4a4e-9656-cd32fe093d79?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "99524cabc31be81508704bf1b58bf2e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3763394a-b874-4360-a7ae-fdd286925ffe", - "x-ms-client-request-id": "99524cabc31be81508704bf1b58bf2e5", - "x-ms-correlation-request-id": "8463e2c4-6d42-4b77-97b7-64e935b97391", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "5fa59f29-6e0b-44b7-8c39-5ddc0bf471dc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063906Z:8463e2c4-6d42-4b77-97b7-64e935b97391" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022Succeeded\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7befc0bf51ac9e1d48b295c51bbb86e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:05 GMT", - "ETag": "W/\u0022bd064499-7827-4466-9c5f-d4f5e2971436\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "223321fb-38dd-485a-a563-1a4111c799fb", - "x-ms-client-request-id": "7befc0bf51ac9e1d48b295c51bbb86e8", - "x-ms-correlation-request-id": "107deb0e-a43d-4da8-8a28-8bc39d7b3f4d", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "f0b025cd-4afe-4d86-9ef7-1e86134731e1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063906Z:107deb0e-a43d-4da8-8a28-8bc39d7b3f4d" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022vnet-6720\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022bd064499-7827-4466-9c5f-d4f5e2971436\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022resourceGuid\u0022: \u0022b84ef3ed-93ec-4fba-afb9-5301faac635b\u0022,\r\n", - " \u0022addressSpace\u0022: {\r\n", - " \u0022addressPrefixes\u0022: [\r\n", - " \u002210.0.0.0/16\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022dhcpOptions\u0022: {\r\n", - " \u0022dnsServers\u0022: [\r\n", - " \u002210.1.1.1\u0022,\r\n", - " \u002210.1.2.4\u0022\r\n", - " ]\r\n", - " },\r\n", - " \u0022subnets\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022default\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720/subnets/default\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u0022bd064499-7827-4466-9c5f-d4f5e2971436\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022addressPrefix\u0022: \u002210.0.1.0/24\u0022,\r\n", - " \u0022delegations\u0022: [],\r\n", - " \u0022privateEndpointNetworkPolicies\u0022: \u0022Disabled\u0022,\r\n", - " \u0022privateLinkServiceNetworkPolicies\u0022: \u0022Enabled\u0022\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/virtualNetworks/subnets\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022virtualNetworkPeerings\u0022: [],\r\n", - " \u0022enableDdosProtection\u0022: false\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "728", - "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-beta.3 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1ffe6c7cf17cd3a0ea42c7fed622109b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720/subnets/default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec5288", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1950", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2a4c133e-6809-422c-a11d-211f6ed2adeb", - "x-ms-client-request-id": "1ffe6c7cf17cd3a0ea42c7fed622109b", - "x-ms-correlation-request-id": "11f6161b-7155-4890-9822-02784993c1b4", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063911Z:11f6161b-7155-4890-9822-02784993c1b4" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022pe-6854\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u00228354bc97-aa80-424f-92ef-f307a5599e9e\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Updating\u0022,\r\n", - " \u0022resourceGuid\u0022: \u00227f5939c3-99b5-45fe-938f-9960f571e5d0\u0022,\r\n", - " \u0022privateLinkServiceConnections\u0022: [],\r\n", - " \u0022manualPrivateLinkServiceConnections\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022pec5288\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854/manualPrivateLinkServiceConnections/pec5288\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u00228354bc97-aa80-424f-92ef-f307a5599e9e\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022privateLinkServiceId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029\u0022,\r\n", - " \u0022groupIds\u0022: [\r\n", - " \u0022Blob\u0022\r\n", - " ],\r\n", - " \u0022requestMessage\u0022: \u0022SDK test\u0022,\r\n", - " \u0022privateLinkServiceConnectionState\u0022: {\r\n", - " \u0022status\u0022: \u0022Pending\u0022,\r\n", - " \u0022description\u0022: \u0022SDK test\u0022,\r\n", - " \u0022actionsRequired\u0022: \u0022None\u0022\r\n", - " }\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022subnet\u0022: {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720/subnets/default\u0022\r\n", - " },\r\n", - " \u0022networkInterfaces\u0022: [\r\n", - " {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/networkInterfaces/pe-6854.nic.9b9e13ae-366b-4b59-8218-a11d7783af8e\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022customDnsConfigs\u0022: []\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "850f02279fe7fe43dbd866dad649dc73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ce380968-15c6-46a3-94ba-a58fe6f5b75c", - "x-ms-client-request-id": "850f02279fe7fe43dbd866dad649dc73", - "x-ms-correlation-request-id": "499358c0-15f5-40cd-bea8-676d96904011", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "9bc1c471-cd91-4693-bedc-44bc5aedda9f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063912Z:499358c0-15f5-40cd-bea8-676d96904011" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e15f7fb5720321fa3d4ace13c350069d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "896f2dc7-06a1-4671-9737-4389c2d5a867", - "x-ms-client-request-id": "e15f7fb5720321fa3d4ace13c350069d", - "x-ms-correlation-request-id": "d1834f69-868a-4091-aa8d-a7a8f48a638d", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "7d733f62-bb1e-41e8-a1a5-c4ea17e5c14e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063913Z:d1834f69-868a-4091-aa8d-a7a8f48a638d" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d3d764588b12bcb461e67cdff454dc07", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ced10c11-d80b-4289-9583-0ff998efd408", - "x-ms-client-request-id": "d3d764588b12bcb461e67cdff454dc07", - "x-ms-correlation-request-id": "b24b43a3-c0d8-4faa-b061-a44b403b69c5", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "04d33d84-eecc-4b6f-abd3-d505ea386e15", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063914Z:b24b43a3-c0d8-4faa-b061-a44b403b69c5" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4d9ab98c08edb56008ed479cd12f3a8a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "40", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0be34dcb-2436-4a2c-8889-5bcfd8d96d7c", - "x-ms-client-request-id": "4d9ab98c08edb56008ed479cd12f3a8a", - "x-ms-correlation-request-id": "6d51b13b-8745-4830-bd5e-9ffebb450bb1", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "eac22462-c71b-465e-92b5-0dd12cc23b60", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063915Z:6d51b13b-8745-4830-bd5e-9ffebb450bb1" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7281c8d209722960caa37f1cf51b2de9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "40", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2162181d-bdfb-48bc-9e85-b73c9f546653", - "x-ms-client-request-id": "7281c8d209722960caa37f1cf51b2de9", - "x-ms-correlation-request-id": "c825a606-68a4-4666-a7b4-781bd7db1b2e", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "1f8e49c7-2c07-448c-92b6-c5ee0cc02074", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063917Z:c825a606-68a4-4666-a7b4-781bd7db1b2e" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0a87c76db8b650b00321ca244317eb32", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "80", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8dbb9a9e-3f8c-4434-a8dd-1b7744fa2fa2", - "x-ms-client-request-id": "0a87c76db8b650b00321ca244317eb32", - "x-ms-correlation-request-id": "948b3987-3470-43a0-84e1-ad143eed8061", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "82fbc7f1-ccfd-44c8-894c-3317cc781668", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063918Z:948b3987-3470-43a0-84e1-ad143eed8061" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2b0cf2ac6ad28394587083498943bfed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "80", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0b841d79-a9f4-4a30-a101-c2632cdf13f6", - "x-ms-client-request-id": "2b0cf2ac6ad28394587083498943bfed", - "x-ms-correlation-request-id": "179a5f9a-5772-4bfb-b407-8c1374446592", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "a0522330-c6df-4ed9-84de-15c18266d9e4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063919Z:179a5f9a-5772-4bfb-b407-8c1374446592" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "092f5dc02fa81ad418316e503e3ce5b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "160", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "af246c82-2271-4285-b45e-21fa86930aa2", - "x-ms-client-request-id": "092f5dc02fa81ad418316e503e3ce5b3", - "x-ms-correlation-request-id": "db56725b-a1b4-4d6d-a476-d4a13a1a8383", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "87305c3e-e462-4663-a1ec-417096d64ad0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063921Z:db56725b-a1b4-4d6d-a476-d4a13a1a8383" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "03704db8020e03173304b2453566c6c0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "160", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4c5ac27f-c80c-466e-89a4-f365a5ff6b76", - "x-ms-client-request-id": "03704db8020e03173304b2453566c6c0", - "x-ms-correlation-request-id": "c039f47b-9987-427c-8f0a-77d13286ad8f", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "10d5f84b-d753-436b-bf60-ea397863433e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063922Z:c039f47b-9987-427c-8f0a-77d13286ad8f" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e664dd62e1e87d8a1df212a0fb43441c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "100", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "32db117d-b366-457a-864d-b68cf409f376", - "x-ms-client-request-id": "e664dd62e1e87d8a1df212a0fb43441c", - "x-ms-correlation-request-id": "03569eb3-10f7-4db8-a0ea-c93983ca282f", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "a05fa9bd-1731-4599-907c-933b567dfdd5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063923Z:03569eb3-10f7-4db8-a0ea-c93983ca282f" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3c91cf8abbd3bedf452bd6a37d8ee5b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "100", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "64dd4c15-3f32-4067-8c16-c2b684bf19ef", - "x-ms-client-request-id": "3c91cf8abbd3bedf452bd6a37d8ee5b1", - "x-ms-correlation-request-id": "c12957e5-5e3f-4fb0-a7f3-8734c17e33f3", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "bad84968-d189-4185-a996-855262865156", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063924Z:c12957e5-5e3f-4fb0-a7f3-8734c17e33f3" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "61eeae6bffd7d6cbc2f2e61bef7708ef", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "100", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0770016e-13ef-4a4c-9b83-142922767789", - "x-ms-client-request-id": "61eeae6bffd7d6cbc2f2e61bef7708ef", - "x-ms-correlation-request-id": "1681e9b4-9637-492c-badc-4884d7676498", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "a4b95406-3fbf-471c-92c6-e194fb32a5ee", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063926Z:1681e9b4-9637-492c-badc-4884d7676498" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "65ba95bf89d5a6edfea6a0bc0ae6008e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "100", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f530236f-a9e8-4d9d-8a31-654579aa2087", - "x-ms-client-request-id": "65ba95bf89d5a6edfea6a0bc0ae6008e", - "x-ms-correlation-request-id": "15fe9536-ae56-4e8c-8d82-0d8b641afb61", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "cb5774a0-167d-437f-a32a-9d1de9f73ac4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063927Z:15fe9536-ae56-4e8c-8d82-0d8b641afb61" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022InProgress\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bbec8c46-e72e-4dbc-8c51-40b1a7dd9ef3?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4c35610de3558b4404ba79e0d5c3cece", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6ef26be2-5261-4be9-89df-10387f1ea6b8", - "x-ms-client-request-id": "4c35610de3558b4404ba79e0d5c3cece", - "x-ms-correlation-request-id": "ee7d2b39-01d4-41bb-b474-5cbc09d3c2c9", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "4201aa91-dc3f-41b6-ace9-3d97128b74a5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063928Z:ee7d2b39-01d4-41bb-b474-5cbc09d3c2c9" - }, - "ResponseBody": [ - "{\r\n", - " \u0022status\u0022: \u0022Succeeded\u0022\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-beta.5 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e7e4e6237fd4e1dbc04763315f0eccdc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1951", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:28 GMT", - "ETag": "W/\u00229eb1f354-3b20-4b9b-bfa7-a7bb70231cd8\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "20866dbe-8a50-4964-a3fe-c26ebc3fd2be", - "x-ms-client-request-id": "e7e4e6237fd4e1dbc04763315f0eccdc", - "x-ms-correlation-request-id": "560fdfb6-2eeb-4cba-a0d1-93688b94cf2c", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "1bffc79e-fc72-481c-a8a8-47339614e2af", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063928Z:560fdfb6-2eeb-4cba-a0d1-93688b94cf2c" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022pe-6854\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u00229eb1f354-3b20-4b9b-bfa7-a7bb70231cd8\\\u0022\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022resourceGuid\u0022: \u00227f5939c3-99b5-45fe-938f-9960f571e5d0\u0022,\r\n", - " \u0022privateLinkServiceConnections\u0022: [],\r\n", - " \u0022manualPrivateLinkServiceConnections\u0022: [\r\n", - " {\r\n", - " \u0022name\u0022: \u0022pec5288\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854/manualPrivateLinkServiceConnections/pec5288\u0022,\r\n", - " \u0022etag\u0022: \u0022W/\\\u00229eb1f354-3b20-4b9b-bfa7-a7bb70231cd8\\\u0022\u0022,\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022provisioningState\u0022: \u0022Succeeded\u0022,\r\n", - " \u0022privateLinkServiceId\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029\u0022,\r\n", - " \u0022groupIds\u0022: [\r\n", - " \u0022Blob\u0022\r\n", - " ],\r\n", - " \u0022requestMessage\u0022: \u0022SDK test\u0022,\r\n", - " \u0022privateLinkServiceConnectionState\u0022: {\r\n", - " \u0022status\u0022: \u0022Pending\u0022,\r\n", - " \u0022description\u0022: \u0022SDK test\u0022,\r\n", - " \u0022actionsRequired\u0022: \u0022None\u0022\r\n", - " }\r\n", - " },\r\n", - " \u0022type\u0022: \u0022Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022subnet\u0022: {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/virtualNetworks/vnet-6720/subnets/default\u0022\r\n", - " },\r\n", - " \u0022networkInterfaces\u0022: [\r\n", - " {\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/networkInterfaces/pe-6854.nic.9b9e13ae-366b-4b59-8218-a11d7783af8e\u0022\r\n", - " }\r\n", - " ],\r\n", - " \u0022customDnsConfigs\u0022: []\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8d0d57f2bb41dc9a512f601b100dd13a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "709", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:39:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8d0d57f2bb41dc9a512f601b100dd13a", - "x-ms-correlation-request-id": "e3ce8d29-a897-4476-91b9-fb4f24ae9048", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "26c5accc-5779-48ca-90fe-2c0d60107e03", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063929Z:e3ce8d29-a897-4476-91b9-fb4f24ae9048" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections/teststoragemgmt7029.e5bce537-81a0-4fdd-abec-ade955b843ad", - "name": "teststoragemgmt7029.e5bce537-81a0-4fdd-abec-ade955b843ad", - "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionRequired": "None" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections/teststoragemgmt7029.e5bce537-81a0-4fdd-abec-ade955b843ad?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2399d1d719028dba85538b0d80132cf5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "697", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:39:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2399d1d719028dba85538b0d80132cf5", - "x-ms-correlation-request-id": "cb20ba8f-4414-4752-8f84-d7ff8931549e", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "766be22f-c5d4-449e-b03d-cfbe0999c653", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063929Z:cb20ba8f-4414-4752-8f84-d7ff8931549e" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections/teststoragemgmt7029.e5bce537-81a0-4fdd-abec-ade955b843ad", - "name": "teststoragemgmt7029.e5bce537-81a0-4fdd-abec-ade955b843ad", - "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", - "properties": { - "provisioningState": "Succeeded", - "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Network/privateEndpoints/pe-6854" - }, - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionRequired": "None" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections/teststoragemgmt7029.e5bce537-81a0-4fdd-abec-ade955b843ad?api-version=2021-08-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7eed9dee40b5678c4c0895a51ec0d1b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7eed9dee40b5678c4c0895a51ec0d1b3", - "x-ms-correlation-request-id": "81c72f5f-5606-4f3c-8385-f99ff94bf6a2", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "1a66141c-0c26-417f-88e8-577b5b257c44", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063931Z:81c72f5f-5606-4f3c-8385-f99ff94bf6a2" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8d5a2875a875d9da9c8008ee308d5b3e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:39:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8d5a2875a875d9da9c8008ee308d5b3e", - "x-ms-correlation-request-id": "e5e10b2d-4578-4754-b258-b972ad1a049c", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "c909571b-28bd-41f4-9514-a16436697ac3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063931Z:e5e10b2d-4578-4754-b258-b972ad1a049c" - }, - "ResponseBody": { - "value": [] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029/privateEndpointConnections?api-version=2021-08-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "732d6b03531f96844432d7fa83156ec5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "12", - "Content-Type": "application/json", - "Date": "Thu, 18 Nov 2021 06:39:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "732d6b03531f96844432d7fa83156ec5", - "x-ms-correlation-request-id": "488075e6-2e13-4e10-b60b-2b5a41e03f43", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "2999172b-bec5-43bf-87b4-92fc76ed5bf3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063932Z:488075e6-2e13-4e10-b60b-2b5a41e03f43" - }, - "ResponseBody": { - "value": [] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-4827/providers/Microsoft.Storage/storageAccounts/teststoragemgmt7029?api-version=2021-08-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.0.0-alpha.20211118.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5797d8829eb84580c213e135389e36bf", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 18 Nov 2021 06:39:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5797d8829eb84580c213e135389e36bf", - "x-ms-correlation-request-id": "441740c6-a741-46dc-8ad2-262adfdd7d04", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "c7dd0208-cee0-49f8-a38d-162f6c32bb3c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20211118T063939Z:441740c6-a741-46dc-8ad2-262adfdd7d04" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "603182873", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDelete.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDelete.json index f8b3555d9216..a0f5b7b62848 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDelete.json +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDelete.json @@ -1,39 +1,52 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-938fc523da0a9641bf3fe69a26cbbf97-ac11b4dd2529174a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "d6deeb5efa13c5813a1cbfc69b5c1d1a", + "traceparent": "00-09acd51bb9e4fd4d80e86ce4fb152cf7-977c1e667b53294c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "dbedba9ce900913126aa0bf114486aaa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "411", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:03 GMT", + "Date": "Wed, 22 Mar 2023 08:48:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "853c3fab-390b-441b-83e4-d5eb8c480af3", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "853c3fab-390b-441b-83e4-d5eb8c480af3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100404Z:853c3fab-390b-441b-83e4-d5eb8c480af3" + "x-ms-correlation-request-id": "2b034167-53bd-418d-b0a7-6f742fa68090", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "2b034167-53bd-418d-b0a7-6f742fa68090", + "x-ms-routing-request-id": "JAPANEAST:20230322T084855Z:2b034167-53bd-418d-b0a7-6f742fa68090" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e", + "tags": { + "TagKey-9823": "TagValue-1254", + "TagKey-3481": "TagValue-320", + "TagKey-4926": "TagValue-1187", + "TagKey-751": "TagValue-3921", + "TagKey-1866": "TagValue-8559", + "TagKey-3094": "TagValue-9190", + "TagKey-2449": "TagValue-9", + "TagKey-8379": "TagValue-164", + "TagKey-7470": "TagValue-2205", + "TagKey-4236": "TagValue-3698", + "TagKey-5316": "TagValue-2725" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "AzureStorage_DMStaging_10041369", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -43,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/teststorageRG-1488?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-3531?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "traceparent": "00-733a9681b259d7409a219d5084943a8f-406a4c7145efe44b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c46b4a7a8777c58250f66b7488d8e379", + "traceparent": "00-298b23e762983e4ca39a171d9b47eea9-da777aa6d2aa6b40-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7d30477c822d2550a5f346cd8485e1c6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -66,19 +79,19 @@ "Cache-Control": "no-cache", "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:04 GMT", + "Date": "Wed, 22 Mar 2023 08:48:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fb4a283-f04b-47bd-99b2-3f5eda5099c2", + "x-ms-correlation-request-id": "17aec0f3-41a3-43bf-9224-98d5e30685b3", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "2fb4a283-f04b-47bd-99b2-3f5eda5099c2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100405Z:2fb4a283-f04b-47bd-99b2-3f5eda5099c2" + "x-ms-request-id": "17aec0f3-41a3-43bf-9224-98d5e30685b3", + "x-ms-routing-request-id": "JAPANEAST:20230322T084856Z:17aec0f3-41a3-43bf-9224-98d5e30685b3" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488", - "name": "teststorageRG-1488", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531", + "name": "teststorageRG-3531", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "tags": { @@ -90,20 +103,20 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "72", + "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-d1657d385fe57045a542b2931472cdcd-03b39ec265e6f047-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "81a69881d846d0fa07df8938b6a56d16", + "traceparent": "00-9f58486bb12d1d468269a3b36d5aed6d-3fa81972a001fa49-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "4f0ba581b2610e4e2b26c1c08e381ee3", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "teststoragemgmt761", + "name": "teststoragemgmt1923", "type": "Microsoft.Storage/storageAccounts" }, "StatusCode": 200, @@ -111,33 +124,33 @@ "Cache-Control": "no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:04:06 GMT", + "Date": "Wed, 22 Mar 2023 08:48:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "81a69881d846d0fa07df8938b6a56d16", - "x-ms-correlation-request-id": "2a87b8c6-7a3e-49da-9362-f98359072a49", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "5069bb1b-0533-4fa2-a7e2-22ab82bf7578", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100406Z:2a87b8c6-7a3e-49da-9362-f98359072a49" + "x-ms-client-request-id": "4f0ba581b2610e4e2b26c1c08e381ee3", + "x-ms-correlation-request-id": "79379c0a-45cc-456c-81dc-9823a4c8e2e8", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "fadd9086-4773-49f0-a8ba-e3eba5c46a1b", + "x-ms-routing-request-id": "JAPANEAST:20230322T084857Z:79379c0a-45cc-456c-81dc-9823a4c8e2e8" }, "ResponseBody": { "nameAvailable": true } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-551ae51353828347954d632aefc52fbf-12e9c55a18cf574e-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "992773ece6305b6411c3041650b243dc", + "traceparent": "00-d58a52764de09341910d6f02ab605228-c27edd0dc901fb4a-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "fa575db16f199c38b65bf5eac3a12529", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -157,30 +170,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:12 GMT", + "Date": "Wed, 22 Mar 2023 08:49:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/7e70f3ba-bb83-4789-9eab-b6b46b4832e5?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/4a303323-d640-4f66-b883-1a52cab03377?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "992773ece6305b6411c3041650b243dc", - "x-ms-correlation-request-id": "c5ddf156-1b1d-424f-9f2b-82f43c3315a7", + "x-ms-client-request-id": "fa575db16f199c38b65bf5eac3a12529", + "x-ms-correlation-request-id": "313e3c7a-aa82-4fb3-8dab-69424284cddb", "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "7e70f3ba-bb83-4789-9eab-b6b46b4832e5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100412Z:c5ddf156-1b1d-424f-9f2b-82f43c3315a7" + "x-ms-request-id": "4a303323-d640-4f66-b883-1a52cab03377", + "x-ms-routing-request-id": "JAPANEAST:20230322T084900Z:313e3c7a-aa82-4fb3-8dab-69424284cddb" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/7e70f3ba-bb83-4789-9eab-b6b46b4832e5?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/4a303323-d640-4f66-b883-1a52cab03377?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-551ae51353828347954d632aefc52fbf-633e674a187aab44-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "659b5efde0bc9b55344a6f83d3e37f55", + "traceparent": "00-d58a52764de09341910d6f02ab605228-58a991cadf9a4a4d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "27d2e927cc8a12176d6e9905bc634a89", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -189,49 +202,49 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:12 GMT", + "Date": "Wed, 22 Mar 2023 08:49:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/7e70f3ba-bb83-4789-9eab-b6b46b4832e5?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/4a303323-d640-4f66-b883-1a52cab03377?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "659b5efde0bc9b55344a6f83d3e37f55", - "x-ms-correlation-request-id": "948ed526-b929-4ab5-8dd8-384141225d42", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "c846bc98-092c-422e-bd81-4256b6c06985", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100412Z:948ed526-b929-4ab5-8dd8-384141225d42" + "x-ms-client-request-id": "27d2e927cc8a12176d6e9905bc634a89", + "x-ms-correlation-request-id": "b08021da-916f-48de-a2ab-ea7056d8573a", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "4731b4bf-5e4d-45fc-bae2-8ed67c0d30f6", + "x-ms-routing-request-id": "JAPANEAST:20230322T084901Z:b08021da-916f-48de-a2ab-ea7056d8573a" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/7e70f3ba-bb83-4789-9eab-b6b46b4832e5?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/4a303323-d640-4f66-b883-1a52cab03377?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-551ae51353828347954d632aefc52fbf-e0b592f62ebb0944-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "a0ecad9ce8cae8a23fb5283d76bc6385", + "traceparent": "00-d58a52764de09341910d6f02ab605228-3358987908009542-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "aa9697015a72cc4441c118a96cdc0d52", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1537", + "Content-Length": "1545", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:04:29 GMT", + "Date": "Wed, 22 Mar 2023 08:49:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a0ecad9ce8cae8a23fb5283d76bc6385", - "x-ms-correlation-request-id": "926be5fe-9204-4dee-8abb-2cbf2c20da2d", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "d851a09b-7ce1-4bc5-b8bd-b97c2f9deb22", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100429Z:926be5fe-9204-4dee-8abb-2cbf2c20da2d" + "x-ms-client-request-id": "aa9697015a72cc4441c118a96cdc0d52", + "x-ms-correlation-request-id": "bcf97b16-688d-43cf-ae90-83c8e373e1b0", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "f9391a39-fbf0-407e-b22e-469b00edf23f", + "x-ms-routing-request-id": "JAPANEAST:20230322T084918Z:bcf97b16-688d-43cf-ae90-83c8e373e1b0" }, "ResponseBody": { "sku": { @@ -239,8 +252,8 @@ "tier": "Standard" }, "kind": "StorageV2", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761", - "name": "teststoragemgmt761", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923", + "name": "teststoragemgmt1923", "type": "Microsoft.Storage/storageAccounts", "location": "eastus2", "tags": { @@ -249,8 +262,8 @@ }, "properties": { "keyCreationTime": { - "key1": "2022-11-17T10:04:08.9259104Z", - "key2": "2022-11-17T10:04:08.9259104Z" + "key1": "2023-03-22T08:48:59.4021124Z", + "key2": "2023-03-22T08:48:59.4021124Z" }, "privateEndpointConnections": [], "minimumTlsVersion": "TLS1_0", @@ -267,26 +280,26 @@ "file": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:04:09.2853265Z" + "lastEnabledTime": "2023-03-22T08:48:59.5739885Z" }, "blob": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:04:09.2853265Z" + "lastEnabledTime": "2023-03-22T08:48:59.5739885Z" } }, "keySource": "Microsoft.Storage" }, "accessTier": "Hot", "provisioningState": "Succeeded", - "creationTime": "2022-11-17T10:04:08.7852764Z", + "creationTime": "2023-03-22T08:48:59.2614828Z", "primaryEndpoints": { - "dfs": "https://teststoragemgmt761.dfs.core.windows.net/", - "web": "https://teststoragemgmt761.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt761.blob.core.windows.net/", - "queue": "https://teststoragemgmt761.queue.core.windows.net/", - "table": "https://teststoragemgmt761.table.core.windows.net/", - "file": "https://teststoragemgmt761.file.core.windows.net/" + "dfs": "https://teststoragemgmt1923.dfs.core.windows.net/", + "web": "https://teststoragemgmt1923.z20.web.core.windows.net/", + "blob": "https://teststoragemgmt1923.blob.core.windows.net/", + "queue": "https://teststoragemgmt1923.queue.core.windows.net/", + "table": "https://teststoragemgmt1923.table.core.windows.net/", + "file": "https://teststoragemgmt1923.file.core.windows.net/" }, "primaryLocation": "eastus2", "statusOfPrimary": "available", @@ -296,586 +309,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "traceparent": "00-267e3502b350d14899fb1b7be385f183-d57323ef3322f14c-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "16f218b420dec06c3f4f2a94b19e8d73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/be639729-46bd-4509-a32c-2a810b02558d?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e64dc363-0e0c-42c9-a5b4-aecf6c84005c", - "x-ms-client-request-id": "16f218b420dec06c3f4f2a94b19e8d73", - "x-ms-correlation-request-id": "baa8008f-9745-4b82-b97d-b949b1ff42ef", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "be639729-46bd-4509-a32c-2a810b02558d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100433Z:baa8008f-9745-4b82-b97d-b949b1ff42ef" - }, - "ResponseBody": { - "name": "vnet-9602", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602", - "etag": "W/\u00220a821fb0-9b81-46d5-b1e8-9b5ea407616a\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "056bf59c-acad-40b9-b5eb-934e95d11c14", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602/subnets/default", - "etag": "W/\u00220a821fb0-9b81-46d5-b1e8-9b5ea407616a\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/be639729-46bd-4509-a32c-2a810b02558d?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-267e3502b350d14899fb1b7be385f183-fe9e23fa3605df43-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "cb1f5aea3e8c8dbe7fe08b9978538e16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9c18c442-42cd-4682-af81-3b3a3974187a", - "x-ms-client-request-id": "cb1f5aea3e8c8dbe7fe08b9978538e16", - "x-ms-correlation-request-id": "92e3e17b-c29e-4277-b450-ffc8673f1e83", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "b7e1654c-f416-489e-ae2a-6536c13b44ad", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100433Z:92e3e17b-c29e-4277-b450-ffc8673f1e83" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/be639729-46bd-4509-a32c-2a810b02558d?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-267e3502b350d14899fb1b7be385f183-861e1a603477bd4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "b15bc99ae5182e2f033663b819b4a71a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "65bc2578-9dbb-492e-b233-7e4e735b5b94", - "x-ms-client-request-id": "b15bc99ae5182e2f033663b819b4a71a", - "x-ms-correlation-request-id": "3b28bf24-2094-419b-848d-d8c23bb07d1b", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "570a5da8-ab50-4c5e-af15-79808ea0e71d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100444Z:3b28bf24-2094-419b-848d-d8c23bb07d1b" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-267e3502b350d14899fb1b7be385f183-f9f70eba96da0c46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "56aa43d8c27edce74cbe1f19fa7b435f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1339", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:44 GMT", - "ETag": "W/\u002286777478-2780-4cd5-b4af-5b2c5e0db3ba\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "24ad3ba3-9c33-47c8-9c7f-89522db8c407", - "x-ms-client-request-id": "56aa43d8c27edce74cbe1f19fa7b435f", - "x-ms-correlation-request-id": "fd7672d5-a2d8-42bc-a03b-402d4d65a776", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "158df730-fa25-4b3c-89f8-1ff6cba8575f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100444Z:fd7672d5-a2d8-42bc-a03b-402d4d65a776" - }, - "ResponseBody": { - "name": "vnet-9602", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602", - "etag": "W/\u002286777478-2780-4cd5-b4af-5b2c5e0db3ba\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "056bf59c-acad-40b9-b5eb-934e95d11c14", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602/subnets/default", - "etag": "W/\u002286777478-2780-4cd5-b4af-5b2c5e0db3ba\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "727", - "Content-Type": "application/json", - "traceparent": "00-3ca545840766cc40aa7b8ff0899db1c4-c5eb08b08edbcc4c-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c5c94f1d04cef12bc755db0573cb3870", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602/subnets/default", - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3203", - "properties": { - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/dc810a8b-663a-49c4-a75f-4e9a842a7658?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1949", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "49579f64-a14c-47fa-95c6-472f3566a435", - "x-ms-client-request-id": "c5c94f1d04cef12bc755db0573cb3870", - "x-ms-correlation-request-id": "3fbbf54f-7a56-426b-a608-83d15d796cfe", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "dc810a8b-663a-49c4-a75f-4e9a842a7658", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100448Z:3fbbf54f-7a56-426b-a608-83d15d796cfe" - }, - "ResponseBody": { - "name": "pe-8005", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005", - "etag": "W/\u0022a512d6f6-a9e6-4162-a77d-2f06c09e19ba\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "2ec2c6e6-2916-4b0e-9831-e175740c85db", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3203", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005/manualPrivateLinkServiceConnections/pec3203", - "etag": "W/\u0022a512d6f6-a9e6-4162-a77d-2f06c09e19ba\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/networkInterfaces/pe-8005.nic.2126f892-0760-4637-a3a9-f134fd5e6f69" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/dc810a8b-663a-49c4-a75f-4e9a842a7658?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-3ca545840766cc40aa7b8ff0899db1c4-e1f42e8a71483c46-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "589728221251a5742b8dfa9100464a54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1a30671e-4401-4d95-8c88-4f39e22331d7", - "x-ms-client-request-id": "589728221251a5742b8dfa9100464a54", - "x-ms-correlation-request-id": "dc308eda-fc15-4bb6-b4e5-248b81356a84", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "2d3e6795-9bee-4b9d-a7a3-5b7106f1673e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100448Z:dc308eda-fc15-4bb6-b4e5-248b81356a84" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/dc810a8b-663a-49c4-a75f-4e9a842a7658?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-3ca545840766cc40aa7b8ff0899db1c4-4cf090a477e52f4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "0fbb8ae15fb645576c4a60743e15bc3f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:04:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "41834ac1-03a9-42c6-8e17-31c2fdc66281", - "x-ms-client-request-id": "0fbb8ae15fb645576c4a60743e15bc3f", - "x-ms-correlation-request-id": "11da6f5f-0851-4733-80bb-838595463b4a", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "f34fe3be-c892-4709-ba96-11fd9805709f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100459Z:11da6f5f-0851-4733-80bb-838595463b4a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/dc810a8b-663a-49c4-a75f-4e9a842a7658?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-3ca545840766cc40aa7b8ff0899db1c4-3218e745b6e50949-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "4ae3d762df33ae1ebf030b0bdd517d1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:05:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9da4f724-d22e-414d-9f72-8a63d6323068", - "x-ms-client-request-id": "4ae3d762df33ae1ebf030b0bdd517d1e", - "x-ms-correlation-request-id": "ab796d48-336c-4491-8707-694f5fd29bfc", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "db92b051-f63b-48da-a58b-a30b2aee9612", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100519Z:ab796d48-336c-4491-8707-694f5fd29bfc" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-3ca545840766cc40aa7b8ff0899db1c4-cb1f29caf984e94f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "aa34710fe3ccc24cd151ec06b2006716", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1950", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:05:20 GMT", - "ETag": "W/\u00220921d4ab-129c-47c0-aff4-ad1d4a77b03d\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9783d8fd-53a7-45b0-a9f8-00841e805b23", - "x-ms-client-request-id": "aa34710fe3ccc24cd151ec06b2006716", - "x-ms-correlation-request-id": "c056adab-0a75-4f39-8452-dbc8b3db8e7c", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "05db49aa-ea34-4904-aab0-521a6ac0f406", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100521Z:c056adab-0a75-4f39-8452-dbc8b3db8e7c" - }, - "ResponseBody": { - "name": "pe-8005", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005", - "etag": "W/\u00220921d4ab-129c-47c0-aff4-ad1d4a77b03d\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "2ec2c6e6-2916-4b0e-9831-e175740c85db", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3203", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005/manualPrivateLinkServiceConnections/pec3203", - "etag": "W/\u00220921d4ab-129c-47c0-aff4-ad1d4a77b03d\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/virtualNetworks/vnet-9602/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/networkInterfaces/pe-8005.nic.2126f892-0760-4637-a3a9-f134fd5e6f69" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ca1c60ff60af36439ea3ed66aeb3ce18-b22c701b92b74643-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "292ebad0ff6301206b0d4fb3534c681b", + "traceparent": "00-4fe72353381a5f44981bc25466edffb4-2b791cab96f6d442-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "21dcb9a8b2d5080b7c0792d17e8ddabe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:05:21 GMT", + "Date": "Wed, 22 Mar 2023 08:50:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "292ebad0ff6301206b0d4fb3534c681b", - "x-ms-correlation-request-id": "f40a622f-9f31-4aa8-a5c5-4369b210dbfd", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "9ae01a70-9e60-4f79-8b4e-9a383cb67df8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100522Z:f40a622f-9f31-4aa8-a5c5-4369b210dbfd" + "x-ms-client-request-id": "21dcb9a8b2d5080b7c0792d17e8ddabe", + "x-ms-correlation-request-id": "11cb0143-3a00-4602-b92b-5ff0979495c2", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "0f36b0e6-4db8-4893-9de0-8539f82e63c6", + "x-ms-routing-request-id": "JAPANEAST:20230322T085006Z:11cb0143-3a00-4602-b92b-5ff0979495c2" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections/teststoragemgmt761.e1326179-b21b-4320-9837-54f28ad5f4fc", - "name": "teststoragemgmt761.e1326179-b21b-4320-9837-54f28ad5f4fc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections/teststoragemgmt1923.cdabb6c2-bfdf-4a34-b6cd-abd51d425f83", + "name": "teststoragemgmt1923.cdabb6c2-bfdf-4a34-b6cd-abd51d425f83", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Network/privateEndpoints/pe-9814" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -888,42 +359,42 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections/teststoragemgmt761.e1326179-b21b-4320-9837-54f28ad5f4fc?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections/teststoragemgmt1923.cdabb6c2-bfdf-4a34-b6cd-abd51d425f83?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-40994b46cba9384088bcd37774ca9b87-29b9f64b7c2b8649-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "cd6441cc12e07e738b2079e2f318fcbf", + "traceparent": "00-6993240795fe4e4eb38af85a83b35247-5b19ca1a3bd1c542-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "ecf8191d8f6147db741b85c9aa82ac68", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "694", + "Content-Length": "697", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:05:21 GMT", + "Date": "Wed, 22 Mar 2023 08:50:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cd6441cc12e07e738b2079e2f318fcbf", - "x-ms-correlation-request-id": "e4c44786-db2e-484b-a074-6e6aeef758de", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "189779db-6c75-4cc6-bb84-531bd4c052e7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100522Z:e4c44786-db2e-484b-a074-6e6aeef758de" + "x-ms-client-request-id": "ecf8191d8f6147db741b85c9aa82ac68", + "x-ms-correlation-request-id": "3b0421bd-8760-481c-ac09-4972384ff187", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "48fd549c-670b-4894-9bc9-f7ba706bbc52", + "x-ms-routing-request-id": "JAPANEAST:20230322T085006Z:3b0421bd-8760-481c-ac09-4972384ff187" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections/teststoragemgmt761.e1326179-b21b-4320-9837-54f28ad5f4fc", - "name": "teststoragemgmt761.e1326179-b21b-4320-9837-54f28ad5f4fc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections/teststoragemgmt1923.cdabb6c2-bfdf-4a34-b6cd-abd51d425f83", + "name": "teststoragemgmt1923.cdabb6c2-bfdf-4a34-b6cd-abd51d425f83", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Network/privateEndpoints/pe-8005" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Network/privateEndpoints/pe-9814" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -934,14 +405,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections/teststoragemgmt761.e1326179-b21b-4320-9837-54f28ad5f4fc?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections/teststoragemgmt1923.cdabb6c2-bfdf-4a34-b6cd-abd51d425f83?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2a6b936afab64947b240308da6bb03ed-71dc8e85d5a4c34b-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "223af59b542210bb50323fbf94986f84", + "traceparent": "00-ee79fea25df2064cb120316df135ae9a-02fdefa7de20f941-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "cb1b94ca427d87f1db321699c067f717", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -950,29 +421,29 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:05:24 GMT", + "Date": "Wed, 22 Mar 2023 08:50:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "223af59b542210bb50323fbf94986f84", - "x-ms-correlation-request-id": "d019ee56-38f8-4aa7-9837-10f61d281c4b", + "x-ms-client-request-id": "cb1b94ca427d87f1db321699c067f717", + "x-ms-correlation-request-id": "b0e42275-fa36-4870-864a-5175f29c3f71", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "c4c287b5-1e2c-46c7-b029-9c3b07db663c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100524Z:d019ee56-38f8-4aa7-9837-10f61d281c4b" + "x-ms-request-id": "ee80a069-6fed-40c3-accb-f6d623b00e69", + "x-ms-routing-request-id": "JAPANEAST:20230322T085008Z:b0e42275-fa36-4870-864a-5175f29c3f71" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-14176e353c5a4f4d9c704b0d7b059cda-2ce1c56e9359c343-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "7039d0e9999bbe3547af9d42853e0e52", + "traceparent": "00-e58d5732fd535740a248bf87866e8c35-8a33f1208e6d3d40-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "bfba9e57815b1871dd94adba2d425efa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -981,31 +452,31 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:05:24 GMT", + "Date": "Wed, 22 Mar 2023 08:50:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7039d0e9999bbe3547af9d42853e0e52", - "x-ms-correlation-request-id": "b20a4ae5-69ea-4ad4-aa2f-8c7cfcc201fb", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "9b8282d9-a4e9-40ec-8759-850692df6151", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100525Z:b20a4ae5-69ea-4ad4-aa2f-8c7cfcc201fb" + "x-ms-client-request-id": "bfba9e57815b1871dd94adba2d425efa", + "x-ms-correlation-request-id": "6cb77073-7d88-408b-924f-321d1093a622", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "1f05b357-78fb-42b1-8c91-aecd58b6e2bc", + "x-ms-routing-request-id": "JAPANEAST:20230322T085009Z:6cb77073-7d88-408b-924f-321d1093a622" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7524b7afd47c1c4790f2e18c8a155fbb-3acc33dacaca0f44-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "5e178f11461177f885547daed3b4eaf2", + "traceparent": "00-55a41fe6c003644699e17a2d5c7fb97d-c5c249ad2722f845-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "ea06295a0f72da412870112e7842870c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1014,30 +485,30 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:05:25 GMT", + "Date": "Wed, 22 Mar 2023 08:50:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5e178f11461177f885547daed3b4eaf2", - "x-ms-correlation-request-id": "b0055870-028b-4371-8ec2-7675acea4d22", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "65c6e7b9-8deb-4173-980d-56552f26628c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100526Z:b0055870-028b-4371-8ec2-7675acea4d22" + "x-ms-client-request-id": "ea06295a0f72da412870112e7842870c", + "x-ms-correlation-request-id": "a6717fd4-fc54-4247-85d7-f4bd9fd17041", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "0c5b2488-5108-4d45-b700-c61be1c69ec9", + "x-ms-routing-request-id": "JAPANEAST:20230322T085009Z:a6717fd4-fc54-4247-85d7-f4bd9fd17041" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-1488/providers/Microsoft.Storage/storageAccounts/teststoragemgmt761?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-3531/providers/Microsoft.Storage/storageAccounts/teststoragemgmt1923?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-860fcc8b6911224b8017511a35ab19d3-6f21a3fb2eff1446-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "23f8f5b18bde0224bf7cda73b7798a11", + "traceparent": "00-f7809edd7579294d94e2c170f5f090a3-1b81b58e4e9c2f4f-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "0b716d23ecc8490d2202eee894375a99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1046,25 +517,25 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:05:32 GMT", + "Date": "Wed, 22 Mar 2023 08:50:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "23f8f5b18bde0224bf7cda73b7798a11", - "x-ms-correlation-request-id": "1b6c85f3-dab6-4652-99d2-8b2a870e801c", + "x-ms-client-request-id": "0b716d23ecc8490d2202eee894375a99", + "x-ms-correlation-request-id": "6ffa6d27-d873-4fb3-b470-85299bdf860a", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "4160544c-0dc2-466f-953a-d743d5622236", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T100533Z:1b6c85f3-dab6-4652-99d2-8b2a870e801c" + "x-ms-request-id": "48e57f5a-95b8-4590-bcea-b03a34b124bf", + "x-ms-routing-request-id": "JAPANEAST:20230322T085014Z:6ffa6d27-d873-4fb3-b470-85299bdf860a" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "878706550", + "RandomSeed": "1184596434", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "45b60d85-fd72-427a-a708-f994d26e593e" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDeleteAsync.json b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDeleteAsync.json index d14458107ca8..76f80bbaf194 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDeleteAsync.json +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/SessionRecords/PrivateEndpointConnectionTests/StoragePrivateEndpointConnectionDeleteAsync.json @@ -1,39 +1,52 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2021-01-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dba1cdc520071042b05aea1807b0c781-d0ce3a3e99cf354f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "e20edab1ea64253d19b2099f8877b631", + "traceparent": "00-a19d2d06a869b64e8cce5ed554493227-569b6bd310825f41-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "1ca82a306341deea423230d577c3b380", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "411", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:40 GMT", + "Date": "Wed, 22 Mar 2023 09:00:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d79b69fe-8efb-4acf-a262-d4a0ef887cd1", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "d79b69fe-8efb-4acf-a262-d4a0ef887cd1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103140Z:d79b69fe-8efb-4acf-a262-d4a0ef887cd1" + "x-ms-correlation-request-id": "5c814045-f005-4d79-bc71-055c1b02cb46", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "5c814045-f005-4d79-bc71-055c1b02cb46", + "x-ms-routing-request-id": "JAPANEAST:20230322T090052Z:5c814045-f005-4d79-bc71-055c1b02cb46" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e", + "tags": { + "TagKey-9823": "TagValue-1254", + "TagKey-3481": "TagValue-320", + "TagKey-4926": "TagValue-1187", + "TagKey-751": "TagValue-3921", + "TagKey-1866": "TagValue-8559", + "TagKey-3094": "TagValue-9190", + "TagKey-2449": "TagValue-9", + "TagKey-8379": "TagValue-164", + "TagKey-7470": "TagValue-2205", + "TagKey-4236": "TagValue-3698", + "TagKey-5316": "TagValue-2725" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "AzureStorage_DMStaging_10041369", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -43,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/teststorageRG-524?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/teststorageRG-2555?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "44", "Content-Type": "application/json", - "traceparent": "00-76b03c5273838f43bf6c20490ba89146-9dfc823a2aa9214b-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "c205951dea3bf953e6dddf75475c7d95", + "traceparent": "00-a942e6bb37c95e4eaafc38d00467d241-34f2be00421e9c45-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "35398da84dd9552cb3655392beb549b7", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -64,21 +77,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "256", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:41 GMT", + "Date": "Wed, 22 Mar 2023 09:00:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c3e611e-9320-4d4b-8f64-c63f1e47aa53", + "x-ms-correlation-request-id": "2dc8063b-5a80-4166-8d88-1e63f68fd8f9", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "0c3e611e-9320-4d4b-8f64-c63f1e47aa53", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103142Z:0c3e611e-9320-4d4b-8f64-c63f1e47aa53" + "x-ms-request-id": "2dc8063b-5a80-4166-8d88-1e63f68fd8f9", + "x-ms-routing-request-id": "JAPANEAST:20230322T090053Z:2dc8063b-5a80-4166-8d88-1e63f68fd8f9" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524", - "name": "teststorageRG-524", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555", + "name": "teststorageRG-2555", "type": "Microsoft.Resources/resourceGroups", "location": "eastus2", "tags": { @@ -90,20 +103,20 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/checkNameAvailability?api-version=2022-09-01", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "73", "Content-Type": "application/json", - "traceparent": "00-7c43dae56de80342affb88fd8864f9d2-ea20adbc9d86d149-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "8be50c978a2583d6e52a965d3d4a0284", + "traceparent": "00-82bc82ce3563534b9b22e284d58119ab-9bc21474e9054243-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "ea3c09a29387f231fb48e15fe0b1047a", "x-ms-return-client-request-id": "true" }, "RequestBody": { - "name": "teststoragemgmt3155", + "name": "teststoragemgmt8348", "type": "Microsoft.Storage/storageAccounts" }, "StatusCode": 200, @@ -111,33 +124,33 @@ "Cache-Control": "no-cache", "Content-Length": "22", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:31:43 GMT", + "Date": "Wed, 22 Mar 2023 09:00:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8be50c978a2583d6e52a965d3d4a0284", - "x-ms-correlation-request-id": "b4d670ff-50bd-48a0-912a-322a1c79f961", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "7f2322c3-5d36-4ed9-892d-033130c35003", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103143Z:b4d670ff-50bd-48a0-912a-322a1c79f961" + "x-ms-client-request-id": "ea3c09a29387f231fb48e15fe0b1047a", + "x-ms-correlation-request-id": "11a83557-9346-4558-847b-5d0dac0fefb1", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "9106be8f-4e71-466b-9fbd-b2c599a50910", + "x-ms-routing-request-id": "JAPANEAST:20230322T090055Z:11a83557-9346-4558-847b-5d0dac0fefb1" }, "ResponseBody": { "nameAvailable": true } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348?api-version=2022-09-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "128", "Content-Type": "application/json", - "traceparent": "00-96b53e771cc1104a8c9eb59f4f6bc70a-051fca5e039f2c4c-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "55dfc88a75c5bbf0e87e0d5dafd1558b", + "traceparent": "00-6481066164b54846bc30358d005850f8-30202d26810fb543-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "e181f48556077cddc78efd974b847de6", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -157,30 +170,30 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:46 GMT", + "Date": "Wed, 22 Mar 2023 09:00:58 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b8322797-0d3b-4a81-b541-2771549f334e?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/8d9b6fdd-5e7d-4b06-8fbe-6de17824b42e?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "55dfc88a75c5bbf0e87e0d5dafd1558b", - "x-ms-correlation-request-id": "a006a73e-744e-46c0-bd0b-c188ed63f17d", + "x-ms-client-request-id": "e181f48556077cddc78efd974b847de6", + "x-ms-correlation-request-id": "c07759ff-61f6-431e-8541-0b444a716315", "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "b8322797-0d3b-4a81-b541-2771549f334e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103147Z:a006a73e-744e-46c0-bd0b-c188ed63f17d" + "x-ms-request-id": "8d9b6fdd-5e7d-4b06-8fbe-6de17824b42e", + "x-ms-routing-request-id": "JAPANEAST:20230322T090058Z:c07759ff-61f6-431e-8541-0b444a716315" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b8322797-0d3b-4a81-b541-2771549f334e?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/8d9b6fdd-5e7d-4b06-8fbe-6de17824b42e?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96b53e771cc1104a8c9eb59f4f6bc70a-e43bb9aac4a71045-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "93bdf0dd3f9e217c1c2aa2a77d79d313", + "traceparent": "00-6481066164b54846bc30358d005850f8-41a4ec3fdf79d24b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "c139184fd5c84bcf2cbf23f8969aa776", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -189,49 +202,49 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:31:46 GMT", + "Date": "Wed, 22 Mar 2023 09:00:58 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b8322797-0d3b-4a81-b541-2771549f334e?monitor=true\u0026api-version=2022-09-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/8d9b6fdd-5e7d-4b06-8fbe-6de17824b42e?monitor=true\u0026api-version=2022-09-01", "Pragma": "no-cache", "Retry-After": "17", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "93bdf0dd3f9e217c1c2aa2a77d79d313", - "x-ms-correlation-request-id": "5f63f3f9-2258-4bcf-a442-2cf912c7ef36", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "2ec7c951-d297-49fd-8969-502705eac1b8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103147Z:5f63f3f9-2258-4bcf-a442-2cf912c7ef36" + "x-ms-client-request-id": "c139184fd5c84bcf2cbf23f8969aa776", + "x-ms-correlation-request-id": "7ffc22a3-c284-4442-ab46-44aff084a6a1", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "452fb2c5-2c8f-4508-8817-c3a314961a0b", + "x-ms-routing-request-id": "JAPANEAST:20230322T090058Z:7ffc22a3-c284-4442-ab46-44aff084a6a1" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b8322797-0d3b-4a81-b541-2771549f334e?monitor=true\u0026api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Storage/locations/eastus2/asyncoperations/8d9b6fdd-5e7d-4b06-8fbe-6de17824b42e?monitor=true\u0026api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96b53e771cc1104a8c9eb59f4f6bc70a-3ffd415c99d65341-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "f8540ad5586bf639d1d327861f31fe4d", + "traceparent": "00-6481066164b54846bc30358d005850f8-cef8f2e718cfbb41-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "4041fbcb5a91ec36d388d9c578d831d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1544", + "Content-Length": "1545", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:32:04 GMT", + "Date": "Wed, 22 Mar 2023 09:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f8540ad5586bf639d1d327861f31fe4d", - "x-ms-correlation-request-id": "960dcc72-cb64-4171-a99d-d5fa08e161dc", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "f10a3fc8-27af-4972-acf3-bd9d87481d3e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103204Z:960dcc72-cb64-4171-a99d-d5fa08e161dc" + "x-ms-client-request-id": "4041fbcb5a91ec36d388d9c578d831d0", + "x-ms-correlation-request-id": "8027978e-9aca-4c3d-a5ac-3e203656f238", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "dc9c51e4-0fb1-4cac-bc9f-2963a71679af", + "x-ms-routing-request-id": "JAPANEAST:20230322T090116Z:8027978e-9aca-4c3d-a5ac-3e203656f238" }, "ResponseBody": { "sku": { @@ -239,8 +252,8 @@ "tier": "Standard" }, "kind": "StorageV2", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155", - "name": "teststoragemgmt3155", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348", + "name": "teststoragemgmt8348", "type": "Microsoft.Storage/storageAccounts", "location": "eastus2", "tags": { @@ -249,8 +262,8 @@ }, "properties": { "keyCreationTime": { - "key1": "2022-11-17T10:31:45.5096841Z", - "key2": "2022-11-17T10:31:45.5096841Z" + "key1": "2023-03-22T09:00:56.9541917Z", + "key2": "2023-03-22T09:00:56.9541917Z" }, "privateEndpointConnections": [], "minimumTlsVersion": "TLS1_0", @@ -267,26 +280,26 @@ "file": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:31:45.7909439Z" + "lastEnabledTime": "2023-03-22T09:00:57.1104405Z" }, "blob": { "keyType": "Account", "enabled": true, - "lastEnabledTime": "2022-11-17T10:31:45.7909439Z" + "lastEnabledTime": "2023-03-22T09:00:57.1104405Z" } }, "keySource": "Microsoft.Storage" }, "accessTier": "Hot", "provisioningState": "Succeeded", - "creationTime": "2022-11-17T10:31:45.3690942Z", + "creationTime": "2023-03-22T09:00:56.7823433Z", "primaryEndpoints": { - "dfs": "https://teststoragemgmt3155.dfs.core.windows.net/", - "web": "https://teststoragemgmt3155.z20.web.core.windows.net/", - "blob": "https://teststoragemgmt3155.blob.core.windows.net/", - "queue": "https://teststoragemgmt3155.queue.core.windows.net/", - "table": "https://teststoragemgmt3155.table.core.windows.net/", - "file": "https://teststoragemgmt3155.file.core.windows.net/" + "dfs": "https://teststoragemgmt8348.dfs.core.windows.net/", + "web": "https://teststoragemgmt8348.z20.web.core.windows.net/", + "blob": "https://teststoragemgmt8348.blob.core.windows.net/", + "queue": "https://teststoragemgmt8348.queue.core.windows.net/", + "table": "https://teststoragemgmt8348.table.core.windows.net/", + "file": "https://teststoragemgmt8348.file.core.windows.net/" }, "primaryLocation": "eastus2", "statusOfPrimary": "available", @@ -296,549 +309,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "261", - "Content-Type": "application/json", - "traceparent": "00-06c496b949e61542bcc9ccffb371287e-4736327ea7956c41-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "14be7f7aedc2c8c9bd8d20f1508eb56b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "properties": { - "addressPrefix": "10.0.1.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/d50ba1d8-8e49-43f2-8fcd-87b057267e45?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1335", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "978c8e2b-df2e-4f5a-a1ad-ddcc72f051f4", - "x-ms-client-request-id": "14be7f7aedc2c8c9bd8d20f1508eb56b", - "x-ms-correlation-request-id": "5d5ec811-a14b-4d4a-bd03-26c01b022889", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "d50ba1d8-8e49-43f2-8fcd-87b057267e45", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103208Z:5d5ec811-a14b-4d4a-bd03-26c01b022889" - }, - "ResponseBody": { - "name": "vnet-2408", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408", - "etag": "W/\u0022b2a33835-f855-4973-935b-c3d1e121f5a5\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "17d2ae80-d29d-4220-8635-6b1b21d5c46f", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408/subnets/default", - "etag": "W/\u0022b2a33835-f855-4973-935b-c3d1e121f5a5\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/d50ba1d8-8e49-43f2-8fcd-87b057267e45?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-06c496b949e61542bcc9ccffb371287e-ce6fc35993d5d048-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "f902d255ff151c128a2fadcb19048045", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "42a490b9-d0bf-49d5-bf33-b01acca50784", - "x-ms-client-request-id": "f902d255ff151c128a2fadcb19048045", - "x-ms-correlation-request-id": "19119738-e389-4c6f-ae24-b5a29360bb58", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "dfe7f539-bb3c-42ad-adec-dc5db2f08096", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103208Z:19119738-e389-4c6f-ae24-b5a29360bb58" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-06c496b949e61542bcc9ccffb371287e-e8a3141fb5cc094f-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "46dc1a71054b5224fb074cff23b0d1bb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:08 GMT", - "ETag": "W/\u0022d8a69eba-2191-4e26-8084-361617a8fab2\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ca1f425c-0eeb-4b07-9cd1-ef1fc7cdb82a", - "x-ms-client-request-id": "46dc1a71054b5224fb074cff23b0d1bb", - "x-ms-correlation-request-id": "126d788d-11c0-43ac-8dab-8f4693b6c50a", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "b654249f-0ea6-4e1d-96ba-be77506d932a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103209Z:126d788d-11c0-43ac-8dab-8f4693b6c50a" - }, - "ResponseBody": { - "name": "vnet-2408", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408", - "etag": "W/\u0022d8a69eba-2191-4e26-8084-361617a8fab2\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "17d2ae80-d29d-4220-8635-6b1b21d5c46f", - "addressSpace": { - "addressPrefixes": [ - "10.0.0.0/16" - ] - }, - "dhcpOptions": { - "dnsServers": [ - "10.1.1.1", - "10.1.2.4" - ] - }, - "subnets": [ - { - "name": "default", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408/subnets/default", - "etag": "W/\u0022d8a69eba-2191-4e26-8084-361617a8fab2\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733?api-version=2021-02-01", - "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "726", - "Content-Type": "application/json", - "traceparent": "00-73bd565ba8f02f43aabf4d70559b9823-fc9e19930dc54e45-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "bb8b7d9c435695d7bc817ab99ec34185", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408/subnets/default", - "name": "default", - "type": "Microsoft.Network/virtualNetworks/subnets", - "properties": { - "addressPrefix": "10.0.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - } - }, - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3726", - "properties": { - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/f3b95fe0-ad6e-4a83-96bb-4b821005e8a8?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1941", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9ef40f6e-ba1d-4a96-887a-3e94ce7fa065", - "x-ms-client-request-id": "bb8b7d9c435695d7bc817ab99ec34185", - "x-ms-correlation-request-id": "3eca7df8-5349-4236-b18b-c33bd1094fc2", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "f3b95fe0-ad6e-4a83-96bb-4b821005e8a8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103212Z:3eca7df8-5349-4236-b18b-c33bd1094fc2" - }, - "ResponseBody": { - "name": "pe-733", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733", - "etag": "W/\u00224d6a915b-d112-47d2-9932-ba1350eecdc3\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "dbdc48a0-fc87-480a-a760-a3a2a237079d", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3726", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733/manualPrivateLinkServiceConnections/pec3726", - "etag": "W/\u00224d6a915b-d112-47d2-9932-ba1350eecdc3\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/networkInterfaces/pe-733.nic.8999c4c9-b540-40df-9a89-6470db4187a6" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/f3b95fe0-ad6e-4a83-96bb-4b821005e8a8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-73bd565ba8f02f43aabf4d70559b9823-c5dee0db8660894e-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "03672529b5b999c46fb648a3d8416889", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "95c4c5d8-f5c5-4de9-b15f-f8afe10e8b08", - "x-ms-client-request-id": "03672529b5b999c46fb648a3d8416889", - "x-ms-correlation-request-id": "0e6e43b2-d1be-43b9-a352-421a0477c837", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "729bbcba-cf4a-433b-8282-d9891bdf4094", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103213Z:0e6e43b2-d1be-43b9-a352-421a0477c837" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/f3b95fe0-ad6e-4a83-96bb-4b821005e8a8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-73bd565ba8f02f43aabf4d70559b9823-de0efb1afd1e6b42-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "f5099dbefd964c12cfdbbd4891c49be2", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "10fc5b913234b11b321e081396f410de", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cd2d4bab-65d8-4630-bbb5-d1c569118f71", - "x-ms-client-request-id": "f5099dbefd964c12cfdbbd4891c49be2", - "x-ms-correlation-request-id": "07775ddd-df8b-43df-a180-ec3c69f10b19", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "d106764a-0a89-4d7e-9c3e-0631289dc096", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103223Z:07775ddd-df8b-43df-a180-ec3c69f10b19" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Network/locations/westus2/operations/f3b95fe0-ad6e-4a83-96bb-4b821005e8a8?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-73bd565ba8f02f43aabf4d70559b9823-447eaa16336ef44a-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "788f88233e5bf1cc178c352a070ad7bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "79e2cabc-faee-4e5d-bb2c-c708becf8c10", - "x-ms-client-request-id": "788f88233e5bf1cc178c352a070ad7bc", - "x-ms-correlation-request-id": "593b65ea-c239-4cfa-81d2-ec696fe70a69", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "81ef4169-4466-4284-bd9e-4ffd472b0822", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103243Z:593b65ea-c239-4cfa-81d2-ec696fe70a69" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-73bd565ba8f02f43aabf4d70559b9823-d6272440b8e6e844-00", - "User-Agent": "azsdk-net-ResourceManager/1.3.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "5c5528a567d02b5b131b33ddf87c07aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1942", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:43 GMT", - "ETag": "W/\u0022e846deb6-cc46-43d2-a082-2db847eff3cf\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c3397af6-f4a9-41d0-a27d-33b67dcbe3e5", - "x-ms-client-request-id": "5c5528a567d02b5b131b33ddf87c07aa", - "x-ms-correlation-request-id": "244da840-e141-4057-b00b-6801a0729f50", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "3fd537da-5a77-4ac8-b163-dfba6eeae24d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103244Z:244da840-e141-4057-b00b-6801a0729f50" - }, - "ResponseBody": { - "name": "pe-733", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733", - "etag": "W/\u0022e846deb6-cc46-43d2-a082-2db847eff3cf\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "dbdc48a0-fc87-480a-a760-a3a2a237079d", - "privateLinkServiceConnections": [], - "manualPrivateLinkServiceConnections": [ - { - "name": "pec3726", - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733/manualPrivateLinkServiceConnections/pec3726", - "etag": "W/\u0022e846deb6-cc46-43d2-a082-2db847eff3cf\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155", - "groupIds": [ - "Blob" - ], - "requestMessage": "SDK test", - "privateLinkServiceConnectionState": { - "status": "Pending", - "description": "SDK test", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/manualPrivateLinkServiceConnections" - } - ], - "subnet": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/virtualNetworks/vnet-2408/subnets/default" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/networkInterfaces/pe-733.nic.8999c4c9-b540-40df-9a89-6470db4187a6" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections?api-version=2022-09-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8a780c2a1ed7f8478cd9ccbf97850158-9a35468a37599044-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "507f661aefb17f2ed118de0ac8e744c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "709", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:32:44 GMT", + "Date": "Wed, 22 Mar 2023 09:02:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "507f661aefb17f2ed118de0ac8e744c4", - "x-ms-correlation-request-id": "540ee34d-ef09-43d3-a0e4-b644fc49db7f", + "x-ms-client-request-id": "10fc5b913234b11b321e081396f410de", + "x-ms-correlation-request-id": "e2815924-11ad-4375-b456-fcff27286040", "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "a05dce15-a4a2-4878-98be-bddc53542bc5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103244Z:540ee34d-ef09-43d3-a0e4-b644fc49db7f" + "x-ms-request-id": "d5f32491-644a-4851-a82d-4428e5983843", + "x-ms-routing-request-id": "JAPANEAST:20230322T090205Z:e2815924-11ad-4375-b456-fcff27286040" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections/teststoragemgmt3155.4b9e455f-b078-4533-95a6-68bb69ee38e7", - "name": "teststoragemgmt3155.4b9e455f-b078-4533-95a6-68bb69ee38e7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections/teststoragemgmt8348.e61f59ab-4205-449b-8609-5987f3c39152", + "name": "teststoragemgmt8348.e61f59ab-4205-449b-8609-5987f3c39152", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Network/privateEndpoints/pe-9656" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -851,42 +358,42 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections/teststoragemgmt3155.4b9e455f-b078-4533-95a6-68bb69ee38e7?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections/teststoragemgmt8348.e61f59ab-4205-449b-8609-5987f3c39152?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fc28a83377c001458dcebb70df745e14-b3fbb5aef34bf947-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "68a201043f6fbc112c64653f0aeef89b", + "traceparent": "00-91c6d68f4aa68f46b00b3a77583e76bc-f0534946cd3e024a-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "8339b4274c825de653a98b78c125105b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "694", + "Content-Length": "697", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:32:44 GMT", + "Date": "Wed, 22 Mar 2023 09:02:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "68a201043f6fbc112c64653f0aeef89b", - "x-ms-correlation-request-id": "61b7d2b7-74ff-4552-8063-55b97f54a136", + "x-ms-client-request-id": "8339b4274c825de653a98b78c125105b", + "x-ms-correlation-request-id": "b7f94a6d-805d-432d-8976-e36d6e39a4d7", "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "2a8995ca-61b2-4c5d-8dd4-23b48920ac47", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103245Z:61b7d2b7-74ff-4552-8063-55b97f54a136" + "x-ms-request-id": "280ac45a-6c8f-47fa-9d47-3736d0543451", + "x-ms-routing-request-id": "JAPANEAST:20230322T090206Z:b7f94a6d-805d-432d-8976-e36d6e39a4d7" }, "ResponseBody": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections/teststoragemgmt3155.4b9e455f-b078-4533-95a6-68bb69ee38e7", - "name": "teststoragemgmt3155.4b9e455f-b078-4533-95a6-68bb69ee38e7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections/teststoragemgmt8348.e61f59ab-4205-449b-8609-5987f3c39152", + "name": "teststoragemgmt8348.e61f59ab-4205-449b-8609-5987f3c39152", "type": "Microsoft.Storage/storageAccounts/privateEndpointConnections", "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Network/privateEndpoints/pe-733" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Network/privateEndpoints/pe-9656" }, "privateLinkServiceConnectionState": { "status": "Pending", @@ -897,14 +404,14 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections/teststoragemgmt3155.4b9e455f-b078-4533-95a6-68bb69ee38e7?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections/teststoragemgmt8348.e61f59ab-4205-449b-8609-5987f3c39152?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-eccff0c1bebdbc439de6f195a335843e-6ac7ea2dbcf41c4c-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "a1108a84868bb50afad58bb88951622b", + "traceparent": "00-e6d4e7f35469234491f839294ee73e98-0c973ef2be78da44-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "d5882555b403cd5736dce3bda09a75be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -913,29 +420,28 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:46 GMT", + "Date": "Wed, 22 Mar 2023 09:02:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a1108a84868bb50afad58bb88951622b", - "x-ms-correlation-request-id": "9d181bd0-586a-4d8d-8fdb-2cf2e4761819", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "224b7f6e-5614-4d6b-a6ed-b14304c86238", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103247Z:9d181bd0-586a-4d8d-8fdb-2cf2e4761819" + "x-ms-client-request-id": "d5882555b403cd5736dce3bda09a75be", + "x-ms-correlation-request-id": "ae3edcf8-3d57-41ab-a2f3-1191e4f0d650", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "b8a413f2-d618-4f37-be0d-d17693c443ee", + "x-ms-routing-request-id": "JAPANEAST:20230322T090207Z:ae3edcf8-3d57-41ab-a2f3-1191e4f0d650" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6c01d770725e3d48af204ec965cceaea-34c61f6d20eca34e-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "f7d96fd69fd9db3b54c2244d89ee75e2", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "7d2c266990d94443759ebd8ba7a2ef0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -944,31 +450,30 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:32:47 GMT", + "Date": "Wed, 22 Mar 2023 09:02:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f7d96fd69fd9db3b54c2244d89ee75e2", - "x-ms-correlation-request-id": "344714cf-3616-479a-925d-09b9f89ec4ee", + "x-ms-client-request-id": "7d2c266990d94443759ebd8ba7a2ef0d", + "x-ms-correlation-request-id": "707c7cb7-2748-48c1-8fc8-da6f6c0a98d5", "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "3d5c9691-8519-47ce-b780-f0ce91124083", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103247Z:344714cf-3616-479a-925d-09b9f89ec4ee" + "x-ms-request-id": "ec452970-daa7-499b-8dae-98b4e77430f7", + "x-ms-routing-request-id": "JAPANEAST:20230322T090208Z:707c7cb7-2748-48c1-8fc8-da6f6c0a98d5" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155/privateEndpointConnections?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348/privateEndpointConnections?api-version=2022-09-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-45175c03aa4fe14daf75eb53bc8c50b0-ce57e249cf331c4c-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "3e85431fa3d77e38f6ec6e9ab35833da", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "71bdac0d3a6b73da5c6c4da56928bdb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -977,30 +482,30 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json", - "Date": "Thu, 17 Nov 2022 10:32:47 GMT", + "Date": "Wed, 22 Mar 2023 09:02:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3e85431fa3d77e38f6ec6e9ab35833da", - "x-ms-correlation-request-id": "7c63e461-c5fc-4e06-a7b8-e4343dbe02c1", + "x-ms-client-request-id": "71bdac0d3a6b73da5c6c4da56928bdb8", + "x-ms-correlation-request-id": "3057bff8-f93e-4806-8a95-ab1b4ad7d35e", "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "3abc19a2-79f0-44d5-b29c-9d319b20d562", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103248Z:7c63e461-c5fc-4e06-a7b8-e4343dbe02c1" + "x-ms-request-id": "5ae65bc9-0c96-4589-b9b4-59a52a78ef0a", + "x-ms-routing-request-id": "JAPANEAST:20230322T090208Z:3057bff8-f93e-4806-8a95-ab1b4ad7d35e" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/teststorageRG-524/providers/Microsoft.Storage/storageAccounts/teststoragemgmt3155?api-version=2022-09-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/teststorageRG-2555/providers/Microsoft.Storage/storageAccounts/teststoragemgmt8348?api-version=2022-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-96a76ec95c3e944b8a3dd42f407864d3-a2e7bc28b5fd1342-00", - "User-Agent": "azsdk-net-ResourceManager.Storage/1.1.0-alpha.20221117.1 (.NET Framework 4.8.4515.0; Microsoft Windows 10.0.19045 )", - "x-ms-client-request-id": "9b6939010115e5c14f344cc962bd2c0b", + "traceparent": "00-d6d5b1d07d981144be5ba94ec5458be3-261d09ac791c9d43-00", + "User-Agent": "azsdk-net-ResourceManager.Storage/1.2.0-alpha.20230322.1 (.NET Framework 4.8.9139.0; Microsoft Windows 10.0.22621 )", + "x-ms-client-request-id": "9a0fcc3493f8c582e1436065f6cc2593", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1009,25 +514,25 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Thu, 17 Nov 2022 10:32:53 GMT", + "Date": "Wed, 22 Mar 2023 09:02:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9b6939010115e5c14f344cc962bd2c0b", - "x-ms-correlation-request-id": "1962a112-aff8-4d52-8483-1020bb80580e", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "3afcbf14-12e9-471e-9f7e-18acd04dc73b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20221117T103254Z:1962a112-aff8-4d52-8483-1020bb80580e" + "x-ms-client-request-id": "9a0fcc3493f8c582e1436065f6cc2593", + "x-ms-correlation-request-id": "023e260d-b02f-45e6-9593-c8be238b58cf", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-request-id": "5aea9601-7bb9-4b13-a496-d00c36ea326a", + "x-ms-routing-request-id": "JAPANEAST:20230322T090213Z:023e260d-b02f-45e6-9593-c8be238b58cf" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1020804980", + "RandomSeed": "696175380", "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "45b60d85-fd72-427a-a708-f994d26e593e" + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } diff --git a/sdk/storage/Azure.ResourceManager.Storage/tests/Tests/PrivateEndpointConnectionTests.cs b/sdk/storage/Azure.ResourceManager.Storage/tests/Tests/PrivateEndpointConnectionTests.cs index ae7162552bc3..54400eaa3301 100644 --- a/sdk/storage/Azure.ResourceManager.Storage/tests/Tests/PrivateEndpointConnectionTests.cs +++ b/sdk/storage/Azure.ResourceManager.Storage/tests/Tests/PrivateEndpointConnectionTests.cs @@ -44,10 +44,15 @@ public async Task TearDown() [RecordedTest] public async Task CreatePrivateEndpointConnection() { - PrivateEndpointResource privateEndpoint = await CreatePrivateEndpoint(); + if (Mode == RecordedTestMode.Record) + { + using (Recording.DisableRecording()) + { + PrivateEndpointResource privateEndpoint = await CreatePrivateEndpoint(); + } + } List privateEndpointConnections = await _privateEndpointConnectionCollection.GetAllAsync().ToEnumerableAsync(); StoragePrivateEndpointConnectionResource privateEndpointConnection = privateEndpointConnections[0]; - VerifyPrivateEndpointConnections(privateEndpoint.Data.ManualPrivateLinkServiceConnections[0], privateEndpointConnection); Assert.AreEqual(StoragePrivateEndpointServiceConnectionStatus.Pending, privateEndpointConnection.Data.ConnectionState.Status); _ = await _privateEndpointConnectionCollection.CreateOrUpdateAsync(WaitUntil.Completed, privateEndpointConnection.Data.Name, new StoragePrivateEndpointConnectionData() @@ -58,9 +63,7 @@ public async Task CreatePrivateEndpointConnection() Description = "Approved by test", } }); - privateEndpoint = await privateEndpoint.GetAsync(); privateEndpointConnection = await _privateEndpointConnectionCollection.GetAsync(privateEndpointConnection.Data.Name); - VerifyPrivateEndpointConnections(privateEndpoint.Data.ManualPrivateLinkServiceConnections[0], privateEndpointConnection); Assert.AreEqual(StoragePrivateEndpointServiceConnectionStatus.Approved, privateEndpointConnection.Data.ConnectionState.Status); } @@ -68,18 +71,28 @@ public async Task CreatePrivateEndpointConnection() [RecordedTest] public async Task GetAllPrivateEndpointConnection() { - PrivateEndpointResource privateEndpoint = await CreatePrivateEndpoint(); - Assert.AreEqual(privateEndpoint.Data.ManualPrivateLinkServiceConnections.Count, 1); - + if (Mode == RecordedTestMode.Record) + { + using (Recording.DisableRecording()) + { + PrivateEndpointResource privateEndpoint = await CreatePrivateEndpoint(); + Assert.AreEqual(privateEndpoint.Data.ManualPrivateLinkServiceConnections.Count, 1); + } + } List privateEndpointConnections = await _privateEndpointConnectionCollection.GetAllAsync().ToEnumerableAsync(); Assert.AreEqual(1, privateEndpointConnections.Count); - VerifyPrivateEndpointConnections(privateEndpoint.Data.ManualPrivateLinkServiceConnections[0], privateEndpointConnections[0]); } [Test] [RecordedTest] public async Task StoragePrivateEndpointConnectionDelete() { - await CreatePrivateEndpoint(); + if (Mode == RecordedTestMode.Record) + { + using (Recording.DisableRecording()) + { + PrivateEndpointResource privateEndpoint = await CreatePrivateEndpoint(); + } + } List privateEndpointConnections = await _privateEndpointConnectionCollection.GetAllAsync().ToEnumerableAsync(); string name = privateEndpointConnections[0].Data.Name; diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/Azure.ResourceManager.WebPubSub.sln b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/Azure.ResourceManager.WebPubSub.sln index 4116eef8bae1..73cf5284a8ca 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/Azure.ResourceManager.WebPubSub.sln +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/Azure.ResourceManager.WebPubSub.sln @@ -56,18 +56,18 @@ Global {D834F7AA-20E1-4A74-8474-6E367332E3EB}.Release|x64.Build.0 = Release|Any CPU {D834F7AA-20E1-4A74-8474-6E367332E3EB}.Release|x86.ActiveCfg = Release|Any CPU {D834F7AA-20E1-4A74-8474-6E367332E3EB}.Release|x86.Build.0 = Release|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Debug|Any CPU.Build.0 = Debug|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Debug|x64.ActiveCfg = Debug|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Debug|x64.Build.0 = Debug|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Debug|x86.ActiveCfg = Debug|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Debug|x86.Build.0 = Debug|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Release|Any CPU.ActiveCfg = Release|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Release|Any CPU.Build.0 = Release|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Release|x64.ActiveCfg = Release|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Release|x64.Build.0 = Release|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Release|x86.ActiveCfg = Release|Any CPU - {91F4FCC0-AEB7-4FEC-B3C2-7A3F9764CB51}.Release|x86.Build.0 = Release|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Debug|x64.ActiveCfg = Debug|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Debug|x64.Build.0 = Debug|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Debug|x86.ActiveCfg = Debug|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Debug|x86.Build.0 = Debug|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Release|Any CPU.Build.0 = Release|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Release|x64.ActiveCfg = Release|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Release|x64.Build.0 = Release|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Release|x86.ActiveCfg = Release|Any CPU + {EC87FFA5-6EB1-4764-9EFB-51B504C7E53E}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Azure.ResourceManager.WebPubSub.Tests.csproj b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Azure.ResourceManager.WebPubSub.Tests.csproj index 295217c78aca..b3ade3c61306 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Azure.ResourceManager.WebPubSub.Tests.csproj +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Azure.ResourceManager.WebPubSub.Tests.csproj @@ -1,9 +1,4 @@  - - - - - @@ -11,9 +6,4 @@ - - - - - diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Helpers/WebPubHubServiceClientTestBase.cs b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Helpers/WebPubHubServiceClientTestBase.cs index 4e19a6fa5b17..85d3672b71c4 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Helpers/WebPubHubServiceClientTestBase.cs +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Helpers/WebPubHubServiceClientTestBase.cs @@ -20,13 +20,14 @@ public WebPubHubServiceClientTestBase(bool isAsync) : base(isAsync) { IgnoreTestInLiveMode(); } - - public bool IsTestTenant = false; - public static TimeSpan ZeroPollingInterval { get; } = TimeSpan.FromSeconds(0); - public Dictionary Tags { get; internal set; } + public WebPubHubServiceClientTestBase(bool isAsync, RecordedTestMode mode) + : base(isAsync, mode) + { + IgnoreTestInLiveMode(); + } public ArmClient ArmClient { get; set; } - + protected AzureLocation DefaultLocation = AzureLocation.WestUS2; public SubscriptionResource Subscription { get diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/PrivateEndpointConnectionTests.cs b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/PrivateEndpointConnectionTests.cs index 617d67ff6495..19f5d920741e 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/PrivateEndpointConnectionTests.cs +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/PrivateEndpointConnectionTests.cs @@ -21,11 +21,11 @@ public class PrivateEndpointConnectionTests : WebPubHubServiceClientTestBase { private ResourceGroupResource _resourceGroup; private WebPubSubResource _webPubSub; - private VirtualNetworkResource _vnet; private string _vnetName; private string _privateEndPointName; private ResourceIdentifier _resourceGroupIdentifier; + private ResourceIdentifier _vnetId; public PrivateEndpointConnectionTests(bool isAsync) : base(isAsync) { @@ -40,19 +40,29 @@ public async Task GlobalSetUp() _vnetName = SessionRecording.GenerateAssetName("Vnet-"); _privateEndPointName = SessionRecording.GenerateAssetName("PrivateEndPoint-"); - //create vnet - var vnetData = new VirtualNetworkData() + if (Mode == RecordedTestMode.Record) { - Location = "westus2", - Subnets = + using (SessionRecording.DisableRecording()) { - new SubnetData() { Name = "subnet01", AddressPrefix = "10.10.1.0/24", }, - new SubnetData() { Name = "subnet02", AddressPrefix = "10.10.2.0/24", PrivateEndpointNetworkPolicy = "Disabled", } - }, - }; - vnetData.AddressPrefixes.Add("10.10.0.0/16"); - var vnetLro = await rg.GetVirtualNetworks().CreateOrUpdateAsync(WaitUntil.Completed, _vnetName, vnetData); - _vnet = vnetLro.Value; + //create vnet + var vnetData = new VirtualNetworkData() + { + Location = DefaultLocation, + Subnets = + { + new SubnetData() { Name = "subnet01", AddressPrefix = "10.10.1.0/24", }, + new SubnetData() { Name = "subnet02", AddressPrefix = "10.10.2.0/24", PrivateEndpointNetworkPolicy = "Disabled", } + }, + }; + vnetData.AddressPrefixes.Add("10.10.0.0/16"); + var vnetLro = await rg.GetVirtualNetworks().CreateOrUpdateAsync(WaitUntil.Completed, _vnetName, vnetData); + _vnetId = vnetLro.Value.Id; + } + } + else + { + _vnetId = VirtualNetworkResource.CreateResourceIdentifier(rg.Id.SubscriptionId, rg.Data.Name, _vnetName); + } await StopSessionRecordingAsync(); } @@ -62,6 +72,7 @@ public async Task TestSetUp() { var client = GetArmClient(); _resourceGroup = await client.GetResourceGroupResource(_resourceGroupIdentifier).GetAsync(); + _webPubSub = await CreateDefaultWebPubSub(Recording.GenerateAssetName("WebPubSub-"), DefaultLocation, _resourceGroup); } [TearDown] @@ -81,31 +92,35 @@ public async Task TestTearDown() public async Task CreatePrivateEndpointConnection(string privateEndPointName) { - //create private endpoint (privateEndpoint of WebPubSUb will be generated automatically) - var privateEndPointData = new PrivateEndpointData() + if (Mode == RecordedTestMode.Record) { - Subnet = new SubnetData() { Id = new ResourceIdentifier($"{_vnet.Id}" + "/subnets/subnet02") }, - Location = "westus2", - PrivateLinkServiceConnections = + using (Recording.DisableRecording()) { - new NetworkPrivateLinkServiceConnection() + //create private endpoint (privateEndpoint of WebPubSUb will be generated automatically) + var privateEndPointData = new PrivateEndpointData() { - Name = privateEndPointName, - PrivateLinkServiceId = _webPubSub.Data.Id, - GroupIds = { "webpubsub" }, - } - }, - }; - var privateEndPointContainer = _resourceGroup.GetPrivateEndpoints(); - var privateEndPointLro = await (await privateEndPointContainer.CreateOrUpdateAsync(WaitUntil.Completed, privateEndPointName, privateEndPointData)).WaitForCompletionAsync(); + Subnet = new SubnetData() { Id = new ResourceIdentifier($"{_vnetId}" + "/subnets/subnet02") }, + Location = "westus2", + PrivateLinkServiceConnections = + { + new NetworkPrivateLinkServiceConnection() + { + Name = privateEndPointName, + PrivateLinkServiceId = _webPubSub.Data.Id, + GroupIds = { "webpubsub" }, + } + }, + }; + var privateEndPointContainer = _resourceGroup.GetPrivateEndpoints(); + var privateEndPointLro = await (await privateEndPointContainer.CreateOrUpdateAsync(WaitUntil.Completed, privateEndPointName, privateEndPointData)).WaitForCompletionAsync(); + } + } } [Test] [RecordedTest] public async Task Get() { - string webPubSubName = SessionRecording.GenerateAssetName("WebPubSub-"); - _webPubSub = await CreateDefaultWebPubSub(webPubSubName,AzureLocation.WestUS2, _resourceGroup); await CreatePrivateEndpointConnection(_privateEndPointName); var list = await _webPubSub.GetWebPubSubPrivateEndpointConnections().GetAllAsync().ToEnumerableAsync(); var PrivateEndpointConnection = await _webPubSub.GetWebPubSubPrivateEndpointConnections().GetAsync(list[0].Data.Name); @@ -117,8 +132,6 @@ public async Task Get() [RecordedTest] public async Task GetAll() { - string webPubSubName = SessionRecording.GenerateAssetName("WebPubSub-"); - _webPubSub = await CreateDefaultWebPubSub(webPubSubName,AzureLocation.WestUS2, _resourceGroup); var list = await _webPubSub.GetWebPubSubPrivateEndpointConnections().GetAllAsync().ToEnumerableAsync(); Assert.AreEqual(0, list.Count); await CreatePrivateEndpointConnection(_privateEndPointName); @@ -130,8 +143,6 @@ public async Task GetAll() [RecordedTest] public async Task CheckIfExist() { - string webPubSubName = SessionRecording.GenerateAssetName("WebPubSub-"); - _webPubSub = await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); await CreatePrivateEndpointConnection(_privateEndPointName); var list = await _webPubSub.GetWebPubSubPrivateEndpointConnections().GetAllAsync().ToEnumerableAsync(); Assert.True(await _webPubSub.GetWebPubSubPrivateEndpointConnections().ExistsAsync(list[0].Data.Name)); @@ -142,8 +153,6 @@ public async Task CheckIfExist() [RecordedTest] public async Task Delete() { - string webPubSubName = SessionRecording.GenerateAssetName("WebPubSub-"); - _webPubSub = await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); await CreatePrivateEndpointConnection(_privateEndPointName); var list = await _webPubSub.GetWebPubSubPrivateEndpointConnections().GetAllAsync().ToEnumerableAsync(); Assert.AreEqual(1, list.Count); diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/SharedPrivateLinkTests.cs b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/SharedPrivateLinkTests.cs index e760f272cec1..33e2bafc8822 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/SharedPrivateLinkTests.cs +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/SharedPrivateLinkTests.cs @@ -67,40 +67,6 @@ public async Task TestTearDown() } } - public async Task CreateWebPubSub() - { - // Create WebPubSub ConfigData - IList categories = new List(); - categories.Add(new LiveTraceCategory("category-01", "true")); - - AclAction aclAction = new AclAction("Deny"); - IList allow = new List(); - IList deny = new List(); - //allow.Add(new WebPubSubRequestType("ClientConnectionValue")); - deny.Add(new WebPubSubRequestType("RESTAPI")); - PublicNetworkAcls publicNetwork = new PublicNetworkAcls(allow, deny); - IList privateEndpoints = new List(); - - List resourceLogCategory = new List() - { - new ResourceLogCategory(){ Name = "category1", Enabled = "false" } - }; - - WebPubSubData data = new WebPubSubData(AzureLocation.WestUS2) - { - Sku = new BillingInfoSku("Standard_S1"), - LiveTraceConfiguration = new LiveTraceConfiguration("true", categories), - //EventHandler = new EventHandlerSettings(items), - NetworkAcls = new WebPubSubNetworkAcls(aclAction, publicNetwork, privateEndpoints), - ResourceLogConfiguration = new ResourceLogConfiguration(resourceLogCategory), - }; - - // Create WebPubSub - var webPubSub = await (await _resourceGroup.GetWebPubSubs().CreateOrUpdateAsync(WaitUntil.Completed, _webPubSubName, data)).WaitForCompletionAsync(); - - return webPubSub.Value; - } - public async Task CreateSharedPrivateLink(string LinkName) { //1. create vnet @@ -125,7 +91,7 @@ public async Task CreateSharedPrivateLink(st var container = _webPubSub.GetWebPubSubSharedPrivateLinks(); WebPubSubSharedPrivateLinkData data = new WebPubSubSharedPrivateLinkData() { - PrivateLinkResourceId =new ResourceIdentifier($"{_resourceGroupIdentifier}/providers/Microsoft.Web/sites/{WebAppName}/sharedPrivateLinkResources/{LinkName}") , + PrivateLinkResourceId = new ResourceIdentifier($"{_resourceGroupIdentifier}/providers/Microsoft.Web/sites/{WebAppName}/sharedPrivateLinkResources/{LinkName}"), GroupId = "webPubSub", RequestMessage = "please approve", }; @@ -147,7 +113,7 @@ public async Task CreateOrUpdate() [RecordedTest] public async Task GetAll() { - _webPubSub = await CreateWebPubSub(); + _webPubSub = await CreateDefaultWebPubSub(_webPubSubName, DefaultLocation, _resourceGroup); var list = await _webPubSub.GetWebPubSubSharedPrivateLinks().GetAllAsync().ToEnumerableAsync(); Assert.AreEqual(0, list.Count); } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/WebPubSubTests.cs b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/WebPubSubTests.cs index c2be8c00454b..f47fe5b21101 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/WebPubSubTests.cs +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/Scenario/WebPubSubTests.cs @@ -18,8 +18,8 @@ namespace Azure.ResourceManager.WebPubSub.Tests public class WebPubSubTests : WebPubHubServiceClientTestBase { private ResourceGroupResource _resourceGroup; - private ResourceIdentifier _resourceGroupIdentifier; + private const string _webPubSubNamePrefix = "webpubsub-"; public WebPubSubTests(bool isAsync) : base(isAsync) { @@ -61,19 +61,17 @@ public async Task TestTearDown() [RecordedTest] public async Task CreateOrUpdate() { - string webPubSubName = Recording.GenerateAssetName("webpubsub-"); - var webPubSub = await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); - Assert.IsNotNull(webPubSub.Data); - Assert.AreEqual(webPubSubName, webPubSub.Data.Name); - Assert.AreEqual(AzureLocation.WestUS2, webPubSub.Data.Location); + string webPubSubName = Recording.GenerateAssetName(_webPubSubNamePrefix); + var webPubSub = await CreateDefaultWebPubSub(webPubSubName, DefaultLocation, _resourceGroup); + ValidateWebPubSub(webPubSub.Data, webPubSubName); } [Test] [RecordedTest] public async Task CheckIfExist() { - string webPubSubName = Recording.GenerateAssetName("webpubsub-"); - await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); + string webPubSubName = Recording.GenerateAssetName(_webPubSubNamePrefix); + await CreateDefaultWebPubSub(webPubSubName, DefaultLocation, _resourceGroup); Assert.IsTrue(await _resourceGroup.GetWebPubSubs().ExistsAsync(webPubSubName)); Assert.IsFalse(await _resourceGroup.GetWebPubSubs().ExistsAsync(webPubSubName + "1")); } @@ -82,31 +80,38 @@ public async Task CheckIfExist() [RecordedTest] public async Task Get() { - string webPubSubName = Recording.GenerateAssetName("webpubsub-"); - await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); - var webPubSub = await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); - Assert.IsNotNull(webPubSub.Data); - Assert.AreEqual(webPubSubName, webPubSub.Data.Name); - Assert.AreEqual(AzureLocation.WestUS2, webPubSub.Data.Location); + string webPubSubName = Recording.GenerateAssetName(_webPubSubNamePrefix); + await CreateDefaultWebPubSub(webPubSubName, DefaultLocation, _resourceGroup); + var webPubSub = await _resourceGroup.GetWebPubSubs().GetAsync(webPubSubName); + ValidateWebPubSub(webPubSub.Value.Data, webPubSubName); } [Test] [RecordedTest] public async Task GetAll() { - string webPubSubName = Recording.GenerateAssetName("webpubsub-"); - await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); + string webPubSubName = Recording.GenerateAssetName(_webPubSubNamePrefix); + await CreateDefaultWebPubSub(webPubSubName, DefaultLocation, _resourceGroup); List webPubSubList = await _resourceGroup.GetWebPubSubs().GetAllAsync().ToEnumerableAsync(); Assert.AreEqual(1, webPubSubList.Count); + ValidateWebPubSub(webPubSubList.FirstOrDefault(item => item.Data.Name == webPubSubName).Data, webPubSubName); } [Test] [RecordedTest] public async Task Delete() { - string webPubSubName = Recording.GenerateAssetName("webpubsub-"); - var webPubSub = await CreateDefaultWebPubSub(webPubSubName, AzureLocation.WestUS2, _resourceGroup); + string webPubSubName = Recording.GenerateAssetName(_webPubSubNamePrefix); + var webPubSub = await CreateDefaultWebPubSub(webPubSubName, DefaultLocation, _resourceGroup); await webPubSub.DeleteAsync(WaitUntil.Completed); } + + private void ValidateWebPubSub(WebPubSubData webPubSub, string webPubSubName) + { + Assert.IsNotNull(webPubSub); + Assert.IsNotEmpty(webPubSub.Id); + Assert.AreEqual(webPubSubName, webPubSub.Name); + Assert.AreEqual(AzureLocation.WestUS2, webPubSub.Location); + } } } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExist.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExist.json index ae29fac4d4b9..5456dbf11933 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExist.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExist.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-5509?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-403?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e14eea2aa812ed45a47cfd43eadce863-5a719f7325d2104c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f074af24dd98c3e2c8f4a7a2bf322a63", + "traceparent": "00-d1264ac816f42d5c71d13210e3827aec-a9548f9443975117-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7408eea6bc2fa39173d985eea712a714", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:25 GMT", + "Date": "Wed, 22 Mar 2023 02:52:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "addd5d0b-beb6-4d82-a1fc-dd21b2576d67", + "x-ms-correlation-request-id": "fc93cab9-9253-4fed-8979-5baf6b765d23", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "addd5d0b-beb6-4d82-a1fc-dd21b2576d67", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074425Z:addd5d0b-beb6-4d82-a1fc-dd21b2576d67" + "x-ms-request-id": "fc93cab9-9253-4fed-8979-5baf6b765d23", + "x-ms-routing-request-id": "JAPANEAST:20230322T025219Z:fc93cab9-9253-4fed-8979-5baf6b765d23" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509", - "name": "WebPubSubRG-5509", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403", + "name": "WebPubSubRG-403", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-7726?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-985?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-7ac56cf0ef21214a-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "56c986a9dcccbdaf02ae2b43dc8b5917", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-d2600188e09d8228-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7fe07a9a50db4d5dcbcbd00fb5c80af0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1269", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:30 GMT", + "Date": "Wed, 22 Mar 2023 02:52:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationResults/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationResults/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "56c986a9dcccbdaf02ae2b43dc8b5917", - "x-ms-correlation-request-id": "f4a9e955-5452-42d9-924d-5fc93c929c8b", + "x-ms-client-request-id": "7fe07a9a50db4d5dcbcbd00fb5c80af0", + "x-ms-correlation-request-id": "ce0de409-8e0f-4d83-b3d7-c92f124fa222", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "85a3d8e7-2e36-4cad-8159-bff18fc78493", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074431Z:f4a9e955-5452-42d9-924d-5fc93c929c8b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "da7ddd66-7e7c-4b93-9227-2b874645eee4", + "x-ms-routing-request-id": "JAPANEAST:20230322T025224Z:ce0de409-8e0f-4d83-b3d7-c92f124fa222", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-7726.webpubsub.azure.com", + "hostName": "webpubsub-985.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-7726", + "hostNamePrefix": "webpubsub-985", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,407 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:44:28.2856521Z", + "createdAt": "2023-03-22T02:52:21.4726724Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:44:28.2856521Z" + "lastModifiedAt": "2023-03-22T02:52:21.4726724Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", - "name": "WebPubSub-7726", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985", + "name": "WebPubSub-985", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-b0a5edc72da73a40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c3ee71f09fb347c000b7ede9b29ee73c", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-4eca772984b34bab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "16cb71c0e8fe9ecbaa2764f0c194be10", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:31 GMT", + "Date": "Wed, 22 Mar 2023 02:52:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c3ee71f09fb347c000b7ede9b29ee73c", - "x-ms-correlation-request-id": "daeba8de-4084-4ebd-b632-6325839d8f60", + "x-ms-client-request-id": "16cb71c0e8fe9ecbaa2764f0c194be10", + "x-ms-correlation-request-id": "d0aac5df-3d45-49d9-a4fe-1966da2e2a91", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "247f6c30-f639-4564-a571-cdd215b822d7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074431Z:daeba8de-4084-4ebd-b632-6325839d8f60", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "b7f3648c-a938-4657-94f3-a225b2c61a79", + "x-ms-routing-request-id": "JAPANEAST:20230322T025225Z:d0aac5df-3d45-49d9-a4fe-1966da2e2a91", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-5b82aaf44cc11b46-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3e9d909ad83d8af51e1acce07d2ac6d5", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-e8df54d2729bbc96-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "84abfd7a7c2e9671821fcc67dd8f4bb0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:32 GMT", + "Date": "Wed, 22 Mar 2023 02:52:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3e9d909ad83d8af51e1acce07d2ac6d5", - "x-ms-correlation-request-id": "6b85663a-fe53-4140-baaf-c040ad077bd1", + "x-ms-client-request-id": "84abfd7a7c2e9671821fcc67dd8f4bb0", + "x-ms-correlation-request-id": "17b4d912-e435-42a3-bd1d-42f2cf6a3e74", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "22a98591-3ab0-4d9b-9818-cc13fcb4abfa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074433Z:6b85663a-fe53-4140-baaf-c040ad077bd1", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "132b3865-b0a7-468d-85a2-40a9623b60fe", + "x-ms-routing-request-id": "JAPANEAST:20230322T025226Z:17b4d912-e435-42a3-bd1d-42f2cf6a3e74", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-4d749b306971f14e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6a532f81959c6563c0ad51b6307efceb", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-3e1b47e735f4ae93-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "434e84cdf4fc13f1c2daedaf9e07fe1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:34 GMT", + "Date": "Wed, 22 Mar 2023 02:52:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6a532f81959c6563c0ad51b6307efceb", - "x-ms-correlation-request-id": "538f14e7-626e-44f6-a0c9-c9a8106e4aa3", + "x-ms-client-request-id": "434e84cdf4fc13f1c2daedaf9e07fe1f", + "x-ms-correlation-request-id": "f057e446-ce14-4de3-bbb4-413bbe66f1d7", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "839bf3e7-4c59-44dd-b25c-2be7cb234ab2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074434Z:538f14e7-626e-44f6-a0c9-c9a8106e4aa3", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "dbca1b33-0d06-430f-a4a3-fe8148195315", + "x-ms-routing-request-id": "JAPANEAST:20230322T025227Z:f057e446-ce14-4de3-bbb4-413bbe66f1d7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-6db790cd7332bf4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "66e92204ef8f17be7c64a599d2e0c9d5", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-d7d249bf47a14767-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "045361b5796f441d003493de1b64c01b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:35 GMT", + "Date": "Wed, 22 Mar 2023 02:52:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "66e92204ef8f17be7c64a599d2e0c9d5", - "x-ms-correlation-request-id": "6ee016ee-ade1-4f59-bc8f-dd97a753fa06", + "x-ms-client-request-id": "045361b5796f441d003493de1b64c01b", + "x-ms-correlation-request-id": "686b9631-335e-4566-b00f-608e180a36ac", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "a30e1e54-f2c6-46ea-a6a3-6c2f07a22076", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074436Z:6ee016ee-ade1-4f59-bc8f-dd97a753fa06", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "627fe165-543a-4dfd-ae69-7e1cc0a0945f", + "x-ms-routing-request-id": "JAPANEAST:20230322T025229Z:686b9631-335e-4566-b00f-608e180a36ac", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-134c3513c5307248-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "826818f07d4b04a02c387d8f863e599f", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-ca30c63bbfa91a3d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3d23b4dc7a4586140b98c2538fc1f77b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:38 GMT", + "Date": "Wed, 22 Mar 2023 02:52:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "826818f07d4b04a02c387d8f863e599f", - "x-ms-correlation-request-id": "6529afde-5d34-4e33-b9ae-820d57e8ed75", + "x-ms-client-request-id": "3d23b4dc7a4586140b98c2538fc1f77b", + "x-ms-correlation-request-id": "e1367b7e-74fe-4bce-b418-8c72f57ce8f5", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "13d2bb7c-6e17-433e-904d-5dcc259ea8b6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074438Z:6529afde-5d34-4e33-b9ae-820d57e8ed75", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "a7dd4aec-fc48-4e99-bdfc-64314a002a22", + "x-ms-routing-request-id": "JAPANEAST:20230322T025231Z:e1367b7e-74fe-4bce-b418-8c72f57ce8f5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-35785dbeb3b2774d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5adbe11d60409245713ced38f0ca93e0", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-e9b287792e6205f6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7cb1ad21463b5341670a42c86012f75d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:42 GMT", + "Date": "Wed, 22 Mar 2023 02:52:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5adbe11d60409245713ced38f0ca93e0", - "x-ms-correlation-request-id": "ba4f7d91-5fa1-4a32-92c7-2d9bdbbdf0a0", + "x-ms-client-request-id": "7cb1ad21463b5341670a42c86012f75d", + "x-ms-correlation-request-id": "75e8de19-108b-4599-a43d-9c743ea42f1b", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "8ffad940-85e6-438e-97c2-8c28ca6fc06d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074443Z:ba4f7d91-5fa1-4a32-92c7-2d9bdbbdf0a0", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "cb662f8f-0dcd-4e09-91a2-2cfcf94d2999", + "x-ms-routing-request-id": "JAPANEAST:20230322T025235Z:75e8de19-108b-4599-a43d-9c743ea42f1b", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-04b93b2bd9467d4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "18c67ce47a15879f81e53957712e913e", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-8f530ad111c89ba5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ead3d11ac1e43ad94dcdf8d7b6c9b43f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:51 GMT", + "Date": "Wed, 22 Mar 2023 02:52:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "18c67ce47a15879f81e53957712e913e", - "x-ms-correlation-request-id": "eb01a99c-1a13-4b3b-b5cb-756bfb149430", + "x-ms-client-request-id": "ead3d11ac1e43ad94dcdf8d7b6c9b43f", + "x-ms-correlation-request-id": "2e7e5194-ae6c-4ea4-a537-a55b184754d4", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "66f31368-9730-4fe1-a3fb-41f532335ef6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074451Z:eb01a99c-1a13-4b3b-b5cb-756bfb149430", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "9e86461f-45d9-47c3-8bae-7196731f188a", + "x-ms-routing-request-id": "JAPANEAST:20230322T025244Z:2e7e5194-ae6c-4ea4-a537-a55b184754d4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-65dfd827ecfc004a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f07c060a6e049094d2d6110f8f681462", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-9d74cbb3686b71d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6ebd183c43b295df72cfd63a374b25f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:45:07 GMT", + "Date": "Wed, 22 Mar 2023 02:52:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f07c060a6e049094d2d6110f8f681462", - "x-ms-correlation-request-id": "1d286e7f-04c8-4891-bdd4-b96a29872c64", + "x-ms-client-request-id": "6ebd183c43b295df72cfd63a374b25f9", + "x-ms-correlation-request-id": "6da27653-a93c-40d7-92e2-ef4b068988bb", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "ab048cf4-af60-4a46-a58d-722647e66637", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074508Z:1d286e7f-04c8-4891-bdd4-b96a29872c64", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "167992ec-cc59-4108-9333-132689551150", + "x-ms-routing-request-id": "JAPANEAST:20230322T025300Z:6da27653-a93c-40d7-92e2-ef4b068988bb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" + "startTime": "2023-03-22T02:52:23.498277Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-708490cac00bce43-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "09ab9da44178a2894154d95b26ee2142", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-b8fde422bd9efeac-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bd3964a00dee6097d3772e6e4e6a9c9d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:45:39 GMT", + "Date": "Wed, 22 Mar 2023 02:53:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "09ab9da44178a2894154d95b26ee2142", - "x-ms-correlation-request-id": "69590aac-33ae-448d-bc85-30f54c674662", + "x-ms-client-request-id": "bd3964a00dee6097d3772e6e4e6a9c9d", + "x-ms-correlation-request-id": "98329292-64ba-40ea-bad3-746bc3e4e859", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "efccd01c-f1a7-4bbb-8dc9-9a7975e045f8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074540Z:69590aac-33ae-448d-bc85-30f54c674662", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "c1a53fc0-c256-4541-88e6-0cf27bbbfb45", + "x-ms-routing-request-id": "JAPANEAST:20230322T025332Z:98329292-64ba-40ea-bad3-746bc3e4e859", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", - "status": "Running", - "startTime": "2022-07-05T07:44:29.6135605Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-b83b568dfc117445-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e92dafaaa24d75dce735463f6890f819", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "358", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:46:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e92dafaaa24d75dce735463f6890f819", - "x-ms-correlation-request-id": "d46c985f-0c89-4c37-86c1-00e392d8123c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "276be3ca-09a5-46f5-9ece-b6768cb4137c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074613Z:d46c985f-0c89-4c37-86c1-00e392d8123c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/operationStatuses/243aaf13-d1be-4fb1-bb06-c532f22a3833", - "name": "243aaf13-d1be-4fb1-bb06-c532f22a3833", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/operationStatuses/e69e0966-2858-4926-81f6-241dce63441f", + "name": "e69e0966-2858-4926-81f6-241dce63441f", "status": "Succeeded", - "startTime": "2022-07-05T07:44:29.6135605Z", - "endTime": "2022-07-05T07:46:10.7254641Z" + "startTime": "2023-03-22T02:52:23.498277Z", + "endTime": "2023-03-22T02:53:13.9505469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-7726?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-985?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6c2242cb64d52449a47c2a02efad4ce2-85a8ab72e0068d4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d3b2d7d08783c9c57cd9aeaf95386ae3", + "traceparent": "00-2ba93dcbff585e39a8fed217809d0b54-8085cebd750eccba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "488b03558955d6abf23d7714eb9f0301", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1276", + "Content-Length": "1271", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:46:13 GMT", + "Date": "Wed, 22 Mar 2023 02:53:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d3b2d7d08783c9c57cd9aeaf95386ae3", - "x-ms-correlation-request-id": "963cb8e7-f61d-4eb5-9e41-aac346151f30", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "23d5c948-96c2-4344-9df9-993ef3df0cc4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074613Z:963cb8e7-f61d-4eb5-9e41-aac346151f30", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "488b03558955d6abf23d7714eb9f0301", + "x-ms-correlation-request-id": "a6d3523a-6634-4eab-b5ac-ff7029e9e761", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "693c7538-234b-4801-903d-6bd38201d883", + "x-ms-routing-request-id": "JAPANEAST:20230322T025333Z:a6d3523a-6634-4eab-b5ac-ff7029e9e761", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-7726.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-985.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-7726", + "hostNamePrefix": "webpubsub-985", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,375 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:44:28.2856521Z", + "createdAt": "2023-03-22T02:52:21.4726724Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:44:28.2856521Z" + "lastModifiedAt": "2023-03-22T02:52:21.4726724Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", - "name": "WebPubSub-7726", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985", + "name": "WebPubSub-985", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "500", - "Content-Type": "application/json", - "traceparent": "00-890391b2b5bf1d4e9eb686415ee00b35-8abb7d5414c2b04e-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "df64ceb52a3a0214c1352243fa4a39b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fbeb5232-9856-4400-9d27-ac2360610bb0?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1972", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:46:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f00f71bc-916d-4223-b747-8bdd7d90c3d9", - "x-ms-client-request-id": "df64ceb52a3a0214c1352243fa4a39b0", - "x-ms-correlation-request-id": "49661f3e-a447-42c6-9af9-92b637f28931", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "fbeb5232-9856-4400-9d27-ac2360610bb0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074618Z:49661f3e-a447-42c6-9af9-92b637f28931" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u0022badfd84d-9857-4e04-87c0-0d42cdffa315\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "982519fe-4030-44dc-8c58-f639ef78eb79", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u0022badfd84d-9857-4e04-87c0-0d42cdffa315\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.0fdf29a0-09ea-4040-9c37-462650e4e9f8" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fbeb5232-9856-4400-9d27-ac2360610bb0?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-890391b2b5bf1d4e9eb686415ee00b35-a3673742f53ce749-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9a8962ca182ca5dec2af124d6582ce31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:46:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7c4ef800-94ef-4f84-baf3-98073664acbd", - "x-ms-client-request-id": "9a8962ca182ca5dec2af124d6582ce31", - "x-ms-correlation-request-id": "e9b1efc9-8d03-42b1-89ac-d67b12876db7", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "47a8e608-ce7a-4fec-9d51-a7d7dfab7b40", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074618Z:e9b1efc9-8d03-42b1-89ac-d67b12876db7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fbeb5232-9856-4400-9d27-ac2360610bb0?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-890391b2b5bf1d4e9eb686415ee00b35-db5365cafd450b40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d553fe9f1bad67a70f40f6d6bda00e95", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:46:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "05b63f54-1b7e-46b6-8f03-39f3ab6ddc00", - "x-ms-client-request-id": "d553fe9f1bad67a70f40f6d6bda00e95", - "x-ms-correlation-request-id": "b2319f4f-62d7-4fc8-baa9-f5b67a936709", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "23c79cb5-df92-4f24-8aef-c71c0da4cb85", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074628Z:b2319f4f-62d7-4fc8-baa9-f5b67a936709" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fbeb5232-9856-4400-9d27-ac2360610bb0?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-890391b2b5bf1d4e9eb686415ee00b35-c2de01aa5262c44f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "987873559fc14384e1e68c8c3b71be67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:46:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2d5b9867-802b-4f17-8943-3cf0e2cf1666", - "x-ms-client-request-id": "987873559fc14384e1e68c8c3b71be67", - "x-ms-correlation-request-id": "67975c5c-5128-48a3-a6a5-2e9e8c72dcd3", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "011ec5b7-ff07-47a7-b827-8bf9d258eaf2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074649Z:67975c5c-5128-48a3-a6a5-2e9e8c72dcd3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fbeb5232-9856-4400-9d27-ac2360610bb0?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-890391b2b5bf1d4e9eb686415ee00b35-34523e9587276649-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f5d53b960ad8ae01ba218aec2208e722", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "39fa67d9-4ae4-4e29-b589-7693d2529e1b", - "x-ms-client-request-id": "f5d53b960ad8ae01ba218aec2208e722", - "x-ms-correlation-request-id": "d40f8162-07de-4232-9ae0-f5ec0cbff1fd", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "bd667e12-d6ec-4f1b-9c20-94b00288eee8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074710Z:d40f8162-07de-4232-9ae0-f5ec0cbff1fd" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-890391b2b5bf1d4e9eb686415ee00b35-af1639c5a6654245-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f2f77ca1350aff707a0ff4c78f1b2c9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2112", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:09 GMT", - "ETag": "W/\u002267c19ff2-fcff-4b02-a152-622f00041376\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "fd3789ac-5a8a-4f0d-a903-f66a4f779a11", - "x-ms-client-request-id": "f2f77ca1350aff707a0ff4c78f1b2c9d", - "x-ms-correlation-request-id": "77a88de3-d30c-4c80-a82e-ee6685c2d9fc", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "f54fb369-453a-45eb-a3ce-33605ddbe09e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074710Z:77a88de3-d30c-4c80-a82e-ee6685c2d9fc" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u002267c19ff2-fcff-4b02-a152-622f00041376\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "982519fe-4030-44dc-8c58-f639ef78eb79", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u002267c19ff2-fcff-4b02-a152-622f00041376\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.0fdf29a0-09ea-4040-9c37-462650e4e9f8" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-7726.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-7726/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-985/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-33aaa6c2fbb0324eb2550ca53b8af948-402f31ee65da004a-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "813f8f8119ca4bbc71c9dd9f159721d9", + "traceparent": "00-019593f299359f89bfd48bb34caab53b-163decfa22438149-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e38d4ef773e6255ded22fbab03c1354d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "732", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:10 GMT", + "Date": "Wed, 22 Mar 2023 02:54:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "813f8f8119ca4bbc71c9dd9f159721d9", - "x-ms-correlation-request-id": "76486bd1-06c9-43b2-be77-a3e384e5645e", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "39122e25-6984-49e3-add7-47096e0f246f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074711Z:76486bd1-06c9-43b2-be77-a3e384e5645e", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "e38d4ef773e6255ded22fbab03c1354d", + "x-ms-correlation-request-id": "caefe92e-dbea-4adc-8da5-df9a37cf2c71", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "c91d0d3e-3f7b-462a-b4e2-57a2e4a30ab6", + "x-ms-routing-request-id": "JAPANEAST:20230322T025429Z:caefe92e-dbea-4adc-8da5-df9a37cf2c71", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -992,7 +628,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925" }, "groupIds": [ "webpubsub" @@ -1003,48 +639,48 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/privateEndpointConnections/webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f", - "name": "webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/privateEndpointConnections/webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e", + "name": "webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-7726/privateEndpointConnections/webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-985/privateEndpointConnections/webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c6a65e30053fb5428773f95c60d90d87-21f98052dfa63c4d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "beeb69fecc79615ccbd57bc916391f9f", + "traceparent": "00-24aea7762ee2dda077541b5838821c78-5e0295f1485c967c-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4da36d54a19ac7a16fb98ca63b455610", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "725", + "Content-Length": "720", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:10 GMT", + "Date": "Wed, 22 Mar 2023 02:54:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "beeb69fecc79615ccbd57bc916391f9f", - "x-ms-correlation-request-id": "c781b9bf-1c08-49be-a5d2-81780ee83b89", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "9fbfad25-b4b9-41e1-9ecb-cb7c3200df07", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074711Z:c781b9bf-1c08-49be-a5d2-81780ee83b89", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "4da36d54a19ac7a16fb98ca63b455610", + "x-ms-correlation-request-id": "0f4bc798-e90e-49b3-960e-bfe32e17bb38", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "1a4474cc-cf10-4a07-8f1d-453f3879e8b1", + "x-ms-routing-request-id": "JAPANEAST:20230322T025429Z:0f4bc798-e90e-49b3-960e-bfe32e17bb38", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925" }, "groupIds": [ "webpubsub" @@ -1055,67 +691,67 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/privateEndpointConnections/webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f", - "name": "webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/privateEndpointConnections/webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e", + "name": "webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-7726/privateEndpointConnections/webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f01?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-985/privateEndpointConnections/webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e01?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9b4596633b1dfa488bcae52c0625e114-e016cf2df3a5e048-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "936becf566c88757c0ac804057d1eae2", + "traceparent": "00-6b5b5ecc4a7a1e9c407da41210cfc5a1-221729590e524be4-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "641c43484e514e2c6aeb9986dd2dfcd8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:11 GMT", + "Date": "Wed, 22 Mar 2023 02:54:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "936becf566c88757c0ac804057d1eae2", - "x-ms-correlation-request-id": "5e1a635d-1d75-4ec7-94d9-e26124bd2c74", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-request-id": "6f47d2b3-f11f-4526-8f5c-70a8518bad2f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074712Z:5e1a635d-1d75-4ec7-94d9-e26124bd2c74", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "641c43484e514e2c6aeb9986dd2dfcd8", + "x-ms-correlation-request-id": "abf1531c-81f1-4f34-9cbd-ed450747e7eb", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "41ad3105-53f2-4a63-9267-b11f6d609582", + "x-ms-routing-request-id": "JAPANEAST:20230322T025429Z:abf1531c-81f1-4f34-9cbd-ed450747e7eb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "error": { "code": "NotFound", "message": "Private endpoint connection not found", - "target": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726/privateEndpointConnections/webpubsub-7726.b84fde9f-1c25-40d9-8f5a-c535f121041f01" + "target": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985/privateEndpointConnections/webpubsub-985.75faca3a-cc50-4684-a1d4-8aa9646ca46e01" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b740a296874f9246a63499d0dcaf25ae-d9408e00fa2cd14a-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "26c91aed6d30b42332deb6f49df23537", + "traceparent": "00-3a4225eeeb5e2c99aa2cf98052cc9ce6-1ace544492fa3765-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e1e039c466385516adc5742ce7b7e9a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2329", + "Content-Length": "2323", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:11 GMT", + "Date": "Wed, 22 Mar 2023 02:54:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1124,32 +760,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "918d5362-7317-4764-adef-7dea2f28149e", - "x-ms-client-request-id": "26c91aed6d30b42332deb6f49df23537", - "x-ms-correlation-request-id": "4c2dba01-cf7c-4ed3-8c8f-5c0f49a55961", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-request-id": "9c2b3e32-8f40-4686-86b1-d1fbe4ce500e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074712Z:4c2dba01-cf7c-4ed3-8c8f-5c0f49a55961" + "x-ms-arm-service-request-id": "6ac4742c-f893-48e8-96c1-3038d43469d5", + "x-ms-client-request-id": "e1e039c466385516adc5742ce7b7e9a8", + "x-ms-correlation-request-id": "4faab4c9-4c4d-4591-a525-fa8478e94bbe", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "b594616e-aa27-4fb3-8acb-f652a16e5a4b", + "x-ms-routing-request-id": "JAPANEAST:20230322T025430Z:4faab4c9-4c4d-4591-a525-fa8478e94bbe" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u002267c19ff2-fcff-4b02-a152-622f00041376\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925", + "etag": "W/\u0022cfc28c98-3339-470a-8b3e-cd07235db08c\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "982519fe-4030-44dc-8c58-f639ef78eb79", + "resourceGuid": "71e3a0b4-5b37-45c0-a58f-b098924bd5b1", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u002267c19ff2-fcff-4b02-a152-622f00041376\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925/privateLinkServiceConnections/PrivateEndPoint-7925", + "etag": "W/\u0022cfc28c98-3339-470a-8b3e-cd07235db08c\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985", "groupIds": [ "webpubsub" ], @@ -1164,16 +800,16 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/virtualNetworks/Vnet-1241/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.0fdf29a0-09ea-4040-9c37-462650e4e9f8" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7925.nic.4464f904-4494-40ac-b077-0604e2927b2e" } ], "customDnsConfigs": [ { - "fqdn": "webpubsub-7726.webpubsub.azure.com", + "fqdn": "webpubsub-985.webpubsub.azure.com", "ipAddresses": [ "10.10.2.4" ] @@ -1185,26 +821,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f4cb118cf5ec9a41a1964e7ed5970660-b307f34e1bde5448-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "28a93eaa8e2c97111163fdcd4c1c09f9", + "traceparent": "00-2dd4ce4415d77462f5321d71ed08670e-7c423a0f9b62b963-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c062ebcbd1a405fb4055e2ae081aea42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/733dc155-b944-4192-9dd8-456f0aa57fe4?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f24688cc-ec5a-4d69-9cbe-91bafbafb8ec?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 07:47:12 GMT", + "Date": "Wed, 22 Mar 2023 02:54:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/733dc155-b944-4192-9dd8-456f0aa57fe4?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/f24688cc-ec5a-4d69-9cbe-91bafbafb8ec?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1213,23 +849,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "dd4b6658-7976-4ae0-8681-6becde631792", - "x-ms-client-request-id": "28a93eaa8e2c97111163fdcd4c1c09f9", - "x-ms-correlation-request-id": "722ef0ec-6072-4a67-b1d7-e26b9ef88ca9", + "x-ms-arm-service-request-id": "096124dc-964f-4438-b0c0-cc74ceb84f9e", + "x-ms-client-request-id": "c062ebcbd1a405fb4055e2ae081aea42", + "x-ms-correlation-request-id": "a2713de2-0c34-4289-ac18-ad79cfa8e9a8", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-request-id": "733dc155-b944-4192-9dd8-456f0aa57fe4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074713Z:722ef0ec-6072-4a67-b1d7-e26b9ef88ca9" + "x-ms-request-id": "f24688cc-ec5a-4d69-9cbe-91bafbafb8ec", + "x-ms-routing-request-id": "JAPANEAST:20230322T025430Z:a2713de2-0c34-4289-ac18-ad79cfa8e9a8" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/733dc155-b944-4192-9dd8-456f0aa57fe4?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f24688cc-ec5a-4d69-9cbe-91bafbafb8ec?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f4cb118cf5ec9a41a1964e7ed5970660-cf62b38ad6055941-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "19964877c2275fb6093114cd6f566815", + "traceparent": "00-2dd4ce4415d77462f5321d71ed08670e-2cff08b405f957bb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f1baf0023ccaf3343edaa0e384674c92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1238,7 +874,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:12 GMT", + "Date": "Wed, 22 Mar 2023 02:54:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1248,25 +884,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "77cbccef-396e-4f98-92af-b38a2981c2b4", - "x-ms-client-request-id": "19964877c2275fb6093114cd6f566815", - "x-ms-correlation-request-id": "ce17e603-25b9-436c-92c6-654e598d2d1a", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "6ad9f47f-dfff-4451-89bc-94873ef493cb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074713Z:ce17e603-25b9-436c-92c6-654e598d2d1a" + "x-ms-arm-service-request-id": "4058b4f2-c1fb-4b65-b905-1d0223ac323f", + "x-ms-client-request-id": "f1baf0023ccaf3343edaa0e384674c92", + "x-ms-correlation-request-id": "f92055c7-54c4-4a64-9249-f2373c57b1fa", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "bf25508a-5771-43a5-801e-84ccb068ec46", + "x-ms-routing-request-id": "JAPANEAST:20230322T025431Z:f92055c7-54c4-4a64-9249-f2373c57b1fa" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/733dc155-b944-4192-9dd8-456f0aa57fe4?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f24688cc-ec5a-4d69-9cbe-91bafbafb8ec?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f4cb118cf5ec9a41a1964e7ed5970660-5ede34ea16a2f742-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0409bcd53917b1c7cf215f752d27e7ae", + "traceparent": "00-2dd4ce4415d77462f5321d71ed08670e-1e54d36d7f670575-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "346f31dae6d55643148093dd1a6f2b40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1275,7 +911,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:23 GMT", + "Date": "Wed, 22 Mar 2023 02:54:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "20", @@ -1285,25 +921,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9f08d896-dd96-48f4-9e17-4017a99a948b", - "x-ms-client-request-id": "0409bcd53917b1c7cf215f752d27e7ae", - "x-ms-correlation-request-id": "351dca7f-6f96-41a7-943e-7a135072b386", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "b02cd656-759e-402e-bfb2-23f92a370319", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074723Z:351dca7f-6f96-41a7-943e-7a135072b386" + "x-ms-arm-service-request-id": "fa33b0af-4ab0-4521-b2a9-1601b3c14f99", + "x-ms-client-request-id": "346f31dae6d55643148093dd1a6f2b40", + "x-ms-correlation-request-id": "4d531db1-a6c6-4c52-acf1-45a9c7cc2311", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "8a1c160a-3438-4410-8141-89e50ec27087", + "x-ms-routing-request-id": "JAPANEAST:20230322T025441Z:4d531db1-a6c6-4c52-acf1-45a9c7cc2311" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/733dc155-b944-4192-9dd8-456f0aa57fe4?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f24688cc-ec5a-4d69-9cbe-91bafbafb8ec?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f4cb118cf5ec9a41a1964e7ed5970660-5849634f26683944-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "03562f78f08629d2e27cf23ee4a11872", + "traceparent": "00-2dd4ce4415d77462f5321d71ed08670e-d77167e66f8c963d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "17ab2eeef86081777fedc48ad5f35dc4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1312,7 +948,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:43 GMT", + "Date": "Wed, 22 Mar 2023 02:55:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1321,46 +957,46 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5492199c-c1c1-44e2-85e9-2582ce3806e4", - "x-ms-client-request-id": "03562f78f08629d2e27cf23ee4a11872", - "x-ms-correlation-request-id": "15d6b552-0f0f-4a79-9780-43e5a00e05ed", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "ce610e42-5386-4064-957c-90bf15138fdf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074744Z:15d6b552-0f0f-4a79-9780-43e5a00e05ed" + "x-ms-arm-service-request-id": "77e86b05-84b7-4cb9-b8dc-a3c276194592", + "x-ms-client-request-id": "17ab2eeef86081777fedc48ad5f35dc4", + "x-ms-correlation-request-id": "d5251c48-9e02-436d-9d59-789c40d22afd", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "9b304264-7279-4246-80f6-0da6dbf976a5", + "x-ms-routing-request-id": "JAPANEAST:20230322T025502Z:d5251c48-9e02-436d-9d59-789c40d22afd" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2b7b7db262d71d47b2b58c618c90ffe2-c91a9099f5d09c45-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f3144a4ee5593db681e44906624031e1", + "traceparent": "00-c4a750db2244ae987e165cd59bd29ca0-ab732d271e6199d3-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a8b1247a31901bdead64dc49a856d9cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1288", + "Content-Length": "1283", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:44 GMT", + "Date": "Wed, 22 Mar 2023 02:55:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f3144a4ee5593db681e44906624031e1", - "x-ms-correlation-request-id": "bc8a9291-7111-4cf9-ae4f-de26e1ef8daf", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "9759d657-8724-4b79-a11c-64e69fef542d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074744Z:bc8a9291-7111-4cf9-ae4f-de26e1ef8daf", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "a8b1247a31901bdead64dc49a856d9cf", + "x-ms-correlation-request-id": "f6a61464-4e4b-44bf-8546-bc4c4b0e79d4", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "0af724c2-e91d-4cb5-b76d-2e32ee2ab47c", + "x-ms-routing-request-id": "JAPANEAST:20230322T025503Z:f6a61464-4e4b-44bf-8546-bc4c4b0e79d4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1373,8 +1009,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-7726.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-985.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1383,7 +1019,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-7726", + "hostNamePrefix": "webpubsub-985", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1418,54 +1054,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:44:28.2856521Z", + "createdAt": "2023-03-22T02:52:21.4726724Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:44:28.2856521Z" + "lastModifiedAt": "2023-03-22T02:52:21.4726724Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-7726", - "name": "WebPubSub-7726", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-985", + "name": "WebPubSub-985", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-7726?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-985?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82c0140111922643b083a547e800b932-0d3f1937e6e8384d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3f54654a6400e58feae0219b4688cc2d", + "traceparent": "00-cf897387b3f3ca88b7154890a08c77e0-409949015b73e4cc-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "55f45faf35bce132baeeb5e722b88020", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 07:47:46 GMT", + "Date": "Wed, 22 Mar 2023 02:55:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3f54654a6400e58feae0219b4688cc2d", - "x-ms-correlation-request-id": "9be35eae-e094-4df7-9158-3dbdfbe00e0d", + "x-ms-client-request-id": "55f45faf35bce132baeeb5e722b88020", + "x-ms-correlation-request-id": "2896d742-ca91-43fc-a6fe-08beed7b5c44", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-request-id": "9ee783fd-e72c-4e74-825d-d8b4ee883a43", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074746Z:9be35eae-e094-4df7-9158-3dbdfbe00e0d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "cf9e5012-3d17-4051-ae0b-9ba5a6d1a2d5", + "x-ms-routing-request-id": "JAPANEAST:20230322T025505Z:2896d742-ca91-43fc-a6fe-08beed7b5c44", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1746677266", + "RandomSeed": "495666598", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExistAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExistAsync.json index 4a86bc8321a1..100848610a69 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExistAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/CheckIfExistAsync.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-9771?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-37?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-575b1067e834f548ab4bd037bd2a2fb8-c15801af04b13943-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4d2e9652bbbfa50beacb788fe5478ebe", + "traceparent": "00-e0498ecb728c14c6fb60ee269ae16154-fc2a5d0f07ad2ea0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b4fd0c40dca44282e201d1759e375870", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:53 GMT", + "Date": "Wed, 22 Mar 2023 02:40:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "903ceaf9-ee23-432a-9196-3bf5ebdd556b", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-request-id": "903ceaf9-ee23-432a-9196-3bf5ebdd556b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075754Z:903ceaf9-ee23-432a-9196-3bf5ebdd556b" + "x-ms-correlation-request-id": "d2056ded-449c-47bf-a712-5a0c726bb1c2", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "d2056ded-449c-47bf-a712-5a0c726bb1c2", + "x-ms-routing-request-id": "JAPANEAST:20230322T024004Z:d2056ded-449c-47bf-a712-5a0c726bb1c2" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771", - "name": "WebPubSubRG-9771", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37", + "name": "WebPubSubRG-37", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2051?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2661?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-672ca8c99fca2c4d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c3de470279991b1d2286128985b05788", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-6b79fa4944c610cb-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "05f284ea805cd3335b881e613872ce2d", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "Cache-Control": "no-cache", "Content-Length": "1272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:57 GMT", + "Date": "Wed, 22 Mar 2023 02:40:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationResults/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationResults/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c3de470279991b1d2286128985b05788", - "x-ms-correlation-request-id": "9e3281ae-c81d-42ac-9db3-659281adf361", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "99e0e8ce-9126-4692-82ed-1baa77ea1367", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075758Z:9e3281ae-c81d-42ac-9db3-659281adf361", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "05f284ea805cd3335b881e613872ce2d", + "x-ms-correlation-request-id": "73afeb9c-58fa-4d42-8326-2f5f36809279", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "bdcdc894-5b32-48e7-9695-675988fb51d1", + "x-ms-routing-request-id": "JAPANEAST:20230322T024008Z:73afeb9c-58fa-4d42-8326-2f5f36809279", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-2051.webpubsub.azure.com", + "hostName": "webpubsub-2661.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2051", + "hostNamePrefix": "webpubsub-2661", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,387 +160,351 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:57:56.339362Z", + "createdAt": "2023-03-22T02:40:06.3062555Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:57:56.339362Z" + "lastModifiedAt": "2023-03-22T02:40:06.3062555Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", - "name": "WebPubSub-2051", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661", + "name": "WebPubSub-2661", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-ff26630a1bf68a4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ffda0b3acec5d92479132a39a9811f3a", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-7d9016d4ec23b938-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "be381944e5288ce4c9e0495464e0aa8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:58 GMT", + "Date": "Wed, 22 Mar 2023 02:40:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ffda0b3acec5d92479132a39a9811f3a", - "x-ms-correlation-request-id": "38ed59f2-0906-41e4-8a2f-34a618edfbe3", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-request-id": "809e9a46-d34b-4afa-86dc-4098dec76f0e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075758Z:38ed59f2-0906-41e4-8a2f-34a618edfbe3", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "be381944e5288ce4c9e0495464e0aa8f", + "x-ms-correlation-request-id": "a5f0709b-16ab-49f9-9d7f-2f5e58bd4b9e", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "4b716211-b6fe-4460-9dca-009d299fb62f", + "x-ms-routing-request-id": "JAPANEAST:20230322T024009Z:a5f0709b-16ab-49f9-9d7f-2f5e58bd4b9e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-b2c3fc4414beae49-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c4c9ef740c392908b1643a2748ff3695", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-e0f98b6d9e6b6980-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "30b647028d7c0a78856f8567f42c4370", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:59 GMT", + "Date": "Wed, 22 Mar 2023 02:40:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c4c9ef740c392908b1643a2748ff3695", - "x-ms-correlation-request-id": "c0aac496-39a1-468e-a4f6-c3b0861b1074", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-request-id": "f9e1379e-e964-46db-9226-740863929e61", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075800Z:c0aac496-39a1-468e-a4f6-c3b0861b1074", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "30b647028d7c0a78856f8567f42c4370", + "x-ms-correlation-request-id": "cc05d042-e220-48d1-b4ab-1a2b03bc0fd1", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "dab24fee-5c2a-4c2d-921d-13dee43faeb2", + "x-ms-routing-request-id": "JAPANEAST:20230322T024010Z:cc05d042-e220-48d1-b4ab-1a2b03bc0fd1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-9460a0b06b5b7c42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7a4f8ebc57d5f7c3fc3508a2ae5dd007", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-c75d31e5cedffb09-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1e1d8dda0f3902052250198c96aa1f9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:58:00 GMT", + "Date": "Wed, 22 Mar 2023 02:40:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7a4f8ebc57d5f7c3fc3508a2ae5dd007", - "x-ms-correlation-request-id": "fe564fcf-86f4-4370-8e69-96fd1c3f1333", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-request-id": "05b2eaf5-5047-4a43-96bf-a50852a59a1b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075801Z:fe564fcf-86f4-4370-8e69-96fd1c3f1333", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "1e1d8dda0f3902052250198c96aa1f9f", + "x-ms-correlation-request-id": "3aceaa34-4690-400f-b0d1-577f608fb903", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "b963eb93-02c0-4941-9051-08a67d06c787", + "x-ms-routing-request-id": "JAPANEAST:20230322T024012Z:3aceaa34-4690-400f-b0d1-577f608fb903", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-33a742fc5c82ce40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f5a8f65205c32d4a03b14e6094fc9079", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-3df5276c99b1828e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4805fd497d33b614a02e39b9607c979d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:58:02 GMT", + "Date": "Wed, 22 Mar 2023 02:40:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f5a8f65205c32d4a03b14e6094fc9079", - "x-ms-correlation-request-id": "10e4440b-ee97-4b9e-b860-f7505d5666da", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-request-id": "ab50bb9a-5c10-4028-82bf-0826fd3d2310", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075803Z:10e4440b-ee97-4b9e-b860-f7505d5666da", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "4805fd497d33b614a02e39b9607c979d", + "x-ms-correlation-request-id": "63e99b4f-52b2-4713-8a7d-164e1f51787d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "38a50f54-eca9-4293-92d2-e768546a477b", + "x-ms-routing-request-id": "JAPANEAST:20230322T024013Z:63e99b4f-52b2-4713-8a7d-164e1f51787d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-51f5f534885ba34e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1a7c94dca5321c642bd2c80303657a53", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-6c286156b1c1bada-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d679d89d8bc2f25541b30e2b74ec73db", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:58:04 GMT", + "Date": "Wed, 22 Mar 2023 02:40:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1a7c94dca5321c642bd2c80303657a53", - "x-ms-correlation-request-id": "8882c769-dffe-482d-8531-78b3f82b7954", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-request-id": "08619403-671f-413d-8ca7-9a5385d1af48", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075805Z:8882c769-dffe-482d-8531-78b3f82b7954", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "d679d89d8bc2f25541b30e2b74ec73db", + "x-ms-correlation-request-id": "4039c9eb-2f2f-4265-b914-ef0c9301ceb5", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "d409ec98-394d-4ec4-b9df-62440cd1501c", + "x-ms-routing-request-id": "JAPANEAST:20230322T024015Z:4039c9eb-2f2f-4265-b914-ef0c9301ceb5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-8cfeaf66a0e5754d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "52d533944156b7d244217723096363ff", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-463148c293cf3de6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f71de54ffb265c3c79667d0bd64ba2a6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:58:09 GMT", + "Date": "Wed, 22 Mar 2023 02:40:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "52d533944156b7d244217723096363ff", - "x-ms-correlation-request-id": "386800e3-29c1-4c35-ae6a-0d02cad29093", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-request-id": "7b82920d-7062-49ac-b657-bb2c839ef65d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075809Z:386800e3-29c1-4c35-ae6a-0d02cad29093", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "f71de54ffb265c3c79667d0bd64ba2a6", + "x-ms-correlation-request-id": "c342e6c2-1fe5-417a-8ecb-f4cea9b852cd", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "f08caf9c-6347-4751-9f79-e93eb98b6d84", + "x-ms-routing-request-id": "JAPANEAST:20230322T024020Z:c342e6c2-1fe5-417a-8ecb-f4cea9b852cd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-b37483350085854c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "19c68fa4b5e0acd5918bc9f13c46299d", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-b20dbc2d023b1734-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "beef7bb84830bddca712067f6fe841b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:58:17 GMT", + "Date": "Wed, 22 Mar 2023 02:40:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "19c68fa4b5e0acd5918bc9f13c46299d", - "x-ms-correlation-request-id": "d3be4214-88d2-41f0-ad4f-d2796ae93bec", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-request-id": "83788415-4313-40e5-b1df-0b68ff7429bc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075818Z:d3be4214-88d2-41f0-ad4f-d2796ae93bec", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "beef7bb84830bddca712067f6fe841b4", + "x-ms-correlation-request-id": "103f321b-b84e-4976-9cc2-1a5a2f95fb9e", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "606aa5b3-dc1f-42e5-8764-910135934d03", + "x-ms-routing-request-id": "JAPANEAST:20230322T024028Z:103f321b-b84e-4976-9cc2-1a5a2f95fb9e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-37dd0039bb5a984c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "60ccfa373e279b22c2c5d6102e4013c8", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-c92e17ce42de68d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a695dbaa05ea2769b1c5d5b0e491cf6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "312", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:58:33 GMT", + "Date": "Wed, 22 Mar 2023 02:40:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "60ccfa373e279b22c2c5d6102e4013c8", - "x-ms-correlation-request-id": "11588f75-bea3-4bbe-8d68-3c3277e89cae", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-request-id": "cfd5e705-7c1f-4331-984b-2b88c65ee0d9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075834Z:11588f75-bea3-4bbe-8d68-3c3277e89cae", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "7a695dbaa05ea2769b1c5d5b0e491cf6", + "x-ms-correlation-request-id": "b8671a72-8dd5-47f0-b8c7-a36a2deb8717", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "5eac921f-b1ed-4b96-aa3a-b4f16547cfdb", + "x-ms-routing-request-id": "JAPANEAST:20230322T024044Z:b8671a72-8dd5-47f0-b8c7-a36a2deb8717", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" + "startTime": "2023-03-22T02:40:07.828886Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-952127d950a29f45-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "745ec86e609fde735e28c0cb77e17afd", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-07b38ab434d36242-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f9736710b5fc07ab08604f14f4bced91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "355", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:59:07 GMT", + "Date": "Wed, 22 Mar 2023 02:41:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "745ec86e609fde735e28c0cb77e17afd", - "x-ms-correlation-request-id": "3cb52225-dc90-404f-b6cc-24ee452d2bac", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-request-id": "d9de9ca1-e505-4cc3-8424-3bc9cb7ea237", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075907Z:3cb52225-dc90-404f-b6cc-24ee452d2bac", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "f9736710b5fc07ab08604f14f4bced91", + "x-ms-correlation-request-id": "6f76817f-0783-4753-8a34-4bc3f197e02c", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "8ef79c86-982a-47ef-9c24-fc93837add16", + "x-ms-routing-request-id": "JAPANEAST:20230322T024117Z:6f76817f-0783-4753-8a34-4bc3f197e02c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "status": "Running", - "startTime": "2022-07-05T07:57:56.7777562Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-b2317640b94d4340-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0eecd9f7029766d76c2a571adec47e51", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "358", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:59:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0eecd9f7029766d76c2a571adec47e51", - "x-ms-correlation-request-id": "ae370e98-2d4d-4955-bb92-e9db9b751ab6", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-request-id": "f8c46d72-66d7-4f1b-8162-208460b131ce", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075939Z:ae370e98-2d4d-4955-bb92-e9db9b751ab6", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/operationStatuses/1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", - "name": "1cc6ffbe-94d7-43e2-8293-36d3f4f478ef", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/operationStatuses/715d9872-fde7-4147-93c3-4f7a9ca87d38", + "name": "715d9872-fde7-4147-93c3-4f7a9ca87d38", "status": "Succeeded", - "startTime": "2022-07-05T07:57:56.7777562Z", - "endTime": "2022-07-05T07:59:07.3070541Z" + "startTime": "2023-03-22T02:40:07.828886Z", + "endTime": "2023-03-22T02:40:57.9172204Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2051?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2661?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6819d696ed038f439bfc2f158ad4de7e-5695ba491818ae42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "74820178b5e7d6fe86ed02ff7e5723e0", + "traceparent": "00-c9a2dec90ffd629151344579bd4913e2-53e1a2968ddf4d17-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7850c82528e21848054d2213eb80af5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -549,18 +513,18 @@ "Cache-Control": "no-cache", "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:59:39 GMT", + "Date": "Wed, 22 Mar 2023 02:41:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "74820178b5e7d6fe86ed02ff7e5723e0", - "x-ms-correlation-request-id": "44f00f4e-aaf2-4748-a250-4985e3787058", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-request-id": "82dd8095-aebe-4abb-bde1-9beed01c0171", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075940Z:44f00f4e-aaf2-4748-a250-4985e3787058", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "7850c82528e21848054d2213eb80af5d", + "x-ms-correlation-request-id": "c3a5ad2a-fc73-4850-85e2-0ddeafa6ce11", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "6f3cd858-33c6-4fca-897e-ad0684ec4f86", + "x-ms-routing-request-id": "JAPANEAST:20230322T024117Z:c3a5ad2a-fc73-4850-85e2-0ddeafa6ce11", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-2051.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-2661.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2051", + "hostNamePrefix": "webpubsub-2661", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,375 +580,46 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:57:56.339362Z", + "createdAt": "2023-03-22T02:40:06.3062555Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:57:56.339362Z" + "lastModifiedAt": "2023-03-22T02:40:06.3062555Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", - "name": "WebPubSub-2051", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661", + "name": "WebPubSub-2661", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "501", - "Content-Type": "application/json", - "traceparent": "00-0eb3c68be356684fbc549fb8f6377852-de2563421bd2cb48-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5518d94b04536b31f0f807740958ff99", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a3ba9dfd-d115-4f42-88d7-98e3df7c3167?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1973", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:59:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "fdb19eae-aa4e-409d-ba00-8c3054e23e2b", - "x-ms-client-request-id": "5518d94b04536b31f0f807740958ff99", - "x-ms-correlation-request-id": "fee36674-e2d7-49af-86e3-c803f735d25b", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "a3ba9dfd-d115-4f42-88d7-98e3df7c3167", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075944Z:fee36674-e2d7-49af-86e3-c803f735d25b" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u0022fc8ecc75-f15a-423a-8685-db9699470715\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "25a4d616-c32f-4ced-a2a4-a51f52cd3d64", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u0022fc8ecc75-f15a-423a-8685-db9699470715\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.110e5349-865c-40c9-8a57-9e63e4614435" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a3ba9dfd-d115-4f42-88d7-98e3df7c3167?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0eb3c68be356684fbc549fb8f6377852-1c98ff9694aa444e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "05cf760629ab73fdd01683efad89cd2e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:59:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1fb3bb63-70ba-4352-b8c5-1f333e6fcbad", - "x-ms-client-request-id": "05cf760629ab73fdd01683efad89cd2e", - "x-ms-correlation-request-id": "95fba0ee-84bc-437d-82fa-ff93fca0959e", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-request-id": "1ec96a7a-5fee-42d4-bfdc-6987e762e653", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075944Z:95fba0ee-84bc-437d-82fa-ff93fca0959e" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a3ba9dfd-d115-4f42-88d7-98e3df7c3167?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0eb3c68be356684fbc549fb8f6377852-ee83bf9cdc2a164e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0e5568edad044581c4d5793d7c876b18", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:59:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "767b38bb-54a0-438a-844b-cee1efdb3ff9", - "x-ms-client-request-id": "0e5568edad044581c4d5793d7c876b18", - "x-ms-correlation-request-id": "48d4e86e-02fc-4984-b173-b987482269ef", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-request-id": "e15801d9-4e25-41f5-89be-0c693ac246d9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075954Z:48d4e86e-02fc-4984-b173-b987482269ef" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a3ba9dfd-d115-4f42-88d7-98e3df7c3167?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0eb3c68be356684fbc549fb8f6377852-cc369466f06fcb40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "926df210fa8980ed72dfa64982269551", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "55193f1d-18d9-4638-80bf-f58020b9467e", - "x-ms-client-request-id": "926df210fa8980ed72dfa64982269551", - "x-ms-correlation-request-id": "a9cd52b2-a50c-4db9-9f2b-d2d72a5e34ae", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-request-id": "61a15f74-65af-498e-8a3d-bbf801bd2aa7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080015Z:a9cd52b2-a50c-4db9-9f2b-d2d72a5e34ae" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/a3ba9dfd-d115-4f42-88d7-98e3df7c3167?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0eb3c68be356684fbc549fb8f6377852-fc8bcb940d505d41-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "98bb5949d9835910f58940d6afbff648", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b88d8f9f-95ea-4738-92d9-dddc8eaf3455", - "x-ms-client-request-id": "98bb5949d9835910f58940d6afbff648", - "x-ms-correlation-request-id": "04fa4e21-3956-4822-bcbd-c291378031a5", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-request-id": "c69e5a0e-41c9-4056-a4e7-acae30f06332", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080035Z:04fa4e21-3956-4822-bcbd-c291378031a5" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-0eb3c68be356684fbc549fb8f6377852-a62fe8c6bcce7f42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bbde6bab3a1bf3a47ad49c250638c39e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2113", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:35 GMT", - "ETag": "W/\u00229760a379-876a-4fde-b98e-55c493cd0ba1\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0764b5d0-c2cc-4717-bb2e-8016c9bd97c6", - "x-ms-client-request-id": "bbde6bab3a1bf3a47ad49c250638c39e", - "x-ms-correlation-request-id": "97eab41f-a71f-4418-8966-832cd9fa9acb", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-request-id": "a2ea1feb-cbd4-453e-9a74-198012829286", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080035Z:97eab41f-a71f-4418-8966-832cd9fa9acb" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u00229760a379-876a-4fde-b98e-55c493cd0ba1\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "25a4d616-c32f-4ced-a2a4-a51f52cd3d64", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u00229760a379-876a-4fde-b98e-55c493cd0ba1\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.110e5349-865c-40c9-8a57-9e63e4614435" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-2051.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2051/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2661/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-88f3978274a508418d5c8c381b0cfe24-824a9dfd141da343-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "23f42740d2cb3794e1149dffb917d1b2", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0388145421f84966ab06d17ae3c94daf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "733", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:36 GMT", + "Date": "Wed, 22 Mar 2023 02:42:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "23f42740d2cb3794e1149dffb917d1b2", - "x-ms-correlation-request-id": "bec02d84-66c0-42d1-834f-8cf952790c52", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-request-id": "bbc65945-bbba-4132-ba0e-ae1b8f392f8a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080036Z:bec02d84-66c0-42d1-834f-8cf952790c52", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "0388145421f84966ab06d17ae3c94daf", + "x-ms-correlation-request-id": "f93ddba5-036c-440e-9f10-f8cdb839eb7d", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "e3e8e9ad-d255-4534-a646-cc8f73cf84b6", + "x-ms-routing-request-id": "JAPANEAST:20230322T024212Z:f93ddba5-036c-440e-9f10-f8cdb839eb7d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -992,7 +627,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460" }, "groupIds": [ "webpubsub" @@ -1003,48 +638,48 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/privateEndpointConnections/webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac9", - "name": "webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/privateEndpointConnections/webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca", + "name": "webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2051/privateEndpointConnections/webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac9?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2661/privateEndpointConnections/webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ba11d57223ee804fbaf7da0d3e0ed307-3003a494e7e86846-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "169d5de8d9470e36b5c81eaf3ceb52bc", + "traceparent": "00-b621cfb3256b6832684c99f219422590-36185367a2953548-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31d32dd0655b29d8f33b9d1a8e4d12d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "725", + "Content-Length": "721", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:36 GMT", + "Date": "Wed, 22 Mar 2023 02:42:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "169d5de8d9470e36b5c81eaf3ceb52bc", - "x-ms-correlation-request-id": "cc4ca9ff-9e67-416a-b302-d49c370f1e23", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-request-id": "0488ffc2-7b30-4bf7-a81d-d93e991829e4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080037Z:cc4ca9ff-9e67-416a-b302-d49c370f1e23", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "31d32dd0655b29d8f33b9d1a8e4d12d5", + "x-ms-correlation-request-id": "b50c38e6-4d89-4160-a94b-48fbe58c2898", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "4441a9ac-6d6a-4400-bb17-99391d2df88a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024213Z:b50c38e6-4d89-4160-a94b-48fbe58c2898", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460" }, "groupIds": [ "webpubsub" @@ -1055,67 +690,67 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/privateEndpointConnections/webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac9", - "name": "webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac9", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/privateEndpointConnections/webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca", + "name": "webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2051/privateEndpointConnections/webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac901?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2661/privateEndpointConnections/webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca01?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0064ad6a68fb794686127af46e1e94ff-f3307b6bd5a7e646-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8795a2c6d3cbd87cd6a6da079da53962", + "traceparent": "00-79cc2a06a535a5137dc21ea7a7045934-3ca4d0b955d21b7f-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e8737e538578b80f45ef21f598e3f1e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:37 GMT", + "Date": "Wed, 22 Mar 2023 02:42:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8795a2c6d3cbd87cd6a6da079da53962", - "x-ms-correlation-request-id": "9dfa859e-b3a6-488a-9920-8b4d4da54d22", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-request-id": "e5a5a5b8-b21c-4b3b-a7a4-19471b1cb66a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080037Z:9dfa859e-b3a6-488a-9920-8b4d4da54d22", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "e8737e538578b80f45ef21f598e3f1e8", + "x-ms-correlation-request-id": "62d571fc-59fc-4648-a66d-ed2b938b98d9", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "386d2178-9412-4e9d-b3c6-c8dafff2e8a3", + "x-ms-routing-request-id": "JAPANEAST:20230322T024213Z:62d571fc-59fc-4648-a66d-ed2b938b98d9", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "error": { "code": "NotFound", "message": "Private endpoint connection not found", - "target": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051/privateEndpointConnections/webpubsub-2051.68a973a0-c9f9-4d59-ace2-d0d4fa429ac901" + "target": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661/privateEndpointConnections/webpubsub-2661.68ffc3c2-73f4-4657-8d64-a914b02cc2ca01" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1883e79eb72f6142896a825457d2f135-c0962f940b03c840-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a93ce903ac9a6756f1e56d03b3e5faf6", + "traceparent": "00-654fedb87d822272f5acfb043a6d3dac-fdc00061960066ca-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "071fbe4c44e4ef0c3b5f10bc834cba5e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2330", + "Content-Length": "2320", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:37 GMT", + "Date": "Wed, 22 Mar 2023 02:42:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1124,32 +759,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "eac729c0-3f32-48ad-b7a5-7e1db35b8ee0", - "x-ms-client-request-id": "a93ce903ac9a6756f1e56d03b3e5faf6", - "x-ms-correlation-request-id": "8c6d4f5e-0d7e-4532-9279-9e7a9700a6e4", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-request-id": "e795b9fe-8539-4eae-8aeb-0739dd756979", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080038Z:8c6d4f5e-0d7e-4532-9279-9e7a9700a6e4" + "x-ms-arm-service-request-id": "c6bbab0d-0480-4435-8a59-4c8ae1153a94", + "x-ms-client-request-id": "071fbe4c44e4ef0c3b5f10bc834cba5e", + "x-ms-correlation-request-id": "5a28bf1b-23c0-431d-b899-9fde127f91a4", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "b429e8b9-c0b2-4d73-b8e6-bc5678026554", + "x-ms-routing-request-id": "JAPANEAST:20230322T024214Z:5a28bf1b-23c0-431d-b899-9fde127f91a4" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u00229760a379-876a-4fde-b98e-55c493cd0ba1\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460", + "etag": "W/\u0022a14e6d80-8928-4a3b-8cd7-2bc968e6eb83\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "25a4d616-c32f-4ced-a2a4-a51f52cd3d64", + "resourceGuid": "2e920f4b-d2e0-4bd7-a0f8-baee6688dafc", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u00229760a379-876a-4fde-b98e-55c493cd0ba1\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460/privateLinkServiceConnections/PrivateEndPoint-2460", + "etag": "W/\u0022a14e6d80-8928-4a3b-8cd7-2bc968e6eb83\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661", "groupIds": [ "webpubsub" ], @@ -1164,16 +799,16 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/virtualNetworks/Vnet-7072/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.110e5349-865c-40c9-8a57-9e63e4614435" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-2460.nic.f6e2dc60-5576-4138-ac43-1c8585eb4887" } ], "customDnsConfigs": [ { - "fqdn": "webpubsub-2051.webpubsub.azure.com", + "fqdn": "webpubsub-2661.webpubsub.azure.com", "ipAddresses": [ "10.10.2.4" ] @@ -1185,26 +820,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fada21d28b48dc4ebfd584201e078389-3b47f1903e70a64c-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1738e0c1498215e6e0c53fa1ff2e710f", + "traceparent": "00-96a885aeed5876c2f17ba5f049e5f334-e35c659468edb277-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6526fbf464564a361d1aec6b43e2900f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8c5b111b-937d-4f4d-854e-a26bfe7eb13a?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/10985af0-20e8-4578-a627-4d96971a823e?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 08:00:38 GMT", + "Date": "Wed, 22 Mar 2023 02:42:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/8c5b111b-937d-4f4d-854e-a26bfe7eb13a?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/10985af0-20e8-4578-a627-4d96971a823e?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1213,23 +848,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "43e0a506-d58b-4d17-82cf-939c352e87a8", - "x-ms-client-request-id": "1738e0c1498215e6e0c53fa1ff2e710f", - "x-ms-correlation-request-id": "ab3f168a-4a84-4290-9ffb-ba404b015920", - "x-ms-ratelimit-remaining-subscription-deletes": "14989", - "x-ms-request-id": "8c5b111b-937d-4f4d-854e-a26bfe7eb13a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080038Z:ab3f168a-4a84-4290-9ffb-ba404b015920" + "x-ms-arm-service-request-id": "e3cb8cbe-a6f2-4d95-9a42-e85cbf53ca6f", + "x-ms-client-request-id": "6526fbf464564a361d1aec6b43e2900f", + "x-ms-correlation-request-id": "952772ad-72dc-4f7a-bfc8-88d5011a5bee", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "10985af0-20e8-4578-a627-4d96971a823e", + "x-ms-routing-request-id": "JAPANEAST:20230322T024214Z:952772ad-72dc-4f7a-bfc8-88d5011a5bee" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8c5b111b-937d-4f4d-854e-a26bfe7eb13a?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/10985af0-20e8-4578-a627-4d96971a823e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fada21d28b48dc4ebfd584201e078389-759aff4aa0c47141-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd46e4ac226cb9e00227c8d56cb568c3", + "traceparent": "00-96a885aeed5876c2f17ba5f049e5f334-f54ecdb00d9d8e72-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9c01c3358cbce89287d4e9c958a1ab59", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1238,7 +873,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:38 GMT", + "Date": "Wed, 22 Mar 2023 02:42:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1248,25 +883,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "dd75f0ff-94a4-40b6-9e8c-480ced25cf8a", - "x-ms-client-request-id": "bd46e4ac226cb9e00227c8d56cb568c3", - "x-ms-correlation-request-id": "023c4330-d94f-4566-bcef-745ca71de800", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-request-id": "4d8b65f5-fafd-4be1-b66e-a770f2831d96", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080039Z:023c4330-d94f-4566-bcef-745ca71de800" + "x-ms-arm-service-request-id": "56f4fa00-f9e6-438c-b8b5-957d105e616d", + "x-ms-client-request-id": "9c01c3358cbce89287d4e9c958a1ab59", + "x-ms-correlation-request-id": "f076feb4-5b1c-49db-9f7d-7ce16f11fc23", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "a6360907-8cc0-4b73-b568-505df5b7802c", + "x-ms-routing-request-id": "JAPANEAST:20230322T024214Z:f076feb4-5b1c-49db-9f7d-7ce16f11fc23" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8c5b111b-937d-4f4d-854e-a26bfe7eb13a?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/10985af0-20e8-4578-a627-4d96971a823e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fada21d28b48dc4ebfd584201e078389-73f7601fc37ec247-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f7755d73a7391747bd1eca54b300af67", + "traceparent": "00-96a885aeed5876c2f17ba5f049e5f334-ab2ebe027d8513d9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ce7200ceea7ee8300a18f3d2b71dd5ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1275,7 +910,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:00:48 GMT", + "Date": "Wed, 22 Mar 2023 02:42:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "20", @@ -1285,25 +920,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "799532b4-8963-4d11-82a1-a8af617144f4", - "x-ms-client-request-id": "f7755d73a7391747bd1eca54b300af67", - "x-ms-correlation-request-id": "bbb932d5-f0fc-4811-81f1-38a120519ce7", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-request-id": "1eaf1858-440f-420e-8227-90da5777ecee", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080049Z:bbb932d5-f0fc-4811-81f1-38a120519ce7" + "x-ms-arm-service-request-id": "055a7941-cc6b-48ae-b837-728752dcfc1d", + "x-ms-client-request-id": "ce7200ceea7ee8300a18f3d2b71dd5ca", + "x-ms-correlation-request-id": "6a041f75-97e2-4b1e-ad31-1e3d583504d2", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "ecc6c866-399a-405f-b881-fc1f139c5fe9", + "x-ms-routing-request-id": "JAPANEAST:20230322T024225Z:6a041f75-97e2-4b1e-ad31-1e3d583504d2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/8c5b111b-937d-4f4d-854e-a26bfe7eb13a?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/10985af0-20e8-4578-a627-4d96971a823e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fada21d28b48dc4ebfd584201e078389-16c202fea199fa4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1af54ea0b4e86ba3dbf24f87e14dad96", + "traceparent": "00-96a885aeed5876c2f17ba5f049e5f334-fcca2654fa4dbd84-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8035f3e6f4e0be5222e448582227b6d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1312,7 +947,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:09 GMT", + "Date": "Wed, 22 Mar 2023 02:42:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1321,26 +956,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4f49dfc8-dcc2-497b-b8b6-e5d1c603685a", - "x-ms-client-request-id": "1af54ea0b4e86ba3dbf24f87e14dad96", - "x-ms-correlation-request-id": "4e304169-ac45-4c0e-9a1b-34432d7cda97", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-request-id": "0f30349d-4ccc-4bc6-9573-c61fb0a2f125", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080109Z:4e304169-ac45-4c0e-9a1b-34432d7cda97" + "x-ms-arm-service-request-id": "2ff25878-82a3-4391-bd95-6f7167b81493", + "x-ms-client-request-id": "8035f3e6f4e0be5222e448582227b6d0", + "x-ms-correlation-request-id": "02d09085-ca76-4a00-b4e2-005dff12e209", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "8465d24d-6586-4626-9941-003abc4d7b88", + "x-ms-routing-request-id": "JAPANEAST:20230322T024245Z:02d09085-ca76-4a00-b4e2-005dff12e209" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8f438d7d2164744daa4525a9bef8a530-d367613cf99c304c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0772d2c62c0304b79c2eff4d578b0502", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "754a53d865e04b79921892a498c03069", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1349,18 +983,18 @@ "Cache-Control": "no-cache", "Content-Length": "1286", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:09 GMT", + "Date": "Wed, 22 Mar 2023 02:42:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0772d2c62c0304b79c2eff4d578b0502", - "x-ms-correlation-request-id": "f8b498cc-4437-4784-abb3-33e1fa248f8c", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-request-id": "3bb866d3-d49c-4109-8729-c548c14b1246", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080110Z:f8b498cc-4437-4784-abb3-33e1fa248f8c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "754a53d865e04b79921892a498c03069", + "x-ms-correlation-request-id": "cde10eda-89d9-4193-972f-b4a48a67b3cf", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "bdf6b82b-1921-43d2-b4e4-ce1060faf864", + "x-ms-routing-request-id": "JAPANEAST:20230322T024245Z:cde10eda-89d9-4193-972f-b4a48a67b3cf", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1373,8 +1007,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-2051.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-2661.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1383,7 +1017,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2051", + "hostNamePrefix": "webpubsub-2661", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1418,54 +1052,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:57:56.339362Z", + "createdAt": "2023-03-22T02:40:06.3062555Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:57:56.339362Z" + "lastModifiedAt": "2023-03-22T02:40:06.3062555Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2051", - "name": "WebPubSub-2051", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2661", + "name": "WebPubSub-2661", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2051?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2661?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-88eaf23d1e9bad4ea77de394ea124c46-40724fb4baa55942-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1e3460774dc0bfdaba0a1b4757bf3670", + "traceparent": "00-45ce649778c6dbf3e21c8cb215990c18-3143751b82739ace-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "64e21eff2a6bd979adb4ac99a1d7c6e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 08:01:12 GMT", + "Date": "Wed, 22 Mar 2023 02:42:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1e3460774dc0bfdaba0a1b4757bf3670", - "x-ms-correlation-request-id": "aec81213-7602-49c9-a7bb-93a14930e85d", - "x-ms-ratelimit-remaining-subscription-deletes": "14988", - "x-ms-request-id": "9d54497e-c088-497f-ac9d-706e96673441", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080112Z:aec81213-7602-49c9-a7bb-93a14930e85d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "64e21eff2a6bd979adb4ac99a1d7c6e2", + "x-ms-correlation-request-id": "65cf4406-aa07-4580-9c0e-bcf5297627fb", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "311afc41-e694-4c34-9e51-a840d09e0493", + "x-ms-routing-request-id": "JAPANEAST:20230322T024247Z:65cf4406-aa07-4580-9c0e-bcf5297627fb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "2065896995", + "RandomSeed": "126445166", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Delete.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Delete.json index f7564d1d09ec..adff22d9fe02 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Delete.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Delete.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-5509?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-403?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6a50858dbead904d89c144aaa1556535-1b37bef25de42549-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "04934877eb4144097a697fb2eddd8c16", + "traceparent": "00-ea5d3eceb5c5a04ce69c09eddfb9acea-5518474c01662e28-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "81df66327940fd531789d84afb85c4e6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:47 GMT", + "Date": "Wed, 22 Mar 2023 02:55:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "085e97d5-8d99-491e-bd6f-543164d5192a", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "085e97d5-8d99-491e-bd6f-543164d5192a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074747Z:085e97d5-8d99-491e-bd6f-543164d5192a" + "x-ms-correlation-request-id": "2b62fc01-5fca-45aa-aee6-913e1970a6f0", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "2b62fc01-5fca-45aa-aee6-913e1970a6f0", + "x-ms-routing-request-id": "JAPANEAST:20230322T025506Z:2b62fc01-5fca-45aa-aee6-913e1970a6f0" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509", - "name": "WebPubSubRG-5509", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403", + "name": "WebPubSubRG-403", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-8800?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-1057?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-ae0a9cd72ad7524f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "62ac08c5f1b811f2ffaa0f2b82602a98", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-69537a8df2c15463-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5940ccfd2a2bcbf57f2307cc935b581f", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1273", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:52 GMT", + "Date": "Wed, 22 Mar 2023 02:55:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationResults/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationResults/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "62ac08c5f1b811f2ffaa0f2b82602a98", - "x-ms-correlation-request-id": "4f6e2b70-e906-4454-b9f1-99df4a036390", + "x-ms-client-request-id": "5940ccfd2a2bcbf57f2307cc935b581f", + "x-ms-correlation-request-id": "07f76fa1-ee36-42b5-b21b-d88751e4af64", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "9f04f43d-5b55-4937-9fab-054d9fb3820d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074752Z:4f6e2b70-e906-4454-b9f1-99df4a036390", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "82d2b3a8-0cb3-4375-8bef-e59eb889c45c", + "x-ms-routing-request-id": "JAPANEAST:20230322T025510Z:07f76fa1-ee36-42b5-b21b-d88751e4af64", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-8800.webpubsub.azure.com", + "hostName": "webpubsub-1057.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-8800", + "hostNamePrefix": "webpubsub-1057", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,314 +160,314 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:47:50.4583363Z", + "createdAt": "2023-03-22T02:55:08.0514911Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:47:50.4583363Z" + "lastModifiedAt": "2023-03-22T02:55:08.0514911Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", - "name": "WebPubSub-8800", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057", + "name": "WebPubSub-1057", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-fc267c86356f9f4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "57161de778d7868b55810496dbddc21a", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-d3c363fe24d0c090-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c13c596bc4343c06eab6c1554c30832e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:52 GMT", + "Date": "Wed, 22 Mar 2023 02:55:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "57161de778d7868b55810496dbddc21a", - "x-ms-correlation-request-id": "cc1597dd-9221-4802-8b8e-34961f1868bc", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "86b4d8d1-ef3b-4bb6-a74c-e9542c8ebc25", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074753Z:cc1597dd-9221-4802-8b8e-34961f1868bc", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "c13c596bc4343c06eab6c1554c30832e", + "x-ms-correlation-request-id": "136bdc3f-5ca9-4191-bf5c-f63e0106806e", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "03cab1a1-3fa1-4a8a-96cc-23f46fe79e03", + "x-ms-routing-request-id": "JAPANEAST:20230322T025510Z:136bdc3f-5ca9-4191-bf5c-f63e0106806e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-53362ab20d897c48-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c517e63f0b1c9d0a3de6106a6edd390d", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-547fa2f454599fc5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "16482a80904133d04217b91703f2c910", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:54 GMT", + "Date": "Wed, 22 Mar 2023 02:55:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c517e63f0b1c9d0a3de6106a6edd390d", - "x-ms-correlation-request-id": "519f8d05-0e7c-4434-9aad-b98ac1f1c4fd", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-request-id": "345bc16f-1385-44e4-995d-7c5e8aad05fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074754Z:519f8d05-0e7c-4434-9aad-b98ac1f1c4fd", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "16482a80904133d04217b91703f2c910", + "x-ms-correlation-request-id": "aaaa6b80-ad5a-427c-ab87-ca7a8dc3b016", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "970255e5-c307-4e6f-88fe-1906f8781896", + "x-ms-routing-request-id": "JAPANEAST:20230322T025511Z:aaaa6b80-ad5a-427c-ab87-ca7a8dc3b016", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-1f802ddf16d9184c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "64446fb1d34922c19c3a2b892334ea74", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-aa3f3e642d4e2b79-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a61f1c2971eeeeb68466b920834dd6f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:55 GMT", + "Date": "Wed, 22 Mar 2023 02:55:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "64446fb1d34922c19c3a2b892334ea74", - "x-ms-correlation-request-id": "827ecc73-1248-4c12-ac48-b050f7e4da69", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-request-id": "da975d68-96eb-4cd6-bd57-4cb35861dcca", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074756Z:827ecc73-1248-4c12-ac48-b050f7e4da69", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "3a61f1c2971eeeeb68466b920834dd6f", + "x-ms-correlation-request-id": "3ac0e4d7-12b8-4165-b96d-f9635528764d", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "2c47134f-bcee-48f8-b9b9-455ba906ab46", + "x-ms-routing-request-id": "JAPANEAST:20230322T025513Z:3ac0e4d7-12b8-4165-b96d-f9635528764d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-55c0b6bd60d9304d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f0d5698b34dadb8312791af068211878", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-5e787a0aa8f23ce4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d782f8904b26dbd389087f1d0bee39f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:57 GMT", + "Date": "Wed, 22 Mar 2023 02:55:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f0d5698b34dadb8312791af068211878", - "x-ms-correlation-request-id": "400d53a5-41a3-4b33-b548-ca421c5652a9", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "5ced9a6d-c76e-4e38-a0a3-3454eb84b78c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074757Z:400d53a5-41a3-4b33-b548-ca421c5652a9", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "d782f8904b26dbd389087f1d0bee39f8", + "x-ms-correlation-request-id": "2f0faf97-07cf-4e53-bf62-c72700cc6967", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "77cbaf31-f029-4d39-91c6-4edbe1312d16", + "x-ms-routing-request-id": "JAPANEAST:20230322T025514Z:2f0faf97-07cf-4e53-bf62-c72700cc6967", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-f28b45602deef942-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6be5f7475d996bd025f528e2e0807908", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-05f94797887d43b6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5a93b0ed49cfe80f3f5aadfb243d2b0d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:47:59 GMT", + "Date": "Wed, 22 Mar 2023 02:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6be5f7475d996bd025f528e2e0807908", - "x-ms-correlation-request-id": "722146f2-6a84-49dc-9888-ac88f833dcd1", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "6c78d4f5-f681-4392-8271-234443d571c4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074759Z:722146f2-6a84-49dc-9888-ac88f833dcd1", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5a93b0ed49cfe80f3f5aadfb243d2b0d", + "x-ms-correlation-request-id": "4a1b7b32-4e31-40f7-8981-480d831b80dd", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "adcfcb38-55e8-4f0d-899c-41f9f1c2f340", + "x-ms-routing-request-id": "JAPANEAST:20230322T025516Z:4a1b7b32-4e31-40f7-8981-480d831b80dd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-9a460e5ff1e90049-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "04de9bfc48087c32ec6952d0b9d1ba7b", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-d1cb108e6c6c931b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0a874a3af17077e91d86b01517cee279", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:48:04 GMT", + "Date": "Wed, 22 Mar 2023 02:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "04de9bfc48087c32ec6952d0b9d1ba7b", - "x-ms-correlation-request-id": "e03159b8-92d4-4123-83c1-5f4029aa5b02", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "a8e52b7a-e5c9-4fc4-bf21-cd354f9f9322", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074804Z:e03159b8-92d4-4123-83c1-5f4029aa5b02", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "0a874a3af17077e91d86b01517cee279", + "x-ms-correlation-request-id": "7779c9b1-04ab-4cad-9248-099bb4205ed8", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "a8f7c0b9-398d-4e16-9d0b-02c860ef4564", + "x-ms-routing-request-id": "JAPANEAST:20230322T025521Z:7779c9b1-04ab-4cad-9248-099bb4205ed8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-f3913d2e8a2dad40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2b42b2227e4e2edb9869cbe50ca0fa91", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-05da5afc32a4ab93-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "57a4730d82a0469fe99998cc9dd8b64b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:48:12 GMT", + "Date": "Wed, 22 Mar 2023 02:55:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2b42b2227e4e2edb9869cbe50ca0fa91", - "x-ms-correlation-request-id": "63b56df8-9932-45cd-81aa-74e53990f3a2", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "fc64835d-64cd-423f-b8fb-3982d539d06a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074812Z:63b56df8-9932-45cd-81aa-74e53990f3a2", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "57a4730d82a0469fe99998cc9dd8b64b", + "x-ms-correlation-request-id": "39711aa4-050f-47ac-ba0b-b0ce624bd27d", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "0fa8ef68-e077-41c2-8b94-ec10021c3978", + "x-ms-routing-request-id": "JAPANEAST:20230322T025529Z:39711aa4-050f-47ac-ba0b-b0ce624bd27d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-9d8da6055149e547-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ccf311ff1342ff6fc5697e2f0a00b254", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-5410777e11e17018-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c0e371dd2f67fb87c61c3d4999fad070", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:48:28 GMT", + "Date": "Wed, 22 Mar 2023 02:55:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ccf311ff1342ff6fc5697e2f0a00b254", - "x-ms-correlation-request-id": "3e832652-fdf9-46ee-8952-78ed504bc239", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-request-id": "527dbd41-b105-4b36-839c-a5002cde120a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074829Z:3e832652-fdf9-46ee-8952-78ed504bc239", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "c0e371dd2f67fb87c61c3d4999fad070", + "x-ms-correlation-request-id": "aa3707da-aa0f-4774-ac8e-54d72c839e9a", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "1c542acb-4d01-4e61-8174-5011e5a4e2b6", + "x-ms-routing-request-id": "JAPANEAST:20230322T025545Z:aa3707da-aa0f-4774-ac8e-54d72c839e9a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Running", - "startTime": "2022-07-05T07:47:51.0261009Z" + "startTime": "2023-03-22T02:55:08.9599729Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-60b9d0cb2da3c345-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2dc0ac3b4e3e7ebabfb06c9e7d4c704c", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-789ea065350f76e8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b1ed3377d398b76caa4120d6591dd944", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -476,55 +476,55 @@ "Cache-Control": "no-cache", "Content-Length": "357", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:01 GMT", + "Date": "Wed, 22 Mar 2023 02:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2dc0ac3b4e3e7ebabfb06c9e7d4c704c", - "x-ms-correlation-request-id": "cf3927f7-f9b0-4654-8958-37ef547b3bf9", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-request-id": "cf15519d-478e-47cd-9796-c7f8025499c8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074901Z:cf3927f7-f9b0-4654-8958-37ef547b3bf9", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b1ed3377d398b76caa4120d6591dd944", + "x-ms-correlation-request-id": "b407e813-baaa-4d7e-b023-8d7e2bc6b1d5", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "51d140ac-c840-4f71-8711-2942d9453c30", + "x-ms-routing-request-id": "JAPANEAST:20230322T025618Z:b407e813-baaa-4d7e-b023-8d7e2bc6b1d5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/0ac5fc52-80a9-4293-b1fc-9decd4325464", - "name": "0ac5fc52-80a9-4293-b1fc-9decd4325464", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/33889d6d-f54f-486a-bf16-a72f430baca5", + "name": "33889d6d-f54f-486a-bf16-a72f430baca5", "status": "Succeeded", - "startTime": "2022-07-05T07:47:51.0261009Z", - "endTime": "2022-07-05T07:48:51.274747Z" + "startTime": "2023-03-22T02:55:08.9599729Z", + "endTime": "2023-03-22T02:55:58.8944034Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-8800?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-1057?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-89ce2210d658384e98cd1979b1b3bdf5-434c8e09483a0f40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a7d0c06eeddd0e39434266e4ffac2398", + "traceparent": "00-223cec44d4190d1f26c487cc3c053eae-2fa84739f1eaa7da-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a63765cf21eade12eba990844556acef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1276", + "Content-Length": "1275", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:01 GMT", + "Date": "Wed, 22 Mar 2023 02:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a7d0c06eeddd0e39434266e4ffac2398", - "x-ms-correlation-request-id": "e55f0110-a823-49af-bc89-55fb095d1e1e", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "0e1dedf8-f514-42c3-8d6b-924a8f7e3c15", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074902Z:e55f0110-a823-49af-bc89-55fb095d1e1e", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "a63765cf21eade12eba990844556acef", + "x-ms-correlation-request-id": "4e8127eb-e7ed-46e8-8a7d-8a494fff2c7a", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "708bcfeb-54a7-4328-9c52-bae2229d13e1", + "x-ms-routing-request-id": "JAPANEAST:20230322T025618Z:4e8127eb-e7ed-46e8-8a7d-8a494fff2c7a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-8800.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-1057.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-8800", + "hostNamePrefix": "webpubsub-1057", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,375 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:47:50.4583363Z", + "createdAt": "2023-03-22T02:55:08.0514911Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:47:50.4583363Z" + "lastModifiedAt": "2023-03-22T02:55:08.0514911Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", - "name": "WebPubSub-8800", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057", + "name": "WebPubSub-1057", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "500", - "Content-Type": "application/json", - "traceparent": "00-470fcf13d039894f8c80ceab27d8804b-08ef15cb951f5043-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5faa77b6cddfb15356750d92a6d18178", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/48da4ed7-59a1-408f-9457-add02e2abe4f?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1972", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0aba6a39-a990-4f21-90cb-62531c7e0523", - "x-ms-client-request-id": "5faa77b6cddfb15356750d92a6d18178", - "x-ms-correlation-request-id": "33800f27-58ba-47a1-9faf-b4038c24239f", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "48da4ed7-59a1-408f-9457-add02e2abe4f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074906Z:33800f27-58ba-47a1-9faf-b4038c24239f" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u00226d72c9a6-c6ee-4aac-9ce4-750b0917ccee\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "2273cf9c-d370-438c-a33a-8526abee4c76", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u00226d72c9a6-c6ee-4aac-9ce4-750b0917ccee\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.a5231474-b5ed-4e9e-8059-5f3ac4ebc128" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/48da4ed7-59a1-408f-9457-add02e2abe4f?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-470fcf13d039894f8c80ceab27d8804b-2796196f6fc6fb42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "06e7d48c10a2a06c6d1f5068e0a76871", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "51708fd0-010a-4a28-9d2e-59c9b2a99fc8", - "x-ms-client-request-id": "06e7d48c10a2a06c6d1f5068e0a76871", - "x-ms-correlation-request-id": "54602519-0203-4eca-add1-aa0449e5c5fe", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "d556e672-3c5a-4b6e-8c6a-1ad024d4d266", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074906Z:54602519-0203-4eca-add1-aa0449e5c5fe" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/48da4ed7-59a1-408f-9457-add02e2abe4f?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-470fcf13d039894f8c80ceab27d8804b-465f0102986f0d4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ccebedc1d9eaab68005cec2ee257c881", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1e132748-3365-4111-8f96-ea866badf94f", - "x-ms-client-request-id": "ccebedc1d9eaab68005cec2ee257c881", - "x-ms-correlation-request-id": "6e626611-5009-476b-871b-cb335b94abea", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-request-id": "ab6fe9de-906d-4164-bd9f-0d74d768ded4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074916Z:6e626611-5009-476b-871b-cb335b94abea" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/48da4ed7-59a1-408f-9457-add02e2abe4f?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-470fcf13d039894f8c80ceab27d8804b-6f67f7b93c51134f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d205f9f67be9e9d6c620dd0fba0e6dcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "aa5d987c-8618-4325-a785-d3f58f401cec", - "x-ms-client-request-id": "d205f9f67be9e9d6c620dd0fba0e6dcb", - "x-ms-correlation-request-id": "8822b3fc-bb03-431d-bef9-20c8e0dc0107", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "0bc86889-091d-43e5-98c6-452275fb54d7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074937Z:8822b3fc-bb03-431d-bef9-20c8e0dc0107" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/48da4ed7-59a1-408f-9457-add02e2abe4f?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-470fcf13d039894f8c80ceab27d8804b-fd3bccc100153b43-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fb3a7849b2eab3296b3c0545233dbe15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "938d2e5c-01e8-42b1-ba6f-12fcaa14162f", - "x-ms-client-request-id": "fb3a7849b2eab3296b3c0545233dbe15", - "x-ms-correlation-request-id": "90388204-b70b-41e1-86c8-5b8b09593fcb", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-request-id": "8d3400c4-81ad-4ea7-833b-f55ada8bdcaf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074958Z:90388204-b70b-41e1-86c8-5b8b09593fcb" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-470fcf13d039894f8c80ceab27d8804b-6971c18585f8fc46-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e672cf5795a14588160206c9fb59f1f2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2112", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:58 GMT", - "ETag": "W/\u00224f18dc9e-407b-432a-afe0-2497d52a8f24\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ef848902-dc27-4793-ad34-a13188c9e1d3", - "x-ms-client-request-id": "e672cf5795a14588160206c9fb59f1f2", - "x-ms-correlation-request-id": "01276ba9-f3ec-4dda-8d78-1d5b94636e62", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-request-id": "0f760b70-c223-47c8-80b9-d3c38f996e39", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074959Z:01276ba9-f3ec-4dda-8d78-1d5b94636e62" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u00224f18dc9e-407b-432a-afe0-2497d52a8f24\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "2273cf9c-d370-438c-a33a-8526abee4c76", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u00224f18dc9e-407b-432a-afe0-2497d52a8f24\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.a5231474-b5ed-4e9e-8059-5f3ac4ebc128" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-8800.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-8800/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-1057/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8415e667376dd14b804c308a3a7c48b4-4d4e5efccb7fd44c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "69e520efcd1c4396d05266ad7691c588", + "traceparent": "00-72688a8fc5a265f4b8d492ac220b217c-6ff28a62a73609c1-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b29c13b46dda94754975d732e117aa20", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "735", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:49:59 GMT", + "Date": "Wed, 22 Mar 2023 02:57:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "69e520efcd1c4396d05266ad7691c588", - "x-ms-correlation-request-id": "a41149e4-670d-435a-82d6-e44188c37f08", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-request-id": "8b5f918b-326f-434f-ae0a-08c20673ba8c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075000Z:a41149e4-670d-435a-82d6-e44188c37f08", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b29c13b46dda94754975d732e117aa20", + "x-ms-correlation-request-id": "989d8f28-5d9c-4e0d-97e2-a6a9e13e2b7b", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "87cc3ef9-f174-4ab4-a2f4-0e6b192e627d", + "x-ms-routing-request-id": "JAPANEAST:20230322T025713Z:989d8f28-5d9c-4e0d-97e2-a6a9e13e2b7b", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -956,7 +628,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925" }, "groupIds": [ "webpubsub" @@ -967,344 +639,344 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/privateEndpointConnections/webpubsub-8800.e881264f-56cd-44f3-b263-6fefb60dd88a", - "name": "webpubsub-8800.e881264f-56cd-44f3-b263-6fefb60dd88a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/privateEndpointConnections/webpubsub-1057.73fcdac9-5baf-4031-9b68-5e3d03541f4d", + "name": "webpubsub-1057.73fcdac9-5baf-4031-9b68-5e3d03541f4d", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-8800/privateEndpointConnections/webpubsub-8800.e881264f-56cd-44f3-b263-6fefb60dd88a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-1057/privateEndpointConnections/webpubsub-1057.73fcdac9-5baf-4031-9b68-5e3d03541f4d?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-c9815d1d778d0d4c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "eab8c762869bb32af0f5e4e8ab5fb712", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-f2303d28e44da2bf-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "052f922300c14bd7f4535437764a246c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 07:50:00 GMT", + "Date": "Wed, 22 Mar 2023 02:57:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationResults/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationResults/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "eab8c762869bb32af0f5e4e8ab5fb712", - "x-ms-correlation-request-id": "79c4a35a-1542-42e2-9499-ba1355a2aef4", + "x-ms-client-request-id": "052f922300c14bd7f4535437764a246c", + "x-ms-correlation-request-id": "977ccf3e-2362-47ea-860f-18230350ae99", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "e1a28963-8d1e-4f93-a296-838bbdd0b111", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075000Z:79c4a35a-1542-42e2-9499-ba1355a2aef4", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "8f010a22-7867-47b9-92d4-ef8706078a6b", + "x-ms-routing-request-id": "JAPANEAST:20230322T025714Z:977ccf3e-2362-47ea-860f-18230350ae99", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-9214beacf2104f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "34667e3c06a06956f6317927e9ae9870", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-bb35de21da2c7e92-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "650a8ec40f68b3193b51be86183d1dff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:01 GMT", + "Date": "Wed, 22 Mar 2023 02:57:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "34667e3c06a06956f6317927e9ae9870", - "x-ms-correlation-request-id": "97d8828e-2466-4e76-b504-b2529fa9d61e", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-request-id": "cf763598-0b2d-4804-8644-42a73eba4c00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075001Z:97d8828e-2466-4e76-b504-b2529fa9d61e", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "650a8ec40f68b3193b51be86183d1dff", + "x-ms-correlation-request-id": "281d2593-3220-40e5-9fe4-65dcc24aaa4e", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "ef7a9978-39d2-4951-bc1d-517c3f98b11d", + "x-ms-routing-request-id": "JAPANEAST:20230322T025714Z:281d2593-3220-40e5-9fe4-65dcc24aaa4e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-8cc589592044cb47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6362549ac23b0e2fce2eb16d70da8515", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-09387d819ec0b710-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2bd66b509601493e7d37f64f00f02e8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:02 GMT", + "Date": "Wed, 22 Mar 2023 02:57:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6362549ac23b0e2fce2eb16d70da8515", - "x-ms-correlation-request-id": "d19ee806-996b-4b60-9096-8086a676db63", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-request-id": "1e530815-4299-44a3-bd56-cc07f021428f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075002Z:d19ee806-996b-4b60-9096-8086a676db63", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "2bd66b509601493e7d37f64f00f02e8f", + "x-ms-correlation-request-id": "86cc29af-47b8-450b-a0dd-66e6db5eb322", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "619be4a7-7d13-47c4-bdbc-bbf1d5059a52", + "x-ms-routing-request-id": "JAPANEAST:20230322T025716Z:86cc29af-47b8-450b-a0dd-66e6db5eb322", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-3e40adeb54e4834c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2cab5e2683f94471bbec0b27dad1a089", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-b4e639c33c7fb277-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e773659fbf3f4d039c61d8901b8edfd0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:03 GMT", + "Date": "Wed, 22 Mar 2023 02:57:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2cab5e2683f94471bbec0b27dad1a089", - "x-ms-correlation-request-id": "64d45dd1-b07c-466d-bd1c-77eb58dcc9bf", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-request-id": "7c321a16-3031-45d4-8b3b-e480b9c8a346", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075004Z:64d45dd1-b07c-466d-bd1c-77eb58dcc9bf", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "e773659fbf3f4d039c61d8901b8edfd0", + "x-ms-correlation-request-id": "6f8356cd-d07b-4ec0-92ec-36c21e280d44", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "d90d26df-ed46-451f-aa02-0f921c53a29c", + "x-ms-routing-request-id": "JAPANEAST:20230322T025717Z:6f8356cd-d07b-4ec0-92ec-36c21e280d44", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-531e2708ea0f8349-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dab4a5956b78794a4f58657154e9f81c", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-0c3ea90885c991bd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b1960053888f2eed50c0e83118c9b34b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:05 GMT", + "Date": "Wed, 22 Mar 2023 02:57:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "dab4a5956b78794a4f58657154e9f81c", - "x-ms-correlation-request-id": "d2b9ced9-e6d5-4a8f-91b1-170a1836d1e1", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-request-id": "4d27c379-f227-451d-8d12-5e1bdbd7368a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075005Z:d2b9ced9-e6d5-4a8f-91b1-170a1836d1e1", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b1960053888f2eed50c0e83118c9b34b", + "x-ms-correlation-request-id": "3b01b548-e7c3-4b53-8a86-2936a4a5fa8e", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "244fcd5d-5b0f-4e58-bf04-9ed4261a82cb", + "x-ms-routing-request-id": "JAPANEAST:20230322T025718Z:3b01b548-e7c3-4b53-8a86-2936a4a5fa8e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-7fd5653d8d7a034a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8a0164ac6b031777e21ea74eb60733fd", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-f0b4d1b107c88add-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b2e72e2235ca91c067888f9fbdae2eee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:07 GMT", + "Date": "Wed, 22 Mar 2023 02:57:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8a0164ac6b031777e21ea74eb60733fd", - "x-ms-correlation-request-id": "3b1a8966-582f-4060-9e06-974376519b37", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-request-id": "6991f13d-2bcf-421c-b44f-29da3283378f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075007Z:3b1a8966-582f-4060-9e06-974376519b37", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b2e72e2235ca91c067888f9fbdae2eee", + "x-ms-correlation-request-id": "d99edb8e-15c2-443e-82f3-5677156844ff", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "508371a5-cceb-4d42-83ca-aa33629ed31a", + "x-ms-routing-request-id": "JAPANEAST:20230322T025721Z:d99edb8e-15c2-443e-82f3-5677156844ff", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-a6a90d32f1d61f4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cad7278eaa26ba9c1431dda01d00efd1", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-e02ce8b9664ff71a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "00fc25577d5a16007844977ed7d134d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:12 GMT", + "Date": "Wed, 22 Mar 2023 02:57:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cad7278eaa26ba9c1431dda01d00efd1", - "x-ms-correlation-request-id": "0dc06c97-1f09-4379-8751-c1a6cc18b375", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-request-id": "380926ff-b401-4228-8a2b-10ab3743f5d0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075012Z:0dc06c97-1f09-4379-8751-c1a6cc18b375", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "00fc25577d5a16007844977ed7d134d3", + "x-ms-correlation-request-id": "c9875be7-1946-4830-b802-f717cbb2d1ed", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "d4441e29-b925-4a4a-b248-6ccf443e36ae", + "x-ms-routing-request-id": "JAPANEAST:20230322T025725Z:c9875be7-1946-4830-b802-f717cbb2d1ed", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-bb9e5e3d7235d645-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "767beff415d02a862d9cf75ac4fbc347", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-0da9b3edf4d8c7a7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ec6d8dae2da71d063f044906f94d71a2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:20 GMT", + "Date": "Wed, 22 Mar 2023 02:57:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "767beff415d02a862d9cf75ac4fbc347", - "x-ms-correlation-request-id": "1e375951-49a0-45db-9450-3bb735ced682", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-request-id": "9be59de9-5114-46d6-8d30-0d29d5bc9894", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075021Z:1e375951-49a0-45db-9450-3bb735ced682", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "ec6d8dae2da71d063f044906f94d71a2", + "x-ms-correlation-request-id": "1f1c0d06-a278-4739-a8ed-728a9b489432", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "164f2767-95d6-415d-9a47-08cc6d9b6d3a", + "x-ms-routing-request-id": "JAPANEAST:20230322T025733Z:1f1c0d06-a278-4739-a8ed-728a9b489432", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Running", - "startTime": "2022-07-05T07:50:00.5420457Z" + "startTime": "2023-03-22T02:57:14.3838469Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b7f0ae769a57954dbc2fe3076aa58280-6b231804c62f5a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2ce268252d1201f5c84676d28dd7fae2", + "traceparent": "00-60b60c40f7028fbacd85ec9c3d5e3c69-8c6c1324a7e0aa17-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f3d9f992b3cca5f02ed03a859e41ba95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "358", + "Content-Length": "357", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:37 GMT", + "Date": "Wed, 22 Mar 2023 02:57:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2ce268252d1201f5c84676d28dd7fae2", - "x-ms-correlation-request-id": "032d0ffc-d65e-4634-b414-3091ad884986", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "0a955117-6de8-447f-8ef9-9595f21a8917", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075037Z:032d0ffc-d65e-4634-b414-3091ad884986", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "f3d9f992b3cca5f02ed03a859e41ba95", + "x-ms-correlation-request-id": "b711a5fa-123a-4987-8f7e-d2aecfe7d0a7", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "ecda544a-ddaf-4c85-bd59-73ac4ae51341", + "x-ms-routing-request-id": "JAPANEAST:20230322T025750Z:b711a5fa-123a-4987-8f7e-d2aecfe7d0a7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800/operationStatuses/63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", - "name": "63096fd7-3a03-4845-91e3-b0fb9b6ed5f7", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057/operationStatuses/b416572c-5b00-4abe-bd0d-bd80452436c0", + "name": "b416572c-5b00-4abe-bd0d-bd80452436c0", "status": "Succeeded", - "startTime": "2022-07-05T07:50:00.5420457Z", - "endTime": "2022-07-05T07:50:29.2088195Z" + "startTime": "2023-03-22T02:57:14.3838469Z", + "endTime": "2023-03-22T02:57:46.1366317Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-8800/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-1057/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-df5d4f115aa1a64b802371c4756bb129-786a8202ea7a5040-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c65ad52ebd8c792ca1ac9c89b241f618", + "traceparent": "00-c93c378bcae50b2633163a79debcbef2-009475237d05eecc-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2ff1bb5442402a461edec05534fa1d2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1313,41 +985,41 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:37 GMT", + "Date": "Wed, 22 Mar 2023 02:57:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c65ad52ebd8c792ca1ac9c89b241f618", - "x-ms-correlation-request-id": "e03af69e-bb3f-4159-ba96-f3fa2271319e", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "31955109-b96d-4530-9033-29c3f5598aa0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075037Z:e03af69e-bb3f-4159-ba96-f3fa2271319e", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "2ff1bb5442402a461edec05534fa1d2a", + "x-ms-correlation-request-id": "3e0bfa8a-fa93-4428-be5c-9b73e265f5a5", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "e2ebc505-6e94-4b1c-8d3b-e8ed5d8aa4d0", + "x-ms-routing-request-id": "JAPANEAST:20230322T025750Z:3e0bfa8a-fa93-4428-be5c-9b73e265f5a5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1da7fee8b3c88f4ca4c8d363927a77c4-2301495721dbbc4f-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b47b966ec21dc6befa79ad8a9fb49c56", + "traceparent": "00-38b4db2ba05db90060b041a65fea108c-54b719c00a52f96c-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ddecf5d341f8fa069cc8bed7f2807ffe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2166", + "Content-Length": "2162", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:38 GMT", + "Date": "Wed, 22 Mar 2023 02:57:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1356,32 +1028,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "975a546c-127f-4763-abae-f291e2c17ec2", - "x-ms-client-request-id": "b47b966ec21dc6befa79ad8a9fb49c56", - "x-ms-correlation-request-id": "c05b518e-bdb4-40e4-9732-dd4d1a877595", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "e62b7539-9ef7-4784-bdbb-01c95138a8f2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075038Z:c05b518e-bdb4-40e4-9732-dd4d1a877595" + "x-ms-arm-service-request-id": "87dbf361-b29a-4fa0-b14b-bf01359bfcb3", + "x-ms-client-request-id": "ddecf5d341f8fa069cc8bed7f2807ffe", + "x-ms-correlation-request-id": "d8eb9870-f134-4661-969f-83567daaf9c5", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "47526122-4d52-4338-bcd7-3b273c9d90dc", + "x-ms-routing-request-id": "JAPANEAST:20230322T025751Z:d8eb9870-f134-4661-969f-83567daaf9c5" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u00220722feb0-d1bd-452d-a93d-037d74c42b18\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925", + "etag": "W/\u00226ecc4124-1bfe-4d03-89e4-423f0dcdf6d5\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "2273cf9c-d370-438c-a33a-8526abee4c76", + "resourceGuid": "0cc5e647-8d19-4b45-a60c-094006580829", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u00220722feb0-d1bd-452d-a93d-037d74c42b18\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925/privateLinkServiceConnections/PrivateEndPoint-7925", + "etag": "W/\u00226ecc4124-1bfe-4d03-89e4-423f0dcdf6d5\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057", "groupIds": [ "webpubsub" ], @@ -1396,11 +1068,11 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/virtualNetworks/Vnet-1241/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.a5231474-b5ed-4e9e-8059-5f3ac4ebc128" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7925.nic.93cabf12-8f66-4147-91c5-a592460a8d4e" } ], "customDnsConfigs": [] @@ -1410,26 +1082,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b4e55754f19d0642b3e38cce8591e13c-947ea87c6ecb5343-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ee2c15a1fca167ba3c698b66906b4e87", + "traceparent": "00-e568ca7b8bd460bc4229dacf743e5ff1-7f622c38133b3890-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3eb2b34a415c4f61b2aed4eef39b7133", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/2773901f-9438-42ff-8c1d-acb622e8c631?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/34f4f95c-a85b-4840-ae72-49ac2cd31836?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 07:50:39 GMT", + "Date": "Wed, 22 Mar 2023 02:57:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/2773901f-9438-42ff-8c1d-acb622e8c631?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/34f4f95c-a85b-4840-ae72-49ac2cd31836?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1438,23 +1110,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a106c34b-2f1c-47ac-8334-af1cd04b98c1", - "x-ms-client-request-id": "ee2c15a1fca167ba3c698b66906b4e87", - "x-ms-correlation-request-id": "b5aca2e4-e8b3-45da-9e56-1ee7c45cbe6e", + "x-ms-arm-service-request-id": "fb167ccd-1f17-4856-ae03-582f5d7f6e1c", + "x-ms-client-request-id": "3eb2b34a415c4f61b2aed4eef39b7133", + "x-ms-correlation-request-id": "642ff68e-b6cf-4b8d-8618-6eadfe435a53", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-request-id": "2773901f-9438-42ff-8c1d-acb622e8c631", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075039Z:b5aca2e4-e8b3-45da-9e56-1ee7c45cbe6e" + "x-ms-request-id": "34f4f95c-a85b-4840-ae72-49ac2cd31836", + "x-ms-routing-request-id": "JAPANEAST:20230322T025751Z:642ff68e-b6cf-4b8d-8618-6eadfe435a53" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/2773901f-9438-42ff-8c1d-acb622e8c631?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/34f4f95c-a85b-4840-ae72-49ac2cd31836?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b4e55754f19d0642b3e38cce8591e13c-cc03c1fb43689f4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9de8461008157176db1378b33758358e", + "traceparent": "00-e568ca7b8bd460bc4229dacf743e5ff1-ee789e7acf6408ef-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "800ac15edf4892ce939c2a496c180701", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1463,7 +1135,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:39 GMT", + "Date": "Wed, 22 Mar 2023 02:57:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1473,25 +1145,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c13dad71-7cc8-4e72-bbc6-729edcc40037", - "x-ms-client-request-id": "9de8461008157176db1378b33758358e", - "x-ms-correlation-request-id": "d4ec2951-64fb-4658-99c0-c51326aec938", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "c65fce7d-e475-4696-a474-a2e11f69331b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075040Z:d4ec2951-64fb-4658-99c0-c51326aec938" + "x-ms-arm-service-request-id": "bab40c44-ce79-4db9-89d6-4809f293ec55", + "x-ms-client-request-id": "800ac15edf4892ce939c2a496c180701", + "x-ms-correlation-request-id": "81a3a4d6-71a1-4b9a-8bee-b7eeb687444b", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "9df8cc8c-8622-4e14-86f4-becfbb90d299", + "x-ms-routing-request-id": "JAPANEAST:20230322T025752Z:81a3a4d6-71a1-4b9a-8bee-b7eeb687444b" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/2773901f-9438-42ff-8c1d-acb622e8c631?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/34f4f95c-a85b-4840-ae72-49ac2cd31836?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b4e55754f19d0642b3e38cce8591e13c-ba219f81c592b647-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "413a262ba5505bfa51bfd70d2fa85899", + "traceparent": "00-e568ca7b8bd460bc4229dacf743e5ff1-a28da7874a7354dc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e2248a57d6cf6ea9159e8965ade9cc43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1500,7 +1172,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:50 GMT", + "Date": "Wed, 22 Mar 2023 02:58:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1509,46 +1181,46 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "781cff58-04c3-4970-90fa-d7655c400968", - "x-ms-client-request-id": "413a262ba5505bfa51bfd70d2fa85899", - "x-ms-correlation-request-id": "69884ff0-7be5-4de7-a3f8-15247f296f16", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "f7fd37cd-13f6-4dc7-92d3-43a4f464a414", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075051Z:69884ff0-7be5-4de7-a3f8-15247f296f16" + "x-ms-arm-service-request-id": "bfab1125-a043-4b3e-ba89-bc2b6d584d71", + "x-ms-client-request-id": "e2248a57d6cf6ea9159e8965ade9cc43", + "x-ms-correlation-request-id": "59645d3c-2b3c-43de-99b4-43b2675f3eca", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "5832ec20-3a63-4f28-85ad-b5c2e1e57618", + "x-ms-routing-request-id": "JAPANEAST:20230322T025802Z:59645d3c-2b3c-43de-99b4-43b2675f3eca" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d581bc5c400fc9488bc590e1f9efc916-0c5e76210137af44-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a569e8fb1834771e6f11b48cd1034be", + "traceparent": "00-621817f0c0d6492856830eabf2945128-1e7e483646ba4ff3-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "318f3676f090d4eb411e14b7b154a69c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1288", + "Content-Length": "1287", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:50 GMT", + "Date": "Wed, 22 Mar 2023 02:58:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4a569e8fb1834771e6f11b48cd1034be", - "x-ms-correlation-request-id": "7d623f52-9612-4e08-bfc9-3ff5d4fe6bf8", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "c250f859-4595-4ec1-a114-74da398fc562", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075051Z:7d623f52-9612-4e08-bfc9-3ff5d4fe6bf8", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "318f3676f090d4eb411e14b7b154a69c", + "x-ms-correlation-request-id": "8a936b52-0b23-4388-8ec7-56439bb49352", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "db7759b3-11eb-479c-a7da-59c1884430cb", + "x-ms-routing-request-id": "JAPANEAST:20230322T025803Z:8a936b52-0b23-4388-8ec7-56439bb49352", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1561,8 +1233,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-8800.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-1057.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1571,7 +1243,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-8800", + "hostNamePrefix": "webpubsub-1057", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1606,54 +1278,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:47:50.4583363Z", + "createdAt": "2023-03-22T02:55:08.0514911Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:47:50.4583363Z" + "lastModifiedAt": "2023-03-22T02:55:08.0514911Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-8800", - "name": "WebPubSub-8800", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-1057", + "name": "WebPubSub-1057", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-8800?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-1057?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6013de2c18ad6a4cafa40f71633c96f7-458a7cdf8b9f0641-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e8e73e5e98676a9c4b8c4c5530694233", + "traceparent": "00-299a4a710bdf275a9d3449c9f8e73bce-2590d2ff1de6f07f-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f82191ee554b87ce179c6aa95568e4aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 07:50:54 GMT", + "Date": "Wed, 22 Mar 2023 02:58:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e8e73e5e98676a9c4b8c4c5530694233", - "x-ms-correlation-request-id": "1689417f-f4e3-4884-aead-b141caf2f96e", + "x-ms-client-request-id": "f82191ee554b87ce179c6aa95568e4aa", + "x-ms-correlation-request-id": "c8e2190f-f7a2-4ff2-bd3e-b18394e6ac8a", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-request-id": "b79a56bb-c7d9-4d0d-b458-989f89745bb6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075054Z:1689417f-f4e3-4884-aead-b141caf2f96e", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "0b5d4928-c1ea-479c-ab74-8beed492b31b", + "x-ms-routing-request-id": "JAPANEAST:20230322T025804Z:c8e2190f-f7a2-4ff2-bd3e-b18394e6ac8a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1226216549", + "RandomSeed": "1884659465", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/DeleteAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/DeleteAsync.json index 6661ba9c514a..746ea41331a6 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/DeleteAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/DeleteAsync.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-9771?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-37?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d7b58441622d044a9218cb15ceff0d21-0cdf47f62624ef48-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "673fb5c151482522d5eab0a940ba0885", + "traceparent": "00-baf533f74a7f27abe802a7219a70e541-0f2a146dd7ec4755-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "acf7c0d39b59dfb00a8ad21aeae64b25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:12 GMT", + "Date": "Wed, 22 Mar 2023 02:42:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "217e61a0-3f4f-4d39-97eb-41982d3ca5e7", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-request-id": "217e61a0-3f4f-4d39-97eb-41982d3ca5e7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080113Z:217e61a0-3f4f-4d39-97eb-41982d3ca5e7" + "x-ms-correlation-request-id": "d24c99c5-5b93-4279-8eae-d351a92dd9fa", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "d24c99c5-5b93-4279-8eae-d351a92dd9fa", + "x-ms-routing-request-id": "JAPANEAST:20230322T024248Z:d24c99c5-5b93-4279-8eae-d351a92dd9fa" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771", - "name": "WebPubSubRG-9771", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37", + "name": "WebPubSubRG-37", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-3472?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5181?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-1c7b73cc1ac13643-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2b72cab1599f99d7b21a7cd1560cdd23", + "traceparent": "00-deb819529522057af251022cc2729f44-2e5cc17ee20a467e-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "811d2c9a5f555a18507c74296088cd70", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:17 GMT", + "Date": "Wed, 22 Mar 2023 02:42:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationResults/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationResults/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2b72cab1599f99d7b21a7cd1560cdd23", - "x-ms-correlation-request-id": "1ffd551e-f2cd-449e-a026-78fabf3b13e8", - "x-ms-ratelimit-remaining-subscription-writes": "1185", - "x-ms-request-id": "6825c058-645d-4153-88d8-84c2b5a03ca1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080117Z:1ffd551e-f2cd-449e-a026-78fabf3b13e8", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "811d2c9a5f555a18507c74296088cd70", + "x-ms-correlation-request-id": "246cfdb5-2941-480d-baee-7092f306ca35", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "0d47187a-c57e-4ee1-93a9-e82436f55c25", + "x-ms-routing-request-id": "JAPANEAST:20230322T024252Z:246cfdb5-2941-480d-baee-7092f306ca35", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-3472.webpubsub.azure.com", + "hostName": "webpubsub-5181.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-3472", + "hostNamePrefix": "webpubsub-5181", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,407 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:01:15.8408965Z", + "createdAt": "2023-03-22T02:42:50.5579523Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:01:15.8408965Z" + "lastModifiedAt": "2023-03-22T02:42:50.5579523Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", - "name": "WebPubSub-3472", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181", + "name": "WebPubSub-5181", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-756c1730c8ba6947-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "61e036ba030967c8dea6b42dd451cec9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "61e036ba030967c8dea6b42dd451cec9", - "x-ms-correlation-request-id": "e9b8dbb2-796f-4364-a164-da8d3efb03da", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-request-id": "1ec2f16f-aea8-41bc-ba5e-39f28849d5bb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080118Z:e9b8dbb2-796f-4364-a164-da8d3efb03da", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-54ef9c046eac7e45-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ac6d8d0c86dee36eca873e472d253192", + "traceparent": "00-deb819529522057af251022cc2729f44-012e23d034e6a882-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "444403fce8ef617edf52081f3cb6a901", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:18 GMT", + "Date": "Wed, 22 Mar 2023 02:42:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ac6d8d0c86dee36eca873e472d253192", - "x-ms-correlation-request-id": "53b8bfa3-eaae-44a8-9485-b058bf1cf698", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-request-id": "f5eab561-113d-483a-a120-dda48530475b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080119Z:53b8bfa3-eaae-44a8-9485-b058bf1cf698", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "444403fce8ef617edf52081f3cb6a901", + "x-ms-correlation-request-id": "06fa9a61-dc65-4ead-9e00-80b81bbf6540", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "52d71008-68c8-487a-a242-f20bec1a6ffc", + "x-ms-routing-request-id": "JAPANEAST:20230322T024253Z:06fa9a61-dc65-4ead-9e00-80b81bbf6540", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-e6bf02def1ce854f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1f1606da7c2b381acb74a37018d3169c", + "traceparent": "00-deb819529522057af251022cc2729f44-54ab8c6419da38e9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4311a90503776505ce84d3f306d97e79", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:20 GMT", + "Date": "Wed, 22 Mar 2023 02:42:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1f1606da7c2b381acb74a37018d3169c", - "x-ms-correlation-request-id": "15dc0299-ba81-4cd1-9e4b-de0e85c93ba5", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-request-id": "a3092b86-3181-4438-81f2-948300a4dbe3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080121Z:15dc0299-ba81-4cd1-9e4b-de0e85c93ba5", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "4311a90503776505ce84d3f306d97e79", + "x-ms-correlation-request-id": "e933c55a-be1c-4326-a2c2-a513830c3b49", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "b5ff08f1-e54a-4431-97e0-4abe420dcd9d", + "x-ms-routing-request-id": "JAPANEAST:20230322T024254Z:e933c55a-be1c-4326-a2c2-a513830c3b49", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-94f96ac1e20c1e44-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "daa5638893b23497c8fc9681c5803ab8", + "traceparent": "00-deb819529522057af251022cc2729f44-4f72a27d357cf77e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5c2ce39d8844f081237243352b3e5bf7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:21 GMT", + "Date": "Wed, 22 Mar 2023 02:42:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "daa5638893b23497c8fc9681c5803ab8", - "x-ms-correlation-request-id": "4a885ce6-d579-4204-ac0a-b165540e55c6", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-request-id": "cb6367a7-8d38-4938-b7ee-97a4724d2c0c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080122Z:4a885ce6-d579-4204-ac0a-b165540e55c6", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5c2ce39d8844f081237243352b3e5bf7", + "x-ms-correlation-request-id": "8f9ee0fe-0ea0-4fc9-86ed-b448541ab5b5", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "c2861f2b-4a72-4bb0-ac4c-219b2c69cf4c", + "x-ms-routing-request-id": "JAPANEAST:20230322T024255Z:8f9ee0fe-0ea0-4fc9-86ed-b448541ab5b5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-66ceece583d36345-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ce522274af3a8f9d7235e069e2fdcbf7", + "traceparent": "00-deb819529522057af251022cc2729f44-25cd6dce5d004247-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "313857b79ac5f919fdde756a158a5b05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:24 GMT", + "Date": "Wed, 22 Mar 2023 02:42:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ce522274af3a8f9d7235e069e2fdcbf7", - "x-ms-correlation-request-id": "140da52a-0d26-4103-b636-53264a2e4612", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-request-id": "305481ae-be56-42c3-8f82-e4c063e36a88", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080125Z:140da52a-0d26-4103-b636-53264a2e4612", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "313857b79ac5f919fdde756a158a5b05", + "x-ms-correlation-request-id": "542d9f27-88ab-458a-acd4-8d54309fa0d7", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "18e62896-733d-47c9-b156-f07af7b3e492", + "x-ms-routing-request-id": "JAPANEAST:20230322T024257Z:542d9f27-88ab-458a-acd4-8d54309fa0d7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-a6a5b39dfadda943-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cabea271578046df6fe2572ee598724b", + "traceparent": "00-deb819529522057af251022cc2729f44-89fa626cf05b149a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "59828fd44c8a7dbd28212004bfd03990", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:28 GMT", + "Date": "Wed, 22 Mar 2023 02:42:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cabea271578046df6fe2572ee598724b", - "x-ms-correlation-request-id": "2c534c33-116e-458c-b014-d23f8324e219", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-request-id": "adc4909d-d46f-477e-9ac4-b7512367a3d3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080129Z:2c534c33-116e-458c-b014-d23f8324e219", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "59828fd44c8a7dbd28212004bfd03990", + "x-ms-correlation-request-id": "e40780ed-4bee-4d63-b49a-11383d81f025", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "8b71ae1e-0a21-4c90-9f2f-e70cda15ebb2", + "x-ms-routing-request-id": "JAPANEAST:20230322T024259Z:e40780ed-4bee-4d63-b49a-11383d81f025", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-78102f4336969b4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f6fbeb3a4780d961c515677db22d51cb", + "traceparent": "00-deb819529522057af251022cc2729f44-b0641541a01d434c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ae3cdc294ca003b4c9335f661216da98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:38 GMT", + "Date": "Wed, 22 Mar 2023 02:43:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f6fbeb3a4780d961c515677db22d51cb", - "x-ms-correlation-request-id": "58055079-ecb9-4731-9566-28b7339b3967", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-request-id": "94480e43-5be8-4671-aa5b-57c774419c4a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080138Z:58055079-ecb9-4731-9566-28b7339b3967", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "ae3cdc294ca003b4c9335f661216da98", + "x-ms-correlation-request-id": "5fd9175a-8879-47b2-8f10-83d3bdfe1433", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "04e7274f-0c26-4e55-a913-11066f9c4162", + "x-ms-routing-request-id": "JAPANEAST:20230322T024304Z:5fd9175a-8879-47b2-8f10-83d3bdfe1433", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-c8d12e202e0e0843-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "23109f316fc21d37420c5f58586eaad9", + "traceparent": "00-deb819529522057af251022cc2729f44-9d0bb56b6df182d0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9c613e1702bb6a6d9abb09a37a14392d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:01:54 GMT", + "Date": "Wed, 22 Mar 2023 02:43:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "23109f316fc21d37420c5f58586eaad9", - "x-ms-correlation-request-id": "3b4246e5-b3b3-42bb-adc2-289e5c949d3b", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-request-id": "8d0b76ad-dc59-4e7e-9c5a-bf1680545cbb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080154Z:3b4246e5-b3b3-42bb-adc2-289e5c949d3b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "9c613e1702bb6a6d9abb09a37a14392d", + "x-ms-correlation-request-id": "8ac1b90a-d47f-4f7a-a179-a369e72b16d2", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "e1ebd745-b9d2-4653-aea7-20b535aee682", + "x-ms-routing-request-id": "JAPANEAST:20230322T024312Z:8ac1b90a-d47f-4f7a-a179-a369e72b16d2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-7cee3722eace0746-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f72f95c2d401297740e4046bef629341", + "traceparent": "00-deb819529522057af251022cc2729f44-9a9ead2a6254bac4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3841e5a4ac4e8764da7f8f56ed566a11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:02:26 GMT", + "Date": "Wed, 22 Mar 2023 02:43:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f72f95c2d401297740e4046bef629341", - "x-ms-correlation-request-id": "34ed143e-6b97-42f8-bed4-72d330e1b4bf", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-request-id": "687a293d-c08e-4ae4-b5f7-565fce0c15f2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080227Z:34ed143e-6b97-42f8-bed4-72d330e1b4bf", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "3841e5a4ac4e8764da7f8f56ed566a11", + "x-ms-correlation-request-id": "f3065ea5-dc07-431a-b624-2b52fab3c7cd", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "e4d48f08-90b1-492e-a113-44b5a62f387a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024328Z:f3065ea5-dc07-431a-b624-2b52fab3c7cd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Running", - "startTime": "2022-07-05T08:01:16.4047318Z" + "startTime": "2023-03-22T02:42:51.6304239Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-13dd585047fd8d47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "46fc8b904f87ca88b4deb473e8098156", + "traceparent": "00-deb819529522057af251022cc2729f44-7e06ae74ed992c00-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "81ed87469d6f26d46fd114e4431088b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "358", + "Content-Length": "356", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:02:59 GMT", + "Date": "Wed, 22 Mar 2023 02:44:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "46fc8b904f87ca88b4deb473e8098156", - "x-ms-correlation-request-id": "05ffbe7a-1979-4d59-9337-807bfc9e0257", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-request-id": "3fc9fbd2-e785-42b2-b907-3c25a4d98b3e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080259Z:05ffbe7a-1979-4d59-9337-807bfc9e0257", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "81ed87469d6f26d46fd114e4431088b4", + "x-ms-correlation-request-id": "8364a615-42b5-4745-b9e5-8a2fef3f6371", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "34bfb791-c971-44c3-bdb8-98b907ef05ac", + "x-ms-routing-request-id": "JAPANEAST:20230322T024401Z:8364a615-42b5-4745-b9e5-8a2fef3f6371", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/ec67fb7e-3c42-4741-8f10-2a627ad48f1a", - "name": "ec67fb7e-3c42-4741-8f10-2a627ad48f1a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", + "name": "2df04dc6-dcbd-41dd-b7d9-ed35237eae1a", "status": "Succeeded", - "startTime": "2022-07-05T08:01:16.4047318Z", - "endTime": "2022-07-05T08:02:36.6788541Z" + "startTime": "2023-03-22T02:42:51.6304239Z", + "endTime": "2023-03-22T02:43:40.8542214Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-3472?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5181?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-dceb2b370d9a1942a61702fa18e00aa1-e421e8ce7eb7364d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1dba8d6b5afe5dc927e7e3de6bcc2edf", + "traceparent": "00-deb819529522057af251022cc2729f44-116900c6aea3d1d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2dc131f9a2d56b4ad9d9c13c73167c43", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1276", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:02:59 GMT", + "Date": "Wed, 22 Mar 2023 02:44:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1dba8d6b5afe5dc927e7e3de6bcc2edf", - "x-ms-correlation-request-id": "576018fb-17db-4514-9c26-ff87a2ddc575", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-request-id": "a0de26a8-6936-4919-a701-82e8d0d42af2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080300Z:576018fb-17db-4514-9c26-ff87a2ddc575", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "2dc131f9a2d56b4ad9d9c13c73167c43", + "x-ms-correlation-request-id": "d7ca403c-b5b5-4ff1-99dc-abe88b98b569", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "14c6e183-abfb-4b6c-9287-7f8730a2b248", + "x-ms-routing-request-id": "JAPANEAST:20230322T024401Z:d7ca403c-b5b5-4ff1-99dc-abe88b98b569", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-3472.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-5181.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-3472", + "hostNamePrefix": "webpubsub-5181", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,375 +580,46 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:01:15.8408965Z", + "createdAt": "2023-03-22T02:42:50.5579523Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:01:15.8408965Z" + "lastModifiedAt": "2023-03-22T02:42:50.5579523Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", - "name": "WebPubSub-3472", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181", + "name": "WebPubSub-5181", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "501", - "Content-Type": "application/json", - "traceparent": "00-7ff3ae60f2b25043892282e64bd64ebe-38239cdada3f1f4c-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ccc71d79637273510d64432320034036", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c409c721-f61c-47b5-a770-40c91bd51062?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1973", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4b6e7c8e-3376-4238-8ef6-62e89d630361", - "x-ms-client-request-id": "ccc71d79637273510d64432320034036", - "x-ms-correlation-request-id": "6bc23d50-d6e1-49ef-b81b-5190e286fd2d", - "x-ms-ratelimit-remaining-subscription-writes": "1184", - "x-ms-request-id": "c409c721-f61c-47b5-a770-40c91bd51062", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080303Z:6bc23d50-d6e1-49ef-b81b-5190e286fd2d" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u00228f407f7c-b85b-499f-8bfd-81bc8c0730f3\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "b1ce2f0e-9b14-4166-adc7-a8056b6dce29", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u00228f407f7c-b85b-499f-8bfd-81bc8c0730f3\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.97f8cf24-b2f8-4ee6-aef7-db2cba481fee" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c409c721-f61c-47b5-a770-40c91bd51062?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7ff3ae60f2b25043892282e64bd64ebe-226353312c760a46-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cafad5b0b54107e43b470f9917a53d23", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "05904287-0e89-4637-b3be-26aee63ccd1b", - "x-ms-client-request-id": "cafad5b0b54107e43b470f9917a53d23", - "x-ms-correlation-request-id": "c6d21f77-a919-4de1-bee8-bbd0a2c05be1", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-request-id": "3d465abd-1da6-416d-adaa-0a35248b29e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080304Z:c6d21f77-a919-4de1-bee8-bbd0a2c05be1" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c409c721-f61c-47b5-a770-40c91bd51062?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7ff3ae60f2b25043892282e64bd64ebe-7f742e8710f08e4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd7baca7cccc0336db9209d244b10662", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "72df9050-3e6c-4a27-853d-7647e6b9d21b", - "x-ms-client-request-id": "bd7baca7cccc0336db9209d244b10662", - "x-ms-correlation-request-id": "2a5eb0a8-ee28-401e-aae5-46f8167ec35b", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-request-id": "a36dfe8d-0f6b-4654-ab03-8391ad90680b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080314Z:2a5eb0a8-ee28-401e-aae5-46f8167ec35b" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c409c721-f61c-47b5-a770-40c91bd51062?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7ff3ae60f2b25043892282e64bd64ebe-bd76499c9b18e847-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a735b057509adf5c8f7256066a91d1c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c5b72b9e-178e-4ddb-a351-fcf1a526bd43", - "x-ms-client-request-id": "4a735b057509adf5c8f7256066a91d1c", - "x-ms-correlation-request-id": "98b3450e-e764-4e7f-92e0-d17ffec74b94", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-request-id": "fb3c3489-b679-4974-9205-1433a7df706b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080334Z:98b3450e-e764-4e7f-92e0-d17ffec74b94" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/c409c721-f61c-47b5-a770-40c91bd51062?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7ff3ae60f2b25043892282e64bd64ebe-9449645290824446-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c0f8fa62a12fe31a9ef6efafab12c28a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f73bd6f4-c4dd-4ca4-b165-b4a321fe32a8", - "x-ms-client-request-id": "c0f8fa62a12fe31a9ef6efafab12c28a", - "x-ms-correlation-request-id": "d177e0f6-25ca-4a5b-a271-6339ba84271f", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-request-id": "91ba139d-2ed1-45e5-879d-d8113e5a27f9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080354Z:d177e0f6-25ca-4a5b-a271-6339ba84271f" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7ff3ae60f2b25043892282e64bd64ebe-eab248bfc40edf43-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bc93ad40f232321ab6cef4d4a6d69d32", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2113", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:54 GMT", - "ETag": "W/\u002287d4c0e4-8e51-43c3-b03b-fc912acce4d3\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "10dfa87a-664e-4835-9944-50c2a39f9998", - "x-ms-client-request-id": "bc93ad40f232321ab6cef4d4a6d69d32", - "x-ms-correlation-request-id": "9230bf7f-373d-45d3-b8ef-0c7286cd677f", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-request-id": "3e1e124b-89a6-42d3-8293-6f85cd4bc913", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080355Z:9230bf7f-373d-45d3-b8ef-0c7286cd677f" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u002287d4c0e4-8e51-43c3-b03b-fc912acce4d3\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "b1ce2f0e-9b14-4166-adc7-a8056b6dce29", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u002287d4c0e4-8e51-43c3-b03b-fc912acce4d3\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.97f8cf24-b2f8-4ee6-aef7-db2cba481fee" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-3472.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-3472/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5181/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b82a47f94109684992a3e13b0fe94764-7e917157bfd4aa4f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "496fed7446b964334090ac12854601b6", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c1f848ed46274d26cf92a36e681a8166", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "733", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:55 GMT", + "Date": "Wed, 22 Mar 2023 02:44:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "496fed7446b964334090ac12854601b6", - "x-ms-correlation-request-id": "c4e28b13-a162-4ad3-ad9a-d1089dfa50ba", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-request-id": "03ccc8fc-430c-4484-b0b8-e78ee5afbaca", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080356Z:c4e28b13-a162-4ad3-ad9a-d1089dfa50ba", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "c1f848ed46274d26cf92a36e681a8166", + "x-ms-correlation-request-id": "d4cc43fc-fd8a-4338-a182-0fe72bd7b7dd", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "de9bff2d-636e-415b-91d3-562489284515", + "x-ms-routing-request-id": "JAPANEAST:20230322T024456Z:d4cc43fc-fd8a-4338-a182-0fe72bd7b7dd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -992,7 +627,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460" }, "groupIds": [ "webpubsub" @@ -1003,344 +638,343 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/privateEndpointConnections/webpubsub-3472.03b0b37c-6d45-442e-8e1c-4731fc342e1c", - "name": "webpubsub-3472.03b0b37c-6d45-442e-8e1c-4731fc342e1c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/privateEndpointConnections/webpubsub-5181.63c207e3-ec5c-4e76-bc27-350fb163f269", + "name": "webpubsub-5181.63c207e3-ec5c-4e76-bc27-350fb163f269", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-3472/privateEndpointConnections/webpubsub-3472.03b0b37c-6d45-442e-8e1c-4731fc342e1c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5181/privateEndpointConnections/webpubsub-5181.63c207e3-ec5c-4e76-bc27-350fb163f269?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-5f9b25c3cd188845-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b8209b35611570eae0c60960ac463cc8", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-bfeea4f19770feeb-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7a49fbe9612e9fc6e062036ccf031a4e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 08:03:56 GMT", + "Date": "Wed, 22 Mar 2023 02:44:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationResults/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationResults/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b8209b35611570eae0c60960ac463cc8", - "x-ms-correlation-request-id": "7a3c55a2-ec96-4fd6-b822-8a47850efd68", - "x-ms-ratelimit-remaining-subscription-deletes": "14987", - "x-ms-request-id": "91afdc8e-da0d-4b55-ab75-44bb1d3bdd45", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080357Z:7a3c55a2-ec96-4fd6-b822-8a47850efd68", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "7a49fbe9612e9fc6e062036ccf031a4e", + "x-ms-correlation-request-id": "2bc64cc5-c7f3-4798-855b-bd30b3f5dd34", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "400eeba3-f89e-493a-a157-dc0ea8c6d5f5", + "x-ms-routing-request-id": "JAPANEAST:20230322T024456Z:2bc64cc5-c7f3-4798-855b-bd30b3f5dd34", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-38cc98d15f0eee4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0b9f3ecce4b5131c03ff69f33dd2b8fa", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-547a971523e58b0a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7db3e3637b8b8b0b8158e0c443ba7dcc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:57 GMT", + "Date": "Wed, 22 Mar 2023 02:44:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0b9f3ecce4b5131c03ff69f33dd2b8fa", - "x-ms-correlation-request-id": "f25de101-6c60-4abe-8545-5e4c2417589d", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-request-id": "2df0b988-6c30-4fa5-b41d-86ec89153f58", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080358Z:f25de101-6c60-4abe-8545-5e4c2417589d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "7db3e3637b8b8b0b8158e0c443ba7dcc", + "x-ms-correlation-request-id": "097bbbae-e078-40f6-b66a-77e2f653c4cd", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "536e51dc-09a2-4e8b-89ca-bd5e7998ccd9", + "x-ms-routing-request-id": "JAPANEAST:20230322T024457Z:097bbbae-e078-40f6-b66a-77e2f653c4cd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-833391777ee37149-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c7b8e453430bbc13ca263ee6e5472ad9", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-c988def12f523ec2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "11e65577eb0c7978d6fffb28c8b235e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:03:58 GMT", + "Date": "Wed, 22 Mar 2023 02:44:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c7b8e453430bbc13ca263ee6e5472ad9", - "x-ms-correlation-request-id": "7c119052-264d-44df-95a3-76159a572368", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-request-id": "7e2c0d6a-c735-4baa-abbb-dd68969cec5f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080359Z:7c119052-264d-44df-95a3-76159a572368", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "11e65577eb0c7978d6fffb28c8b235e1", + "x-ms-correlation-request-id": "8a4bc5be-aa28-4ec8-8e17-28104630c63b", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "8d13c7f7-53ca-444e-be1a-9dfc0fc08e4a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024458Z:8a4bc5be-aa28-4ec8-8e17-28104630c63b", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-c6af4f21c001114b-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6d94981931a67512a027baa30fddbda7", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-e3414f96db962009-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ec093c2d9d4f0cc24b8215958f5f06c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:00 GMT", + "Date": "Wed, 22 Mar 2023 02:44:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6d94981931a67512a027baa30fddbda7", - "x-ms-correlation-request-id": "6720d8fd-31dc-4dcc-9e43-42f0c27acfee", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-request-id": "06f8b70d-afbc-42b7-bef5-dba46a33a34f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080401Z:6720d8fd-31dc-4dcc-9e43-42f0c27acfee", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "ec093c2d9d4f0cc24b8215958f5f06c3", + "x-ms-correlation-request-id": "e217870e-8ea1-4a2a-938f-ae9cfb307be6", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "d81c19a8-e4f9-42bc-b70b-13ddd7b7c40d", + "x-ms-routing-request-id": "JAPANEAST:20230322T024500Z:e217870e-8ea1-4a2a-938f-ae9cfb307be6", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-ec9017ef777ffe48-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "614e8176e44e89642ae3408fa5362dbb", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-b56df4ef21dadb5d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "149ccd88231878ba6b39a68b7fe2c3ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:01 GMT", + "Date": "Wed, 22 Mar 2023 02:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "614e8176e44e89642ae3408fa5362dbb", - "x-ms-correlation-request-id": "2945df56-6741-41e1-aea4-16f61fd88b1a", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-request-id": "6b551f31-1e6a-4771-8ebb-36a592f7a714", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080402Z:2945df56-6741-41e1-aea4-16f61fd88b1a", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "149ccd88231878ba6b39a68b7fe2c3ce", + "x-ms-correlation-request-id": "08373ddc-5367-4740-92fb-4c3f0d8a90a8", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "a96e3570-e59e-4b67-b3a3-a67c716c516f", + "x-ms-routing-request-id": "JAPANEAST:20230322T024501Z:08373ddc-5367-4740-92fb-4c3f0d8a90a8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-8f3714d8b403ec42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a4d98fd44b3e2253d14327e4886faced", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-cb3a43d5fbb8779b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0796ff2390b1da7c92d9c68ad5e3ea77", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:04 GMT", + "Date": "Wed, 22 Mar 2023 02:45:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a4d98fd44b3e2253d14327e4886faced", - "x-ms-correlation-request-id": "10ae7e1f-7d79-400b-affc-428dcc1b4531", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-request-id": "ef1a8d4f-2b81-437a-af7c-d496ad339a55", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080405Z:10ae7e1f-7d79-400b-affc-428dcc1b4531", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "0796ff2390b1da7c92d9c68ad5e3ea77", + "x-ms-correlation-request-id": "c6b7d537-9c76-4173-be16-c16750b98e4f", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "2e4bb8b9-89d7-4e11-a3a3-17279d627fc4", + "x-ms-routing-request-id": "JAPANEAST:20230322T024503Z:c6b7d537-9c76-4173-be16-c16750b98e4f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-914e753efafd9948-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "63709768c8f9358a340a42c2f082d06a", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-3b9f86e83903119a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "faa038f821160ac881918016f6378c69", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:08 GMT", + "Date": "Wed, 22 Mar 2023 02:45:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "63709768c8f9358a340a42c2f082d06a", - "x-ms-correlation-request-id": "674c949f-f087-4cc7-8ed4-ab58619d2483", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-request-id": "51d7e84e-98ef-4d85-897f-86e35a27bf33", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080409Z:674c949f-f087-4cc7-8ed4-ab58619d2483", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "faa038f821160ac881918016f6378c69", + "x-ms-correlation-request-id": "6371194d-3d76-4faf-977a-63c13040e0eb", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "34b9f996-5c91-4dff-bec1-8c2a6459c52e", + "x-ms-routing-request-id": "JAPANEAST:20230322T024508Z:6371194d-3d76-4faf-977a-63c13040e0eb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-81e248bf6974684f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7fcffff918042b692e2c8f0bbd7f01ba", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-764a8f134a1f9a92-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "907246bfffc8f71250c1813e5c30a287", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:18 GMT", + "Date": "Wed, 22 Mar 2023 02:45:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7fcffff918042b692e2c8f0bbd7f01ba", - "x-ms-correlation-request-id": "74b57a38-a1f8-4d06-b053-5b0b348f337a", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-request-id": "3367f80e-70a1-4eec-a61c-8fd0a0fb2036", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080418Z:74b57a38-a1f8-4d06-b053-5b0b348f337a", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "907246bfffc8f71250c1813e5c30a287", + "x-ms-correlation-request-id": "c366a5f8-7275-40ed-aec6-9dd3c7be7012", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "16adcaaf-e537-4853-a79c-8736c90c10a8", + "x-ms-routing-request-id": "JAPANEAST:20230322T024516Z:c366a5f8-7275-40ed-aec6-9dd3c7be7012", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Running", - "startTime": "2022-07-05T08:03:57.0875411Z" + "startTime": "2023-03-22T02:44:56.6244412Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b578d786d0220459cf112ed245273b1-6a9d829f5340c144-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0e265237cac50cc205a470330890314f", + "traceparent": "00-3a80a90301b91e87f8ced595031eaf47-894a00e23df20a7f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "47922f4ec84101b8368c851f1066e45b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "358", + "Content-Length": "356", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:34 GMT", + "Date": "Wed, 22 Mar 2023 02:45:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0e265237cac50cc205a470330890314f", - "x-ms-correlation-request-id": "615921e6-4270-45f1-a4ee-741a007a9e54", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-request-id": "23dbce0d-e185-4989-9a83-2c66b8f7887c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080434Z:615921e6-4270-45f1-a4ee-741a007a9e54", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "47922f4ec84101b8368c851f1066e45b", + "x-ms-correlation-request-id": "28256d2e-5f79-4a85-8913-2706be482715", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "fa8e2c94-33cf-4a54-80b2-6ef01013347f", + "x-ms-routing-request-id": "JAPANEAST:20230322T024533Z:28256d2e-5f79-4a85-8913-2706be482715", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472/operationStatuses/de8f246a-3a0a-4992-8286-2d5feac042fe", - "name": "de8f246a-3a0a-4992-8286-2d5feac042fe", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181/operationStatuses/410e5d02-3d2f-4932-8f97-ec6b1560d71c", + "name": "410e5d02-3d2f-4932-8f97-ec6b1560d71c", "status": "Succeeded", - "startTime": "2022-07-05T08:03:57.0875411Z", - "endTime": "2022-07-05T08:04:25.2137665Z" + "startTime": "2023-03-22T02:44:56.6244412Z", + "endTime": "2023-03-22T02:45:19.1645249Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-3472/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5181/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6b92819efea036448f3201394b37cba1-87bf126b2556c644-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "88ebbc722ca050e92d4535cc387f77b4", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8fca5d4d5a71f9ae25a8aa549f89ae51", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1349,41 +983,41 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:34 GMT", + "Date": "Wed, 22 Mar 2023 02:45:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "88ebbc722ca050e92d4535cc387f77b4", - "x-ms-correlation-request-id": "a0109438-6cf0-458c-9ad4-c2e9f18063aa", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-request-id": "8c95170c-2428-47a3-b84a-d3704fc4b168", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080435Z:a0109438-6cf0-458c-9ad4-c2e9f18063aa", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "8fca5d4d5a71f9ae25a8aa549f89ae51", + "x-ms-correlation-request-id": "30efc1e9-e226-49cb-b03b-46ef37af46ec", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "bfd22c0f-1937-4e5c-bb85-603bb4189b8a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024533Z:30efc1e9-e226-49cb-b03b-46ef37af46ec", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6b55f379a568494eaaf14d5527651d9b-41dd7e06d0619f46-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9e8b8708c15b2ea53cc37a5fa835239d", + "traceparent": "00-5d9cb0efe9e0e45596f61d0311880060-3f3dbfda230e5853-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c6c7f8ee44a4f6278e70593c7af2e7ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2167", + "Content-Length": "2157", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:35 GMT", + "Date": "Wed, 22 Mar 2023 02:45:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1392,32 +1026,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "559724b7-5984-4311-8aba-ca3fb17f97e1", - "x-ms-client-request-id": "9e8b8708c15b2ea53cc37a5fa835239d", - "x-ms-correlation-request-id": "51cb0a75-73b6-499f-a5c3-c275e0b92041", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-request-id": "f5c8990a-8b19-467f-8c04-9494c22d3d18", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080435Z:51cb0a75-73b6-499f-a5c3-c275e0b92041" + "x-ms-arm-service-request-id": "1666c687-e839-4cb8-8d46-eff83d5146a6", + "x-ms-client-request-id": "c6c7f8ee44a4f6278e70593c7af2e7ea", + "x-ms-correlation-request-id": "750824d0-6cd2-4166-9d06-8c206ba48ad7", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "c7237275-5d9a-4942-9e16-c108ff3d730a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024534Z:750824d0-6cd2-4166-9d06-8c206ba48ad7" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u0022ac31a2f2-ad41-47e7-ae88-3056bcfc92ef\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460", + "etag": "W/\u00226bce8816-634b-4c4a-a610-8ae7da718853\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "b1ce2f0e-9b14-4166-adc7-a8056b6dce29", + "resourceGuid": "4c0da1da-5eb6-4f57-9adf-3b2f041097ac", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u0022ac31a2f2-ad41-47e7-ae88-3056bcfc92ef\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460/privateLinkServiceConnections/PrivateEndPoint-2460", + "etag": "W/\u00226bce8816-634b-4c4a-a610-8ae7da718853\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181", "groupIds": [ "webpubsub" ], @@ -1432,11 +1066,11 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/virtualNetworks/Vnet-7072/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.97f8cf24-b2f8-4ee6-aef7-db2cba481fee" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-2460.nic.d521ce2d-ead1-4d26-81f8-2609d6d307b0" } ], "customDnsConfigs": [] @@ -1446,26 +1080,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a338b429ff8d564eb854f2f40c82615a-3c55b80a1e225745-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "019840fb78940b1a69d6e08094f6d386", + "traceparent": "00-f7cc491f54de3ad21c2924b99022bf05-5663c35b954354d4-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fff126dc1265f416819922991e6361ac", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/06be1999-f333-4ec1-baf4-fcf3e34e522f?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e3f79122-a387-4511-b6dd-c842f6bf0533?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 08:04:37 GMT", + "Date": "Wed, 22 Mar 2023 02:45:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/06be1999-f333-4ec1-baf4-fcf3e34e522f?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/e3f79122-a387-4511-b6dd-c842f6bf0533?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1474,23 +1108,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5644af39-048d-4f45-93cf-a58b6a7abe35", - "x-ms-client-request-id": "019840fb78940b1a69d6e08094f6d386", - "x-ms-correlation-request-id": "a401ea88-835d-4883-98c4-5585bc2a0470", - "x-ms-ratelimit-remaining-subscription-deletes": "14986", - "x-ms-request-id": "06be1999-f333-4ec1-baf4-fcf3e34e522f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080437Z:a401ea88-835d-4883-98c4-5585bc2a0470" + "x-ms-arm-service-request-id": "b9916a8a-8372-43e2-b5e9-7dada3166339", + "x-ms-client-request-id": "fff126dc1265f416819922991e6361ac", + "x-ms-correlation-request-id": "e5f1d921-201e-4470-b68f-4cb15095c001", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "e3f79122-a387-4511-b6dd-c842f6bf0533", + "x-ms-routing-request-id": "JAPANEAST:20230322T024534Z:e5f1d921-201e-4470-b68f-4cb15095c001" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/06be1999-f333-4ec1-baf4-fcf3e34e522f?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e3f79122-a387-4511-b6dd-c842f6bf0533?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a338b429ff8d564eb854f2f40c82615a-8d42f8ef05a4e442-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f8d0972276e6901f6d803484e1249a46", + "traceparent": "00-f7cc491f54de3ad21c2924b99022bf05-faa95cd148cc2d2e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7977c0c0ae98dbece2d2450a218dd82a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1499,7 +1133,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:37 GMT", + "Date": "Wed, 22 Mar 2023 02:45:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1509,25 +1143,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "06694ea8-ddac-401e-bf01-cb54f156c134", - "x-ms-client-request-id": "f8d0972276e6901f6d803484e1249a46", - "x-ms-correlation-request-id": "794fb702-abf5-497c-86f6-20828d452f37", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-request-id": "db88cb04-1bdf-400a-93ec-68e075d55714", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080437Z:794fb702-abf5-497c-86f6-20828d452f37" + "x-ms-arm-service-request-id": "fe7a48be-0011-4fdd-97fc-37c2fb136daa", + "x-ms-client-request-id": "7977c0c0ae98dbece2d2450a218dd82a", + "x-ms-correlation-request-id": "7d791b66-bdb4-4d7f-bdcb-8664fe9c51f9", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "858f6812-c142-4176-af91-cb6d94b9ee10", + "x-ms-routing-request-id": "JAPANEAST:20230322T024534Z:7d791b66-bdb4-4d7f-bdcb-8664fe9c51f9" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/06be1999-f333-4ec1-baf4-fcf3e34e522f?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/e3f79122-a387-4511-b6dd-c842f6bf0533?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a338b429ff8d564eb854f2f40c82615a-5616e669477fa14a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "eb33f4efa20a68984ce8e9d72c3c59df", + "traceparent": "00-f7cc491f54de3ad21c2924b99022bf05-1298f7cda9c78ab6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "465ead0ed0c1bf4a6fe8c8911115f30f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1536,7 +1170,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:47 GMT", + "Date": "Wed, 22 Mar 2023 02:45:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1545,46 +1179,45 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d4146c93-a8f2-4bde-a834-e9a22f0ec4ef", - "x-ms-client-request-id": "eb33f4efa20a68984ce8e9d72c3c59df", - "x-ms-correlation-request-id": "f9c7b920-d505-4dec-909b-41d1df97a587", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-request-id": "b3b50df7-3adc-4bf8-8d7c-071264004e29", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080447Z:f9c7b920-d505-4dec-909b-41d1df97a587" + "x-ms-arm-service-request-id": "2313faa0-2671-44a9-87a8-dfb5fb9d4950", + "x-ms-client-request-id": "465ead0ed0c1bf4a6fe8c8911115f30f", + "x-ms-correlation-request-id": "10aae2fe-789b-45e5-82ad-44f25be6ac1d", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "ca94d684-1389-4397-9849-f9335c0ba839", + "x-ms-routing-request-id": "JAPANEAST:20230322T024545Z:10aae2fe-789b-45e5-82ad-44f25be6ac1d" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d20d3a0886147146bdba1f9ddfa2a24a-5a8f2a60b7a7b24f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fc5de82edb25b69f9c9a12845e6ecff2", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5dd8f01be8eb2f14475534ccd8ace7a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1288", + "Content-Length": "1286", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:47 GMT", + "Date": "Wed, 22 Mar 2023 02:45:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fc5de82edb25b69f9c9a12845e6ecff2", - "x-ms-correlation-request-id": "901cb80c-599f-40aa-8940-e6d13dc13b41", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-request-id": "0a4ddcd8-0f17-4a7a-aefc-5917598c6c74", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080448Z:901cb80c-599f-40aa-8940-e6d13dc13b41", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5dd8f01be8eb2f14475534ccd8ace7a8", + "x-ms-correlation-request-id": "703df73e-b3f0-401b-8691-ed20d161df3e", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "f1399f06-3cfe-4f60-84e1-23ea1462b112", + "x-ms-routing-request-id": "JAPANEAST:20230322T024545Z:703df73e-b3f0-401b-8691-ed20d161df3e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1597,8 +1230,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-3472.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-5181.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1607,7 +1240,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-3472", + "hostNamePrefix": "webpubsub-5181", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1642,54 +1275,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:01:15.8408965Z", + "createdAt": "2023-03-22T02:42:50.5579523Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:01:15.8408965Z" + "lastModifiedAt": "2023-03-22T02:42:50.5579523Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-3472", - "name": "WebPubSub-3472", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5181", + "name": "WebPubSub-5181", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-3472?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5181?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2fdf688827c44f42be31cf891643543b-06ddfb89c14ca442-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bded0422bc567fedff68abfe8c486331", + "traceparent": "00-f036d8021ba250f6e77f117fd8d8c53a-4f43b7e3590cf19b-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "53f2d6fc3713f07075b809b0e55bc9cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 08:04:51 GMT", + "Date": "Wed, 22 Mar 2023 02:45:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bded0422bc567fedff68abfe8c486331", - "x-ms-correlation-request-id": "65e8bfa7-5032-42df-8d3b-8768997e13fa", - "x-ms-ratelimit-remaining-subscription-deletes": "14985", - "x-ms-request-id": "081c926b-2f7e-43aa-8519-0625cc2dbc40", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080451Z:65e8bfa7-5032-42df-8d3b-8768997e13fa", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "53f2d6fc3713f07075b809b0e55bc9cc", + "x-ms-correlation-request-id": "0e15932e-d5ce-4131-8869-13dab8754f8c", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "47b2f22f-c579-4271-b521-579637666a7a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024547Z:0e15932e-d5ce-4131-8869-13dab8754f8c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "379482344", + "RandomSeed": "2121078711", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Get.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Get.json index 08f2166738e3..b58bc1a4c5bc 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Get.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/Get.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-5509?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-403?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b1092ccf06651c4a8c944f4703677424-51749a8187e8e842-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ca0dff05953d8b1accaf4bc4fab6a661", + "traceparent": "00-eae8956d56f41e31a7566cb74bce8a77-e8cd71dc6799968d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "802c694148ec4c2bff79753699fade18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:54 GMT", + "Date": "Wed, 22 Mar 2023 02:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27c04bd2-cea3-4865-bc51-92f1b9d98187", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "27c04bd2-cea3-4865-bc51-92f1b9d98187", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075055Z:27c04bd2-cea3-4865-bc51-92f1b9d98187" + "x-ms-correlation-request-id": "18a7aa8f-60f2-4cc3-a7df-bcb4ca6df77e", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "18a7aa8f-60f2-4cc3-a7df-bcb4ca6df77e", + "x-ms-routing-request-id": "JAPANEAST:20230322T025805Z:18a7aa8f-60f2-4cc3-a7df-bcb4ca6df77e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509", - "name": "WebPubSubRG-5509", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403", + "name": "WebPubSubRG-403", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5681?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-4684?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-f98adf6b03157048-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0fa7402655756eec58f08a4b25fa044b", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-1ed2290ad117fa4e-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bf8e14f0d57083ade8b0311dba222aad", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1273", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:50:59 GMT", + "Date": "Wed, 22 Mar 2023 02:58:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationResults/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationResults/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0fa7402655756eec58f08a4b25fa044b", - "x-ms-correlation-request-id": "8f28d8d8-c5b5-4f83-8f7c-83836f0a143a", + "x-ms-client-request-id": "bf8e14f0d57083ade8b0311dba222aad", + "x-ms-correlation-request-id": "b011f247-4fb4-427c-9e3e-d8921800f70e", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "eb25ca2a-1da4-42f9-9404-d9bb887a9ce6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075100Z:8f28d8d8-c5b5-4f83-8f7c-83836f0a143a", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "82cc1a1e-d8fa-4aef-a785-ad7999f660ff", + "x-ms-routing-request-id": "JAPANEAST:20230322T025808Z:b011f247-4fb4-427c-9e3e-d8921800f70e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-5681.webpubsub.azure.com", + "hostName": "webpubsub-4684.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5681", + "hostNamePrefix": "webpubsub-4684", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,407 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:50:57.5215871Z", + "createdAt": "2023-03-22T02:58:06.9272559Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:50:57.5215871Z" + "lastModifiedAt": "2023-03-22T02:58:06.9272559Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", - "name": "WebPubSub-5681", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684", + "name": "WebPubSub-4684", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-2a9e79033f5c504b-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a733346493edb075129f724c0acf65d2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a733346493edb075129f724c0acf65d2", - "x-ms-correlation-request-id": "973d9292-b9cb-40fe-bdfc-273ceb26c87d", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-request-id": "ba8461e7-4fa4-4784-a019-11aa67583a00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075100Z:973d9292-b9cb-40fe-bdfc-273ceb26c87d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", - "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-3e9a3cb16427e44e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1fac00ab06f330228296c74521b6d6a9", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-06ef3f562f6c20a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "32f52687522694d07efd0498f92f4556", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:01 GMT", + "Date": "Wed, 22 Mar 2023 02:58:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1fac00ab06f330228296c74521b6d6a9", - "x-ms-correlation-request-id": "a5d7e0fa-9bad-450c-acc8-fc081abfc926", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-request-id": "5c8539e6-4edc-408a-8f74-3620dca8e943", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075102Z:a5d7e0fa-9bad-450c-acc8-fc081abfc926", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "32f52687522694d07efd0498f92f4556", + "x-ms-correlation-request-id": "74c5aaee-fc10-45c6-872a-76a9a9c03c8e", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "0a3d4617-c489-400b-9c36-9588918b6031", + "x-ms-routing-request-id": "JAPANEAST:20230322T025809Z:74c5aaee-fc10-45c6-872a-76a9a9c03c8e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-d5aee0bab8f78942-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f0e69d135cc7845d64138d9f83710677", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-79a4a53b4b0c92b3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1bda884b813f1b1ed5b9246bc036932b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:03 GMT", + "Date": "Wed, 22 Mar 2023 02:58:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f0e69d135cc7845d64138d9f83710677", - "x-ms-correlation-request-id": "80dc312a-e4d5-4627-9b37-a023a679426b", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-request-id": "c5be0447-4f90-4bf8-b003-fb2979fc9e9e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075103Z:80dc312a-e4d5-4627-9b37-a023a679426b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "1bda884b813f1b1ed5b9246bc036932b", + "x-ms-correlation-request-id": "80a667e7-96d2-4baa-a422-50593390fcb4", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "142a79db-1ea7-4672-940a-9bd050431849", + "x-ms-routing-request-id": "JAPANEAST:20230322T025810Z:80a667e7-96d2-4baa-a422-50593390fcb4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-695ce9614880a744-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "988a61c9bc025ef912022457cb308e5c", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-bcfc7291ccd886dc-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "93950367f82d6b860e0a18f7d0a6dc6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:04 GMT", + "Date": "Wed, 22 Mar 2023 02:58:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "988a61c9bc025ef912022457cb308e5c", - "x-ms-correlation-request-id": "03712116-d95c-4a15-9535-2eaba2b87400", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "f6ef463c-b051-43a3-b723-525d44b1893b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075105Z:03712116-d95c-4a15-9535-2eaba2b87400", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "93950367f82d6b860e0a18f7d0a6dc6b", + "x-ms-correlation-request-id": "3c6a0808-6bad-4e7c-855f-887e9e69416a", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "beb1616b-5a42-4c26-8fb7-b94a10d56248", + "x-ms-routing-request-id": "JAPANEAST:20230322T025811Z:3c6a0808-6bad-4e7c-855f-887e9e69416a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-206f82ef02e77f43-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6c38c9c974e84e0aa228bbdf7883ad11", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-00597691b54742c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "672cbebf2de206ef08d95d6d2e65d447", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:06 GMT", + "Date": "Wed, 22 Mar 2023 02:58:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6c38c9c974e84e0aa228bbdf7883ad11", - "x-ms-correlation-request-id": "5f0b0703-95a7-4751-ab2e-8468a3e7cb3b", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "0b06c3eb-7b02-4cd3-ac4f-2c88b8446de3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075107Z:5f0b0703-95a7-4751-ab2e-8468a3e7cb3b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "672cbebf2de206ef08d95d6d2e65d447", + "x-ms-correlation-request-id": "f7e44052-1112-4cc5-96d3-2d622057cb77", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "567e4601-8a54-4e33-86f9-0933a7d5ca8c", + "x-ms-routing-request-id": "JAPANEAST:20230322T025813Z:f7e44052-1112-4cc5-96d3-2d622057cb77", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-b37639c58c057e4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bf7c4f903d2c57a6a488dec43705b934", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-b9045ecd43ab0079-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f531d969b1995329016e0c3568264b2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:11 GMT", + "Date": "Wed, 22 Mar 2023 02:58:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bf7c4f903d2c57a6a488dec43705b934", - "x-ms-correlation-request-id": "72cdbb63-dd35-4546-a537-e62d6023a22b", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-request-id": "84b47a71-205b-4ca9-beac-498d2efdab68", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075112Z:72cdbb63-dd35-4546-a537-e62d6023a22b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "f531d969b1995329016e0c3568264b2e", + "x-ms-correlation-request-id": "92241a6c-1da7-4c4a-9c98-c8aaebcd3d34", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "e579dda6-2521-4bba-95aa-084e79246244", + "x-ms-routing-request-id": "JAPANEAST:20230322T025815Z:92241a6c-1da7-4c4a-9c98-c8aaebcd3d34", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-2d04db902ac62e40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b9d631849938548f573bf5da0119e58f", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-2a49b49aa402631f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "01acb9dc2c0a3949148f8b539a193da9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:19 GMT", + "Date": "Wed, 22 Mar 2023 02:58:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b9d631849938548f573bf5da0119e58f", - "x-ms-correlation-request-id": "56eaa808-918b-4780-8e31-0cf24c973ba4", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-request-id": "7be8655d-4211-41a7-9958-1019f5d373af", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075120Z:56eaa808-918b-4780-8e31-0cf24c973ba4", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "01acb9dc2c0a3949148f8b539a193da9", + "x-ms-correlation-request-id": "223e9f52-edbd-4a26-9604-cdd0d9876ad2", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "430f9d9b-49f3-4fc1-a989-adea8ae89593", + "x-ms-routing-request-id": "JAPANEAST:20230322T025819Z:223e9f52-edbd-4a26-9604-cdd0d9876ad2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-6db0075c80da2a45-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7bc71355ceb38b3023e1c85f9646179c", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-5e7809f0578967bf-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f78ed036e6750ed195d8667321b99de1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:51:36 GMT", + "Date": "Wed, 22 Mar 2023 02:58:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7bc71355ceb38b3023e1c85f9646179c", - "x-ms-correlation-request-id": "27475a21-9081-4d8a-894c-b4a642c10a47", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "3d80e261-64d4-4ca4-ae4c-5ad4b0abf68c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075136Z:27475a21-9081-4d8a-894c-b4a642c10a47", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "f78ed036e6750ed195d8667321b99de1", + "x-ms-correlation-request-id": "77a4cf65-0c36-434d-93ac-fcd1205de785", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "84453c1a-55f9-46ea-92dd-e35d7745e66f", + "x-ms-routing-request-id": "JAPANEAST:20230322T025828Z:77a4cf65-0c36-434d-93ac-fcd1205de785", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-261384fc8a0a184c-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "465b866ef3acf6d8c02868f048cb568a", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-34f3dd3ff12fab1c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "74912e8dd2b83d3d8ff7e10a25d5b8e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:52:09 GMT", + "Date": "Wed, 22 Mar 2023 02:58:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "465b866ef3acf6d8c02868f048cb568a", - "x-ms-correlation-request-id": "1ac989fa-e831-44f3-9fec-21035de475ef", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "eaa11c81-ec77-4509-b15c-6d673aa94325", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075209Z:1ac989fa-e831-44f3-9fec-21035de475ef", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "74912e8dd2b83d3d8ff7e10a25d5b8e8", + "x-ms-correlation-request-id": "991c16f2-4984-489a-9dc3-04105ce75b8e", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "5fcce36c-dbea-4c54-af3e-bf1d12902508", + "x-ms-routing-request-id": "JAPANEAST:20230322T025844Z:991c16f2-4984-489a-9dc3-04105ce75b8e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Running", - "startTime": "2022-07-05T07:50:58.3075577Z" + "startTime": "2023-03-22T02:58:07.8183876Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-db90a06e352cc043-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "236f4fa33d3eb581014b9657d02fbe10", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-369b9e962e6e2c45-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "98fe63315498f5b9e89e6c31c6d6185a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "358", + "Content-Length": "357", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:52:41 GMT", + "Date": "Wed, 22 Mar 2023 02:59:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "236f4fa33d3eb581014b9657d02fbe10", - "x-ms-correlation-request-id": "3f615444-567b-4ec6-bc59-0c7921c72c49", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "43d16258-cf52-4ba5-bc96-fdb7e338219e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075241Z:3f615444-567b-4ec6-bc59-0c7921c72c49", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "98fe63315498f5b9e89e6c31c6d6185a", + "x-ms-correlation-request-id": "b567a0af-50f5-47b5-af5e-f993772fcda1", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "bcfc6a9a-4f91-490b-9b13-5de69301f319", + "x-ms-routing-request-id": "JAPANEAST:20230322T025917Z:b567a0af-50f5-47b5-af5e-f993772fcda1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/operationStatuses/c935397e-cb41-407f-93b4-4f179b600783", - "name": "c935397e-cb41-407f-93b4-4f179b600783", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/operationStatuses/a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", + "name": "a0db7d81-099c-4d3f-ad5f-011cc3fbb9fa", "status": "Succeeded", - "startTime": "2022-07-05T07:50:58.3075577Z", - "endTime": "2022-07-05T07:52:19.9037288Z" + "startTime": "2023-03-22T02:58:07.8183876Z", + "endTime": "2023-03-22T02:58:57.9646324Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5681?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-4684?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-7c6de57265632c42bcd841070270ddfa-5435032655751f44-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7a6b58249ebd61e23bd0ba8b653f4257", + "traceparent": "00-c9b18428a517f5a989185da1180a33f0-92be732ebec8545d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6cc5a9f2c98763f09351677d05c7e8bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1276", + "Content-Length": "1275", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:52:42 GMT", + "Date": "Wed, 22 Mar 2023 02:59:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7a6b58249ebd61e23bd0ba8b653f4257", - "x-ms-correlation-request-id": "5c4fa0a3-e2b0-48f7-af21-582825e86f5c", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "fb65e10b-5a27-42a9-b05b-3ce422fca5db", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075242Z:5c4fa0a3-e2b0-48f7-af21-582825e86f5c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "6cc5a9f2c98763f09351677d05c7e8bf", + "x-ms-correlation-request-id": "3ad4c820-c6e1-4f5d-903b-2c94e0c63c6e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "34bea9f5-3668-4cc6-9937-c0a473630750", + "x-ms-routing-request-id": "JAPANEAST:20230322T025917Z:3ad4c820-c6e1-4f5d-903b-2c94e0c63c6e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5681.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4684.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5681", + "hostNamePrefix": "webpubsub-4684", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,375 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:50:57.5215871Z", + "createdAt": "2023-03-22T02:58:06.9272559Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:50:57.5215871Z" + "lastModifiedAt": "2023-03-22T02:58:06.9272559Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", - "name": "WebPubSub-5681", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684", + "name": "WebPubSub-4684", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "500", - "Content-Type": "application/json", - "traceparent": "00-ea7d88384baa9843af6228f7e9745cff-44f0dce6d5918649-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "46bc3d8af3d6315e05a545615d812591", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bfc68043-4657-45f5-a5e2-c0a40b654a82?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1972", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:52:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7f70f1e6-05a0-48ba-aaa5-28a2c7513807", - "x-ms-client-request-id": "46bc3d8af3d6315e05a545615d812591", - "x-ms-correlation-request-id": "16930931-303a-403f-afba-ecafb0266637", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "bfc68043-4657-45f5-a5e2-c0a40b654a82", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075246Z:16930931-303a-403f-afba-ecafb0266637" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u00228315e0c5-f203-4489-8c68-0cc2ebbdc4f5\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "6f40b3c1-0044-4aee-b0c3-04f98dbd1234", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u00228315e0c5-f203-4489-8c68-0cc2ebbdc4f5\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.59300c9f-6a2f-4824-b510-7bb77dc178eb" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bfc68043-4657-45f5-a5e2-c0a40b654a82?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ea7d88384baa9843af6228f7e9745cff-b3c8d68f13a0834f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "93cc3e087772313afa3a7518598104b9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:52:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "34290f58-4704-4621-9206-86d3ec816102", - "x-ms-client-request-id": "93cc3e087772313afa3a7518598104b9", - "x-ms-correlation-request-id": "7459f604-c2a3-411e-a46f-3a8420e2b05a", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "a80f0e1d-09a2-494a-90d0-8ad10067b626", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075246Z:7459f604-c2a3-411e-a46f-3a8420e2b05a" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bfc68043-4657-45f5-a5e2-c0a40b654a82?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ea7d88384baa9843af6228f7e9745cff-b3263a57ec0e1547-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0d2029aa5373aff870b8d9c90af0ae0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:52:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "81ba66fb-0a7f-4de2-afe3-354f83f895d1", - "x-ms-client-request-id": "0d2029aa5373aff870b8d9c90af0ae0e", - "x-ms-correlation-request-id": "4ffacb91-fd84-4437-aade-b50e3daab6c3", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-request-id": "562018a1-8bbb-42ae-b4c0-b064cf6ec5ee", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075256Z:4ffacb91-fd84-4437-aade-b50e3daab6c3" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bfc68043-4657-45f5-a5e2-c0a40b654a82?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ea7d88384baa9843af6228f7e9745cff-f073e9166c473e42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1e59825592b4f21e1d9bf42466b4aaec", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2748797d-edbb-433f-aae4-28dbac8d5cbe", - "x-ms-client-request-id": "1e59825592b4f21e1d9bf42466b4aaec", - "x-ms-correlation-request-id": "e241beff-3339-4012-b590-f5a582400985", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-request-id": "d2677a3c-8f5b-4703-bcd7-3390baa669cb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075317Z:e241beff-3339-4012-b590-f5a582400985" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bfc68043-4657-45f5-a5e2-c0a40b654a82?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ea7d88384baa9843af6228f7e9745cff-9e38eb20afec4f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "59c32e0942d5b44f461d22b99d70260a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9d81c2b0-6f20-4bd8-809d-b5fde54d293f", - "x-ms-client-request-id": "59c32e0942d5b44f461d22b99d70260a", - "x-ms-correlation-request-id": "470aa662-468e-41e9-b136-3198abaf5211", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-request-id": "2d414565-04e4-4e0e-80db-12d571eb201f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075337Z:470aa662-468e-41e9-b136-3198abaf5211" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-ea7d88384baa9843af6228f7e9745cff-8e1b776134c55e43-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d6c2668ce52717040a2defd75ed349bc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2112", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:37 GMT", - "ETag": "W/\u0022a1cefeab-519f-4239-8471-ad37437cec4b\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d0bbfe62-8164-47d8-9e7b-5e876b6fba4c", - "x-ms-client-request-id": "d6c2668ce52717040a2defd75ed349bc", - "x-ms-correlation-request-id": "78d35ce7-e917-4a6d-9e3f-f8180e5fb5f7", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-request-id": "202b8f00-a131-4ba2-9e35-5adc69c7da5a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075338Z:78d35ce7-e917-4a6d-9e3f-f8180e5fb5f7" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u0022a1cefeab-519f-4239-8471-ad37437cec4b\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "6f40b3c1-0044-4aee-b0c3-04f98dbd1234", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u0022a1cefeab-519f-4239-8471-ad37437cec4b\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.59300c9f-6a2f-4824-b510-7bb77dc178eb" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-5681.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5681/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-4684/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6ddfadd465b574418b441cc9bcf1b1bb-b328cbc798392e41-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dbbfed0e542d133933a4d897706555ad", + "traceparent": "00-898faccbea2f889316213c8b4ca20e98-2cba41991f6f3b21-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8382adaf0c95399df91ababe026a7469", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "735", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:38 GMT", + "Date": "Wed, 22 Mar 2023 03:00:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "dbbfed0e542d133933a4d897706555ad", - "x-ms-correlation-request-id": "d1e8b3cb-7db7-4521-ae30-e6c7378f5a51", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-request-id": "3ff7bb13-1d95-4e2a-9160-6b38a638c24d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075339Z:d1e8b3cb-7db7-4521-ae30-e6c7378f5a51", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "8382adaf0c95399df91ababe026a7469", + "x-ms-correlation-request-id": "4930ac0e-bda9-4f06-99ee-7a41ec288315", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "37cc9323-c5cf-44f0-93ba-7b081d4c66a0", + "x-ms-routing-request-id": "JAPANEAST:20230322T030013Z:4930ac0e-bda9-4f06-99ee-7a41ec288315", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -992,7 +628,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925" }, "groupIds": [ "webpubsub" @@ -1003,48 +639,48 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/privateEndpointConnections/webpubsub-5681.80cb67cf-23e3-43f7-9f8e-83956a867d7d", - "name": "webpubsub-5681.80cb67cf-23e3-43f7-9f8e-83956a867d7d", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/privateEndpointConnections/webpubsub-4684.db7fd0a8-1351-4ad7-bf61-e88553bb1106", + "name": "webpubsub-4684.db7fd0a8-1351-4ad7-bf61-e88553bb1106", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5681/privateEndpointConnections/webpubsub-5681.80cb67cf-23e3-43f7-9f8e-83956a867d7d?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-4684/privateEndpointConnections/webpubsub-4684.db7fd0a8-1351-4ad7-bf61-e88553bb1106?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-de5c7d6c4a13c443b42dc38732cd6a8e-4e390dfbfdd9c348-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ff97ea74d3f123c429ab4fa752775672", + "traceparent": "00-56166061e64a97b54b9144ab3d998a63-14f11603b236bc1a-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9943be3e5934582cefc0b683dcecfad2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "725", + "Content-Length": "723", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:38 GMT", + "Date": "Wed, 22 Mar 2023 03:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ff97ea74d3f123c429ab4fa752775672", - "x-ms-correlation-request-id": "b77a2f3d-40d8-469b-a635-a502a742979b", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-request-id": "cc9bed68-c49d-4445-9aef-478b1791bf42", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075339Z:b77a2f3d-40d8-469b-a635-a502a742979b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "9943be3e5934582cefc0b683dcecfad2", + "x-ms-correlation-request-id": "866488e5-2831-45b6-adda-4f9b5e4ea97f", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "84b01bb6-bfda-422c-ab56-0f785d6e8977", + "x-ms-routing-request-id": "JAPANEAST:20230322T030014Z:866488e5-2831-45b6-adda-4f9b5e4ea97f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925" }, "groupIds": [ "webpubsub" @@ -1055,29 +691,29 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681/privateEndpointConnections/webpubsub-5681.80cb67cf-23e3-43f7-9f8e-83956a867d7d", - "name": "webpubsub-5681.80cb67cf-23e3-43f7-9f8e-83956a867d7d", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684/privateEndpointConnections/webpubsub-4684.db7fd0a8-1351-4ad7-bf61-e88553bb1106", + "name": "webpubsub-4684.db7fd0a8-1351-4ad7-bf61-e88553bb1106", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4518cc0d3022814b97e80602f872eff6-10ca913aa5d98e44-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b0ab66d44ab038dc2dafa2830d6da7a4", + "traceparent": "00-4241466ff7436bbc976c8b6ff92e7238-930cd541a76c7fce-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "630b82bd68fc33c81e06d7558acea91e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2329", + "Content-Length": "2325", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:39 GMT", + "Date": "Wed, 22 Mar 2023 03:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1086,32 +722,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5fa23459-fe19-4e1f-8594-af51225f866e", - "x-ms-client-request-id": "b0ab66d44ab038dc2dafa2830d6da7a4", - "x-ms-correlation-request-id": "cfbc8894-bfa9-4613-9776-f2e0aa4be8f2", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-request-id": "23928a6b-f395-4e76-aba3-a6d2457cd94e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075339Z:cfbc8894-bfa9-4613-9776-f2e0aa4be8f2" + "x-ms-arm-service-request-id": "d2a5404d-e51d-4b5b-8e14-9d802686251c", + "x-ms-client-request-id": "630b82bd68fc33c81e06d7558acea91e", + "x-ms-correlation-request-id": "214bbaac-a546-410b-bd43-2b8b13231c80", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "cbe8826f-0c6e-4251-892a-4b7b38fea83e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030014Z:214bbaac-a546-410b-bd43-2b8b13231c80" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u0022a1cefeab-519f-4239-8471-ad37437cec4b\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925", + "etag": "W/\u002241a4f1c8-cf8b-4301-aaa6-e6a9a1af9f67\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "6f40b3c1-0044-4aee-b0c3-04f98dbd1234", + "resourceGuid": "93581b1b-26d3-4aa3-986d-81e01fcec500", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u0022a1cefeab-519f-4239-8471-ad37437cec4b\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925/privateLinkServiceConnections/PrivateEndPoint-7925", + "etag": "W/\u002241a4f1c8-cf8b-4301-aaa6-e6a9a1af9f67\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684", "groupIds": [ "webpubsub" ], @@ -1126,16 +762,16 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/virtualNetworks/Vnet-1241/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.59300c9f-6a2f-4824-b510-7bb77dc178eb" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7925.nic.bbb309bb-44c0-459f-92c0-b4edb0573941" } ], "customDnsConfigs": [ { - "fqdn": "webpubsub-5681.webpubsub.azure.com", + "fqdn": "webpubsub-4684.webpubsub.azure.com", "ipAddresses": [ "10.10.2.4" ] @@ -1147,26 +783,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f2e1b57111e99649998fab370d23f135-803b453058e7354a-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "736342d8493b3aca299bb1820491c1bc", + "traceparent": "00-f6e41db2fc8cbd0a585ba3fb76dc3083-fba6c1a6a6b06fe1-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "91462da5e5e75573802a94d4561a5d0c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/20552780-149e-49f8-a87d-7bd5e30f2431?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fc3a15c9-40d4-4a70-a400-96cfff7c416e?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 07:53:39 GMT", + "Date": "Wed, 22 Mar 2023 03:00:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/20552780-149e-49f8-a87d-7bd5e30f2431?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/fc3a15c9-40d4-4a70-a400-96cfff7c416e?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1175,23 +811,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5ee5702e-3795-42e9-b0c3-141d42022751", - "x-ms-client-request-id": "736342d8493b3aca299bb1820491c1bc", - "x-ms-correlation-request-id": "4d8ba57d-c264-4d73-bad2-88aa68bca8bc", + "x-ms-arm-service-request-id": "b42fd86f-0a6f-4312-9bce-aa5ec2328af8", + "x-ms-client-request-id": "91462da5e5e75573802a94d4561a5d0c", + "x-ms-correlation-request-id": "aa0ffebc-0651-4953-aa31-bea9b12ea282", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "20552780-149e-49f8-a87d-7bd5e30f2431", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075340Z:4d8ba57d-c264-4d73-bad2-88aa68bca8bc" + "x-ms-request-id": "fc3a15c9-40d4-4a70-a400-96cfff7c416e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030015Z:aa0ffebc-0651-4953-aa31-bea9b12ea282" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/20552780-149e-49f8-a87d-7bd5e30f2431?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fc3a15c9-40d4-4a70-a400-96cfff7c416e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f2e1b57111e99649998fab370d23f135-6572e776a0e03c41-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0fcfaa04e2138a379c708615985a339c", + "traceparent": "00-f6e41db2fc8cbd0a585ba3fb76dc3083-97714d0ae1278cbd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "afdd981768a6d7ea0fb5e2d1d4f4dc04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1200,7 +836,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:40 GMT", + "Date": "Wed, 22 Mar 2023 03:00:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1210,25 +846,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "99442f99-5fa8-427f-8d5b-9c9c0ebd4d08", - "x-ms-client-request-id": "0fcfaa04e2138a379c708615985a339c", - "x-ms-correlation-request-id": "c9e49551-9cab-47f6-b152-b1da448bdf1a", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-request-id": "7f785016-b1f4-4779-a325-3c4559ed1eb2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075340Z:c9e49551-9cab-47f6-b152-b1da448bdf1a" + "x-ms-arm-service-request-id": "3bc0e698-9e98-420e-a12e-89d53a4cab9c", + "x-ms-client-request-id": "afdd981768a6d7ea0fb5e2d1d4f4dc04", + "x-ms-correlation-request-id": "b8441655-8384-4144-93bc-fc3eb4036cc2", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "02aa1335-e1c4-42e1-a283-ad7c7f3f4c56", + "x-ms-routing-request-id": "JAPANEAST:20230322T030015Z:b8441655-8384-4144-93bc-fc3eb4036cc2" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/20552780-149e-49f8-a87d-7bd5e30f2431?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fc3a15c9-40d4-4a70-a400-96cfff7c416e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f2e1b57111e99649998fab370d23f135-cdc17796e71ae646-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a835e6ee9ca933ea463965dc788709e9", + "traceparent": "00-f6e41db2fc8cbd0a585ba3fb76dc3083-10c0015d6f5f6ce6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a135caa929cc94bec0719cd66b45d4aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1237,7 +873,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:53:50 GMT", + "Date": "Wed, 22 Mar 2023 03:00:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "20", @@ -1247,25 +883,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "712e9b10-876e-439c-bf9e-62981a03c155", - "x-ms-client-request-id": "a835e6ee9ca933ea463965dc788709e9", - "x-ms-correlation-request-id": "cef4d140-4615-4bbb-b23d-c389076293c1", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-request-id": "73014447-582a-43d9-92ad-b148898d6670", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075351Z:cef4d140-4615-4bbb-b23d-c389076293c1" + "x-ms-arm-service-request-id": "a62e170c-75d7-47b0-8f58-f3ad4944507b", + "x-ms-client-request-id": "a135caa929cc94bec0719cd66b45d4aa", + "x-ms-correlation-request-id": "7b81c336-3fac-4b38-9ac3-dda38d91c7f5", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "4dcee769-c514-4976-bb76-5372d3686160", + "x-ms-routing-request-id": "JAPANEAST:20230322T030025Z:7b81c336-3fac-4b38-9ac3-dda38d91c7f5" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/20552780-149e-49f8-a87d-7bd5e30f2431?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/fc3a15c9-40d4-4a70-a400-96cfff7c416e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f2e1b57111e99649998fab370d23f135-05c9362623e6b140-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5a7ef585b1c26ba92e396e491ee790b3", + "traceparent": "00-f6e41db2fc8cbd0a585ba3fb76dc3083-69c2b5d30ac6b41e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bdbd725cae3cb866fd2970a92e9b0001", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1274,7 +910,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:10 GMT", + "Date": "Wed, 22 Mar 2023 03:00:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1283,46 +919,46 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c93c38b4-1448-491d-83d6-c34e6f1f1f88", - "x-ms-client-request-id": "5a7ef585b1c26ba92e396e491ee790b3", - "x-ms-correlation-request-id": "dced94d9-cf1f-4373-99b1-e05389cedaa6", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-request-id": "8b347526-5621-47a8-b646-481ee13aae5e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075411Z:dced94d9-cf1f-4373-99b1-e05389cedaa6" + "x-ms-arm-service-request-id": "6c0a984a-f645-4886-9369-46cf73d3fbaa", + "x-ms-client-request-id": "bdbd725cae3cb866fd2970a92e9b0001", + "x-ms-correlation-request-id": "c918153e-a571-4fe5-a83b-fff28e0528da", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "87d5e9d3-21f8-4b02-9d45-b704ab5c121c", + "x-ms-routing-request-id": "JAPANEAST:20230322T030046Z:c918153e-a571-4fe5-a83b-fff28e0528da" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9c2d968cda954f4e9930d75a31ecfeec-a3ff55d1db3f2640-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a54352b6e0a6712bf9bc9d97d5a1114", + "traceparent": "00-89f4b82cb36a2f75de5f440f2b339e60-f30fcde9de6036c8-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b68575332ca1ee54d948ee34cc146cca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1288", + "Content-Length": "1287", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:10 GMT", + "Date": "Wed, 22 Mar 2023 03:00:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4a54352b6e0a6712bf9bc9d97d5a1114", - "x-ms-correlation-request-id": "04e4a0a8-4d19-4379-aa9b-d310cd30d712", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-request-id": "5333d0bc-4487-4c83-a066-0d32b2921646", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075411Z:04e4a0a8-4d19-4379-aa9b-d310cd30d712", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b68575332ca1ee54d948ee34cc146cca", + "x-ms-correlation-request-id": "466d1e81-81f3-46d0-9541-22e2b092eaf9", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "5ed7daf6-17fe-4022-b17c-3f291ae675fd", + "x-ms-routing-request-id": "JAPANEAST:20230322T030047Z:466d1e81-81f3-46d0-9541-22e2b092eaf9", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1335,8 +971,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5681.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4684.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1345,7 +981,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5681", + "hostNamePrefix": "webpubsub-4684", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1380,54 +1016,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:50:57.5215871Z", + "createdAt": "2023-03-22T02:58:06.9272559Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:50:57.5215871Z" + "lastModifiedAt": "2023-03-22T02:58:06.9272559Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5681", - "name": "WebPubSub-5681", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-4684", + "name": "WebPubSub-4684", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5681?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-4684?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-705d58c0d924e045826f76aa82f5b7b1-45f684f33916d64f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a38f9d66d9dc3cd93cca79702ea1155f", + "traceparent": "00-2001107de3c4786d831dd04fcc6e2143-d8ae527ed246bc87-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "627438e11e37fac8637da4a3b8146624", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 07:54:13 GMT", + "Date": "Wed, 22 Mar 2023 03:00:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a38f9d66d9dc3cd93cca79702ea1155f", - "x-ms-correlation-request-id": "7787a014-d9d0-4155-803f-ff945b76e181", + "x-ms-client-request-id": "627438e11e37fac8637da4a3b8146624", + "x-ms-correlation-request-id": "fd31ec0d-122f-4ac5-beb0-29f3d27e53d9", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "04573cbc-82cc-45f2-b26d-8a09baa8df16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075414Z:7787a014-d9d0-4155-803f-ff945b76e181", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "d2224b64-fae3-4b5b-b752-a5ffe3e5bec8", + "x-ms-routing-request-id": "JAPANEAST:20230322T030048Z:fd31ec0d-122f-4ac5-beb0-29f3d27e53d9", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1967397806", + "RandomSeed": "993618916", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAll.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAll.json index 7284672b6e88..87fc117e0a79 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAll.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAll.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-5509?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-403?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-27cd67cc5ef7f640866a42076c29c611-dc8850980880bb4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9845e1b8bb354b0dcc88fb71d33dfeeb", + "traceparent": "00-4d56f3eb8cda0911010e796c5f7ad411-ca4f0facf0a4e2d6-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b07a43c377497b1b02d0526dc30c5bc2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:14 GMT", + "Date": "Wed, 22 Mar 2023 03:00:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78f1e66d-d40c-44e2-a2c2-214adbe3db55", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-request-id": "78f1e66d-d40c-44e2-a2c2-214adbe3db55", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075414Z:78f1e66d-d40c-44e2-a2c2-214adbe3db55" + "x-ms-correlation-request-id": "c46c6ff9-c014-4a0d-8189-baa15abebb08", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "c46c6ff9-c014-4a0d-8189-baa15abebb08", + "x-ms-routing-request-id": "JAPANEAST:20230322T030049Z:c46c6ff9-c014-4a0d-8189-baa15abebb08" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509", - "name": "WebPubSubRG-5509", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403", + "name": "WebPubSubRG-403", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2522?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-517?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-12a7041e45ca6e4f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bdbea04aea421b2b4f1539d5576cfc4d", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-22f2f80deabe8af1-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d82f3948f25e0482e63aa8580cad9382", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1269", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:18 GMT", + "Date": "Wed, 22 Mar 2023 03:00:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationResults/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationResults/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bdbea04aea421b2b4f1539d5576cfc4d", - "x-ms-correlation-request-id": "1a05d2c6-d260-411b-b3f9-6dc1b9d7922d", + "x-ms-client-request-id": "d82f3948f25e0482e63aa8580cad9382", + "x-ms-correlation-request-id": "f2ce8b80-214c-4694-a051-1b6cfa72dce2", "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "6440c123-c81d-4a5c-9c94-4dd574937b25", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075419Z:1a05d2c6-d260-411b-b3f9-6dc1b9d7922d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "6a1ad0b7-22f5-4ccf-8476-7d9b3794ee93", + "x-ms-routing-request-id": "JAPANEAST:20230322T030053Z:f2ce8b80-214c-4694-a051-1b6cfa72dce2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-2522.webpubsub.azure.com", + "hostName": "webpubsub-517.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2522", + "hostNamePrefix": "webpubsub-517", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,407 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:54:17.3210245Z", + "createdAt": "2023-03-22T03:00:51.3029057Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:54:17.3210245Z" + "lastModifiedAt": "2023-03-22T03:00:51.3029057Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", - "name": "WebPubSub-2522", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517", + "name": "WebPubSub-517", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-5657e952f4543d49-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f9c6ed53902ace78b529481f8238f45f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f9c6ed53902ace78b529481f8238f45f", - "x-ms-correlation-request-id": "b032dd27-1b9d-4066-9980-c7543f1c815f", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-request-id": "d754a3e0-2b0f-4741-9b23-cfe58939b58d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075420Z:b032dd27-1b9d-4066-9980-c7543f1c815f", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-c4aadd176cd89045-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ba65ae8c42cb06b3b0c3d9eb3ef83397", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-dbfef151a74d7169-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "525a2e981e2e5064f8ac623c7322f623", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:20 GMT", + "Date": "Wed, 22 Mar 2023 03:00:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ba65ae8c42cb06b3b0c3d9eb3ef83397", - "x-ms-correlation-request-id": "5b6d7723-013d-4416-9501-b2e6ee7ee963", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-request-id": "008cc70b-4a66-4913-a720-f74ef3766dff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075421Z:5b6d7723-013d-4416-9501-b2e6ee7ee963", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "525a2e981e2e5064f8ac623c7322f623", + "x-ms-correlation-request-id": "27395969-8141-46e4-b3d8-5794c24aa8b1", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "aa4a8993-f3c3-4eaf-a370-cac7b25fc039", + "x-ms-routing-request-id": "JAPANEAST:20230322T030054Z:27395969-8141-46e4-b3d8-5794c24aa8b1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-67905f757989d548-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6a81fb1102a67b23a0a4060efacf78ab", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-1fa6400ed497e144-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7011eabfbef93d3da0cd7dab17e5d2be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:22 GMT", + "Date": "Wed, 22 Mar 2023 03:00:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6a81fb1102a67b23a0a4060efacf78ab", - "x-ms-correlation-request-id": "5aef1d4b-809e-4a98-8bed-70751af25ca5", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-request-id": "7a09763e-4c44-4217-ba27-f0751829b58a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075423Z:5aef1d4b-809e-4a98-8bed-70751af25ca5", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "7011eabfbef93d3da0cd7dab17e5d2be", + "x-ms-correlation-request-id": "3a5726dd-49ce-444a-9c2a-30eb105f0546", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "db0f0112-d1a6-4b8f-b368-816c001d9f31", + "x-ms-routing-request-id": "JAPANEAST:20230322T030055Z:3a5726dd-49ce-444a-9c2a-30eb105f0546", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-143e627284408746-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3aa64b634952117239c04866b68d8fbd", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-50e875d68048607f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dec0ea474052925437110b0ba75bee38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:23 GMT", + "Date": "Wed, 22 Mar 2023 03:00:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3aa64b634952117239c04866b68d8fbd", - "x-ms-correlation-request-id": "ef2a9940-2ca8-426c-b08a-dda81ecda3ad", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-request-id": "88b8a47d-c72c-4b77-90c7-7fd35cb80f14", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075424Z:ef2a9940-2ca8-426c-b08a-dda81ecda3ad", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "dec0ea474052925437110b0ba75bee38", + "x-ms-correlation-request-id": "3c3c7d99-2f18-49c8-95fe-c4ce7eaac757", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "5b0d4bce-06b3-4926-a90a-2ddd95958e8e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030057Z:3c3c7d99-2f18-49c8-95fe-c4ce7eaac757", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-3242ad176c065743-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "860eb1f689b689b98aea19263ca50be1", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-1d141ed392d7ed27-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "46ddb7bd8316d9c3f01db161a1b93912", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:26 GMT", + "Date": "Wed, 22 Mar 2023 03:00:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "860eb1f689b689b98aea19263ca50be1", - "x-ms-correlation-request-id": "8053c5cd-216b-4b3d-a9ec-d88441820ecb", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-request-id": "a3116153-37e5-4b4e-89bb-a89a09c9af98", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075427Z:8053c5cd-216b-4b3d-a9ec-d88441820ecb", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "46ddb7bd8316d9c3f01db161a1b93912", + "x-ms-correlation-request-id": "7a3a6e23-c16f-410a-a978-ec62350c3457", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "297bc215-ab18-41fa-b106-ccab57eeb12d", + "x-ms-routing-request-id": "JAPANEAST:20230322T030059Z:7a3a6e23-c16f-410a-a978-ec62350c3457", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-2400764be58ceb45-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f3882e4bf852c844887030e5b9bcc413", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-592ca79a7654f1f7-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "88f5a4d917627ed0967e38e8b2329544", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:31 GMT", + "Date": "Wed, 22 Mar 2023 03:01:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f3882e4bf852c844887030e5b9bcc413", - "x-ms-correlation-request-id": "f3564810-0105-4e0f-bee1-1e987b3cd06c", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-request-id": "1a9565c7-defc-42fd-b225-b62df0f4f7e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075431Z:f3564810-0105-4e0f-bee1-1e987b3cd06c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "88f5a4d917627ed0967e38e8b2329544", + "x-ms-correlation-request-id": "776971a7-050f-43f0-a892-aff102e5a0be", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "009e99af-00d0-41a7-98bf-0e1f553c5948", + "x-ms-routing-request-id": "JAPANEAST:20230322T030101Z:776971a7-050f-43f0-a892-aff102e5a0be", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-8d984a377d2d784d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "49184814f1c1d9f5911daf68304bd494", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-41540b035809f0c9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5fed44de8c08c3a827e6ee358ff3f17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:40 GMT", + "Date": "Wed, 22 Mar 2023 03:01:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "49184814f1c1d9f5911daf68304bd494", - "x-ms-correlation-request-id": "6fb71cbf-bfb8-4b33-9d9d-1b3071727d25", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-request-id": "9359e6d5-0533-4b7b-bdb5-0ab31a4a90ed", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075440Z:6fb71cbf-bfb8-4b33-9d9d-1b3071727d25", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5fed44de8c08c3a827e6ee358ff3f17e", + "x-ms-correlation-request-id": "4277b03e-80e6-41d8-a6d6-bd77cb03d9cd", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "b388bcb6-7608-4a6a-a0e5-01cc2022be57", + "x-ms-routing-request-id": "JAPANEAST:20230322T030106Z:4277b03e-80e6-41d8-a6d6-bd77cb03d9cd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-31e67a7502f6c449-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "881b67b49c05fd6b6d45fe4558d3cfce", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-ba7cc71810bdf5ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0331f9d86666a5d6e75fb0974bdb27be", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:54:56 GMT", + "Date": "Wed, 22 Mar 2023 03:01:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "881b67b49c05fd6b6d45fe4558d3cfce", - "x-ms-correlation-request-id": "3a73183e-1cae-4537-8274-517835bdda57", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-request-id": "9831e2fe-9971-4f2a-aaa7-d787cbb5e080", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075456Z:3a73183e-1cae-4537-8274-517835bdda57", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "0331f9d86666a5d6e75fb0974bdb27be", + "x-ms-correlation-request-id": "a013a19d-85eb-4d96-870c-e862f6052102", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "3c34addc-4f65-4401-9ca6-39d4d13d3d2d", + "x-ms-routing-request-id": "JAPANEAST:20230322T030114Z:a013a19d-85eb-4d96-870c-e862f6052102", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-b8421cd7897f0d45-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f3110525c28c5a2038ae613548db983d", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-de0e3f4f84bc710e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5d836c87d9cb4d0afc31617c299beea3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "315", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:55:28 GMT", + "Date": "Wed, 22 Mar 2023 03:01:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f3110525c28c5a2038ae613548db983d", - "x-ms-correlation-request-id": "35c751cf-ec25-4ead-ba7f-77927eda7aca", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-request-id": "7341739d-293c-49ad-82a5-dc86c115ee82", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075528Z:35c751cf-ec25-4ead-ba7f-77927eda7aca", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5d836c87d9cb4d0afc31617c299beea3", + "x-ms-correlation-request-id": "10afe70d-247c-492a-8ca5-5cbd3d726e62", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "f4d919d8-0b12-46d1-ae37-3f13f85f80d1", + "x-ms-routing-request-id": "JAPANEAST:20230322T030131Z:10afe70d-247c-492a-8ca5-5cbd3d726e62", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Running", - "startTime": "2022-07-05T07:54:18.3278182Z" + "startTime": "2023-03-22T03:00:52.4092539Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-6d4ad9edcd420546-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "52319c9c3ba1780edd1adc7bf3af80bd", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-75cd4bc6a11ecf63-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b910ba8d920077de6e4778a8db10784c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "358", + "Content-Length": "356", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:00 GMT", + "Date": "Wed, 22 Mar 2023 03:02:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "52319c9c3ba1780edd1adc7bf3af80bd", - "x-ms-correlation-request-id": "fc8d4231-1fc1-4610-9c4a-3fd7a5ef6d5f", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-request-id": "c60ed614-3ef5-478d-8df2-2442e8017fe1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075601Z:fc8d4231-1fc1-4610-9c4a-3fd7a5ef6d5f", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b910ba8d920077de6e4778a8db10784c", + "x-ms-correlation-request-id": "24c28ac8-c6a1-41b9-8189-75873de56cb4", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "70e3e91b-2d46-4e29-b676-b9f5c5f589eb", + "x-ms-routing-request-id": "JAPANEAST:20230322T030204Z:24c28ac8-c6a1-41b9-8189-75873de56cb4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/operationStatuses/2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", - "name": "2ac1a112-1349-4df8-8e0f-fc77b3ed00d5", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/operationStatuses/5c6fcc4d-8f97-4178-af12-ec90d4d71968", + "name": "5c6fcc4d-8f97-4178-af12-ec90d4d71968", "status": "Succeeded", - "startTime": "2022-07-05T07:54:18.3278182Z", - "endTime": "2022-07-05T07:55:59.5020335Z" + "startTime": "2023-03-22T03:00:52.4092539Z", + "endTime": "2023-03-22T03:01:42.5789278Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2522?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-517?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2704493f3b57804aba28495265c0a8f7-5f1e9b10634f9f41-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2a42e14de139f20746c150563a36b491", + "traceparent": "00-0c201429a6a1f11e82f95eb4a7a2b98b-6e9e61de85e5c09b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "23ad2fbf946ffeb2efe3063404597c4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1276", + "Content-Length": "1271", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:01 GMT", + "Date": "Wed, 22 Mar 2023 03:02:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2a42e14de139f20746c150563a36b491", - "x-ms-correlation-request-id": "a3d070ba-0ef7-41f2-acca-e0c7a0bc8494", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-request-id": "47772175-04a3-4307-b15d-2d7e901f1ace", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075601Z:a3d070ba-0ef7-41f2-acca-e0c7a0bc8494", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "23ad2fbf946ffeb2efe3063404597c4b", + "x-ms-correlation-request-id": "2407817f-6d82-4702-8651-67703b841aa9", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "9a977cc8-ab7d-408e-a2e3-ff36aa5a475c", + "x-ms-routing-request-id": "JAPANEAST:20230322T030204Z:2407817f-6d82-4702-8651-67703b841aa9", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-2522.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-517.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2522", + "hostNamePrefix": "webpubsub-517", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,27 +580,27 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:54:17.3210245Z", + "createdAt": "2023-03-22T03:00:51.3029057Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:54:17.3210245Z" + "lastModifiedAt": "2023-03-22T03:00:51.3029057Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", - "name": "WebPubSub-2522", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517", + "name": "WebPubSub-517", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2522/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-517/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2446d28b12efcf489c58d982f364188a-bfc4a7a7b4d3c740-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bca9c0ad7ca2ea2df7991672e6a56788", + "traceparent": "00-e9d7db0bb3d6161502309e181a757d66-1aeafa1dc8f3896d-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "91090d706dcbf4bd8e0bee83616172eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -645,380 +609,52 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:01 GMT", + "Date": "Wed, 22 Mar 2023 03:02:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bca9c0ad7ca2ea2df7991672e6a56788", - "x-ms-correlation-request-id": "039a65ee-bfd3-4112-8d3d-057139e15cff", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-request-id": "0bdbee32-edf5-467e-a14c-61947403be7e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075602Z:039a65ee-bfd3-4112-8d3d-057139e15cff", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "91090d706dcbf4bd8e0bee83616172eb", + "x-ms-correlation-request-id": "ec71076b-5232-402c-8d83-3f624edfcb27", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "26188975-bbba-49cc-a806-a87b3eee9c22", + "x-ms-routing-request-id": "JAPANEAST:20230322T030205Z:ec71076b-5232-402c-8d83-3f624edfcb27", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "500", - "Content-Type": "application/json", - "traceparent": "00-51b374e2d22068499fedb823e0904fd5-3e5f7ccff2144846-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "67e7a42e6e99bb03953f0ce0ebb83ea7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f72aceac-1adc-4a13-be54-9dc5c5ad6d71?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1972", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c927461f-69f4-44ee-a664-44365c179bb7", - "x-ms-client-request-id": "67e7a42e6e99bb03953f0ce0ebb83ea7", - "x-ms-correlation-request-id": "2a231663-98be-487e-9d31-03446804c59f", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "f72aceac-1adc-4a13-be54-9dc5c5ad6d71", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075606Z:2a231663-98be-487e-9d31-03446804c59f" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u00225ee4e9a3-e4c2-4c0e-891a-26aa4787ae28\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "cb8b8b01-583d-479f-9225-bfec1039274e", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u00225ee4e9a3-e4c2-4c0e-891a-26aa4787ae28\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.7489364a-a1ec-4a56-8e15-11bc4493dfff" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f72aceac-1adc-4a13-be54-9dc5c5ad6d71?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-51b374e2d22068499fedb823e0904fd5-200e2e36a10c384e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9628c7594d4e3ff8bdee27626f4dff3f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "eca83791-ab6c-4e12-bb9b-4455819a3b29", - "x-ms-client-request-id": "9628c7594d4e3ff8bdee27626f4dff3f", - "x-ms-correlation-request-id": "ba280245-6ffd-43a2-ab5d-ee380f888ea4", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-request-id": "70f88c27-91b4-4758-ac44-8238f9e6bacc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075606Z:ba280245-6ffd-43a2-ab5d-ee380f888ea4" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f72aceac-1adc-4a13-be54-9dc5c5ad6d71?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-51b374e2d22068499fedb823e0904fd5-26bb2e670edeac4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9b0b6f5a34d76a828816b2413a62f0ff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c4782b02-c0f4-403b-b280-a22f99704ac9", - "x-ms-client-request-id": "9b0b6f5a34d76a828816b2413a62f0ff", - "x-ms-correlation-request-id": "a1b09732-d05b-4702-9486-02fdeaf4ca77", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-request-id": "15401081-54d4-483a-91b6-cbb60fdeb14c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075616Z:a1b09732-d05b-4702-9486-02fdeaf4ca77" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f72aceac-1adc-4a13-be54-9dc5c5ad6d71?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-51b374e2d22068499fedb823e0904fd5-26ca4b207153d54d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "24866b33a8901858528e74189cb86167", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0cd5429d-9c19-4c35-a447-c260eb0e71c7", - "x-ms-client-request-id": "24866b33a8901858528e74189cb86167", - "x-ms-correlation-request-id": "a43131c8-81d1-4f7d-aeb7-0ee76f736960", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-request-id": "1f025d2a-8023-4665-b1b4-9de84fe384e7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075637Z:a43131c8-81d1-4f7d-aeb7-0ee76f736960" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/f72aceac-1adc-4a13-be54-9dc5c5ad6d71?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-51b374e2d22068499fedb823e0904fd5-22b7c0980578f148-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5b45f458708924c944bd0d389ab6045a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e1a24ad8-a811-4610-b2b5-b8dbf172ffcf", - "x-ms-client-request-id": "5b45f458708924c944bd0d389ab6045a", - "x-ms-correlation-request-id": "36342f33-0660-45e2-b707-e38bef877c64", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-request-id": "25dd0e2c-001e-41d6-b14e-02bf60cb6ad2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075657Z:36342f33-0660-45e2-b707-e38bef877c64" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-51b374e2d22068499fedb823e0904fd5-79aedc0aecf35746-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "032f27fddbc6b2ae17f34949c06acdd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2112", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:58 GMT", - "ETag": "W/\u0022392b3481-8cf7-4d83-b28f-150e661b929f\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "42143dca-0fa8-48a4-9d49-0de5bd48bd93", - "x-ms-client-request-id": "032f27fddbc6b2ae17f34949c06acdd0", - "x-ms-correlation-request-id": "a86819ea-7a42-43e7-931b-29a018d3337e", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-request-id": "4852d143-55d2-473a-a0cd-dc4472fb919b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075658Z:a86819ea-7a42-43e7-931b-29a018d3337e" - }, - "ResponseBody": { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u0022392b3481-8cf7-4d83-b28f-150e661b929f\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "cb8b8b01-583d-479f-9225-bfec1039274e", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u0022392b3481-8cf7-4d83-b28f-150e661b929f\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.7489364a-a1ec-4a56-8e15-11bc4493dfff" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-2522.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2522/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-517/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-804bfc2dddc41141bb0147d06f5ebbde-8afcf919b49c4a4f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "46e84bb4941cc376a261dfd29b1f7d9b", + "traceparent": "00-e3e18f85506570c9ea788a0aafb41b35-5a39742c524c1079-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85e5b7be88020b62d7de3a8426484ea8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "732", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:59 GMT", + "Date": "Wed, 22 Mar 2023 03:03:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "46e84bb4941cc376a261dfd29b1f7d9b", - "x-ms-correlation-request-id": "ab5cd566-06fa-4237-b2a4-16bed42eff1d", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-request-id": "d88b4a20-ff10-425a-9916-9b425f658376", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075659Z:ab5cd566-06fa-4237-b2a4-16bed42eff1d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "85e5b7be88020b62d7de3a8426484ea8", + "x-ms-correlation-request-id": "45db5408-85bf-4202-8c71-90e1a87f19b2", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "521b5efc-96b8-44b8-99b5-09de0e17ece7", + "x-ms-routing-request-id": "JAPANEAST:20230322T030301Z:45db5408-85bf-4202-8c71-90e1a87f19b2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1026,7 +662,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925" }, "groupIds": [ "webpubsub" @@ -1037,31 +673,31 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522/privateEndpointConnections/webpubsub-2522.4c80cc23-da47-45be-a34e-116eabdb8646", - "name": "webpubsub-2522.4c80cc23-da47-45be-a34e-116eabdb8646", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517/privateEndpointConnections/webpubsub-517.57ac4171-ce7d-4dfb-8049-c3d3030757ee", + "name": "webpubsub-517.57ac4171-ce7d-4dfb-8049-c3d3030757ee", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8f3203cadb8c464ab0666c339ae0d3e6-de3bc4c4e001e74b-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "741a1a8a5d897da045934496278064da", + "traceparent": "00-7765ee959abf9cc8be766781d29e7106-13a64941bd2506b7-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ad3be723458257d9fab66a0704cc1b4a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2329", + "Content-Length": "2323", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:56:59 GMT", + "Date": "Wed, 22 Mar 2023 03:03:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1070,32 +706,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5f208275-8775-4ebd-951d-895f76914218", - "x-ms-client-request-id": "741a1a8a5d897da045934496278064da", - "x-ms-correlation-request-id": "dfe71b5b-4063-4374-b95f-cd0b382e21f3", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-request-id": "ecd36406-7ce3-4c74-9dbe-66733bc625b1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075659Z:dfe71b5b-4063-4374-b95f-cd0b382e21f3" + "x-ms-arm-service-request-id": "cca0bb54-b5a4-42ca-9037-3f622856fd53", + "x-ms-client-request-id": "ad3be723458257d9fab66a0704cc1b4a", + "x-ms-correlation-request-id": "3bb14735-1438-418a-930e-4d56d65aa922", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "f7ccceda-6495-47ea-8b94-d1390d8971e0", + "x-ms-routing-request-id": "JAPANEAST:20230322T030302Z:3bb14735-1438-418a-930e-4d56d65aa922" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918", - "etag": "W/\u0022392b3481-8cf7-4d83-b28f-150e661b929f\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925", + "etag": "W/\u0022b77e13f7-233b-4029-bed1-a7585a96279a\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "cb8b8b01-583d-479f-9225-bfec1039274e", + "resourceGuid": "dc618672-905e-47a5-89a1-ab41fabcfcdb", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-8918", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918/privateLinkServiceConnections/PrivateEndPoint-8918", - "etag": "W/\u0022392b3481-8cf7-4d83-b28f-150e661b929f\u0022", + "name": "PrivateEndPoint-7925", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925/privateLinkServiceConnections/PrivateEndPoint-7925", + "etag": "W/\u0022b77e13f7-233b-4029-bed1-a7585a96279a\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517", "groupIds": [ "webpubsub" ], @@ -1110,16 +746,16 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/virtualNetworks/Vnet-1241/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-8918.nic.7489364a-a1ec-4a56-8e15-11bc4493dfff" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7925.nic.8230b341-d653-4cda-9251-d25149cf2269" } ], "customDnsConfigs": [ { - "fqdn": "webpubsub-2522.webpubsub.azure.com", + "fqdn": "webpubsub-517.webpubsub.azure.com", "ipAddresses": [ "10.10.2.4" ] @@ -1131,26 +767,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-8918?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7925?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b4ffc0a96b9eab49a021197df4bfa929-180e9486dacf1549-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4f843df0bdce693db16b6165fbdc16f7", + "traceparent": "00-91b6cab277d887bbd5b1ce710b8d828e-4c68ae5bf8614392-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "43719035e94133094e398f18bd31ee18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d0af07fa-586c-4212-8494-6ddf20966379?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/575beff7-724f-4596-9cb3-76a814e3b3c9?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 07:57:00 GMT", + "Date": "Wed, 22 Mar 2023 03:03:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/d0af07fa-586c-4212-8494-6ddf20966379?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/575beff7-724f-4596-9cb3-76a814e3b3c9?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1159,23 +795,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0a9adf44-7a35-4295-a114-1372da0aa3a6", - "x-ms-client-request-id": "4f843df0bdce693db16b6165fbdc16f7", - "x-ms-correlation-request-id": "0ae91f43-ee07-4022-bb38-fb98bdf030ff", + "x-ms-arm-service-request-id": "10e5f766-78a3-42fb-8608-4046b8135aeb", + "x-ms-client-request-id": "43719035e94133094e398f18bd31ee18", + "x-ms-correlation-request-id": "c87dd5b2-f6c1-40fb-abd4-6b9a4d086969", "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-request-id": "d0af07fa-586c-4212-8494-6ddf20966379", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075700Z:0ae91f43-ee07-4022-bb38-fb98bdf030ff" + "x-ms-request-id": "575beff7-724f-4596-9cb3-76a814e3b3c9", + "x-ms-routing-request-id": "JAPANEAST:20230322T030302Z:c87dd5b2-f6c1-40fb-abd4-6b9a4d086969" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d0af07fa-586c-4212-8494-6ddf20966379?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/575beff7-724f-4596-9cb3-76a814e3b3c9?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b4ffc0a96b9eab49a021197df4bfa929-b22d60028f11174f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5de104fc2e9acccddcb1c31dfc3a8168", + "traceparent": "00-91b6cab277d887bbd5b1ce710b8d828e-aa6a9ba7b20f1803-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "954fefc30ad73967dd085e49b5c199c8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1184,7 +820,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:00 GMT", + "Date": "Wed, 22 Mar 2023 03:03:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1194,25 +830,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "753dde28-46a4-411a-aea9-b1bcaf868711", - "x-ms-client-request-id": "5de104fc2e9acccddcb1c31dfc3a8168", - "x-ms-correlation-request-id": "ecc2c797-32fe-4967-a352-0ac999c205f7", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-request-id": "5aebceaf-736f-4db5-914c-c2e70c0a2275", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075700Z:ecc2c797-32fe-4967-a352-0ac999c205f7" + "x-ms-arm-service-request-id": "a35d4f10-1d69-4efa-b1ff-5f7020d57987", + "x-ms-client-request-id": "954fefc30ad73967dd085e49b5c199c8", + "x-ms-correlation-request-id": "c0275a02-eac7-460b-a961-85fb6c663f79", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "7d7ea7d9-0de3-41e8-bbec-f16a78904007", + "x-ms-routing-request-id": "JAPANEAST:20230322T030303Z:c0275a02-eac7-460b-a961-85fb6c663f79" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d0af07fa-586c-4212-8494-6ddf20966379?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/575beff7-724f-4596-9cb3-76a814e3b3c9?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b4ffc0a96b9eab49a021197df4bfa929-5518ac644ea3fb47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "79204c7cbfc0978af62da363bbb418d0", + "traceparent": "00-91b6cab277d887bbd5b1ce710b8d828e-c4f3a01e13eeb84b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "49e651c850586e9847f865b35ebe15f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1221,7 +857,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:10 GMT", + "Date": "Wed, 22 Mar 2023 03:03:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "20", @@ -1231,25 +867,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5fe5003e-60ae-40e5-9ebb-2f041a0b6665", - "x-ms-client-request-id": "79204c7cbfc0978af62da363bbb418d0", - "x-ms-correlation-request-id": "65dc2faa-db1f-4edb-994d-5ef84acfaf17", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-request-id": "7b5b4d7d-c60f-4b97-ac20-56354261d10f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075711Z:65dc2faa-db1f-4edb-994d-5ef84acfaf17" + "x-ms-arm-service-request-id": "a101b5be-cf71-4c5c-9302-f6d5259160be", + "x-ms-client-request-id": "49e651c850586e9847f865b35ebe15f4", + "x-ms-correlation-request-id": "9ca7ce6d-415c-4267-a78d-2edaceab48ce", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "927d5a2d-aaf6-4b39-b4cf-f3cc2c255ba1", + "x-ms-routing-request-id": "JAPANEAST:20230322T030313Z:9ca7ce6d-415c-4267-a78d-2edaceab48ce" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d0af07fa-586c-4212-8494-6ddf20966379?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/575beff7-724f-4596-9cb3-76a814e3b3c9?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b4ffc0a96b9eab49a021197df4bfa929-ddfa9a07e7ac6543-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f7683ecfb9fb465ddff2c99e94295a70", + "traceparent": "00-91b6cab277d887bbd5b1ce710b8d828e-ab28e93cb47eebd0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cd55843258e21641533beca968ffc31d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1258,7 +894,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:31 GMT", + "Date": "Wed, 22 Mar 2023 03:03:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1267,46 +903,46 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bb55dbe2-f0b7-4c5e-baba-3c080d240b98", - "x-ms-client-request-id": "f7683ecfb9fb465ddff2c99e94295a70", - "x-ms-correlation-request-id": "b2e89857-5c4b-4ed1-a2ce-1a3175d1e868", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-request-id": "e1e5812d-ea97-4c8c-9082-1e424fe40d43", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075731Z:b2e89857-5c4b-4ed1-a2ce-1a3175d1e868" + "x-ms-arm-service-request-id": "fb14187a-7b50-4b62-8a2f-5c2a8c4c45d9", + "x-ms-client-request-id": "cd55843258e21641533beca968ffc31d", + "x-ms-correlation-request-id": "b11253ba-7776-4067-87fd-be35027245b3", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "bbbdfef6-12e7-433e-bd88-a941319e1373", + "x-ms-routing-request-id": "JAPANEAST:20230322T030334Z:b11253ba-7776-4067-87fd-be35027245b3" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6dd4f0d67c41db40b6b45881cf9febf6-6514a4ddafb5a944-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "040c99e822bf3d61794a676d8b691028", + "traceparent": "00-d445559bd797dcdcbd359fb58e22a07a-e9942f68ec46097d-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cc83c2f3bd7472b257e04edea5b3da1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1288", + "Content-Length": "1283", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:31 GMT", + "Date": "Wed, 22 Mar 2023 03:03:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "040c99e822bf3d61794a676d8b691028", - "x-ms-correlation-request-id": "29e165a7-bb17-43b5-8c6b-6f1818d3c655", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-request-id": "c5ec5c53-e685-44b1-b9ae-cabbc4ab9eeb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075731Z:29e165a7-bb17-43b5-8c6b-6f1818d3c655", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "cc83c2f3bd7472b257e04edea5b3da1e", + "x-ms-correlation-request-id": "f5f574e3-4950-4f7a-b9bb-0e99f613692a", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "3195b0c7-6e10-4d7b-9d32-8d02232f7fa2", + "x-ms-routing-request-id": "JAPANEAST:20230322T030334Z:f5f574e3-4950-4f7a-b9bb-0e99f613692a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1319,8 +955,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-2522.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-517.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1329,7 +965,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2522", + "hostNamePrefix": "webpubsub-517", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1364,54 +1000,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T07:54:17.3210245Z", + "createdAt": "2023-03-22T03:00:51.3029057Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T07:54:17.3210245Z" + "lastModifiedAt": "2023-03-22T03:00:51.3029057Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-2522", - "name": "WebPubSub-2522", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-517", + "name": "WebPubSub-517", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.SignalRService/webPubSub/WebPubSub-2522?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403/providers/Microsoft.SignalRService/webPubSub/WebPubSub-517?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e39db5441ba0b74a8dfc7a8250e20817-ac3acc3307578c48-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd4df2988ad1c36defda99cef5ec02cc", + "traceparent": "00-623273bab4877a1514a5063bfe55188e-f47d088c13413a8e-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31176af3cb6b6fe610cff61d64ef0648", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 07:57:34 GMT", + "Date": "Wed, 22 Mar 2023 03:03:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bd4df2988ad1c36defda99cef5ec02cc", - "x-ms-correlation-request-id": "fb768b05-8ca0-47b2-a978-4b7f7f1655da", + "x-ms-client-request-id": "31176af3cb6b6fe610cff61d64ef0648", + "x-ms-correlation-request-id": "c4a1c7be-a082-44cb-8a7a-5b82b975fe6c", "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-request-id": "e9e93368-fc27-4440-9a80-d515cfa8ad27", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075734Z:fb768b05-8ca0-47b2-a978-4b7f7f1655da", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-request-id": "b42f51ef-74a1-44d6-9817-ff6f8928735a", + "x-ms-routing-request-id": "JAPANEAST:20230322T030336Z:c4a1c7be-a082-44cb-8a7a-5b82b975fe6c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "429676523", + "RandomSeed": "1289775044", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllAsync.json index 1228860ec864..b1a303872172 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAllAsync.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-9771?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-37?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-76caeae17ac68d46bb2c86bdb6884f31-30c5c6309a64ff43-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8e38b5f7e6a5a5169197a6651cdaa582", + "traceparent": "00-18f0b5588e793617ee9fb09850198a5e-69bc51331d90f363-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "062916e41346feec6fca960fc2546a78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:11 GMT", + "Date": "Wed, 22 Mar 2023 02:48:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e87bd81c-2f9b-4fc6-b76c-18b0f12c8cd4", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-request-id": "e87bd81c-2f9b-4fc6-b76c-18b0f12c8cd4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080811Z:e87bd81c-2f9b-4fc6-b76c-18b0f12c8cd4" + "x-ms-correlation-request-id": "001998a2-c54c-4455-be03-a93dc36653d5", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-request-id": "001998a2-c54c-4455-be03-a93dc36653d5", + "x-ms-routing-request-id": "JAPANEAST:20230322T024830Z:001998a2-c54c-4455-be03-a93dc36653d5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771", - "name": "WebPubSubRG-9771", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37", + "name": "WebPubSubRG-37", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5721?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5350?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-acc86fe2d0a2da40-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "06dfd6fb6b80dc51b574101937083706", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-b9a88990565d2427-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "42acdcac42c89823e7dccf52cd7f2a07", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:15 GMT", + "Date": "Wed, 22 Mar 2023 02:48:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationResults/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationResults/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "06dfd6fb6b80dc51b574101937083706", - "x-ms-correlation-request-id": "ccf9caff-b706-4d68-8451-f14d3b6bb857", - "x-ms-ratelimit-remaining-subscription-writes": "1181", - "x-ms-request-id": "d0c88aec-db67-431e-aabd-153aef982898", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080815Z:ccf9caff-b706-4d68-8451-f14d3b6bb857", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "42acdcac42c89823e7dccf52cd7f2a07", + "x-ms-correlation-request-id": "ccccb6ce-abba-4739-b779-859afc61bed4", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "68d8dc4b-3217-43e0-bc83-1a1dfcc7906a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024833Z:ccccb6ce-abba-4739-b779-859afc61bed4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-5721.webpubsub.azure.com", + "hostName": "webpubsub-5350.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5721", + "hostNamePrefix": "webpubsub-5350", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,371 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:08:13.7024411Z", + "createdAt": "2023-03-22T02:48:31.3894322Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:08:13.7024411Z" + "lastModifiedAt": "2023-03-22T02:48:31.3894322Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", - "name": "WebPubSub-5721", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350", + "name": "WebPubSub-5350", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-f733b256b4bbfe48-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd39b7fd948a8cc4635bd831d6fc6e89", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-31a09416c732ee7f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "124572996fd7d41c056d5f361caba24b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:15 GMT", + "Date": "Wed, 22 Mar 2023 02:48:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bd39b7fd948a8cc4635bd831d6fc6e89", - "x-ms-correlation-request-id": "c3ffbcd7-d9ea-41d1-a2cb-5cd4633fe5f5", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-request-id": "6f8c9782-991b-46d1-bd9d-ab96cc0c659b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080816Z:c3ffbcd7-d9ea-41d1-a2cb-5cd4633fe5f5", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "124572996fd7d41c056d5f361caba24b", + "x-ms-correlation-request-id": "12e3a302-f2a3-4873-a640-ea552304bb6c", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-request-id": "5000f759-7741-489a-99a9-c3d075f5c716", + "x-ms-routing-request-id": "JAPANEAST:20230322T024833Z:12e3a302-f2a3-4873-a640-ea552304bb6c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-31d084fa331d074e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2e00a060bfbe2196191b58e6690b0c0f", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-d94601b8fc068beb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e3fc076b46b5d9add595bdb5ae73331d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:17 GMT", + "Date": "Wed, 22 Mar 2023 02:48:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2e00a060bfbe2196191b58e6690b0c0f", - "x-ms-correlation-request-id": "52119da4-3b76-436d-9981-9713f0ffe32f", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-request-id": "dca26f1d-be90-49f5-b3bc-9fc1401a5d40", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080817Z:52119da4-3b76-436d-9981-9713f0ffe32f", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "e3fc076b46b5d9add595bdb5ae73331d", + "x-ms-correlation-request-id": "5214c3cf-9ca6-4274-82d5-858df0f1138d", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "4c9803cf-d104-4b2f-ba80-dfafd6f2f28a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024834Z:5214c3cf-9ca6-4274-82d5-858df0f1138d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-9c1cb68b92d93044-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "801c2dae79ced17c288f8390008bedb1", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-c0e909df3e69249a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5bb97b271739573054e02b2073d0fad9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:18 GMT", + "Date": "Wed, 22 Mar 2023 02:48:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "801c2dae79ced17c288f8390008bedb1", - "x-ms-correlation-request-id": "b5e596fe-6063-470c-bdd7-a081eaeb1383", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-request-id": "4f42d771-2fec-4967-945d-16a5476dca63", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080819Z:b5e596fe-6063-470c-bdd7-a081eaeb1383", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5bb97b271739573054e02b2073d0fad9", + "x-ms-correlation-request-id": "a94da3e5-2ef7-492d-ba10-81edb7ba440f", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "00175d69-a9e1-491b-b1b0-e4cfd97f7e51", + "x-ms-routing-request-id": "JAPANEAST:20230322T024836Z:a94da3e5-2ef7-492d-ba10-81edb7ba440f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-7dda5cd1fb472247-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2fe6782c97a63e242018a36f3cde2357", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-d353e2e4a6773faa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5d444870d1cd529fc56c3d42b2672592", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:19 GMT", + "Date": "Wed, 22 Mar 2023 02:48:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2fe6782c97a63e242018a36f3cde2357", - "x-ms-correlation-request-id": "ee8f2255-a973-4d79-9e36-436313848723", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-request-id": "0ba995ab-49b0-4dd3-b96d-a508c49eaeb4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080820Z:ee8f2255-a973-4d79-9e36-436313848723", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "5d444870d1cd529fc56c3d42b2672592", + "x-ms-correlation-request-id": "a2fc339f-376e-4ce1-ba3c-849d5efae177", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "19c9a3a4-c3d9-4485-af87-d9848649d3d1", + "x-ms-routing-request-id": "JAPANEAST:20230322T024837Z:a2fc339f-376e-4ce1-ba3c-849d5efae177", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-e80c97ada9ec0044-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a982c94eede0e7ba242f052e3b06218e", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-a73288f040b658b0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a10f413a46f25311d7a48fd41a8c6604", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:22 GMT", + "Date": "Wed, 22 Mar 2023 02:48:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a982c94eede0e7ba242f052e3b06218e", - "x-ms-correlation-request-id": "9ab078e7-ba17-4cc8-aeb0-15ea59ce82b8", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-request-id": "8fe9f4b7-042c-4145-8bfc-86005cc34d37", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080823Z:9ab078e7-ba17-4cc8-aeb0-15ea59ce82b8", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "a10f413a46f25311d7a48fd41a8c6604", + "x-ms-correlation-request-id": "24184a13-2b11-4cbc-87eb-9410ed15abb1", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "0e7d5aea-7da6-4946-91e0-8f7bc09af36b", + "x-ms-routing-request-id": "JAPANEAST:20230322T024839Z:24184a13-2b11-4cbc-87eb-9410ed15abb1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-ffe64ba17b4e6c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f0baa62ddc24166808dd5fb6d50c944a", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-528de27602debb22-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6544e39ad52e564fdc6696cddaeea5ec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:26 GMT", + "Date": "Wed, 22 Mar 2023 02:48:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f0baa62ddc24166808dd5fb6d50c944a", - "x-ms-correlation-request-id": "be8ab38b-1126-4610-8771-67d6cb5fd69c", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-request-id": "b2b5263f-e7d2-474f-9bcb-dd690689bc5e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080827Z:be8ab38b-1126-4610-8771-67d6cb5fd69c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "6544e39ad52e564fdc6696cddaeea5ec", + "x-ms-correlation-request-id": "63e496a0-ce64-477c-93ea-672fdd56e78d", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "c67975bc-c7ea-4d3e-bfe8-401f274a6a15", + "x-ms-routing-request-id": "JAPANEAST:20230322T024844Z:63e496a0-ce64-477c-93ea-672fdd56e78d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-17403045187ec94a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "37412b6c44083ed1bdff0b7791f5021a", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-0b939ac18b99a9a3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "31e599ba59c12ae636f1852941ca3838", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:35 GMT", + "Date": "Wed, 22 Mar 2023 02:48:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "37412b6c44083ed1bdff0b7791f5021a", - "x-ms-correlation-request-id": "ce3b8652-8642-4fe7-9b90-0653fc01a6b3", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-request-id": "6e879931-bedc-409a-a49d-25a4fbe5b6b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080836Z:ce3b8652-8642-4fe7-9b90-0653fc01a6b3", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "31e599ba59c12ae636f1852941ca3838", + "x-ms-correlation-request-id": "91830d8e-d2da-48c4-8fe1-38956797e5e2", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "254af81b-469a-4af2-89c7-5a5a8133b234", + "x-ms-routing-request-id": "JAPANEAST:20230322T024852Z:91830d8e-d2da-48c4-8fe1-38956797e5e2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-bb64d9781b74c540-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "954115f732237233616ca0028e041117", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-9b449cd490819c1e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cea73905c0236563f2b8c48cb04479e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:52 GMT", + "Date": "Wed, 22 Mar 2023 02:49:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "954115f732237233616ca0028e041117", - "x-ms-correlation-request-id": "d7a49ac7-461e-4bf1-8aca-0b6cf9f014ee", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-request-id": "c5fbd4f1-c620-4e8a-abb8-0f2fdf5dbe16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080852Z:d7a49ac7-461e-4bf1-8aca-0b6cf9f014ee", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "cea73905c0236563f2b8c48cb04479e9", + "x-ms-correlation-request-id": "853cc92a-82cb-4df9-b590-0336813b40ea", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "096838f8-66d1-4311-8dfc-727218ff4875", + "x-ms-routing-request-id": "JAPANEAST:20230322T024908Z:853cc92a-82cb-4df9-b590-0336813b40ea", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Running", - "startTime": "2022-07-05T08:08:14.245863Z" + "startTime": "2023-03-22T02:48:32.2682108Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-8e75987a00423247-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "10c2bb9ae9c4e985d57c3225d0f18413", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-6efc2e3b778f2ffa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8119a3ff35a64143fc192e3d4f261412", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "356", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:24 GMT", + "Date": "Wed, 22 Mar 2023 02:49:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "10c2bb9ae9c4e985d57c3225d0f18413", - "x-ms-correlation-request-id": "88d82dc0-bca6-4733-8fd2-cbec7360769a", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-request-id": "935d2f0e-2a7a-4a5e-9f99-7f023dd383c7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080925Z:88d82dc0-bca6-4733-8fd2-cbec7360769a", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "8119a3ff35a64143fc192e3d4f261412", + "x-ms-correlation-request-id": "f93e1a89-6f85-4a7b-846e-e1a55e074df6", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "d8ebf3bf-f64c-4fda-aa62-8b1d2c77db87", + "x-ms-routing-request-id": "JAPANEAST:20230322T024941Z:f93e1a89-6f85-4a7b-846e-e1a55e074df6", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/operationStatuses/cab5e7c1-e975-4758-a6c6-24c6889bbf4c", - "name": "cab5e7c1-e975-4758-a6c6-24c6889bbf4c", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/operationStatuses/47281411-9916-4b5f-a685-fb84b5492df5", + "name": "47281411-9916-4b5f-a685-fb84b5492df5", "status": "Succeeded", - "startTime": "2022-07-05T08:08:14.245863Z", - "endTime": "2022-07-05T08:09:04.7183593Z" + "startTime": "2023-03-22T02:48:32.2682108Z", + "endTime": "2023-03-22T02:49:23.5217088Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5721?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5350?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-42964827d20ca84db14cbdfbdbbebaed-e14443b68c321843-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c0bf44dbfecb3926f8cfd69ca3ceafb9", + "traceparent": "00-0bd035afbec25ce4d903d042d6a7a4ec-3db6602f6c536c77-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a0c85d2ed646fac935803e08945a7af2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1276", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:25 GMT", + "Date": "Wed, 22 Mar 2023 02:49:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c0bf44dbfecb3926f8cfd69ca3ceafb9", - "x-ms-correlation-request-id": "f7ca8d81-622d-4e8e-9530-f04e10d05dc8", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-request-id": "7a323e1d-dbee-4a08-877f-4a750f5f9452", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080925Z:f7ca8d81-622d-4e8e-9530-f04e10d05dc8", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "a0c85d2ed646fac935803e08945a7af2", + "x-ms-correlation-request-id": "9b3d0ae5-8cb1-40bd-9e75-d8bfca6ffcd8", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "41bb4411-4637-4bfd-b455-af5dd83cee24", + "x-ms-routing-request-id": "JAPANEAST:20230322T024941Z:9b3d0ae5-8cb1-40bd-9e75-d8bfca6ffcd8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5721.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-5350.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5721", + "hostNamePrefix": "webpubsub-5350", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,27 +580,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:08:13.7024411Z", + "createdAt": "2023-03-22T02:48:31.3894322Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:08:13.7024411Z" + "lastModifiedAt": "2023-03-22T02:48:31.3894322Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", - "name": "WebPubSub-5721", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350", + "name": "WebPubSub-5350", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5721/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5350/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-df3f2bde0c6a4e49afd2d33eb849c592-bf9ac0d0a6ad4c45-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d6ddf4edf1330d559057c0a7ff0da16f", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9e299c77b6b0cf91f566d109912515cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -609,380 +608,51 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:25 GMT", + "Date": "Wed, 22 Mar 2023 02:49:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d6ddf4edf1330d559057c0a7ff0da16f", - "x-ms-correlation-request-id": "7c14bfd4-c736-4e56-b634-ba7d9e2499dd", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-request-id": "176e82dc-6b6d-4022-9fb8-1eb763dc92e9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080925Z:7c14bfd4-c736-4e56-b634-ba7d9e2499dd", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "9e299c77b6b0cf91f566d109912515cc", + "x-ms-correlation-request-id": "9b21bdaa-0af1-4a80-b1a2-369291987591", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "25294b98-04de-461d-98ec-54bf926c118f", + "x-ms-routing-request-id": "JAPANEAST:20230322T024942Z:9b21bdaa-0af1-4a80-b1a2-369291987591", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "501", - "Content-Type": "application/json", - "traceparent": "00-aabdd515ac0c6d4e836d4fdf5760ead7-886db86452dd124c-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "49278de750459b4b948818f513e84606", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/916197c0-d697-4420-ad2a-111a42345a4a?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1973", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2985c028-31c4-4c75-85ba-50434edb53d4", - "x-ms-client-request-id": "49278de750459b4b948818f513e84606", - "x-ms-correlation-request-id": "c5263403-020d-41e9-a3e3-3481d50552fa", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-request-id": "916197c0-d697-4420-ad2a-111a42345a4a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080929Z:c5263403-020d-41e9-a3e3-3481d50552fa" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u002240068a46-4322-42b2-a691-fba1ec2a715c\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "88d5b938-cad1-4e5e-a40d-a7b22ccfaf71", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u002240068a46-4322-42b2-a691-fba1ec2a715c\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.95270e36-fe12-4eb1-b11b-f362dc30874e" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/916197c0-d697-4420-ad2a-111a42345a4a?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aabdd515ac0c6d4e836d4fdf5760ead7-5e43be5e3c176c4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "16b5662e65a79c73a84141aad960f9a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cff58e8f-3a5a-4c61-aad0-fa039983e7e7", - "x-ms-client-request-id": "16b5662e65a79c73a84141aad960f9a7", - "x-ms-correlation-request-id": "bd00f2f6-2d88-4591-ab4e-05f6e73685e5", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-request-id": "55e41c13-248f-47bf-9a93-94b59d1e7d70", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080929Z:bd00f2f6-2d88-4591-ab4e-05f6e73685e5" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/916197c0-d697-4420-ad2a-111a42345a4a?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aabdd515ac0c6d4e836d4fdf5760ead7-4ed996dc6dd9fe4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "86daba11c4d5395bac3d5a9320d75d15", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0cd67919-ca9a-4e87-8b7c-8803db40c18d", - "x-ms-client-request-id": "86daba11c4d5395bac3d5a9320d75d15", - "x-ms-correlation-request-id": "49fed1db-e660-48ae-8542-73cd307abd80", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-request-id": "3a6afb04-3b8d-4f9a-b342-06e1bb6ec8f2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080939Z:49fed1db-e660-48ae-8542-73cd307abd80" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/916197c0-d697-4420-ad2a-111a42345a4a?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aabdd515ac0c6d4e836d4fdf5760ead7-bd3e40a82df3554e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "adc72d4f2f33665e059b33d26c360f8e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:09:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3a608fa4-7602-445d-b6b9-757dae271e6d", - "x-ms-client-request-id": "adc72d4f2f33665e059b33d26c360f8e", - "x-ms-correlation-request-id": "f7c4bac8-156d-4e76-9d39-5046dbbbef3f", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-request-id": "62591cc6-1041-44a4-9f05-e4651660ade1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081000Z:f7c4bac8-156d-4e76-9d39-5046dbbbef3f" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/916197c0-d697-4420-ad2a-111a42345a4a?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aabdd515ac0c6d4e836d4fdf5760ead7-c471ebc2daa03d4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "836188b8b3a469150a7b69690ae07bd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "766bcade-41bf-4b6f-9c21-d2f0955a8bb1", - "x-ms-client-request-id": "836188b8b3a469150a7b69690ae07bd0", - "x-ms-correlation-request-id": "8d728e42-f316-4461-b2b6-f9df1a70adc3", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-request-id": "eceb0364-0e7d-4801-9b2a-48819d4a1221", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081020Z:8d728e42-f316-4461-b2b6-f9df1a70adc3" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-aabdd515ac0c6d4e836d4fdf5760ead7-fa4354edb55dc141-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ac5a2ce44b98e1745b73803a9189cc76", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2113", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:20 GMT", - "ETag": "W/\u0022c4f56dde-e590-49fb-add9-32f6a4d5264b\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8ff92df5-15d1-4bb1-969e-23c1ef909cb4", - "x-ms-client-request-id": "ac5a2ce44b98e1745b73803a9189cc76", - "x-ms-correlation-request-id": "f3943936-c129-4045-a970-f36cd8048296", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-request-id": "a0cb63bc-37ac-4537-9de8-9e15630de0e1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081020Z:f3943936-c129-4045-a970-f36cd8048296" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u0022c4f56dde-e590-49fb-add9-32f6a4d5264b\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "88d5b938-cad1-4e5e-a40d-a7b22ccfaf71", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u0022c4f56dde-e590-49fb-add9-32f6a4d5264b\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.95270e36-fe12-4eb1-b11b-f362dc30874e" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-5721.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5721/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5350/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-77e96d6b1aaf114f9d0aebadeae46dca-1e0a8c60f4bdf94e-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "98dacc2ed9759b71175ea3b7c6f55c25", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3d6325da4e9ca3c38ab1e19f398ed5d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "737", + "Content-Length": "733", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:21 GMT", + "Date": "Wed, 22 Mar 2023 02:50:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "98dacc2ed9759b71175ea3b7c6f55c25", - "x-ms-correlation-request-id": "30b01ea7-16ea-42a6-ac2f-a881a3a2b53c", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-request-id": "e4d8cf46-7e56-4ec5-b14d-f627244fb990", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081022Z:30b01ea7-16ea-42a6-ac2f-a881a3a2b53c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "3d6325da4e9ca3c38ab1e19f398ed5d4", + "x-ms-correlation-request-id": "b4c324ff-45d5-4eba-8ee9-101f8eac02c9", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "73944840-46ba-47fb-a193-fa3a2fb27f0c", + "x-ms-routing-request-id": "JAPANEAST:20230322T025037Z:b4c324ff-45d5-4eba-8ee9-101f8eac02c9", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -990,7 +660,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460" }, "groupIds": [ "webpubsub" @@ -1001,31 +671,31 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721/privateEndpointConnections/webpubsub-5721.db67cdbe-1f88-4f18-8c81-1ff23af255f2", - "name": "webpubsub-5721.db67cdbe-1f88-4f18-8c81-1ff23af255f2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350/privateEndpointConnections/webpubsub-5350.0735396a-5822-4b0e-a5e9-421efb956fcd", + "name": "webpubsub-5350.0735396a-5822-4b0e-a5e9-421efb956fcd", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9ac86e0201cbfe4d9fdd472ef76a1ab3-838d5a8b1756fa49-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3fed621f63db6df61380283033dbd880", + "traceparent": "00-7fe4b0f1c1ac6eaeca5a84888a1ef72a-c958200d99d3fcbf-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "061e83b5dbf6cbaf0b364a63857861cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2330", + "Content-Length": "2320", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:21 GMT", + "Date": "Wed, 22 Mar 2023 02:50:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1034,32 +704,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f0f59a42-b937-4f38-8a30-8cf4388fd6ad", - "x-ms-client-request-id": "3fed621f63db6df61380283033dbd880", - "x-ms-correlation-request-id": "ffab58d0-b811-4283-a19d-7c57725929e2", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-request-id": "5b46eefa-5a2a-4c58-9aa8-a294b5d1b053", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081022Z:ffab58d0-b811-4283-a19d-7c57725929e2" + "x-ms-arm-service-request-id": "790d7e9a-59a5-47d8-803c-4e8ae3ad88f7", + "x-ms-client-request-id": "061e83b5dbf6cbaf0b364a63857861cf", + "x-ms-correlation-request-id": "c5459156-a03f-4a22-9e68-90943c109d72", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "29d8cb95-a71e-477d-b869-abd586355597", + "x-ms-routing-request-id": "JAPANEAST:20230322T025037Z:c5459156-a03f-4a22-9e68-90943c109d72" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u0022c4f56dde-e590-49fb-add9-32f6a4d5264b\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460", + "etag": "W/\u0022569e9cda-c9e0-486f-90c8-9758efd2d057\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "88d5b938-cad1-4e5e-a40d-a7b22ccfaf71", + "resourceGuid": "d9302a7e-375e-4b68-9d62-04c109f3d324", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u0022c4f56dde-e590-49fb-add9-32f6a4d5264b\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460/privateLinkServiceConnections/PrivateEndPoint-2460", + "etag": "W/\u0022569e9cda-c9e0-486f-90c8-9758efd2d057\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350", "groupIds": [ "webpubsub" ], @@ -1074,16 +744,16 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/virtualNetworks/Vnet-7072/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.95270e36-fe12-4eb1-b11b-f362dc30874e" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-2460.nic.73dc69f1-b029-4193-9cdc-8907fe533701" } ], "customDnsConfigs": [ { - "fqdn": "webpubsub-5721.webpubsub.azure.com", + "fqdn": "webpubsub-5350.webpubsub.azure.com", "ipAddresses": [ "10.10.2.4" ] @@ -1095,26 +765,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-57aa75e26aea504a8c88f79981819180-29c101518a8dc545-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3e3bf2afe3060a5bbbbf943aa8bd1b66", + "traceparent": "00-a6bd93897ea9c30f0b942418b8295251-ae75b8465ea660b3-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7c3c10bb338e8e99e636a6fe7345b6fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d6011342-5743-451b-a2c8-353780dd89d1?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/05df95ec-3ce8-4332-bbba-5d33e2c54b6e?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 08:10:22 GMT", + "Date": "Wed, 22 Mar 2023 02:50:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/d6011342-5743-451b-a2c8-353780dd89d1?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/05df95ec-3ce8-4332-bbba-5d33e2c54b6e?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1123,23 +793,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "877d2b2b-c860-44b7-aa9c-7510c5ff5759", - "x-ms-client-request-id": "3e3bf2afe3060a5bbbbf943aa8bd1b66", - "x-ms-correlation-request-id": "252f56c5-319f-4319-9fdc-d1b1c9ce1019", - "x-ms-ratelimit-remaining-subscription-deletes": "14982", - "x-ms-request-id": "d6011342-5743-451b-a2c8-353780dd89d1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081023Z:252f56c5-319f-4319-9fdc-d1b1c9ce1019" + "x-ms-arm-service-request-id": "fb65caad-6d52-4dd9-8ca4-cca9e5e6f367", + "x-ms-client-request-id": "7c3c10bb338e8e99e636a6fe7345b6fc", + "x-ms-correlation-request-id": "4be05681-96a7-4699-9ec4-6ad308718787", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-request-id": "05df95ec-3ce8-4332-bbba-5d33e2c54b6e", + "x-ms-routing-request-id": "JAPANEAST:20230322T025038Z:4be05681-96a7-4699-9ec4-6ad308718787" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d6011342-5743-451b-a2c8-353780dd89d1?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/05df95ec-3ce8-4332-bbba-5d33e2c54b6e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-57aa75e26aea504a8c88f79981819180-dea7f7d71cb17041-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d30822861db93c1e07e2841ccebcc556", + "traceparent": "00-a6bd93897ea9c30f0b942418b8295251-6936971a260a9808-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "29e3125058518246e99020bf35b058c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1148,7 +818,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:22 GMT", + "Date": "Wed, 22 Mar 2023 02:50:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1158,25 +828,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "674899a2-46cc-4e0d-9d2c-ea99e1be3609", - "x-ms-client-request-id": "d30822861db93c1e07e2841ccebcc556", - "x-ms-correlation-request-id": "29444622-fa39-4dc3-8ac8-f610d10b5875", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-request-id": "9101a63f-f80c-4c1c-96db-a189e59930f7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081023Z:29444622-fa39-4dc3-8ac8-f610d10b5875" + "x-ms-arm-service-request-id": "d16c4f11-7bfa-4920-9713-582976e2fbe8", + "x-ms-client-request-id": "29e3125058518246e99020bf35b058c5", + "x-ms-correlation-request-id": "17b94596-b9ad-4aa6-80bc-e4c4f2602d2a", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "9d31f268-894b-4e09-93fa-efaaa9888dc2", + "x-ms-routing-request-id": "JAPANEAST:20230322T025039Z:17b94596-b9ad-4aa6-80bc-e4c4f2602d2a" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d6011342-5743-451b-a2c8-353780dd89d1?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/05df95ec-3ce8-4332-bbba-5d33e2c54b6e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-57aa75e26aea504a8c88f79981819180-169f6a5e21327345-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d818c164a9c021e5577068995e65597a", + "traceparent": "00-a6bd93897ea9c30f0b942418b8295251-b844e064662063b8-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cb454e803df5471a863d06f600338a86", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1185,7 +855,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:32 GMT", + "Date": "Wed, 22 Mar 2023 02:50:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "20", @@ -1195,25 +865,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1bf957b6-5139-4d0e-bc72-dbc39033f8d9", - "x-ms-client-request-id": "d818c164a9c021e5577068995e65597a", - "x-ms-correlation-request-id": "8b5fff51-8564-44b4-a6da-ff07d7f142fd", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-request-id": "cc61657e-d278-4d44-b6ef-637a1905ddfd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081033Z:8b5fff51-8564-44b4-a6da-ff07d7f142fd" + "x-ms-arm-service-request-id": "52583ce9-bed6-4795-91cd-0ddd5bcf105c", + "x-ms-client-request-id": "cb454e803df5471a863d06f600338a86", + "x-ms-correlation-request-id": "48b0bb08-e942-4c51-ab7c-6eca16902895", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "455c6ee0-41fc-40d3-b063-b4e6d0320ec4", + "x-ms-routing-request-id": "JAPANEAST:20230322T025049Z:48b0bb08-e942-4c51-ab7c-6eca16902895" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d6011342-5743-451b-a2c8-353780dd89d1?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/05df95ec-3ce8-4332-bbba-5d33e2c54b6e?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-57aa75e26aea504a8c88f79981819180-5ce1009f098e1d40-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "85b4585747b5f9ac3cde26b8087efc19", + "traceparent": "00-a6bd93897ea9c30f0b942418b8295251-fea868c4a5a46233-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "60ae93198c62c4aa72003a2554c9c9c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1222,7 +892,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:53 GMT", + "Date": "Wed, 22 Mar 2023 02:51:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1231,46 +901,45 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f79f5f53-cfd9-42cc-bfe4-d8fff11ec994", - "x-ms-client-request-id": "85b4585747b5f9ac3cde26b8087efc19", - "x-ms-correlation-request-id": "ef4faaeb-aadb-4e13-b517-9f89e339c746", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-request-id": "0560dc8f-c9ae-499f-b2f2-976e577de980", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081053Z:ef4faaeb-aadb-4e13-b517-9f89e339c746" + "x-ms-arm-service-request-id": "8c8ab426-e85d-4de6-bf15-06566e03cc29", + "x-ms-client-request-id": "60ae93198c62c4aa72003a2554c9c9c5", + "x-ms-correlation-request-id": "9c902405-b231-44f4-a593-2b056f53942f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "c36715c7-f8f6-4fc3-a482-d07056efba4d", + "x-ms-routing-request-id": "JAPANEAST:20230322T025110Z:9c902405-b231-44f4-a593-2b056f53942f" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-944a451a42683e4aa8bbaa6e111a31cf-8ca1e0316283d446-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ef912ea78f28dc7b3de67b48b485dda2", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b5e66d3f521b131df79ca214525081b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1288", + "Content-Length": "1286", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:10:54 GMT", + "Date": "Wed, 22 Mar 2023 02:51:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ef912ea78f28dc7b3de67b48b485dda2", - "x-ms-correlation-request-id": "507ff70a-1409-4aed-96d6-831041bb43cc", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-request-id": "99b9a43c-4380-4e14-afcd-a3c1c31e301e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081054Z:507ff70a-1409-4aed-96d6-831041bb43cc", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "b5e66d3f521b131df79ca214525081b6", + "x-ms-correlation-request-id": "b4e6806c-d279-4f0e-a237-04536e209c5e", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "33a62086-cbbe-46f1-a571-be957301061b", + "x-ms-routing-request-id": "JAPANEAST:20230322T025110Z:b4e6806c-d279-4f0e-a237-04536e209c5e", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1283,8 +952,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5721.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-5350.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1293,7 +962,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5721", + "hostNamePrefix": "webpubsub-5350", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1328,54 +997,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:08:13.7024411Z", + "createdAt": "2023-03-22T02:48:31.3894322Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:08:13.7024411Z" + "lastModifiedAt": "2023-03-22T02:48:31.3894322Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5721", - "name": "WebPubSub-5721", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-5350", + "name": "WebPubSub-5350", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5721?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-5350?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ba68cd8acadf234680a655fb5baee577-e1bd38ff4f8f064c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "76c40a893f081da0151e9ce1822c19d8", + "traceparent": "00-f81dfe6aa3adfe63127d4375ab8a5e92-3ee84f63a082dac3-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a1a69905f702f362a38058f502f5f2bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 08:10:56 GMT", + "Date": "Wed, 22 Mar 2023 02:51:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "76c40a893f081da0151e9ce1822c19d8", - "x-ms-correlation-request-id": "908becf2-ff8d-4c87-9323-2374c10c6bf5", - "x-ms-ratelimit-remaining-subscription-deletes": "14981", - "x-ms-request-id": "13575a77-f035-4915-b725-942d80456a75", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T081056Z:908becf2-ff8d-4c87-9323-2374c10c6bf5", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "a1a69905f702f362a38058f502f5f2bc", + "x-ms-correlation-request-id": "0b9bd9e7-4e95-4a2f-8dd1-d22486d5e9e5", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-request-id": "05bb3a82-6846-4fba-9b4e-318272859ace", + "x-ms-routing-request-id": "JAPANEAST:20230322T025112Z:0b9bd9e7-4e95-4a2f-8dd1-d22486d5e9e5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "215742882", + "RandomSeed": "1318689404", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAsync.json index bc79b3d50fc8..6851e7139bea 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/GetAsync.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-9771?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-37?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-20f51a57865b8740942b0cc90c28dca5-643a2838cca99444-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "52378bf44daa89061af2a19cb6633f5e", + "traceparent": "00-3ee9b9e4ba878767203c13874bc68351-8631b7d8ba759a9a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1f9e04dab9330075e32fd40b33523380", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:51 GMT", + "Date": "Wed, 22 Mar 2023 02:45:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe7125fa-0de6-4519-802f-ebad5ca63f40", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-request-id": "fe7125fa-0de6-4519-802f-ebad5ca63f40", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080452Z:fe7125fa-0de6-4519-802f-ebad5ca63f40" + "x-ms-correlation-request-id": "c2553e4e-cd82-4e51-916b-4224bde28b6d", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "c2553e4e-cd82-4e51-916b-4224bde28b6d", + "x-ms-routing-request-id": "JAPANEAST:20230322T024548Z:c2553e4e-cd82-4e51-916b-4224bde28b6d" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771", - "name": "WebPubSubRG-9771", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37", + "name": "WebPubSubRG-37", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-453?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-9075?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-5749d8d58f840d4c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b1f506a9dc3290042e69149fa3c8f1ba", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-9bc1ea75db70753e-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "79a70acf06a51a6288bb691924702474", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1270", + "Content-Length": "1272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:56 GMT", + "Date": "Wed, 22 Mar 2023 02:45:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationResults/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationResults/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b1f506a9dc3290042e69149fa3c8f1ba", - "x-ms-correlation-request-id": "fc0f05b9-77d5-40bf-a978-52fae2183ec7", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "52f41cf3-7b7e-45f4-991e-986b905ad5be", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080457Z:fc0f05b9-77d5-40bf-a978-52fae2183ec7", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "79a70acf06a51a6288bb691924702474", + "x-ms-correlation-request-id": "21099bda-bfeb-4b99-be61-8d09e10c0cb6", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-request-id": "90125398-678d-4179-b097-12e123d749c3", + "x-ms-routing-request-id": "JAPANEAST:20230322T024551Z:21099bda-bfeb-4b99-be61-8d09e10c0cb6", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-453.webpubsub.azure.com", + "hostName": "webpubsub-9075.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-453", + "hostNamePrefix": "webpubsub-9075", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,407 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:04:54.9515035Z", + "createdAt": "2023-03-22T02:45:49.8721475Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:04:54.9515035Z" + "lastModifiedAt": "2023-03-22T02:45:49.8721475Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", - "name": "WebPubSub-453", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075", + "name": "WebPubSub-9075", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-1f0535debc553e4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d746d078c538186d86a723403867e552", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "314", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d746d078c538186d86a723403867e552", - "x-ms-correlation-request-id": "e6b446f1-87f4-4760-ad67-0f6a14e01c06", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-request-id": "763a1be6-c1ae-496a-af7d-f360adee862e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080457Z:e6b446f1-87f4-4760-ad67-0f6a14e01c06", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", - "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-252b92be7b01ae49-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cddce600b84518c2a64038ac6a57c396", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-9dce6a6ecee8d514-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "26cd60748be6fd353b05abfe0ce7bfbe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:04:58 GMT", + "Date": "Wed, 22 Mar 2023 02:45:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cddce600b84518c2a64038ac6a57c396", - "x-ms-correlation-request-id": "cc15f7c9-81d9-44f8-9fe0-0e4389bddc9c", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-request-id": "10bfa125-31c4-445c-88b8-6b2c1b0db015", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080459Z:cc15f7c9-81d9-44f8-9fe0-0e4389bddc9c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "26cd60748be6fd353b05abfe0ce7bfbe", + "x-ms-correlation-request-id": "313f2474-5d9a-4d03-9f81-81771dabbe1d", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "9a25f2f0-f725-4f64-bdbc-785dc3804b91", + "x-ms-routing-request-id": "JAPANEAST:20230322T024551Z:313f2474-5d9a-4d03-9f81-81771dabbe1d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-cfe2973caacf6f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d3267da81a82fb817b0600f46e1e7c10", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-a15f7ed6fd6e3e21-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "179697b0309b40879debf826a3c95e11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:05:00 GMT", + "Date": "Wed, 22 Mar 2023 02:45:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d3267da81a82fb817b0600f46e1e7c10", - "x-ms-correlation-request-id": "fdd754cf-e7a6-46ed-b55b-ebb93cadc90d", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-request-id": "e93ccc64-d5f9-4b42-8ede-81215360c8da", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080500Z:fdd754cf-e7a6-46ed-b55b-ebb93cadc90d", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "179697b0309b40879debf826a3c95e11", + "x-ms-correlation-request-id": "d16cd57d-7543-4eac-974a-60a4aebe8536", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "9c7127ac-c032-4c9f-ad3c-05582d67a5a1", + "x-ms-routing-request-id": "JAPANEAST:20230322T024553Z:d16cd57d-7543-4eac-974a-60a4aebe8536", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-2c28f6b78f475642-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e6ac1fa0f3bcbf520d2e31f78cc0ae2e", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-369b561e8420f624-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c3a4ebd3fea3118d059a147be36eaf99", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:05:01 GMT", + "Date": "Wed, 22 Mar 2023 02:45:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e6ac1fa0f3bcbf520d2e31f78cc0ae2e", - "x-ms-correlation-request-id": "d60fc068-52ee-42aa-a6ce-fa5e25451020", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-request-id": "ff229cc8-694b-49c2-b2d9-28be5674dceb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080501Z:d60fc068-52ee-42aa-a6ce-fa5e25451020", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "c3a4ebd3fea3118d059a147be36eaf99", + "x-ms-correlation-request-id": "ff5ca9ca-0ace-4e89-ad9c-3daf6209400a", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "43f9c4bd-d0a8-4f54-9499-35f62b3dd7a5", + "x-ms-routing-request-id": "JAPANEAST:20230322T024554Z:ff5ca9ca-0ace-4e89-ad9c-3daf6209400a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-5301583e5b3a204d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ba988de41141e6d065e1523eb7cea987", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-800cb099f7c57bcf-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "24e8a5bfd1e044e2d98c88fb920e5a71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:05:04 GMT", + "Date": "Wed, 22 Mar 2023 02:45:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ba988de41141e6d065e1523eb7cea987", - "x-ms-correlation-request-id": "0c53c662-94a4-4952-9444-555fe1ebe0a5", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-request-id": "bc0dbfed-2f0d-4b68-a501-5b05c9abfc9f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080504Z:0c53c662-94a4-4952-9444-555fe1ebe0a5", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "24e8a5bfd1e044e2d98c88fb920e5a71", + "x-ms-correlation-request-id": "728a1411-fc8c-4cd2-9028-74a63c51bb61", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "35a26ffb-0c6f-4e6f-9ab2-822482a593e8", + "x-ms-routing-request-id": "JAPANEAST:20230322T024556Z:728a1411-fc8c-4cd2-9028-74a63c51bb61", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-6980b93c6860bd44-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a0b28c4dcaab5d92a66c653e8896eba", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-f3007a821431aace-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "212a9aa7fb42b11b098511011b0b5d2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:05:08 GMT", + "Date": "Wed, 22 Mar 2023 02:45:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4a0b28c4dcaab5d92a66c653e8896eba", - "x-ms-correlation-request-id": "c0628578-1981-4c41-91a9-bcfc1ea1c90f", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-request-id": "88637538-2656-4f01-a566-8fee3827303d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080508Z:c0628578-1981-4c41-91a9-bcfc1ea1c90f", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "212a9aa7fb42b11b098511011b0b5d2e", + "x-ms-correlation-request-id": "5afe30d3-a849-495f-b3c5-229a004243f1", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "64a668eb-1a33-47d6-bd2f-71b3a109e2a3", + "x-ms-routing-request-id": "JAPANEAST:20230322T024558Z:5afe30d3-a849-495f-b3c5-229a004243f1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-8a3462d57672a54a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e10fd258c1868ecf4fc581dba113083e", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-15a236cdf34a5e33-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fe675f3b39e102300960ea1676927ef7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:05:16 GMT", + "Date": "Wed, 22 Mar 2023 02:46:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e10fd258c1868ecf4fc581dba113083e", - "x-ms-correlation-request-id": "c4f78516-b124-4a7c-b9b1-782f932790a8", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-request-id": "b33496f5-1da6-4459-83be-d9cac2e9b077", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080517Z:c4f78516-b124-4a7c-b9b1-782f932790a8", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "fe675f3b39e102300960ea1676927ef7", + "x-ms-correlation-request-id": "5d3b770c-a6bd-405b-b191-6923a32df95c", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "5bf93144-c2e5-4f79-9da7-d409ed256cd8", + "x-ms-routing-request-id": "JAPANEAST:20230322T024602Z:5d3b770c-a6bd-405b-b191-6923a32df95c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-bde4eece1335ae4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6433a98563b50884b3e38fda4b7cfddb", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-d340ec9554b39120-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "49d4a23f8e44c35689371b5ac0e028cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:05:33 GMT", + "Date": "Wed, 22 Mar 2023 02:46:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6433a98563b50884b3e38fda4b7cfddb", - "x-ms-correlation-request-id": "587c0551-8699-45e9-89b5-381f56d93146", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-request-id": "227b95b9-35bc-4f73-8c25-ae5643e96692", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080533Z:587c0551-8699-45e9-89b5-381f56d93146", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "49d4a23f8e44c35689371b5ac0e028cd", + "x-ms-correlation-request-id": "c15d9dbd-68fe-49a3-aa76-eece97e4fbf4", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "7eceddaf-5904-4b11-ae52-c14b76c0b204", + "x-ms-routing-request-id": "JAPANEAST:20230322T024611Z:c15d9dbd-68fe-49a3-aa76-eece97e4fbf4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-c115c1a23c18c343-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e5e69772c7bf0300587cfae55bfe1316", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-1f9c128384a203aa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "33bf592f5ca76e90692818e210043b76", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "313", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:06:05 GMT", + "Date": "Wed, 22 Mar 2023 02:46:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e5e69772c7bf0300587cfae55bfe1316", - "x-ms-correlation-request-id": "e8ae539b-ca13-4c40-86fc-2148025c451f", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-request-id": "5fa323be-103f-45a2-9bb6-afa756624877", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080606Z:e8ae539b-ca13-4c40-86fc-2148025c451f", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "33bf592f5ca76e90692818e210043b76", + "x-ms-correlation-request-id": "4890ca16-f2bb-4b82-b8a1-890aa2a98ad8", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-request-id": "bb373a60-a5b3-4f9c-888a-2aed7391d87a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024627Z:4890ca16-f2bb-4b82-b8a1-890aa2a98ad8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Running", - "startTime": "2022-07-05T08:04:55.7236519Z" + "startTime": "2023-03-22T02:45:50.6599717Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-ddb8f40d975a2f4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3fce885e0956f4054d072ea331f443d3", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-e8364cad9e85bc84-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "78c11a061437adea08a374aa1dd64128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "356", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:06:37 GMT", + "Date": "Wed, 22 Mar 2023 02:46:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3fce885e0956f4054d072ea331f443d3", - "x-ms-correlation-request-id": "19f5f63d-9e59-45b1-b019-a1c47b134e0c", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-request-id": "b596bc8a-cafe-4139-b4c3-dab18528deab", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080638Z:19f5f63d-9e59-45b1-b019-a1c47b134e0c", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "78c11a061437adea08a374aa1dd64128", + "x-ms-correlation-request-id": "038b2a0e-7cbe-426b-b1a5-43e594db98ad", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-request-id": "24c78c69-9e67-4d1f-a470-ebe094bbd8f7", + "x-ms-routing-request-id": "JAPANEAST:20230322T024659Z:038b2a0e-7cbe-426b-b1a5-43e594db98ad", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/operationStatuses/a913afea-de01-4140-8df9-28ae0a5c9ffc", - "name": "a913afea-de01-4140-8df9-28ae0a5c9ffc", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/operationStatuses/ac5f1958-a3ef-47d3-826e-052de89ecbfd", + "name": "ac5f1958-a3ef-47d3-826e-052de89ecbfd", "status": "Succeeded", - "startTime": "2022-07-05T08:04:55.7236519Z", - "endTime": "2022-07-05T08:06:06.4858928Z" + "startTime": "2023-03-22T02:45:50.6599717Z", + "endTime": "2023-03-22T02:46:41.2238716Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-453?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-9075?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-08fd2b0de1eb2942bca3a7f4480f6e28-5087bdb9aef25048-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0968a5c7222dbd7ea82f0c38689eacb4", + "traceparent": "00-a57bcac5ae08212688ff93da5efb7678-d99332fd004583ea-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1ce61d384bd3e34f1265e01b7674b384", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1272", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:06:38 GMT", + "Date": "Wed, 22 Mar 2023 02:46:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0968a5c7222dbd7ea82f0c38689eacb4", - "x-ms-correlation-request-id": "6601302b-9ec5-4442-a013-bd3537403218", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-request-id": "ee1af093-92f7-48f3-a645-146dc4c7e3aa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080639Z:6601302b-9ec5-4442-a013-bd3537403218", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "1ce61d384bd3e34f1265e01b7674b384", + "x-ms-correlation-request-id": "cf84ca91-f5aa-4cba-a2d0-91207a1a6230", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-request-id": "1a54b903-6d12-4ea3-9aec-15915eca653b", + "x-ms-routing-request-id": "JAPANEAST:20230322T024700Z:cf84ca91-f5aa-4cba-a2d0-91207a1a6230", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-453.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-9075.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-453", + "hostNamePrefix": "webpubsub-9075", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,375 +580,46 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:04:54.9515035Z", + "createdAt": "2023-03-22T02:45:49.8721475Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:04:54.9515035Z" + "lastModifiedAt": "2023-03-22T02:45:49.8721475Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", - "name": "WebPubSub-453", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075", + "name": "WebPubSub-9075", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "500", - "Content-Type": "application/json", - "traceparent": "00-080eca97b1f75e4f93741398fc7b0065-8436649932350644-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c37c78cfbeae698592f197b8995dd263", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02", - "properties": {} - }, - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "properties": { - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", - "groupIds": [ - "webpubsub" - ] - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d7026f19-fbd8-4525-9ee1-1acb3eddc181?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1972", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:06:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7de4190a-444d-4199-8097-59398c0856e5", - "x-ms-client-request-id": "c37c78cfbeae698592f197b8995dd263", - "x-ms-correlation-request-id": "fc9d2247-495f-4ee8-b06f-dfa356c76060", - "x-ms-ratelimit-remaining-subscription-writes": "1182", - "x-ms-request-id": "d7026f19-fbd8-4525-9ee1-1acb3eddc181", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080642Z:fc9d2247-495f-4ee8-b06f-dfa356c76060" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u00221dcaf61f-555d-4123-9ead-824203f58677\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "836cd32a-8ff7-4ea5-8098-2da5bdc16bc7", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u00221dcaf61f-555d-4123-9ead-824203f58677\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.e2cf977a-f176-41d7-9194-dd4e0c89aa97" - } - ], - "customDnsConfigs": [] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d7026f19-fbd8-4525-9ee1-1acb3eddc181?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-080eca97b1f75e4f93741398fc7b0065-d18cd891ec843846-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b8d4795a807809251fff763c8ac6234b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:06:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2ba19f90-cf85-46ca-a780-7d974d7f8b43", - "x-ms-client-request-id": "b8d4795a807809251fff763c8ac6234b", - "x-ms-correlation-request-id": "17e4acb0-3ba3-4cb0-b518-6083da5b62e2", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-request-id": "b666800e-69cc-48fa-96eb-8f5115678605", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080643Z:17e4acb0-3ba3-4cb0-b518-6083da5b62e2" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d7026f19-fbd8-4525-9ee1-1acb3eddc181?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-080eca97b1f75e4f93741398fc7b0065-96aea2a0b13fca4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "41ffa85df681c51e8f40b99c275e6bc5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:06:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6e43a1e6-7e37-484b-848b-bdcbc513c059", - "x-ms-client-request-id": "41ffa85df681c51e8f40b99c275e6bc5", - "x-ms-correlation-request-id": "b7c15d40-9228-4e7f-b6a8-6b5db1d66f45", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-request-id": "6ecdcddd-5058-42a3-9816-5add151f836c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080653Z:b7c15d40-9228-4e7f-b6a8-6b5db1d66f45" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d7026f19-fbd8-4525-9ee1-1acb3eddc181?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-080eca97b1f75e4f93741398fc7b0065-8dd0290d4b019349-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1f5ee8651989b8eb0213969793adb042", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "20", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8552afee-24da-4f8c-b189-d094e0a92565", - "x-ms-client-request-id": "1f5ee8651989b8eb0213969793adb042", - "x-ms-correlation-request-id": "11fffc0c-807a-4ac2-b1fe-6015d6767964", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-request-id": "e96a0f92-bb12-4c93-82b1-54eed065c7d4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080713Z:11fffc0c-807a-4ac2-b1fe-6015d6767964" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/d7026f19-fbd8-4525-9ee1-1acb3eddc181?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-080eca97b1f75e4f93741398fc7b0065-f3de39c6b6d7e14f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "55c94cee4acd642d5b0f2837c688e2c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9a7f43a6-c7fa-4bd9-84d2-617fe20ee198", - "x-ms-client-request-id": "55c94cee4acd642d5b0f2837c688e2c1", - "x-ms-correlation-request-id": "6aa38eae-2c16-4dd0-9a5b-68b029181266", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-request-id": "a0f37e35-66d2-4538-bea7-5610cf536701", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080733Z:6aa38eae-2c16-4dd0-9a5b-68b029181266" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-080eca97b1f75e4f93741398fc7b0065-42983b5f365cdf46-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a2d6b093036843c1bc463e6d5f8631e2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2111", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:33 GMT", - "ETag": "W/\u00220a410d84-1ac4-4469-986d-a9b50e2f39c2\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1ea04c3e-4d7e-46a2-95e7-4bff93821bb0", - "x-ms-client-request-id": "a2d6b093036843c1bc463e6d5f8631e2", - "x-ms-correlation-request-id": "014ece3b-0f7a-4f8d-84f2-01b14dda4384", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-request-id": "93c0e680-48ba-4b3b-baaa-b2a8dd5c8267", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080734Z:014ece3b-0f7a-4f8d-84f2-01b14dda4384" - }, - "ResponseBody": { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u00220a410d84-1ac4-4469-986d-a9b50e2f39c2\u0022", - "type": "Microsoft.Network/privateEndpoints", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "836cd32a-8ff7-4ea5-8098-2da5bdc16bc7", - "privateLinkServiceConnections": [ - { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u00220a410d84-1ac4-4469-986d-a9b50e2f39c2\u0022", - "properties": { - "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", - "groupIds": [ - "webpubsub" - ], - "privateLinkServiceConnectionState": { - "status": "Approved", - "description": "Auto-Approved", - "actionsRequired": "None" - } - }, - "type": "Microsoft.Network/privateEndpoints/privateLinkServiceConnections" - } - ], - "manualPrivateLinkServiceConnections": [], - "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" - }, - "networkInterfaces": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.e2cf977a-f176-41d7-9194-dd4e0c89aa97" - } - ], - "customDnsConfigs": [ - { - "fqdn": "webpubsub-453.webpubsub.azure.com", - "ipAddresses": [ - "10.10.2.4" - ] - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-453/privateEndpointConnections?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-9075/privateEndpointConnections?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d16a1122a6e7a2469f516ad499d1dd70-675c84ade8ae264a-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "daae779016941af7baf9c37af1b4f27a", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0e5f5dfd01082805cae2706662268a1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "734", + "Content-Length": "733", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:34 GMT", + "Date": "Wed, 22 Mar 2023 02:47:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "daae779016941af7baf9c37af1b4f27a", - "x-ms-correlation-request-id": "ff1dd716-fe78-4917-a19a-f7d80fd3de64", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-request-id": "89f0b057-5d36-425b-8ef0-07c0bee86d35", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080735Z:ff1dd716-fe78-4917-a19a-f7d80fd3de64", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "0e5f5dfd01082805cae2706662268a1f", + "x-ms-correlation-request-id": "a224b81d-3c47-49b6-9669-408a8583ff2c", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-request-id": "7eaac988-f64e-49e1-85b3-bcc77e1b9aa8", + "x-ms-routing-request-id": "JAPANEAST:20230322T024754Z:a224b81d-3c47-49b6-9669-408a8583ff2c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -992,7 +627,7 @@ "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460" }, "groupIds": [ "webpubsub" @@ -1003,48 +638,48 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/privateEndpointConnections/webpubsub-453.5815af0d-b36b-4915-8d9d-c8363c38c64f", - "name": "webpubsub-453.5815af0d-b36b-4915-8d9d-c8363c38c64f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/privateEndpointConnections/webpubsub-9075.6a6665cf-f001-416b-9dea-ef71c3b8e00b", + "name": "webpubsub-9075.6a6665cf-f001-416b-9dea-ef71c3b8e00b", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-453/privateEndpointConnections/webpubsub-453.5815af0d-b36b-4915-8d9d-c8363c38c64f?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-9075/privateEndpointConnections/webpubsub-9075.6a6665cf-f001-416b-9dea-ef71c3b8e00b?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-74c45c6304459d45bdbb79a579764db0-a5eb4c1c2aef4d45-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e203d5310ed6eada8a8598870cbf04d5", + "traceparent": "00-dd1e394e69b89193b06f9f85b92a9de3-578eb473152e9ba5-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6170a8e20ff8e045467ea9b01123dc75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "722", + "Content-Length": "721", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:35 GMT", + "Date": "Wed, 22 Mar 2023 02:47:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e203d5310ed6eada8a8598870cbf04d5", - "x-ms-correlation-request-id": "a28b5256-0790-40dc-b91a-13e89cace0aa", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-request-id": "0b9058b6-8f40-4c77-aad7-713b6a81c069", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080735Z:a28b5256-0790-40dc-b91a-13e89cace0aa", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "6170a8e20ff8e045467ea9b01123dc75", + "x-ms-correlation-request-id": "d7702cbf-57e9-4599-8a41-23016a74bfd4", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-request-id": "2cb4af07-4d21-4a8b-a45e-a623225226ff", + "x-ms-routing-request-id": "JAPANEAST:20230322T024755Z:d7702cbf-57e9-4599-8a41-23016a74bfd4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "properties": { "provisioningState": "Succeeded", "privateEndpoint": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460" }, "groupIds": [ "webpubsub" @@ -1055,29 +690,29 @@ "actionsRequired": "None" } }, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453/privateEndpointConnections/webpubsub-453.5815af0d-b36b-4915-8d9d-c8363c38c64f", - "name": "webpubsub-453.5815af0d-b36b-4915-8d9d-c8363c38c64f", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075/privateEndpointConnections/webpubsub-9075.6a6665cf-f001-416b-9dea-ef71c3b8e00b", + "name": "webpubsub-9075.6a6665cf-f001-416b-9dea-ef71c3b8e00b", "type": "Microsoft.SignalRService/WebPubSub/privateEndpointConnections" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1358f784dcbbde4ea37c0768728de20b-9252db68adb14c40-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4fa746dd07d97d2cb8bbe76e3f475207", + "traceparent": "00-90483d0f84bade38d7713ce16f7386da-889f678aa3712784-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "62ec53653067e1bb09c0c156918ddb16", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2328", + "Content-Length": "2320", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:35 GMT", + "Date": "Wed, 22 Mar 2023 02:47:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1086,32 +721,32 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3821d104-76fb-4a96-bd67-4bac7e0b3bc7", - "x-ms-client-request-id": "4fa746dd07d97d2cb8bbe76e3f475207", - "x-ms-correlation-request-id": "e44da4ec-bfd5-4ed1-8d0e-70659afbe6b1", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-request-id": "7673ebca-ae70-4c4b-b47c-85a3860dde26", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080735Z:e44da4ec-bfd5-4ed1-8d0e-70659afbe6b1" + "x-ms-arm-service-request-id": "135b9138-4050-4e69-b922-b83e4842748a", + "x-ms-client-request-id": "62ec53653067e1bb09c0c156918ddb16", + "x-ms-correlation-request-id": "7992db8d-c9b5-4460-910d-7d2b644e36e1", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-request-id": "10776dc1-414e-4cce-9b4a-ab001c59da68", + "x-ms-routing-request-id": "JAPANEAST:20230322T024755Z:7992db8d-c9b5-4460-910d-7d2b644e36e1" }, "ResponseBody": { "value": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499", - "etag": "W/\u00220a410d84-1ac4-4469-986d-a9b50e2f39c2\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460", + "etag": "W/\u0022807793bf-88d7-406f-b6d4-ebbc03db9380\u0022", "type": "Microsoft.Network/privateEndpoints", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "resourceGuid": "836cd32a-8ff7-4ea5-8098-2da5bdc16bc7", + "resourceGuid": "6fe8d41f-17df-4246-be93-cb21acf6f1ba", "privateLinkServiceConnections": [ { - "name": "PrivateEndPoint-7499", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499/privateLinkServiceConnections/PrivateEndPoint-7499", - "etag": "W/\u00220a410d84-1ac4-4469-986d-a9b50e2f39c2\u0022", + "name": "PrivateEndPoint-2460", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460/privateLinkServiceConnections/PrivateEndPoint-2460", + "etag": "W/\u0022807793bf-88d7-406f-b6d4-ebbc03db9380\u0022", "properties": { "provisioningState": "Succeeded", - "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", + "privateLinkServiceId": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075", "groupIds": [ "webpubsub" ], @@ -1126,16 +761,16 @@ ], "manualPrivateLinkServiceConnections": [], "subnet": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/virtualNetworks/Vnet-7072/subnets/subnet02" }, "networkInterfaces": [ { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-7499.nic.e2cf977a-f176-41d7-9194-dd4e0c89aa97" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/networkInterfaces/PrivateEndPoint-2460.nic.00224178-3500-4605-95a1-cbc4ccf1f805" } ], "customDnsConfigs": [ { - "fqdn": "webpubsub-453.webpubsub.azure.com", + "fqdn": "webpubsub-9075.webpubsub.azure.com", "ipAddresses": [ "10.10.2.4" ] @@ -1147,26 +782,26 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-7499?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.Network/privateEndpoints/PrivateEndPoint-2460?api-version=2021-02-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-38c3ce2751122b4abc0736227b125406-110aabf15160ba45-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8a3cc4534e82810c9cc4500e7d700efb", + "traceparent": "00-79af06d362e1da3ef0bef07d5e3656ef-85f443fa36f7c537-00", + "User-Agent": "azsdk-net-ResourceManager.Network/1.1.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "acc5805f0aa3ee29187ec889575416a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bd17da74-f44e-4967-a0f5-975e60c03784?api-version=2021-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/972d389c-5862-4042-b379-710624e72e9a?api-version=2021-02-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 05 Jul 2022 08:07:36 GMT", + "Date": "Wed, 22 Mar 2023 02:47:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/bd17da74-f44e-4967-a0f5-975e60c03784?api-version=2021-02-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operationResults/972d389c-5862-4042-b379-710624e72e9a?api-version=2021-02-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -1175,23 +810,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "232c3027-7254-46f9-9a4a-30a463fb96e2", - "x-ms-client-request-id": "8a3cc4534e82810c9cc4500e7d700efb", - "x-ms-correlation-request-id": "4420782b-ab93-485f-95f1-06a9899b820d", - "x-ms-ratelimit-remaining-subscription-deletes": "14984", - "x-ms-request-id": "bd17da74-f44e-4967-a0f5-975e60c03784", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080736Z:4420782b-ab93-485f-95f1-06a9899b820d" + "x-ms-arm-service-request-id": "3a1b2014-a082-4bfa-a77c-6c6e92237b95", + "x-ms-client-request-id": "acc5805f0aa3ee29187ec889575416a7", + "x-ms-correlation-request-id": "3cd85005-30b6-4dcc-9381-9d33a8a6ad9e", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-request-id": "972d389c-5862-4042-b379-710624e72e9a", + "x-ms-routing-request-id": "JAPANEAST:20230322T024756Z:3cd85005-30b6-4dcc-9381-9d33a8a6ad9e" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bd17da74-f44e-4967-a0f5-975e60c03784?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/972d389c-5862-4042-b379-710624e72e9a?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-38c3ce2751122b4abc0736227b125406-d8b06087f025ea42-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4733903379838e523925b215b61dff48", + "traceparent": "00-79af06d362e1da3ef0bef07d5e3656ef-c76229e23c5b18f1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "915193a2305d5bd12afe49e968318ab5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1200,7 +835,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:36 GMT", + "Date": "Wed, 22 Mar 2023 02:47:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "10", @@ -1210,25 +845,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "594c27a7-b8f1-41f6-82ef-55165a2d143b", - "x-ms-client-request-id": "4733903379838e523925b215b61dff48", - "x-ms-correlation-request-id": "443954d3-f34e-4a0a-ac49-7982bc3b0e59", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-request-id": "5f272437-8fe8-4ca7-891c-65e33b6e2ee9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080736Z:443954d3-f34e-4a0a-ac49-7982bc3b0e59" + "x-ms-arm-service-request-id": "169fdf5b-8f9b-4356-b1ec-4ed2d92f21bd", + "x-ms-client-request-id": "915193a2305d5bd12afe49e968318ab5", + "x-ms-correlation-request-id": "71a380ae-42f9-463d-8333-955ed4df230e", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-request-id": "fe81de51-4f39-4a34-8433-ff4105ff1b10", + "x-ms-routing-request-id": "JAPANEAST:20230322T024756Z:71a380ae-42f9-463d-8333-955ed4df230e" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bd17da74-f44e-4967-a0f5-975e60c03784?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/972d389c-5862-4042-b379-710624e72e9a?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-38c3ce2751122b4abc0736227b125406-b9ddc5c5782fbe4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5178ecada7aab0fa2412e1fc24f15930", + "traceparent": "00-79af06d362e1da3ef0bef07d5e3656ef-b0a9e428e4fff208-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "954f1aa9cd8c36dcc813bf15b1f29f29", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1237,7 +872,7 @@ "Cache-Control": "no-cache", "Content-Length": "30", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:07:46 GMT", + "Date": "Wed, 22 Mar 2023 02:48:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "20", @@ -1247,25 +882,25 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e5ac23cb-0593-4f16-a250-cba2a724c9e0", - "x-ms-client-request-id": "5178ecada7aab0fa2412e1fc24f15930", - "x-ms-correlation-request-id": "7ed6af78-8c01-47dd-bf1f-190920c41b31", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-request-id": "3a57e998-5bc1-465b-bf44-59b50028c9c6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080747Z:7ed6af78-8c01-47dd-bf1f-190920c41b31" + "x-ms-arm-service-request-id": "47921521-d05f-4f00-b7d1-1f9b021c9dd7", + "x-ms-client-request-id": "954f1aa9cd8c36dcc813bf15b1f29f29", + "x-ms-correlation-request-id": "c5bc2a27-692e-4e93-bccc-95fd681b3fae", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-request-id": "f8dd34e4-bbb0-4d54-8ddd-03745c3cd6c8", + "x-ms-routing-request-id": "JAPANEAST:20230322T024806Z:c5bc2a27-692e-4e93-bccc-95fd681b3fae" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/bd17da74-f44e-4967-a0f5-975e60c03784?api-version=2021-02-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/972d389c-5862-4042-b379-710624e72e9a?api-version=2021-02-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-38c3ce2751122b4abc0736227b125406-8dbb6fa32a439047-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ecdb0e19c73c7b779c0d71e7f08a728b", + "traceparent": "00-79af06d362e1da3ef0bef07d5e3656ef-4f232097e91e5110-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c4e70f2f8503d6492aa5e43bdece49bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1274,7 +909,7 @@ "Cache-Control": "no-cache", "Content-Length": "29", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:07 GMT", + "Date": "Wed, 22 Mar 2023 02:48:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -1283,46 +918,45 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d305e33c-39f8-447a-961f-13a3cc46327d", - "x-ms-client-request-id": "ecdb0e19c73c7b779c0d71e7f08a728b", - "x-ms-correlation-request-id": "7f8d119f-752b-4c51-87c8-21ad92557afc", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-request-id": "4c8f2930-f478-4a33-82ca-af6a45c0746f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080808Z:7f8d119f-752b-4c51-87c8-21ad92557afc" + "x-ms-arm-service-request-id": "dc797a13-e80f-45bf-8c1c-e18caceaff97", + "x-ms-client-request-id": "c4e70f2f8503d6492aa5e43bdece49bb", + "x-ms-correlation-request-id": "6ad05ca3-f6fd-40cd-8fef-bbfbd68d2fef", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-request-id": "fcc4bc50-a9cf-4ca3-b60f-5da678dc986f", + "x-ms-routing-request-id": "JAPANEAST:20230322T024826Z:6ad05ca3-f6fd-40cd-8fef-bbfbd68d2fef" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-61c2a246ea97b24d88b2fc81144a53aa-98be314d7b6ebe4b-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3b6de18659f38b979683237197556a47", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "348ea303b99fd42cb61ac84a70bca937", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1284", + "Content-Length": "1286", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 08:08:07 GMT", + "Date": "Wed, 22 Mar 2023 02:48:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3b6de18659f38b979683237197556a47", - "x-ms-correlation-request-id": "654ce4a9-4541-4926-91b8-9d7a10cb39db", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-request-id": "197176d5-5e90-4465-bfca-ec1e12e1d332", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080808Z:654ce4a9-4541-4926-91b8-9d7a10cb39db", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "348ea303b99fd42cb61ac84a70bca937", + "x-ms-correlation-request-id": "00ca2877-96b8-47fe-a050-506d13ccd404", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-request-id": "42608aa8-de55-48b6-b2ee-80ab08a71aba", + "x-ms-routing-request-id": "JAPANEAST:20230322T024827Z:00ca2877-96b8-47fe-a050-506d13ccd404", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -1335,8 +969,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-453.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-9075.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -1345,7 +979,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-453", + "hostNamePrefix": "webpubsub-9075", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -1380,54 +1014,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-05T08:04:54.9515035Z", + "createdAt": "2023-03-22T02:45:49.8721475Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-05T08:04:54.9515035Z" + "lastModifiedAt": "2023-03-22T02:45:49.8721475Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-453", - "name": "WebPubSub-453", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/WebPubSub/WebPubSub-9075", + "name": "WebPubSub-9075", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.SignalRService/webPubSub/WebPubSub-453?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37/providers/Microsoft.SignalRService/webPubSub/WebPubSub-9075?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cbd86d6f42b2eb4389c4ccfcc0480860-04547a3de518904c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a8fb82cc1342e50c74fdb49d3613c099", + "traceparent": "00-25054a983b740a5cbd6d380a6e8bc0c5-3c1e00fd7781c5ca-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "59ba205ec64923b1d0796be6e9a158fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 05 Jul 2022 08:08:10 GMT", + "Date": "Wed, 22 Mar 2023 02:48:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a8fb82cc1342e50c74fdb49d3613c099", - "x-ms-correlation-request-id": "6bbe5cb8-7e28-4dd7-9ed6-94b17932c67b", - "x-ms-ratelimit-remaining-subscription-deletes": "14983", - "x-ms-request-id": "2bec14e2-c334-41e9-8f45-7b7ddea86a75", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T080810Z:6bbe5cb8-7e28-4dd7-9ed6-94b17932c67b", - "x-rp-server-mvid": "a7df074e-9833-4af6-8182-5a1fcbe82718" + "x-ms-client-request-id": "59ba205ec64923b1d0796be6e9a158fa", + "x-ms-correlation-request-id": "927dca02-9f2a-4d70-89f1-81413f2a0e65", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-request-id": "542d90d9-3759-4730-be28-942605d40cba", + "x-ms-routing-request-id": "JAPANEAST:20230322T024829Z:927dca02-9f2a-4d70-89f1-81413f2a0e65", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1668588252", + "RandomSeed": "1951424754", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(False).json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(False).json index 6f05881ea000..dcb8788d41ef 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(False).json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(False).json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9ea712269f50fc4eac2edcc87ef58dd5-3a88351f7d35074d-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae5e9ef31ea2b9c887c9c9262899c61e", + "traceparent": "00-09a7c13cc3ff6560a50563c578276f16-f7efbf356c9bd16b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7cf3e0b1d071aa7bf4ba5fae124602ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:04 GMT", + "Date": "Wed, 22 Mar 2023 02:52:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "576c5350-332b-40a5-b486-f0a885ac4256", + "x-ms-correlation-request-id": "67fda7bd-208b-46f6-ad6b-9e7b177896c7", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "576c5350-332b-40a5-b486-f0a885ac4256", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074404Z:576c5350-332b-40a5-b486-f0a885ac4256" + "x-ms-request-id": "67fda7bd-208b-46f6-ad6b-9e7b177896c7", + "x-ms-routing-request-id": "JAPANEAST:20230322T025200Z:67fda7bd-208b-46f6-ad6b-9e7b177896c7" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -56,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-5509?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-403?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-3cc169cf785e0244b11327676a04a99d-01fba99773b6224e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3a8c3521ddb6f1445df10b567b2aaf57", + "traceparent": "00-e30f805e55e2e1ca3a8127763c1cf835-d636b0ad261a7a50-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f329d409628fb50408806a4bf8dbc7ae", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -74,294 +74,32 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:07 GMT", + "Date": "Wed, 22 Mar 2023 02:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8be75085-f0eb-4c3f-b0dc-c1148bfd5339", + "x-ms-correlation-request-id": "f0f543e3-a0c3-47fe-964b-4868975aa7ae", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "8be75085-f0eb-4c3f-b0dc-c1148bfd5339", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074408Z:8be75085-f0eb-4c3f-b0dc-c1148bfd5339" + "x-ms-request-id": "f0f543e3-a0c3-47fe-964b-4868975aa7ae", + "x-ms-routing-request-id": "JAPANEAST:20230322T025203Z:f0f543e3-a0c3-47fe-964b-4868975aa7ae" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509", - "name": "WebPubSubRG-5509", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-403", + "name": "WebPubSubRG-403", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { "provisioningState": "Succeeded" } } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "277", - "Content-Type": "application/json", - "traceparent": "00-847455d69ddd8043b7922cce4da0c7d5-f313b14e65299d4f-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b0b44f1334354b7b412c1e8b83abde12", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.10.0.0/16" - ] - }, - "subnets": [ - { - "name": "subnet01", - "properties": { - "addressPrefix": "10.10.1.0/24" - } - }, - { - "name": "subnet02", - "properties": { - "addressPrefix": "10.10.2.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af55cde1-479e-4b47-8453-d8c58fdbb7bc?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1844", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7304752c-3a8d-4720-8265-274100d6d203", - "x-ms-client-request-id": "b0b44f1334354b7b412c1e8b83abde12", - "x-ms-correlation-request-id": "f9c6bf5c-8dbf-4225-ab35-f764bc3cde2d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "af55cde1-479e-4b47-8453-d8c58fdbb7bc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074414Z:f9c6bf5c-8dbf-4225-ab35-f764bc3cde2d" - }, - "ResponseBody": { - "name": "Vnet-613", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613", - "etag": "W/\u0022766c5773-c7d9-44af-b729-fcb493608a15\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "023abd1f-2e53-4f0a-a81a-e3bd3236aa5e", - "addressSpace": { - "addressPrefixes": [ - "10.10.0.0/16" - ] - }, - "subnets": [ - { - "name": "subnet01", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet01", - "etag": "W/\u0022766c5773-c7d9-44af-b729-fcb493608a15\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.10.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - }, - { - "name": "subnet02", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02", - "etag": "W/\u0022766c5773-c7d9-44af-b729-fcb493608a15\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.10.2.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af55cde1-479e-4b47-8453-d8c58fdbb7bc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-847455d69ddd8043b7922cce4da0c7d5-efb4de4c9bf6004f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ceb333fc71915700bf6a9b17d2d16e5f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "96a03cea-de56-4162-830b-a9473828d226", - "x-ms-client-request-id": "ceb333fc71915700bf6a9b17d2d16e5f", - "x-ms-correlation-request-id": "a436e5ce-5ba0-41b6-a9ff-76d9d60d72ec", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "55abe2f7-38ab-4b93-b30d-7afec2f66612", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074414Z:a436e5ce-5ba0-41b6-a9ff-76d9d60d72ec" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/af55cde1-479e-4b47-8453-d8c58fdbb7bc?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-847455d69ddd8043b7922cce4da0c7d5-6a86c3cedcd5dc47-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6e1e6978a1a8522835f76b0877183fa2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ca184bef-3ae4-48a6-badb-3635f7a850a3", - "x-ms-client-request-id": "6e1e6978a1a8522835f76b0877183fa2", - "x-ms-correlation-request-id": "f1a84012-102d-479b-8305-f77bc0ea1b6d", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "e5a4afdb-0f23-4da9-904e-3684951b6eef", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074424Z:f1a84012-102d-479b-8305-f77bc0ea1b6d" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-847455d69ddd8043b7922cce4da0c7d5-b983e5585338fe4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4f8f4f1210f89a804056cbd22503eb73", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1847", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:44:24 GMT", - "ETag": "W/\u00227f60930f-6c6f-4505-95ea-6fea00730e7c\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f6a9731f-8ca8-4eb1-ac36-e70b53036e80", - "x-ms-client-request-id": "4f8f4f1210f89a804056cbd22503eb73", - "x-ms-correlation-request-id": "85e02ab3-e61e-4cae-832f-723b591934fd", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "6cc2a02d-e8b0-4d6a-8e2c-dfd395208d29", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T074425Z:85e02ab3-e61e-4cae-832f-723b591934fd" - }, - "ResponseBody": { - "name": "Vnet-613", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613", - "etag": "W/\u00227f60930f-6c6f-4505-95ea-6fea00730e7c\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "023abd1f-2e53-4f0a-a81a-e3bd3236aa5e", - "addressSpace": { - "addressPrefixes": [ - "10.10.0.0/16" - ] - }, - "subnets": [ - { - "name": "subnet01", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet01", - "etag": "W/\u00227f60930f-6c6f-4505-95ea-6fea00730e7c\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.10.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - }, - { - "name": "subnet02", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-5509/providers/Microsoft.Network/virtualNetworks/Vnet-613/subnets/subnet02", - "etag": "W/\u00227f60930f-6c6f-4505-95ea-6fea00730e7c\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.10.2.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "934185744", + "RandomSeed": "1169311251", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(True)Async.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(True)Async.json index 38e8a89eccc0..f6ac3a087f28 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(True)Async.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/PrivateEndpointConnectionTests/PrivateEndpointConnectionTests(True)Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-716f6660b01e2f419b071382a2afc9fa-75d474b6e149264f-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0b5fb00b4d2ca931c84a9393457b00a5", + "traceparent": "00-34628b8106322c886289e71c94a47d02-184f132e46dce2ed-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e98ca76b88d1b80491164291302a5cfc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:38 GMT", + "Date": "Wed, 22 Mar 2023 02:39:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75f22011-6350-4380-b009-ee015db31ccc", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-request-id": "75f22011-6350-4380-b009-ee015db31ccc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075738Z:75f22011-6350-4380-b009-ee015db31ccc" + "x-ms-correlation-request-id": "73b2d64e-d742-4334-8f23-93a3d8a20355", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "73b2d64e-d742-4334-8f23-93a3d8a20355", + "x-ms-routing-request-id": "JAPANEAST:20230322T023945Z:73b2d64e-d742-4334-8f23-93a3d8a20355" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -56,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-9771?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-37?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-600b44707db8ed4d966fd1356270a351-062f20472c081d4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ebda1b37865a30744ed1800cfc158214", + "traceparent": "00-930a740c5347beb592c1740266b2aaf9-992af089a6b4cd97-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "61360f3e4db96798562eda4db9b566b0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -74,294 +74,32 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "230", + "Content-Length": "226", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:39 GMT", + "Date": "Wed, 22 Mar 2023 02:39:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ccab8ba-d295-46d4-b2be-c008d8b4af0b", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "6ccab8ba-d295-46d4-b2be-c008d8b4af0b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075739Z:6ccab8ba-d295-46d4-b2be-c008d8b4af0b" + "x-ms-correlation-request-id": "33a77cc4-165b-43d2-8f9e-499c8f581b32", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "33a77cc4-165b-43d2-8f9e-499c8f581b32", + "x-ms-routing-request-id": "JAPANEAST:20230322T023948Z:33a77cc4-165b-43d2-8f9e-499c8f581b32" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771", - "name": "WebPubSubRG-9771", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-37", + "name": "WebPubSubRG-37", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { "provisioningState": "Succeeded" } } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765?api-version=2021-02-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "277", - "Content-Type": "application/json", - "traceparent": "00-65b25a19c065614f928bc8cb72ec9f47-0e95f37558c9b74f-00", - "User-Agent": "azsdk-net-ResourceManager.Network/1.0.0-alpha.20220705.1 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0ee04f3be03e3702e9e9cb7f513d18e6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "addressSpace": { - "addressPrefixes": [ - "10.10.0.0/16" - ] - }, - "subnets": [ - { - "name": "subnet01", - "properties": { - "addressPrefix": "10.10.1.0/24" - } - }, - { - "name": "subnet02", - "properties": { - "addressPrefix": "10.10.2.0/24", - "privateEndpointNetworkPolicies": "Disabled" - } - } - ] - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1fd081f3-24b9-4afc-9af8-7d4f0f677263?api-version=2021-02-01", - "Cache-Control": "no-cache", - "Content-Length": "1848", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "3", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a27643d5-2ddd-4d6d-9d21-ed3137ae8d66", - "x-ms-client-request-id": "0ee04f3be03e3702e9e9cb7f513d18e6", - "x-ms-correlation-request-id": "425b64a2-f005-4e42-871a-7b2aa85771e4", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "1fd081f3-24b9-4afc-9af8-7d4f0f677263", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075742Z:425b64a2-f005-4e42-871a-7b2aa85771e4" - }, - "ResponseBody": { - "name": "Vnet-3765", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765", - "etag": "W/\u0022085cfbb0-1623-4aa6-bd6d-9383f4248d0c\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Updating", - "resourceGuid": "616de3bf-7521-45f5-a49d-1bc07100185f", - "addressSpace": { - "addressPrefixes": [ - "10.10.0.0/16" - ] - }, - "subnets": [ - { - "name": "subnet01", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet01", - "etag": "W/\u0022085cfbb0-1623-4aa6-bd6d-9383f4248d0c\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.10.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - }, - { - "name": "subnet02", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02", - "etag": "W/\u0022085cfbb0-1623-4aa6-bd6d-9383f4248d0c\u0022", - "properties": { - "provisioningState": "Updating", - "addressPrefix": "10.10.2.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1fd081f3-24b9-4afc-9af8-7d4f0f677263?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-65b25a19c065614f928bc8cb72ec9f47-8c845d31be64f942-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "55c47e3928daf9dde9229c8a65cf8042", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "30", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Retry-After": "10", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "83c19555-b518-4dc0-b0a1-d164be77c32f", - "x-ms-client-request-id": "55c47e3928daf9dde9229c8a65cf8042", - "x-ms-correlation-request-id": "c2e4ac35-52a2-4e59-bd28-f5e747af7be7", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-request-id": "7c494b8d-466f-4547-9f8f-605783a05e4d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075743Z:c2e4ac35-52a2-4e59-bd28-f5e747af7be7" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Network/locations/westus2/operations/1fd081f3-24b9-4afc-9af8-7d4f0f677263?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-65b25a19c065614f928bc8cb72ec9f47-8f70cc600c02c946-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bd1215f3cda1124a640630c12f656bb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "29", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b25e812a-62c2-475b-b254-3e1da80d3622", - "x-ms-client-request-id": "bd1215f3cda1124a640630c12f656bb4", - "x-ms-correlation-request-id": "41399e0d-f341-443b-8586-97cd67d828a3", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-request-id": "0565420a-1f78-4a51-8ab5-feb328d96a4d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075753Z:41399e0d-f341-443b-8586-97cd67d828a3" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765?api-version=2021-02-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-65b25a19c065614f928bc8cb72ec9f47-5a4896abf89ac84a-00", - "User-Agent": "azsdk-net-ResourceManager/1.1.2 (.NET Core 3.1.26; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d2464cd9c279da0ce779558f8c60750f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1851", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 05 Jul 2022 07:57:53 GMT", - "ETag": "W/\u00228e594322-eceb-4154-af0c-c7a232ba7310\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ecf0a8fa-851c-41e8-b041-4c29843558d3", - "x-ms-client-request-id": "d2464cd9c279da0ce779558f8c60750f", - "x-ms-correlation-request-id": "2743f95c-15f4-4d15-b9d4-4dc20c2447bf", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-request-id": "5e90077c-c952-4486-9de5-a636105a65ad", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220705T075753Z:2743f95c-15f4-4d15-b9d4-4dc20c2447bf" - }, - "ResponseBody": { - "name": "Vnet-3765", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765", - "etag": "W/\u00228e594322-eceb-4154-af0c-c7a232ba7310\u0022", - "type": "Microsoft.Network/virtualNetworks", - "location": "westus2", - "properties": { - "provisioningState": "Succeeded", - "resourceGuid": "616de3bf-7521-45f5-a49d-1bc07100185f", - "addressSpace": { - "addressPrefixes": [ - "10.10.0.0/16" - ] - }, - "subnets": [ - { - "name": "subnet01", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet01", - "etag": "W/\u00228e594322-eceb-4154-af0c-c7a232ba7310\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.10.1.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Enabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - }, - { - "name": "subnet02", - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-9771/providers/Microsoft.Network/virtualNetworks/Vnet-3765/subnets/subnet02", - "etag": "W/\u00228e594322-eceb-4154-af0c-c7a232ba7310\u0022", - "properties": { - "provisioningState": "Succeeded", - "addressPrefix": "10.10.2.0/24", - "delegations": [], - "privateEndpointNetworkPolicies": "Disabled", - "privateLinkServiceNetworkPolicies": "Enabled" - }, - "type": "Microsoft.Network/virtualNetworks/subnets" - } - ], - "virtualNetworkPeerings": [], - "enableDdosProtection": false - } - } } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1753703468", + "RandomSeed": "2063677184", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExist.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExist.json index 0f7c745eec60..1eb3e1fda549 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExist.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExist.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-296?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6782?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-fabf88e7e8d27f4d9d5ed95465e621fa-7c864d550241ed41-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4346bc13f901877d631d239e6b437b2c", + "traceparent": "00-6879d7ef48f1ea8864345ae5e4f7388e-8e558dccb6cd7d8b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "05ed5d3b26df2540be24fbe90c73a583", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:06:52 GMT", + "Date": "Wed, 22 Mar 2023 03:06:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "543db4a3-7c3e-4f72-8a34-d0896a5fdf6a", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-request-id": "543db4a3-7c3e-4f72-8a34-d0896a5fdf6a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030652Z:543db4a3-7c3e-4f72-8a34-d0896a5fdf6a" + "x-ms-correlation-request-id": "2c859caf-2671-477a-b07c-cf9cdd121976", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "2c859caf-2671-477a-b07c-cf9cdd121976", + "x-ms-routing-request-id": "JAPANEAST:20230322T030606Z:2c859caf-2671-477a-b07c-cf9cdd121976" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296", - "name": "WebPubSubRG-296", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782", + "name": "WebPubSubRG-6782", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-666?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-9614?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-8e87ed811fc85c46-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "32d3e1b0aeae1cafd327c560bfcebb83", + "traceparent": "00-32a877749a46205b86b23258afcd751a-580a2af88ab09eb1-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c09681a9bdd0babc88560a2f98b06b96", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1269", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:06:57 GMT", + "Date": "Wed, 22 Mar 2023 03:06:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationResults/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationResults/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "32d3e1b0aeae1cafd327c560bfcebb83", - "x-ms-correlation-request-id": "cf5820d0-8b2d-444e-be78-1a0ae6608da6", - "x-ms-ratelimit-remaining-subscription-writes": "1176", - "x-ms-request-id": "968bb68d-2e4b-4c52-a9cf-d8a1ee3b7eb9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030657Z:cf5820d0-8b2d-444e-be78-1a0ae6608da6", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c09681a9bdd0babc88560a2f98b06b96", + "x-ms-correlation-request-id": "e797eabf-b668-42e0-9552-de12246db848", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "b6d2214f-a31b-4606-a0c0-f68b72509f49", + "x-ms-routing-request-id": "JAPANEAST:20230322T030614Z:e797eabf-b668-42e0-9552-de12246db848", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-666.webpubsub.azure.com", + "hostName": "webpubsub-9614.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-666", + "hostNamePrefix": "webpubsub-9614", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,371 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:06:55.0670509Z", + "createdAt": "2023-03-22T03:06:09.0117889Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:06:55.0670509Z" + "lastModifiedAt": "2023-03-22T03:06:09.0117889Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666", - "name": "webpubsub-666", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614", + "name": "webpubsub-9614", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-26e14a85cdd05246-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8083dc1877460e6496272ed2b826a34e", + "traceparent": "00-32a877749a46205b86b23258afcd751a-03b7ef3ee17668c2-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7b07f1b4572ca06b304a57cf35f62574", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:06:57 GMT", + "Date": "Wed, 22 Mar 2023 03:06:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8083dc1877460e6496272ed2b826a34e", - "x-ms-correlation-request-id": "52a7c157-b1f1-4ba3-8311-fe6ef03bb66a", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-request-id": "6d6af868-4877-455b-a5b4-f099363fb65a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030658Z:52a7c157-b1f1-4ba3-8311-fe6ef03bb66a", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "7b07f1b4572ca06b304a57cf35f62574", + "x-ms-correlation-request-id": "39795259-fb48-4d1f-99bd-2b87bc4761ce", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "91a40db7-cbbd-4288-a5db-55f05463d467", + "x-ms-routing-request-id": "JAPANEAST:20230322T030614Z:39795259-fb48-4d1f-99bd-2b87bc4761ce", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-76e019e96340d848-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "efae1b68d4261ee9b3ae28de0829511e", + "traceparent": "00-32a877749a46205b86b23258afcd751a-f5f2d4eb7fb6e39f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b4ff5290bfcdc66c0bda4e00bf1b85e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:06:59 GMT", + "Date": "Wed, 22 Mar 2023 03:06:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "efae1b68d4261ee9b3ae28de0829511e", - "x-ms-correlation-request-id": "92f1658b-09a7-4c4a-82b1-72c22baf5b11", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-request-id": "596c6264-bd04-463d-b9b0-e9fb744c0b08", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030659Z:92f1658b-09a7-4c4a-82b1-72c22baf5b11", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b4ff5290bfcdc66c0bda4e00bf1b85e9", + "x-ms-correlation-request-id": "47266d37-3a47-48d2-a85b-dc1c061d0afb", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "428a8ba0-ea34-4cd9-99e5-2a5ea01b52a0", + "x-ms-routing-request-id": "JAPANEAST:20230322T030616Z:47266d37-3a47-48d2-a85b-dc1c061d0afb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-da0e3e20fb6fd448-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e2481ada3a4b463df045c250635b6ce4", + "traceparent": "00-32a877749a46205b86b23258afcd751a-7b3e73cdae687298-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a77b70fff0a9b66a543693828ba7867b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:07:00 GMT", + "Date": "Wed, 22 Mar 2023 03:06:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e2481ada3a4b463df045c250635b6ce4", - "x-ms-correlation-request-id": "681e2811-727f-4dc0-bc06-b4d5c07c1192", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-request-id": "48faab60-8c58-43d5-9b79-b237617dc65b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030701Z:681e2811-727f-4dc0-bc06-b4d5c07c1192", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a77b70fff0a9b66a543693828ba7867b", + "x-ms-correlation-request-id": "0c1d872e-7259-4f29-bf3f-60c638affc21", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "125a9528-6dcb-42c1-84c5-a9511244e4dd", + "x-ms-routing-request-id": "JAPANEAST:20230322T030617Z:0c1d872e-7259-4f29-bf3f-60c638affc21", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-8746aeff7619c14f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "af1e572d5d064383f364cd974e86056d", + "traceparent": "00-32a877749a46205b86b23258afcd751a-e548e248c5184a90-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e21189aaa39ff5cc84407051086be015", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:07:02 GMT", + "Date": "Wed, 22 Mar 2023 03:06:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "af1e572d5d064383f364cd974e86056d", - "x-ms-correlation-request-id": "21285fb3-8311-4986-86b1-4e44f70a5315", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-request-id": "3196b5fb-6d1b-4216-ad9b-840e72cd6a39", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030702Z:21285fb3-8311-4986-86b1-4e44f70a5315", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e21189aaa39ff5cc84407051086be015", + "x-ms-correlation-request-id": "0b017758-febc-4fb0-b0a6-8fedc2679af2", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "435b0cab-03e0-43f2-bf74-f00de5292d74", + "x-ms-routing-request-id": "JAPANEAST:20230322T030618Z:0b017758-febc-4fb0-b0a6-8fedc2679af2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-5b947c2aa888d84e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9df70fd5c0dd2d03dd67ffe11299bb58", + "traceparent": "00-32a877749a46205b86b23258afcd751a-f7b166ab2188d049-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c4d06ec57d7ba0cbe84960972bea3b63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:07:04 GMT", + "Date": "Wed, 22 Mar 2023 03:06:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9df70fd5c0dd2d03dd67ffe11299bb58", - "x-ms-correlation-request-id": "1172307a-5d7a-49c5-96c2-32c331ede9e3", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-request-id": "c5399f15-7835-43ae-80cd-6f0b529d2148", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030705Z:1172307a-5d7a-49c5-96c2-32c331ede9e3", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c4d06ec57d7ba0cbe84960972bea3b63", + "x-ms-correlation-request-id": "6d06634f-4165-4592-8527-265979150f11", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "838e1c64-4eee-43a7-b014-4179345f9c00", + "x-ms-routing-request-id": "JAPANEAST:20230322T030621Z:6d06634f-4165-4592-8527-265979150f11", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-71c95b5f68f2cd4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b1b04442a20b7d179604efe66da5f769", + "traceparent": "00-32a877749a46205b86b23258afcd751a-25337ea6add6a060-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3655d253a20a5b49a48523687f18ade9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:07:09 GMT", + "Date": "Wed, 22 Mar 2023 03:06:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b1b04442a20b7d179604efe66da5f769", - "x-ms-correlation-request-id": "f402b945-b287-42de-b639-fb155a859c69", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-request-id": "997c1c26-d65a-49c0-a0f3-ef9c2607261b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030709Z:f402b945-b287-42de-b639-fb155a859c69", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "3655d253a20a5b49a48523687f18ade9", + "x-ms-correlation-request-id": "31484265-f575-49bf-a698-85d79578e52a", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "11adb068-d73c-4471-822e-7f629d60a420", + "x-ms-routing-request-id": "JAPANEAST:20230322T030625Z:31484265-f575-49bf-a698-85d79578e52a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-9a381c4519742a4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "537a5440ce636c0653f0d19e5da2315a", + "traceparent": "00-32a877749a46205b86b23258afcd751a-d45d49b7a921f69e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1dbc7d55c1d62d00be70fa564334c999", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:07:17 GMT", + "Date": "Wed, 22 Mar 2023 03:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "537a5440ce636c0653f0d19e5da2315a", - "x-ms-correlation-request-id": "fd38bf99-8c48-40d1-8860-fe904d8ff651", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-request-id": "08a7709f-aa56-4730-a06f-96072d111d3a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030718Z:fd38bf99-8c48-40d1-8860-fe904d8ff651", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "1dbc7d55c1d62d00be70fa564334c999", + "x-ms-correlation-request-id": "f55aca62-8cdf-4196-8b77-d9abf0b46fb5", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "662ce64c-7a0c-48f4-8aea-686aca9c9bc7", + "x-ms-routing-request-id": "JAPANEAST:20230322T030633Z:f55aca62-8cdf-4196-8b77-d9abf0b46fb5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-81411f36df6ac74e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0a5575a854d53362f77a06d8d01cc037", + "traceparent": "00-32a877749a46205b86b23258afcd751a-cf52ac4bef17f912-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "36fd0c05aa15220b247420f5596220cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:07:34 GMT", + "Date": "Wed, 22 Mar 2023 03:06:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0a5575a854d53362f77a06d8d01cc037", - "x-ms-correlation-request-id": "b327416a-bef0-45ae-a7cf-f102a0645f57", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-request-id": "e2128cc5-3710-44a3-a836-ce3aedebd59b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030734Z:b327416a-bef0-45ae-a7cf-f102a0645f57", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "36fd0c05aa15220b247420f5596220cf", + "x-ms-correlation-request-id": "f4b98fd5-3b51-4602-a2a8-fca6cbbdf3f5", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "6cbc9130-f892-4f21-a0e9-79cbd63afddc", + "x-ms-routing-request-id": "JAPANEAST:20230322T030650Z:f4b98fd5-3b51-4602-a2a8-fca6cbbdf3f5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Running", - "startTime": "2022-07-13T03:06:56.2812221Z" + "startTime": "2023-03-22T03:06:10.868209Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-3a208a0160104049-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bda09570681e73f43d435d1ad0791ff4", + "traceparent": "00-32a877749a46205b86b23258afcd751a-2fbbb67ecda7b6f9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ad41779b1d2d928dd1277799a7f3186f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "356", + "Content-Length": "357", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:07 GMT", + "Date": "Wed, 22 Mar 2023 03:07:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bda09570681e73f43d435d1ad0791ff4", - "x-ms-correlation-request-id": "577efb6d-5424-4357-b618-707d7013a0c6", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-request-id": "b7463572-ae04-43a9-a930-dea3ef3f2db9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030807Z:577efb6d-5424-4357-b618-707d7013a0c6", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "ad41779b1d2d928dd1277799a7f3186f", + "x-ms-correlation-request-id": "3d9f68cb-e822-4bdc-b7c1-97c75924ac11", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "ef1a613e-cd63-4268-bad9-e238c3f3479b", + "x-ms-routing-request-id": "JAPANEAST:20230322T030722Z:3d9f68cb-e822-4bdc-b7c1-97c75924ac11", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666/operationStatuses/649e783f-7970-4868-adc6-7c9413317ec2", - "name": "649e783f-7970-4868-adc6-7c9413317ec2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614/operationStatuses/ff629432-869b-437d-9465-7e960443e5da", + "name": "ff629432-869b-437d-9465-7e960443e5da", "status": "Succeeded", - "startTime": "2022-07-13T03:06:56.2812221Z", - "endTime": "2022-07-13T03:08:07.3753665Z" + "startTime": "2023-03-22T03:06:10.868209Z", + "endTime": "2023-03-22T03:07:03.1494545Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-666?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-9614?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-90d6bacddb19f444a5395c0af9b39e16-1f5a436c6f8c9745-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f73e95d2ec50eb93f2475be8c72d9c37", + "traceparent": "00-32a877749a46205b86b23258afcd751a-b4adfe1f81fa4f24-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "72638abc761aabd3729af861a10bd35c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1271", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:07 GMT", + "Date": "Wed, 22 Mar 2023 03:07:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f73e95d2ec50eb93f2475be8c72d9c37", - "x-ms-correlation-request-id": "867c75ce-b4af-47a5-9bab-2588828150de", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-request-id": "b0f2adb1-b77d-4291-a816-5481d02183e1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030808Z:867c75ce-b4af-47a5-9bab-2588828150de", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "72638abc761aabd3729af861a10bd35c", + "x-ms-correlation-request-id": "853de3eb-1701-4255-8545-5fc834bd5417", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "ae771406-cb5c-49dc-9b1d-0644b439157d", + "x-ms-routing-request-id": "JAPANEAST:20230322T030722Z:853de3eb-1701-4255-8545-5fc834bd5417", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-666.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-9614.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-666", + "hostNamePrefix": "webpubsub-9614", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,47 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:06:55.0670509Z", + "createdAt": "2023-03-22T03:06:09.0117889Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:06:55.0670509Z" + "lastModifiedAt": "2023-03-22T03:06:09.0117889Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666", - "name": "webpubsub-666", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614", + "name": "webpubsub-9614", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-666?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-9614?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-54e372b9b549b948b40a329c5e9ba4cb-d288968f3105a044-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c82e992f74013f3c80e1cc92f647627e", + "traceparent": "00-84dcf8713569c91d0b4587913b70942b-3f64f49e016e4add-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ccba2b501bf3e76b7f6b64ee32727a31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1271", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:08 GMT", + "Date": "Wed, 22 Mar 2023 03:07:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c82e992f74013f3c80e1cc92f647627e", - "x-ms-correlation-request-id": "a4793808-817a-4712-b68d-58239010d74c", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-request-id": "f44a6d68-6253-4f4a-840c-367ec2229725", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030808Z:a4793808-817a-4712-b68d-58239010d74c", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "ccba2b501bf3e76b7f6b64ee32727a31", + "x-ms-correlation-request-id": "e805ec78-7c7e-48b4-9b08-59515e1d79b3", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "f3c1ba54-7eee-403c-af4b-92be0c078236", + "x-ms-routing-request-id": "JAPANEAST:20230322T030723Z:e805ec78-7c7e-48b4-9b08-59515e1d79b3", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -631,8 +631,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-666.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-9614.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -641,7 +641,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-666", + "hostNamePrefix": "webpubsub-9614", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -676,81 +676,81 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:06:55.0670509Z", + "createdAt": "2023-03-22T03:06:09.0117889Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:06:55.0670509Z" + "lastModifiedAt": "2023-03-22T03:06:09.0117889Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666", - "name": "webpubsub-666", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614", + "name": "webpubsub-9614", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6661?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-96141?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b71f17d06904ef458c773983c2025c29-8dd54ae6c35c114e-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3b05125bc8de84e701b5cad60d0bac10", + "traceparent": "00-86c6d6b1d49fb7a5075b0c789e064430-92a6cf92201acf4f-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cf38b05caefe25b4a3953b93252bf0c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "236", + "Content-Length": "238", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:08 GMT", + "Date": "Wed, 22 Mar 2023 03:07:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30fbadef-9773-48d8-acfe-5da6ae6001ec", + "x-ms-correlation-request-id": "6dcd0aba-f3f7-4178-9022-015ac2c97bb4", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "30fbadef-9773-48d8-acfe-5da6ae6001ec", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030808Z:30fbadef-9773-48d8-acfe-5da6ae6001ec" + "x-ms-request-id": "6dcd0aba-f3f7-4178-9022-015ac2c97bb4", + "x-ms-routing-request-id": "JAPANEAST:20230322T030723Z:6dcd0aba-f3f7-4178-9022-015ac2c97bb4" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.SignalRService/WebPubSub/webpubsub-6661\u0027 under resource group \u0027WebPubSubRG-296\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.SignalRService/WebPubSub/webpubsub-96141\u0027 under resource group \u0027WebPubSubRG-6782\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dfaac34db28155448e69aacb24a0ace4-07daf4dd133e6c49-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "37ea26a7574a5ef258fe776f1f01f5aa", + "traceparent": "00-0d77202578062395a65e8c50f26bdd56-a183f6b440998297-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7c491b544b38a17c1e7cf3af11e57900", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1283", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:08 GMT", + "Date": "Wed, 22 Mar 2023 03:07:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "37ea26a7574a5ef258fe776f1f01f5aa", - "x-ms-correlation-request-id": "c8dcabb4-e7ad-4214-aee6-f65cb77e24f9", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-request-id": "f8a72f3b-144e-40c1-89e6-a2e717822935", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030809Z:c8dcabb4-e7ad-4214-aee6-f65cb77e24f9", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "7c491b544b38a17c1e7cf3af11e57900", + "x-ms-correlation-request-id": "06ffed9e-2da4-4a6a-9436-47aeb833f6de", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "93fc74b7-e9af-46e1-a7e5-20fa72890e80", + "x-ms-routing-request-id": "JAPANEAST:20230322T030724Z:06ffed9e-2da4-4a6a-9436-47aeb833f6de", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -763,8 +763,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-666.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-9614.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -773,7 +773,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-666", + "hostNamePrefix": "webpubsub-9614", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -808,54 +808,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:06:55.0670509Z", + "createdAt": "2023-03-22T03:06:09.0117889Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:06:55.0670509Z" + "lastModifiedAt": "2023-03-22T03:06:09.0117889Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-666", - "name": "webpubsub-666", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-9614", + "name": "webpubsub-9614", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-666?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-9614?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7509c8b8328d4f46a9cd9b59e393b0f2-40854a9121720a4e-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b58ddce560276659b2a9c64ca9653274", + "traceparent": "00-32b64bc06e2a537f309a338c48bb1e74-8b59389d20766158-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f005c61f03d2a15d7695285de0d7c154", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:08:11 GMT", + "Date": "Wed, 22 Mar 2023 03:07:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b58ddce560276659b2a9c64ca9653274", - "x-ms-correlation-request-id": "a394af4a-6879-4f8c-a871-bf101b5f087e", - "x-ms-ratelimit-remaining-subscription-deletes": "14986", - "x-ms-request-id": "eb7600c0-dcc9-4666-b756-23282b7a4aff", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030811Z:a394af4a-6879-4f8c-a871-bf101b5f087e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "f005c61f03d2a15d7695285de0d7c154", + "x-ms-correlation-request-id": "08391f9f-ede7-42e2-8371-82160406172f", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-request-id": "296782a6-b391-47d5-a547-aea10a589c14", + "x-ms-routing-request-id": "JAPANEAST:20230322T030725Z:08391f9f-ede7-42e2-8371-82160406172f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "641512108", + "RandomSeed": "1061194050", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExistAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExistAsync.json index 07fa88a53186..22c381a6b3f5 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExistAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CheckIfExistAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6159?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-4769?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0fb12accbae76044beb161591a52e199-dfce78fdb111594b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1337d1047cc14c7347cd0846f8e4225c", + "traceparent": "00-edf865d01c1ff2f13dbbcd78b7c5cf3f-cb7f91ed46a83966-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a7b87fb307a0596fa59712e15a2a6df4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:08 GMT", + "Date": "Wed, 22 Mar 2023 03:12:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9b39ad8-ff34-4b26-9b63-96ddb1c66b26", - "x-ms-ratelimit-remaining-subscription-reads": "11658", - "x-ms-request-id": "b9b39ad8-ff34-4b26-9b63-96ddb1c66b26", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031408Z:b9b39ad8-ff34-4b26-9b63-96ddb1c66b26" + "x-ms-correlation-request-id": "ac735d9c-4984-43af-b31e-da94094cb0cb", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-request-id": "ac735d9c-4984-43af-b31e-da94094cb0cb", + "x-ms-routing-request-id": "JAPANEAST:20230322T031252Z:ac735d9c-4984-43af-b31e-da94094cb0cb" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159", - "name": "WebPubSubRG-6159", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769", + "name": "WebPubSubRG-4769", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6866?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-3414?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-ac26e304827e254d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f4f7573663439eed2ef14e114e0eaee8", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-37078be2e93679f5-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7553ef134b21978d7b2bfb6435982c94", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "Cache-Control": "no-cache", "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:13 GMT", + "Date": "Wed, 22 Mar 2023 03:12:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationResults/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationResults/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f4f7573663439eed2ef14e114e0eaee8", - "x-ms-correlation-request-id": "9611659a-8ee6-4d6c-bd06-ca43f277ff16", - "x-ms-ratelimit-remaining-subscription-writes": "1169", - "x-ms-request-id": "ba269f01-2299-41e6-bbf9-a61d29cfc25f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031413Z:9611659a-8ee6-4d6c-bd06-ca43f277ff16", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "7553ef134b21978d7b2bfb6435982c94", + "x-ms-correlation-request-id": "15d7bf1e-6333-4945-9265-087a4ef99cf5", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-request-id": "80c6885b-f182-44a3-b62a-e1f6a2da0f85", + "x-ms-routing-request-id": "JAPANEAST:20230322T031257Z:15d7bf1e-6333-4945-9265-087a4ef99cf5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-6866.webpubsub.azure.com", + "hostName": "webpubsub-3414.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6866", + "hostNamePrefix": "webpubsub-3414", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,26 +160,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:14:10.9102429Z", + "createdAt": "2023-03-22T03:12:54.4860543Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:14:10.9102429Z" + "lastModifiedAt": "2023-03-22T03:12:54.4860543Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866", - "name": "webpubsub-6866", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414", + "name": "webpubsub-3414", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-d6d3ea64f1a62a42-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5cfab3f60ae46ec14a75938a243bf9be", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-b5e8296ab15ab458-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8a7fc1b5c48133922b0f24dc73f46ffe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -188,34 +188,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:13 GMT", + "Date": "Wed, 22 Mar 2023 03:12:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5cfab3f60ae46ec14a75938a243bf9be", - "x-ms-correlation-request-id": "a5b1a433-7b99-4fa6-ace9-dedf4811c7f1", - "x-ms-ratelimit-remaining-subscription-reads": "11657", - "x-ms-request-id": "b3951012-c581-4c09-889c-e2254197c443", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031413Z:a5b1a433-7b99-4fa6-ace9-dedf4811c7f1", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "8a7fc1b5c48133922b0f24dc73f46ffe", + "x-ms-correlation-request-id": "a6ffe1dd-3327-4406-9495-85d76aaa7fa7", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-request-id": "d405b036-91a7-4667-bd90-160233c8a3b2", + "x-ms-routing-request-id": "JAPANEAST:20230322T031257Z:a6ffe1dd-3327-4406-9495-85d76aaa7fa7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-2de723fd2eddf04f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "96cc5e59fe2bc435f9791292a7a6d3a4", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-f9362c9559fb201f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "39c74de52fad509d90deefbd764e3b26", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,34 +224,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:14 GMT", + "Date": "Wed, 22 Mar 2023 03:12:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "96cc5e59fe2bc435f9791292a7a6d3a4", - "x-ms-correlation-request-id": "8e775634-715c-4650-8fb4-27a0277268b2", - "x-ms-ratelimit-remaining-subscription-reads": "11656", - "x-ms-request-id": "60daa181-79b5-46c4-a428-2e93c4df829f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031415Z:8e775634-715c-4650-8fb4-27a0277268b2", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "39c74de52fad509d90deefbd764e3b26", + "x-ms-correlation-request-id": "00b7d616-828c-4cd9-8a91-f3e4dd669963", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-request-id": "7449f073-3011-4869-aa75-a0d2d7b41a3c", + "x-ms-routing-request-id": "JAPANEAST:20230322T031258Z:00b7d616-828c-4cd9-8a91-f3e4dd669963", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-a5cd0a0a7a063c43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9b1aabeb511420038c8913f7dfd359a6", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-7bb926d24ee2a532-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "74afedc7a218ce125e8c99e19e810190", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,34 +260,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:16 GMT", + "Date": "Wed, 22 Mar 2023 03:12:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9b1aabeb511420038c8913f7dfd359a6", - "x-ms-correlation-request-id": "30bdb59c-b46c-47c0-89b8-1ba54ac4605e", - "x-ms-ratelimit-remaining-subscription-reads": "11655", - "x-ms-request-id": "23030526-10b8-42d2-b186-6b9c7372cb77", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031416Z:30bdb59c-b46c-47c0-89b8-1ba54ac4605e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "74afedc7a218ce125e8c99e19e810190", + "x-ms-correlation-request-id": "54a42d53-d72f-478f-b529-fdf6ce2dc21d", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-request-id": "8dc486a1-9dc2-4ec6-a5f5-3f450cb7ca91", + "x-ms-routing-request-id": "JAPANEAST:20230322T031300Z:54a42d53-d72f-478f-b529-fdf6ce2dc21d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-d3fe3f5e41787245-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6cedfeb86fbcf8777d35636bf82ec6a3", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-6b9e521547130729-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "0f59d6f4298e865f242ff9a3d4d4bddc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -296,34 +296,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:17 GMT", + "Date": "Wed, 22 Mar 2023 03:13:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6cedfeb86fbcf8777d35636bf82ec6a3", - "x-ms-correlation-request-id": "33aa77b0-88d7-479e-be3f-4c659a53aa54", - "x-ms-ratelimit-remaining-subscription-reads": "11654", - "x-ms-request-id": "c5d8972c-bd57-43f8-a34d-565cb681d8fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031418Z:33aa77b0-88d7-479e-be3f-4c659a53aa54", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "0f59d6f4298e865f242ff9a3d4d4bddc", + "x-ms-correlation-request-id": "01ef016b-b1f9-4b39-b2fb-e098ed5e9583", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-request-id": "dba451f3-172d-43f2-94b0-bfe69e36a8ac", + "x-ms-routing-request-id": "JAPANEAST:20230322T031301Z:01ef016b-b1f9-4b39-b2fb-e098ed5e9583", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-2b25438d7c2d0340-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "789eeea25d2107a95aab0aa1eb3ee525", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-cc07914d52354d09-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8514fdd3fb4543e63af8db2195bbb10f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -332,34 +332,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:20 GMT", + "Date": "Wed, 22 Mar 2023 03:13:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "789eeea25d2107a95aab0aa1eb3ee525", - "x-ms-correlation-request-id": "9622cced-10b2-4fc7-93f2-9d457dab5aef", - "x-ms-ratelimit-remaining-subscription-reads": "11653", - "x-ms-request-id": "691a3c31-7b34-4f22-9a43-9ceed50324a3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031420Z:9622cced-10b2-4fc7-93f2-9d457dab5aef", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "8514fdd3fb4543e63af8db2195bbb10f", + "x-ms-correlation-request-id": "e0175b96-8c2b-48e7-966e-258e8238468f", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-request-id": "1ca52b60-5a8e-4d7f-b7ce-beda0b7f3f61", + "x-ms-routing-request-id": "JAPANEAST:20230322T031305Z:e0175b96-8c2b-48e7-966e-258e8238468f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-9ba14834a46a3c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a9d96b1f66b97be734211ddeee98285d", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-0de014f91cf17aeb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a0c95edd2cf59e988e2950e8a96ff989", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -368,34 +368,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:24 GMT", + "Date": "Wed, 22 Mar 2023 03:13:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a9d96b1f66b97be734211ddeee98285d", - "x-ms-correlation-request-id": "158d966b-d6c8-4b54-b3a7-6af92938b218", - "x-ms-ratelimit-remaining-subscription-reads": "11652", - "x-ms-request-id": "a7d2c390-e3cf-4c17-a315-0bc3b10ece77", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031424Z:158d966b-d6c8-4b54-b3a7-6af92938b218", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a0c95edd2cf59e988e2950e8a96ff989", + "x-ms-correlation-request-id": "be24b07f-c057-40ec-b122-c291f76f859c", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-request-id": "fa1a62c0-ad1c-4cdc-bddd-39c988ce0f8b", + "x-ms-routing-request-id": "JAPANEAST:20230322T031309Z:be24b07f-c057-40ec-b122-c291f76f859c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-952916122e8d914c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f05570c3e0345a8554e5111064d50d3f", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-18d178b0ab0a2a6e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a10dbdce7b6df94bef16d5954e3ef068", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -404,34 +404,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:32 GMT", + "Date": "Wed, 22 Mar 2023 03:13:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f05570c3e0345a8554e5111064d50d3f", - "x-ms-correlation-request-id": "2bb87e9f-3c9c-4099-bd3a-8d48142f2e41", - "x-ms-ratelimit-remaining-subscription-reads": "11651", - "x-ms-request-id": "8b8fd2eb-a903-448a-8e8e-af7cdc61c5dd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031433Z:2bb87e9f-3c9c-4099-bd3a-8d48142f2e41", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a10dbdce7b6df94bef16d5954e3ef068", + "x-ms-correlation-request-id": "7cb4a4b6-17e2-49b0-8bcb-d15e05a77711", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-request-id": "84193160-3887-406a-b622-0d68311e2524", + "x-ms-routing-request-id": "JAPANEAST:20230322T031318Z:7cb4a4b6-17e2-49b0-8bcb-d15e05a77711", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-8c228891d8d9b84e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8d4b3d501d553bea062243ff3fcb18c2", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-b729a78e4c95a46b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "76c5ea7e1d0ba7e76575f71baafd9aca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -440,70 +440,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:49 GMT", + "Date": "Wed, 22 Mar 2023 03:13:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8d4b3d501d553bea062243ff3fcb18c2", - "x-ms-correlation-request-id": "c1a57902-61de-463b-a8c3-6254c31e1668", - "x-ms-ratelimit-remaining-subscription-reads": "11650", - "x-ms-request-id": "cba2c6ed-b110-4f61-8370-b9a8efe7fc61", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031450Z:c1a57902-61de-463b-a8c3-6254c31e1668", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "76c5ea7e1d0ba7e76575f71baafd9aca", + "x-ms-correlation-request-id": "db1babc2-b91a-40bf-9726-859809ab0fb1", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-request-id": "11348dea-2b8c-4ce3-8526-554183f30d22", + "x-ms-routing-request-id": "JAPANEAST:20230322T031334Z:db1babc2-b91a-40bf-9726-859809ab0fb1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" + "startTime": "2023-03-22T03:12:55.7644186Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-cf878ee6d3cf824b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7adead83f5e83ff1e57f55d355d6165f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7adead83f5e83ff1e57f55d355d6165f", - "x-ms-correlation-request-id": "ad96e808-1cbb-4d10-831a-daeb31fd706d", - "x-ms-ratelimit-remaining-subscription-reads": "11649", - "x-ms-request-id": "5a09cb2f-156e-4b20-9142-3ae95cddbf52", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031522Z:ad96e808-1cbb-4d10-831a-daeb31fd706d", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "status": "Running", - "startTime": "2022-07-13T03:14:11.9022739Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-8ea0292bed8ec141-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b18dde149a4ca508851ae9129c861b88", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-e4d40fcc5289342d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d85251fe10ae62a212d0b0de5702504f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -512,35 +476,35 @@ "Cache-Control": "no-cache", "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:54 GMT", + "Date": "Wed, 22 Mar 2023 03:14:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b18dde149a4ca508851ae9129c861b88", - "x-ms-correlation-request-id": "188d16ad-9722-426b-9d54-a6ff9193f5ff", - "x-ms-ratelimit-remaining-subscription-reads": "11648", - "x-ms-request-id": "f05913f7-f387-4d47-98d9-34d8d8ecfa79", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031555Z:188d16ad-9722-426b-9d54-a6ff9193f5ff", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "d85251fe10ae62a212d0b0de5702504f", + "x-ms-correlation-request-id": "261c8738-e35e-44ff-8fa8-6abf82e131c3", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-request-id": "d3ba4ad1-9ab9-4671-bd31-f8da644deafc", + "x-ms-routing-request-id": "JAPANEAST:20230322T031406Z:261c8738-e35e-44ff-8fa8-6abf82e131c3", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866/operationStatuses/a4b05d4c-22c6-404d-afb9-8cb3371275f3", - "name": "a4b05d4c-22c6-404d-afb9-8cb3371275f3", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414/operationStatuses/0c95a113-eacb-47dd-822a-87f71d5b34a1", + "name": "0c95a113-eacb-47dd-822a-87f71d5b34a1", "status": "Succeeded", - "startTime": "2022-07-13T03:14:11.9022739Z", - "endTime": "2022-07-13T03:15:51.1005441Z" + "startTime": "2023-03-22T03:12:55.7644186Z", + "endTime": "2023-03-22T03:13:45.6956325Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6866?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-3414?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d965bc3a548c434eaaa508524449d286-f784980526e8fb44-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b78d4fcc92f65b564c0ca8d5c716e630", + "traceparent": "00-49f6ef8c089f6052fb3bb419571804b5-57d4588d1683d0ee-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "be6ae73883aab17dd5663bf783304ef2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -549,18 +513,18 @@ "Cache-Control": "no-cache", "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:55 GMT", + "Date": "Wed, 22 Mar 2023 03:14:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b78d4fcc92f65b564c0ca8d5c716e630", - "x-ms-correlation-request-id": "b12cdc01-6bd0-4039-adb2-7740aeaed1f0", - "x-ms-ratelimit-remaining-subscription-reads": "11647", - "x-ms-request-id": "c5fe98e1-f7d9-4453-8cc3-acbffbf012d5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031555Z:b12cdc01-6bd0-4039-adb2-7740aeaed1f0", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "be6ae73883aab17dd5663bf783304ef2", + "x-ms-correlation-request-id": "2796724c-736a-4e7e-ace3-c75fbeff65dd", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-request-id": "1a371386-9b55-49f0-b9d8-719ca4c678a7", + "x-ms-routing-request-id": "JAPANEAST:20230322T031407Z:2796724c-736a-4e7e-ace3-c75fbeff65dd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-6866.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-3414.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6866", + "hostNamePrefix": "webpubsub-3414", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,27 +580,27 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:14:10.9102429Z", + "createdAt": "2023-03-22T03:12:54.4860543Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:14:10.9102429Z" + "lastModifiedAt": "2023-03-22T03:12:54.4860543Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866", - "name": "webpubsub-6866", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414", + "name": "webpubsub-3414", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6866?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-3414?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e6dd31951150ba488b19c0e59f96a660-74d28857be378342-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "61eae40b673de875a538f5ce0bdea25f", + "traceparent": "00-fe8a373b75d673ef03ee60cabcca19f0-31c4ab0f7d78d2fc-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fc960a7c18eb6db94763633b6c084f63", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -645,18 +609,18 @@ "Cache-Control": "no-cache", "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:55 GMT", + "Date": "Wed, 22 Mar 2023 03:14:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "61eae40b673de875a538f5ce0bdea25f", - "x-ms-correlation-request-id": "8a1a2b22-6819-4729-87de-20a03bd279dc", - "x-ms-ratelimit-remaining-subscription-reads": "11646", - "x-ms-request-id": "e9f9263f-5862-4039-91c7-a8f8591f6f79", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031556Z:8a1a2b22-6819-4729-87de-20a03bd279dc", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "fc960a7c18eb6db94763633b6c084f63", + "x-ms-correlation-request-id": "6f9471c3-2b33-4841-9348-a92e0d20cd20", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-request-id": "754dbf93-691c-45c3-9ef3-a222a3415e6a", + "x-ms-routing-request-id": "JAPANEAST:20230322T031407Z:6f9471c3-2b33-4841-9348-a92e0d20cd20", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -667,8 +631,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-6866.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-3414.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -677,7 +641,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6866", + "hostNamePrefix": "webpubsub-3414", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -712,27 +676,27 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:14:10.9102429Z", + "createdAt": "2023-03-22T03:12:54.4860543Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:14:10.9102429Z" + "lastModifiedAt": "2023-03-22T03:12:54.4860543Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866", - "name": "webpubsub-6866", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414", + "name": "webpubsub-3414", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-68661?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-34141?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-22fa0838ffc1d647a63c9eb9c739c7c8-6df71dde40d39c41-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0506cc645f49826887326440f232de6f", + "traceparent": "00-76d230df8a58d4f0797b4b72dee5e20b-7be056928b4ae2ae-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c3e2a825db927b20d3a10248d4abdfe2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -741,32 +705,31 @@ "Cache-Control": "no-cache", "Content-Length": "238", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:55 GMT", + "Date": "Wed, 22 Mar 2023 03:14:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b565e5d5-44c9-40b9-a650-4da2d13bf8b3", + "x-ms-correlation-request-id": "fb3ab1ba-26a6-4451-ae39-ad8a4a3fa80f", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "b565e5d5-44c9-40b9-a650-4da2d13bf8b3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031556Z:b565e5d5-44c9-40b9-a650-4da2d13bf8b3" + "x-ms-request-id": "fb3ab1ba-26a6-4451-ae39-ad8a4a3fa80f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031407Z:fb3ab1ba-26a6-4451-ae39-ad8a4a3fa80f" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.SignalRService/WebPubSub/webpubsub-68661\u0027 under resource group \u0027WebPubSubRG-6159\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.SignalRService/WebPubSub/webpubsub-34141\u0027 under resource group \u0027WebPubSubRG-4769\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-50b79b18ebbdac4aaf9c820a6af0cd44-6d63f3da711b2d4d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b806b933ba9b654adaa412be9d884f6d", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "4c62be82546b20632efd77461f4244cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -775,18 +738,18 @@ "Cache-Control": "no-cache", "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:56 GMT", + "Date": "Wed, 22 Mar 2023 03:14:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b806b933ba9b654adaa412be9d884f6d", - "x-ms-correlation-request-id": "3212cf40-7c73-4045-b51b-2a21bfefa2da", - "x-ms-ratelimit-remaining-subscription-reads": "11644", - "x-ms-request-id": "e84f585c-d71c-4ab8-8a9a-f7e64e155f9d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031557Z:3212cf40-7c73-4045-b51b-2a21bfefa2da", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "4c62be82546b20632efd77461f4244cd", + "x-ms-correlation-request-id": "a3da7203-0bad-4257-a063-375fce44ffc4", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-request-id": "7d9589a0-26eb-42b4-abe0-7bd7d59dbf42", + "x-ms-routing-request-id": "JAPANEAST:20230322T031408Z:a3da7203-0bad-4257-a063-375fce44ffc4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -799,8 +762,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-6866.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-3414.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -809,7 +772,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6866", + "hostNamePrefix": "webpubsub-3414", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -844,54 +807,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:14:10.9102429Z", + "createdAt": "2023-03-22T03:12:54.4860543Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:14:10.9102429Z" + "lastModifiedAt": "2023-03-22T03:12:54.4860543Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6866", - "name": "webpubsub-6866", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-3414", + "name": "webpubsub-3414", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6866?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-3414?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-dfa2cba5f92e7c4cb0528c98d277ae49-1284d034144b8c46-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fb71486ae00face67b68d90a0235f572", + "traceparent": "00-eb76320b64bcb9355aa0daf64012536e-6282d722af6741ee-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "dad2d8168b4da05fea1b294a1671989c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:15:59 GMT", + "Date": "Wed, 22 Mar 2023 03:14:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fb71486ae00face67b68d90a0235f572", - "x-ms-correlation-request-id": "74c37211-bafb-4230-a7a5-6567daaa3b39", - "x-ms-ratelimit-remaining-subscription-deletes": "14981", - "x-ms-request-id": "659896ff-f957-4925-84fd-22179d0335bc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031600Z:74c37211-bafb-4230-a7a5-6567daaa3b39", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "dad2d8168b4da05fea1b294a1671989c", + "x-ms-correlation-request-id": "2c8aa1fd-029f-4342-b3ea-8c0024e2240f", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-request-id": "41fb9c11-e73c-43f0-b943-bd1a0106dee1", + "x-ms-routing-request-id": "JAPANEAST:20230322T031410Z:2c8aa1fd-029f-4342-b3ea-8c0024e2240f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "759696092", + "RandomSeed": "1934470445", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdate.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdate.json index 8385cc83412b..3b46a5259b57 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdate.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdate.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-296?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6782?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4d8b26ac80bcc542ba9d3e2882100ddf-c13c56c2468f114d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "864ec258f079fb99bd872930f13f40fd", + "traceparent": "00-8f03ec54d4121eb4f42fcfb520c033f7-e2bcc4c9493fde22-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3968eb465c75c4dad723be0bdf3d0ff1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:11 GMT", + "Date": "Wed, 22 Mar 2023 03:07:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dca71062-273e-4a1b-8018-1d5153b899c4", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-request-id": "dca71062-273e-4a1b-8018-1d5153b899c4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030811Z:dca71062-273e-4a1b-8018-1d5153b899c4" + "x-ms-correlation-request-id": "a6dd60ff-73a5-435a-8d1e-8928ea8fdce6", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "a6dd60ff-73a5-435a-8d1e-8928ea8fdce6", + "x-ms-routing-request-id": "JAPANEAST:20230322T030727Z:a6dd60ff-73a5-435a-8d1e-8928ea8fdce6" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296", - "name": "WebPubSubRG-296", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782", + "name": "WebPubSubRG-6782", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6479?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2522?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-7b0bd86e7d659940-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0bce9976d895f664a34e24a5fa6d885f", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-eb35ea4583cbbfb9-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ba5efb2c5ebcb68d88d207ecb367038b", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1273", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:16 GMT", + "Date": "Wed, 22 Mar 2023 03:07:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationResults/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationResults/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0bce9976d895f664a34e24a5fa6d885f", - "x-ms-correlation-request-id": "b3b6839c-9b0f-4f2e-b857-dec5ae861997", - "x-ms-ratelimit-remaining-subscription-writes": "1175", - "x-ms-request-id": "72e0268d-181f-4963-b439-bc5664bf6ccf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030816Z:b3b6839c-9b0f-4f2e-b857-dec5ae861997", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "ba5efb2c5ebcb68d88d207ecb367038b", + "x-ms-correlation-request-id": "7bceea00-6084-4592-b284-bf5513ab3f18", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "aa448116-81cd-4095-a431-6a78fc881159", + "x-ms-routing-request-id": "JAPANEAST:20230322T030731Z:7bceea00-6084-4592-b284-bf5513ab3f18", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-6479.webpubsub.azure.com", + "hostName": "webpubsub-2522.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6479", + "hostNamePrefix": "webpubsub-2522", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,407 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:08:14.2076658Z", + "createdAt": "2023-03-22T03:07:28.8090958Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:08:14.2076658Z" + "lastModifiedAt": "2023-03-22T03:07:28.8090958Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479", - "name": "webpubsub-6479", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522", + "name": "webpubsub-2522", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-5370529b4bdb6245-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5f5fb72e969ae9c2e990d6a17556c31a", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-a1f363d1eaa0842a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "740063c0e9048c8adb83ec8ad3d724bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:17 GMT", + "Date": "Wed, 22 Mar 2023 03:07:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5f5fb72e969ae9c2e990d6a17556c31a", - "x-ms-correlation-request-id": "a3a53d1e-5f51-40f7-a463-cb3f7e703041", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-request-id": "3ca38cbb-da9d-4bd2-a6ba-73b95f85e9b2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030817Z:a3a53d1e-5f51-40f7-a463-cb3f7e703041", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "740063c0e9048c8adb83ec8ad3d724bc", + "x-ms-correlation-request-id": "de4132e0-a297-497e-8338-395cbdf05bc7", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "aeb7cd3f-6042-4e50-b074-4456a3349050", + "x-ms-routing-request-id": "JAPANEAST:20230322T030731Z:de4132e0-a297-497e-8338-395cbdf05bc7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-1c49282180643641-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d58dd1a1a7a9963ef2528c3ed14cfa5f", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-a282cf86780d5b51-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "144980ba5afa625aa3e5ffeaa6dcfd01", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:18 GMT", + "Date": "Wed, 22 Mar 2023 03:07:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d58dd1a1a7a9963ef2528c3ed14cfa5f", - "x-ms-correlation-request-id": "c8397db9-07d5-4e95-a331-47d9efc43cf1", - "x-ms-ratelimit-remaining-subscription-reads": "11707", - "x-ms-request-id": "79386843-3053-4de7-96ef-38a8ecb40b20", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030819Z:c8397db9-07d5-4e95-a331-47d9efc43cf1", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "144980ba5afa625aa3e5ffeaa6dcfd01", + "x-ms-correlation-request-id": "c005c6ff-e975-4ed5-9b8e-495265d9a2e7", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "94c4fbd6-7b9a-478a-9715-97e49cebca92", + "x-ms-routing-request-id": "JAPANEAST:20230322T030732Z:c005c6ff-e975-4ed5-9b8e-495265d9a2e7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-c8e68499d0962841-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "42761673290ecdc4a7ad6c070a040728", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-16536db4c27a5efe-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "502cf2d38f66ac879d88bb3cdecda5e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:20 GMT", + "Date": "Wed, 22 Mar 2023 03:07:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "42761673290ecdc4a7ad6c070a040728", - "x-ms-correlation-request-id": "7ca989fb-316a-4f3f-8853-818bfbc5c4cd", - "x-ms-ratelimit-remaining-subscription-reads": "11706", - "x-ms-request-id": "aad3f616-7327-47a6-8c5d-b4f11005540b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030820Z:7ca989fb-316a-4f3f-8853-818bfbc5c4cd", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "502cf2d38f66ac879d88bb3cdecda5e3", + "x-ms-correlation-request-id": "d35d9c3a-5436-470d-9a25-f581aa8a5098", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "94ed772f-3570-437d-9831-3c4a157043ab", + "x-ms-routing-request-id": "JAPANEAST:20230322T030734Z:d35d9c3a-5436-470d-9a25-f581aa8a5098", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-ddd0dcbfb5d34d4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2977ec9305b6866379c86c480a84189c", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-285b87909da42efb-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "38f6fbade93e651b089ed11eea9fe6ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:21 GMT", + "Date": "Wed, 22 Mar 2023 03:07:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2977ec9305b6866379c86c480a84189c", - "x-ms-correlation-request-id": "c5aa915c-19ac-443b-a401-4654c1b3ca18", - "x-ms-ratelimit-remaining-subscription-reads": "11705", - "x-ms-request-id": "be50ce66-7948-4025-99cd-0ee393aef376", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030822Z:c5aa915c-19ac-443b-a401-4654c1b3ca18", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "38f6fbade93e651b089ed11eea9fe6ff", + "x-ms-correlation-request-id": "71db4edd-a133-4d63-97ad-76c90bd80670", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "6f7c1023-6e9a-4c81-85c5-ad71269656df", + "x-ms-routing-request-id": "JAPANEAST:20230322T030735Z:71db4edd-a133-4d63-97ad-76c90bd80670", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-c3b73b405a1cb143-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5e2e769581df770c0cbf2efc3a368cee", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-672967c0065f7168-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e0b6ea85d3aa2b55f99d77719f1d84d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:24 GMT", + "Date": "Wed, 22 Mar 2023 03:07:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5e2e769581df770c0cbf2efc3a368cee", - "x-ms-correlation-request-id": "361987ae-1c09-4d3e-a663-8df4a459c726", - "x-ms-ratelimit-remaining-subscription-reads": "11704", - "x-ms-request-id": "68dd58c3-d911-44a4-94f0-76feafb83105", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030824Z:361987ae-1c09-4d3e-a663-8df4a459c726", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e0b6ea85d3aa2b55f99d77719f1d84d5", + "x-ms-correlation-request-id": "da71911e-55ae-45e7-b0b1-162c0ee6ad4d", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "ed89b824-aff3-47b3-924f-8a07201d7b90", + "x-ms-routing-request-id": "JAPANEAST:20230322T030738Z:da71911e-55ae-45e7-b0b1-162c0ee6ad4d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-c8bb76f43acc7148-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e5aa634bd1d46ea8b2f0c945bc7cc322", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-c8b9bc2fcf92d321-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "aa3d1b3fc5e5eac2d7c747c8bd68c2fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:28 GMT", + "Date": "Wed, 22 Mar 2023 03:07:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e5aa634bd1d46ea8b2f0c945bc7cc322", - "x-ms-correlation-request-id": "36370de9-88a7-4ca8-b5e8-00e27ba9ad7e", - "x-ms-ratelimit-remaining-subscription-reads": "11703", - "x-ms-request-id": "8d8d901e-0fa0-4433-bbb6-6df1c91d4920", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030829Z:36370de9-88a7-4ca8-b5e8-00e27ba9ad7e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "aa3d1b3fc5e5eac2d7c747c8bd68c2fd", + "x-ms-correlation-request-id": "22dd898b-952b-4667-975c-fe7103486abb", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "b581c04a-1e13-4460-a496-1f1f78fbeb82", + "x-ms-routing-request-id": "JAPANEAST:20230322T030742Z:22dd898b-952b-4667-975c-fe7103486abb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-506623a992331349-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9372d094a8d61249e0ff1cf6d6674c42", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-2d2443960e8ee61f-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f3b7bca2c517d939a5ca3ea171a9c6eb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:36 GMT", + "Date": "Wed, 22 Mar 2023 03:07:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9372d094a8d61249e0ff1cf6d6674c42", - "x-ms-correlation-request-id": "7b6fc310-ab82-4a3d-aac3-2781f0c079a5", - "x-ms-ratelimit-remaining-subscription-reads": "11702", - "x-ms-request-id": "eb69541f-6d56-4305-874d-41c1b7474f45", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030837Z:7b6fc310-ab82-4a3d-aac3-2781f0c079a5", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "f3b7bca2c517d939a5ca3ea171a9c6eb", + "x-ms-correlation-request-id": "b4f08966-1cdf-4394-a109-7766112cb782", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "e79341ab-7c91-4246-9a00-29ea78744d2e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030750Z:b4f08966-1cdf-4394-a109-7766112cb782", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-972c2960fabae14a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a6fd7e3b33d9c3c8cebfabefb7c6ba90", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-3744dac7c639bfd1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cfdefc193b62bf1928cc09e38c8d6d90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:08:53 GMT", + "Date": "Wed, 22 Mar 2023 03:08:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a6fd7e3b33d9c3c8cebfabefb7c6ba90", - "x-ms-correlation-request-id": "7d404bdf-3844-4316-9af8-30086592e492", - "x-ms-ratelimit-remaining-subscription-reads": "11701", - "x-ms-request-id": "596036d6-fef3-4354-8680-e34b2e780bdf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030853Z:7d404bdf-3844-4316-9af8-30086592e492", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "cfdefc193b62bf1928cc09e38c8d6d90", + "x-ms-correlation-request-id": "8a8c8c16-4431-435a-b614-6955e918e7bb", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-request-id": "046b44d4-67e6-4572-aa9c-65d3b7c742a0", + "x-ms-routing-request-id": "JAPANEAST:20230322T030807Z:8a8c8c16-4431-435a-b614-6955e918e7bb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" + "startTime": "2023-03-22T03:07:30.1908101Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-6c50545a1429d34b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6a670bfcf9c4a2171a9805d5b4b1974b", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-2abfa1f363233503-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e2cf79db91667abee264051b8721782d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "313", + "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:09:26 GMT", + "Date": "Wed, 22 Mar 2023 03:08:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6a670bfcf9c4a2171a9805d5b4b1974b", - "x-ms-correlation-request-id": "b7494c80-3610-4d9b-b7fc-67a7be96f194", - "x-ms-ratelimit-remaining-subscription-reads": "11700", - "x-ms-request-id": "54a72e3a-3db1-4c32-9ad5-67e31e13827f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030926Z:b7494c80-3610-4d9b-b7fc-67a7be96f194", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e2cf79db91667abee264051b8721782d", + "x-ms-correlation-request-id": "3b0ec258-5289-4197-a0f1-27f39b6b7701", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-request-id": "8dd77124-718b-4efd-9771-a9ecdd8b991b", + "x-ms-routing-request-id": "JAPANEAST:20230322T030839Z:3b0ec258-5289-4197-a0f1-27f39b6b7701", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "status": "Running", - "startTime": "2022-07-13T03:08:15.355099Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-7be7d9d2a3f67544-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3e0987a41c7f614807aec517fc5a5a19", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "356", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:09:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3e0987a41c7f614807aec517fc5a5a19", - "x-ms-correlation-request-id": "4ad295a6-be91-42b1-a75b-0a12bda09d89", - "x-ms-ratelimit-remaining-subscription-reads": "11699", - "x-ms-request-id": "f78bc9e1-62f2-43e3-b4c1-52bd545949c1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030958Z:4ad295a6-be91-42b1-a75b-0a12bda09d89", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479/operationStatuses/17ed8e80-c1b4-47e3-8f84-28cd3480fb89", - "name": "17ed8e80-c1b4-47e3-8f84-28cd3480fb89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522/operationStatuses/b230c605-2f86-4b7f-b03d-5066648e107f", + "name": "b230c605-2f86-4b7f-b03d-5066648e107f", "status": "Succeeded", - "startTime": "2022-07-13T03:08:15.355099Z", - "endTime": "2022-07-13T03:09:28.1354691Z" + "startTime": "2023-03-22T03:07:30.1908101Z", + "endTime": "2023-03-22T03:08:20.8541121Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6479?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2522?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-acaec24150d6c94cb11b88acf40c9e56-a60d3aa700c6d544-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cbfa8c44e1ff427e665a8c412df30f1c", + "traceparent": "00-63dbc1de107aeedbaea8c5435c6ee05c-dfe10163ca4ba053-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c1ae5c00f289669ba3f7cb4abb554d18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1275", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:09:58 GMT", + "Date": "Wed, 22 Mar 2023 03:08:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cbfa8c44e1ff427e665a8c412df30f1c", - "x-ms-correlation-request-id": "b0b7cb22-0956-4d6b-b080-6b8cb32a9fef", - "x-ms-ratelimit-remaining-subscription-reads": "11698", - "x-ms-request-id": "d9c1a485-2317-4b82-b6bd-56bd7295cc51", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030959Z:b0b7cb22-0956-4d6b-b080-6b8cb32a9fef", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c1ae5c00f289669ba3f7cb4abb554d18", + "x-ms-correlation-request-id": "03d7d9f7-8970-4366-8078-3952b3e007cc", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-request-id": "62e89ed3-c1b1-4427-87e5-e1456228d40a", + "x-ms-routing-request-id": "JAPANEAST:20230322T030840Z:03d7d9f7-8970-4366-8078-3952b3e007cc", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -571,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-6479.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2522.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -581,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6479", + "hostNamePrefix": "webpubsub-2522", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -616,47 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:08:14.2076658Z", + "createdAt": "2023-03-22T03:07:28.8090958Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:08:14.2076658Z" + "lastModifiedAt": "2023-03-22T03:07:28.8090958Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479", - "name": "webpubsub-6479", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522", + "name": "webpubsub-2522", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-cd062aa74b96d94892647af5bb0b0cb9-6509dc1508429646-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "304b60277cbce011c30662153400a6bf", + "traceparent": "00-adfe101d292a6fa5d579810938aac71e-d529b9a1c8714683-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f7c5ad5de4da88853e63edfd36fd3806", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1287", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:09:59 GMT", + "Date": "Wed, 22 Mar 2023 03:08:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "304b60277cbce011c30662153400a6bf", - "x-ms-correlation-request-id": "67acc8e6-05cb-4e95-b69a-3dba3b6052d2", - "x-ms-ratelimit-remaining-subscription-reads": "11697", - "x-ms-request-id": "f6e7fe8b-4562-4798-97f7-f0c0991e8de7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030959Z:67acc8e6-05cb-4e95-b69a-3dba3b6052d2", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "f7c5ad5de4da88853e63edfd36fd3806", + "x-ms-correlation-request-id": "ed6b67b8-efbf-4ad8-8729-a42cf8a23801", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-request-id": "3f9679ad-db09-4359-b6ff-8f62ebd630f7", + "x-ms-routing-request-id": "JAPANEAST:20230322T030840Z:ed6b67b8-efbf-4ad8-8729-a42cf8a23801", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -669,8 +633,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-6479.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2522.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -679,7 +643,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6479", + "hostNamePrefix": "webpubsub-2522", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -714,54 +678,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:08:14.2076658Z", + "createdAt": "2023-03-22T03:07:28.8090958Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:08:14.2076658Z" + "lastModifiedAt": "2023-03-22T03:07:28.8090958Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6479", - "name": "webpubsub-6479", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2522", + "name": "webpubsub-2522", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6479?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2522?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-74d01c0e99719a418c6cc0941a7e2f65-8a796106e1fd3447-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2890eb3dccb7c24c08c7d7248f073314", + "traceparent": "00-a94f462068a6c5d2a8994e359aa43f6e-49dcd0a09ef56698-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "30e3db53abdee806de683e6ec673be8c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:10:02 GMT", + "Date": "Wed, 22 Mar 2023 03:08:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2890eb3dccb7c24c08c7d7248f073314", - "x-ms-correlation-request-id": "58cd50f6-68d9-4e30-9087-60d487dec5b3", - "x-ms-ratelimit-remaining-subscription-deletes": "14985", - "x-ms-request-id": "6bea90d4-d350-46b6-9319-db97876bde5e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031002Z:58cd50f6-68d9-4e30-9087-60d487dec5b3", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "30e3db53abdee806de683e6ec673be8c", + "x-ms-correlation-request-id": "bd1ec5de-72fb-452b-8da4-1847fe1bf1c5", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-request-id": "098e204d-04bc-457b-897b-e1d8fe22ee5d", + "x-ms-routing-request-id": "JAPANEAST:20230322T030842Z:bd1ec5de-72fb-452b-8da4-1847fe1bf1c5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "2010103875", + "RandomSeed": "1587753594", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdateAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdateAsync.json index ec4641fcec84..4d242c5bf7c4 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdateAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/CreateOrUpdateAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6159?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-4769?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-77920c18b7fa2e4896d2e82a2d2a8549-ee05505563e34f45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "091d4a98d7babbed99f9c89569f3668c", + "traceparent": "00-fc9e9e44b86d6c446292a97bd563fd1f-c40c8b3dbc98e139-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "6c8b1dc5055f425e3362da1ffcca05ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:15:59 GMT", + "Date": "Wed, 22 Mar 2023 03:14:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8558c4c3-0c1c-4f78-b5f4-7256c00b9706", - "x-ms-ratelimit-remaining-subscription-reads": "11643", - "x-ms-request-id": "8558c4c3-0c1c-4f78-b5f4-7256c00b9706", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031600Z:8558c4c3-0c1c-4f78-b5f4-7256c00b9706" + "x-ms-correlation-request-id": "f731047d-87c5-497a-a7c5-74bd12f5d096", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-request-id": "f731047d-87c5-497a-a7c5-74bd12f5d096", + "x-ms-routing-request-id": "JAPANEAST:20230322T031414Z:f731047d-87c5-497a-a7c5-74bd12f5d096" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159", - "name": "WebPubSubRG-6159", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769", + "name": "WebPubSubRG-4769", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-7163?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4443?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-b81b094c5410764f-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "bef4139b6422505b906241185578cd21", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-0b91cd93bba669d0-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3c62bbe371564e125dbc0a7ef3c8afcd", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "Cache-Control": "no-cache", "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:04 GMT", + "Date": "Wed, 22 Mar 2023 03:14:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationResults/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationResults/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bef4139b6422505b906241185578cd21", - "x-ms-correlation-request-id": "1cad149c-803f-42c3-b81c-32720e6b523e", - "x-ms-ratelimit-remaining-subscription-writes": "1168", - "x-ms-request-id": "ea8c3a69-4059-4f8f-86b7-49ec6488695e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031605Z:1cad149c-803f-42c3-b81c-32720e6b523e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "3c62bbe371564e125dbc0a7ef3c8afcd", + "x-ms-correlation-request-id": "aaee5c6d-87f9-42d2-9c5d-5f806d377427", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-request-id": "5b313f0f-1ddc-4b25-addb-3c885416faaa", + "x-ms-routing-request-id": "JAPANEAST:20230322T031417Z:aaee5c6d-87f9-42d2-9c5d-5f806d377427", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-7163.webpubsub.azure.com", + "hostName": "webpubsub-4443.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-7163", + "hostNamePrefix": "webpubsub-4443", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,26 +160,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:16:02.5350019Z", + "createdAt": "2023-03-22T03:14:15.8044578Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:16:02.5350019Z" + "lastModifiedAt": "2023-03-22T03:14:15.8044578Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163", - "name": "webpubsub-7163", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443", + "name": "webpubsub-4443", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-6fc4ed8907afb443-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "08a6d524a22ee676c2b92975aba24480", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-928c6cf824d68c4a-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8aef32722551ac6f791d014853c43f9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -188,34 +188,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:04 GMT", + "Date": "Wed, 22 Mar 2023 03:14:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "08a6d524a22ee676c2b92975aba24480", - "x-ms-correlation-request-id": "007d7e82-b44e-43af-bc15-1292a7317ef2", - "x-ms-ratelimit-remaining-subscription-reads": "11642", - "x-ms-request-id": "6bf028e0-3396-4828-939c-2040fcb1c0ba", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031605Z:007d7e82-b44e-43af-bc15-1292a7317ef2", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "8aef32722551ac6f791d014853c43f9a", + "x-ms-correlation-request-id": "dccb1ca7-d0fb-4d82-b514-1a3186ffc4a0", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-request-id": "93644b36-fda6-430c-a7c0-a15ae9ec9d00", + "x-ms-routing-request-id": "JAPANEAST:20230322T031417Z:dccb1ca7-d0fb-4d82-b514-1a3186ffc4a0", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-76dabcc521cdd54b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9f0f73fa4481632ee3dc82dfa6a4a8f0", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-111312ab5539e1ab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e918512aba93ad7fe3c5c07127ac6922", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,34 +224,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:06 GMT", + "Date": "Wed, 22 Mar 2023 03:14:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9f0f73fa4481632ee3dc82dfa6a4a8f0", - "x-ms-correlation-request-id": "02da1d4b-3585-426c-8309-9e83f9cf436c", - "x-ms-ratelimit-remaining-subscription-reads": "11641", - "x-ms-request-id": "f6b5a354-4480-4e29-a833-93dac43e2fca", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031607Z:02da1d4b-3585-426c-8309-9e83f9cf436c", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e918512aba93ad7fe3c5c07127ac6922", + "x-ms-correlation-request-id": "a9533762-64bb-4049-86b6-7123a954ec68", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-request-id": "51a7ed23-bcf4-40d1-aa50-c7593839e8eb", + "x-ms-routing-request-id": "JAPANEAST:20230322T031419Z:a9533762-64bb-4049-86b6-7123a954ec68", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-15a55224ab01b249-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7ff4832ac5d1b7f3defe85040eba6c98", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-8f26b5e368eb2bbe-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c00c1ada25d9bd7c71c67934348f49b7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,34 +260,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:07 GMT", + "Date": "Wed, 22 Mar 2023 03:14:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7ff4832ac5d1b7f3defe85040eba6c98", - "x-ms-correlation-request-id": "83589d36-d85f-43a9-86c8-bc953ceca30f", - "x-ms-ratelimit-remaining-subscription-reads": "11640", - "x-ms-request-id": "78224003-a931-4aa4-a7ee-862ba264f041", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031608Z:83589d36-d85f-43a9-86c8-bc953ceca30f", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c00c1ada25d9bd7c71c67934348f49b7", + "x-ms-correlation-request-id": "97e78eef-bc10-4452-ab71-33fa36fb4f57", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-request-id": "26ddd809-088f-4276-81c9-2c9cc6cbc74f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031420Z:97e78eef-bc10-4452-ab71-33fa36fb4f57", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-6ac82a32a1ee0047-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "34bc3dfe9990e03ca64224521f973f1e", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-0be277888618000d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "923baea4f822b85cb241a68b64fe84cd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -296,34 +296,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:09 GMT", + "Date": "Wed, 22 Mar 2023 03:14:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "34bc3dfe9990e03ca64224521f973f1e", - "x-ms-correlation-request-id": "bd49ae9a-b8e8-4486-8874-d7d1a546b7aa", - "x-ms-ratelimit-remaining-subscription-reads": "11639", - "x-ms-request-id": "56d08de2-bc19-4dd0-b344-b7da574daf28", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031610Z:bd49ae9a-b8e8-4486-8874-d7d1a546b7aa", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "923baea4f822b85cb241a68b64fe84cd", + "x-ms-correlation-request-id": "49dc0cfe-7f8c-45f8-8f84-4244d71c162a", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-request-id": "86e32a8f-b99b-44e4-b000-1ccb63f6bf29", + "x-ms-routing-request-id": "JAPANEAST:20230322T031421Z:49dc0cfe-7f8c-45f8-8f84-4244d71c162a", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-a97f0f8ddc18b64b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "284a3910c4ae35ae8058c082be2a5528", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-a1ddeeeb812f6053-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "386ddeb47fb805c1d55b78cd404a7954", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -332,34 +332,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:11 GMT", + "Date": "Wed, 22 Mar 2023 03:14:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "284a3910c4ae35ae8058c082be2a5528", - "x-ms-correlation-request-id": "a33cfc8d-afa5-453f-99d6-d66387111460", - "x-ms-ratelimit-remaining-subscription-reads": "11638", - "x-ms-request-id": "737c7172-9c57-47f0-a654-61e1d3cad4a1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031612Z:a33cfc8d-afa5-453f-99d6-d66387111460", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "386ddeb47fb805c1d55b78cd404a7954", + "x-ms-correlation-request-id": "a3340f91-d2eb-4cae-b5c1-0cbf0eef02fa", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-request-id": "627d4872-7609-415a-bebe-6b941896c96f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031424Z:a3340f91-d2eb-4cae-b5c1-0cbf0eef02fa", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-01f05b66700d8247-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "68e1e97074e7915f4713d88fa0a09747", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-ff40838a02aba52e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "79cc097cd770e200be530e987ef05873", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -368,34 +368,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:16 GMT", + "Date": "Wed, 22 Mar 2023 03:14:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "68e1e97074e7915f4713d88fa0a09747", - "x-ms-correlation-request-id": "6a78aeae-cc9e-4770-b290-17b0c23ec8a9", - "x-ms-ratelimit-remaining-subscription-reads": "11637", - "x-ms-request-id": "dcbaee51-06af-4c53-9294-4edc6265cd4b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031617Z:6a78aeae-cc9e-4770-b290-17b0c23ec8a9", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "79cc097cd770e200be530e987ef05873", + "x-ms-correlation-request-id": "9de7ae4f-dceb-445d-886e-d40f65e5714b", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-request-id": "a63c9ce2-4f3e-4d65-b0a8-700296186c35", + "x-ms-routing-request-id": "JAPANEAST:20230322T031428Z:9de7ae4f-dceb-445d-886e-d40f65e5714b", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-8ae47b6bbb78e04d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d4f467bf446f3aea8e87b438d8b9217c", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-71d5f08069077f04-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5580ac42102125ffed35bcc67f8f7768", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -404,34 +404,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:25 GMT", + "Date": "Wed, 22 Mar 2023 03:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d4f467bf446f3aea8e87b438d8b9217c", - "x-ms-correlation-request-id": "c96e36fd-2009-484b-86aa-c250de6c7085", - "x-ms-ratelimit-remaining-subscription-reads": "11636", - "x-ms-request-id": "6e3ded66-7b4b-4b9c-803b-6176875b15f7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031625Z:c96e36fd-2009-484b-86aa-c250de6c7085", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "5580ac42102125ffed35bcc67f8f7768", + "x-ms-correlation-request-id": "48badc5a-5df7-467c-a276-82a90f634d69", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-request-id": "70398b19-03be-4d9b-a8e1-56e06eda1165", + "x-ms-routing-request-id": "JAPANEAST:20230322T031436Z:48badc5a-5df7-467c-a276-82a90f634d69", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-177a45ea639f3240-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "35e2fcedd6b59c36dab9e09beb1f94df", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-70203226692be4e1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5b0f52c70a31dc5cdd8b7a64712986e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -440,34 +440,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:16:41 GMT", + "Date": "Wed, 22 Mar 2023 03:14:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "35e2fcedd6b59c36dab9e09beb1f94df", - "x-ms-correlation-request-id": "4be541a6-aee0-49dd-b261-29c3339de137", - "x-ms-ratelimit-remaining-subscription-reads": "11635", - "x-ms-request-id": "223c2bf9-c3cf-4877-acbf-541fc4374d36", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031642Z:4be541a6-aee0-49dd-b261-29c3339de137", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "5b0f52c70a31dc5cdd8b7a64712986e5", + "x-ms-correlation-request-id": "5889c4cb-692a-492d-b2ee-690db96c77c2", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-request-id": "08628a14-af95-42ee-8bd9-f58b454e77cd", + "x-ms-routing-request-id": "JAPANEAST:20230322T031453Z:5889c4cb-692a-492d-b2ee-690db96c77c2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Running", - "startTime": "2022-07-13T03:16:03.6973078Z" + "startTime": "2023-03-22T03:14:16.5704376Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-f26ad52da1b1604d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "57c379c080352cb8ffa6da60bf26b88e", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-fcc17c81427deeab-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "948b050324ca6b3209a78b3a1a3a622f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -476,35 +476,35 @@ "Cache-Control": "no-cache", "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:13 GMT", + "Date": "Wed, 22 Mar 2023 03:15:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "57c379c080352cb8ffa6da60bf26b88e", - "x-ms-correlation-request-id": "90b56bd8-725e-425f-b9a1-194fa2f431f6", - "x-ms-ratelimit-remaining-subscription-reads": "11634", - "x-ms-request-id": "8cb8592f-7f60-4b9b-bafe-b6b66dcaeb17", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031714Z:90b56bd8-725e-425f-b9a1-194fa2f431f6", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "948b050324ca6b3209a78b3a1a3a622f", + "x-ms-correlation-request-id": "cafc5775-5dcb-4e28-bd7d-28de263ca646", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-request-id": "764553f0-c29e-4e3d-a809-7cb59641a9b6", + "x-ms-routing-request-id": "JAPANEAST:20230322T031525Z:cafc5775-5dcb-4e28-bd7d-28de263ca646", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163/operationStatuses/97eb8cb1-2427-44e2-9c13-78c8a44de834", - "name": "97eb8cb1-2427-44e2-9c13-78c8a44de834", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443/operationStatuses/47f6d153-05f8-42e6-a0c9-54baa08b814c", + "name": "47f6d153-05f8-42e6-a0c9-54baa08b814c", "status": "Succeeded", - "startTime": "2022-07-13T03:16:03.6973078Z", - "endTime": "2022-07-13T03:17:05.0625528Z" + "startTime": "2023-03-22T03:14:16.5704376Z", + "endTime": "2023-03-22T03:15:07.7337395Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-7163?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4443?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a0be0abe5a6bd54b88383bc045127b03-cb6738f8caee6f40-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a4a15cf161bee8913057f9b5634f4f6e", + "traceparent": "00-241607bd94adc19608dfbf6a41be3137-04043f747d2e1b37-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2cd0a6dbfce0374150a47795969bb4c4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -513,18 +513,18 @@ "Cache-Control": "no-cache", "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:14 GMT", + "Date": "Wed, 22 Mar 2023 03:15:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a4a15cf161bee8913057f9b5634f4f6e", - "x-ms-correlation-request-id": "37090034-a0eb-4f24-8821-8ebd453a5e76", - "x-ms-ratelimit-remaining-subscription-reads": "11633", - "x-ms-request-id": "7de59cb6-aa40-4b1d-8d41-117f16be9d00", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031714Z:37090034-a0eb-4f24-8821-8ebd453a5e76", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "2cd0a6dbfce0374150a47795969bb4c4", + "x-ms-correlation-request-id": "d69fcd8d-c4bc-4e35-8f5b-83392ef56144", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-request-id": "11857915-0456-4a63-a9ab-26e9e2fcd5f1", + "x-ms-routing-request-id": "JAPANEAST:20230322T031525Z:d69fcd8d-c4bc-4e35-8f5b-83392ef56144", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-7163.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4443.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-7163", + "hostNamePrefix": "webpubsub-4443", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,27 +580,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:16:02.5350019Z", + "createdAt": "2023-03-22T03:14:15.8044578Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:16:02.5350019Z" + "lastModifiedAt": "2023-03-22T03:14:15.8044578Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163", - "name": "webpubsub-7163", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443", + "name": "webpubsub-4443", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-90d5726056e1e0428d7d6158ab70dbfc-1763586d8afeee4a-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5e78d4f2caf56c4643b6360ffcd6dcb4", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ac2d7afe304a39e20a3518a7f21c2a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -609,18 +608,18 @@ "Cache-Control": "no-cache", "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:14 GMT", + "Date": "Wed, 22 Mar 2023 03:15:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5e78d4f2caf56c4643b6360ffcd6dcb4", - "x-ms-correlation-request-id": "51905402-74ff-4290-ae66-ff1f9ff02df4", - "x-ms-ratelimit-remaining-subscription-reads": "11632", - "x-ms-request-id": "56675dde-2927-42f8-8d32-a1dc51444002", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031715Z:51905402-74ff-4290-ae66-ff1f9ff02df4", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "7ac2d7afe304a39e20a3518a7f21c2a3", + "x-ms-correlation-request-id": "f94b2185-77da-481a-be5e-e9030e6140e8", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-request-id": "881c5ea8-a64a-40dc-952f-2e13c71b7111", + "x-ms-routing-request-id": "JAPANEAST:20230322T031526Z:f94b2185-77da-481a-be5e-e9030e6140e8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -633,8 +632,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-7163.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4443.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -643,7 +642,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-7163", + "hostNamePrefix": "webpubsub-4443", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -678,54 +677,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:16:02.5350019Z", + "createdAt": "2023-03-22T03:14:15.8044578Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:16:02.5350019Z" + "lastModifiedAt": "2023-03-22T03:14:15.8044578Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7163", - "name": "webpubsub-7163", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4443", + "name": "webpubsub-4443", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-7163?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4443?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c6af71a314e43e4b91d280da135d2327-014f63812a796e4a-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8fa95201f07e5e21e8db26dd8702c8b0", + "traceparent": "00-cca5942d78526f422b9c2148cf31bd12-75d8359a12c12b32-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ca884b295a580704c4534325ac9cd56e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:17:16 GMT", + "Date": "Wed, 22 Mar 2023 03:15:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8fa95201f07e5e21e8db26dd8702c8b0", - "x-ms-correlation-request-id": "959d485d-716d-4e00-be9b-fdb067ecf8d9", - "x-ms-ratelimit-remaining-subscription-deletes": "14980", - "x-ms-request-id": "1140ff2f-de84-415d-a009-7673cb12c3d1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031717Z:959d485d-716d-4e00-be9b-fdb067ecf8d9", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "ca884b295a580704c4534325ac9cd56e", + "x-ms-correlation-request-id": "fe2b03a2-abe9-4a13-b748-e1923466b8ef", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-request-id": "39f58b7e-99d2-47a0-a603-a6c6becd3546", + "x-ms-routing-request-id": "JAPANEAST:20230322T031528Z:fe2b03a2-abe9-4a13-b748-e1923466b8ef", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "848485512", + "RandomSeed": "5021977", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Delete.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Delete.json index b790fabaa53e..d4fd0a1e1b7a 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Delete.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Delete.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-296?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6782?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b5b04a88af4fe14fa15d1f35eecb29b5-9b7e8f6a7099544b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a52bf6539b6b9dba126532131792f1b5", + "traceparent": "00-0213a145118f47265c7b87cb8ca62fc6-ab09e692e19bac75-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e86e5d538d8529f1f9ff35fa9d3407f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:03 GMT", + "Date": "Wed, 22 Mar 2023 03:08:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb400bef-0063-411a-9c9a-dc39b9665e40", - "x-ms-ratelimit-remaining-subscription-reads": "11696", - "x-ms-request-id": "fb400bef-0063-411a-9c9a-dc39b9665e40", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031004Z:fb400bef-0063-411a-9c9a-dc39b9665e40" + "x-ms-correlation-request-id": "47298be0-ec9f-481a-8e07-e6f622599b52", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-request-id": "47298be0-ec9f-481a-8e07-e6f622599b52", + "x-ms-routing-request-id": "JAPANEAST:20230322T030843Z:47298be0-ec9f-481a-8e07-e6f622599b52" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296", - "name": "WebPubSubRG-296", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782", + "name": "WebPubSubRG-6782", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-1313?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-7253?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-f4335663684deb40-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f4185ab6df02827271e0921f39213a0c", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-5fd37fa285c6f756-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "8e80f4184004ccdba762e023a1f57ccc", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1273", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:08 GMT", + "Date": "Wed, 22 Mar 2023 03:08:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationResults/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationResults/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f4185ab6df02827271e0921f39213a0c", - "x-ms-correlation-request-id": "b99c19a6-6443-41e5-aad9-8bf6f37c3a91", - "x-ms-ratelimit-remaining-subscription-writes": "1174", - "x-ms-request-id": "e1b1b209-d3d8-4656-827c-6170f708123f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031009Z:b99c19a6-6443-41e5-aad9-8bf6f37c3a91", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "8e80f4184004ccdba762e023a1f57ccc", + "x-ms-correlation-request-id": "25b4e532-70f5-4572-814c-fffc0d0b9e83", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "cf0abda8-ae97-4b44-888d-784c3227e6ed", + "x-ms-routing-request-id": "JAPANEAST:20230322T030846Z:25b4e532-70f5-4572-814c-fffc0d0b9e83", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-1313.webpubsub.azure.com", + "hostName": "webpubsub-7253.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-1313", + "hostNamePrefix": "webpubsub-7253", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,371 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:10:06.8012837Z", + "createdAt": "2023-03-22T03:08:44.9501153Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:10:06.8012837Z" + "lastModifiedAt": "2023-03-22T03:08:44.9501153Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313", - "name": "webpubsub-1313", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253", + "name": "webpubsub-7253", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-7cfd753b14109540-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "cfb2974471e71751b823f9bb277dd844", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-e33d3eb574666dc3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "78a9758a3d7b1c4e931cde2b11065709", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:09 GMT", + "Date": "Wed, 22 Mar 2023 03:08:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cfb2974471e71751b823f9bb277dd844", - "x-ms-correlation-request-id": "ee690f7e-6861-4757-813d-53f79e9c376c", - "x-ms-ratelimit-remaining-subscription-reads": "11695", - "x-ms-request-id": "012bbe15-ceaa-41a8-a621-1f4b3edbff0f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031009Z:ee690f7e-6861-4757-813d-53f79e9c376c", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "78a9758a3d7b1c4e931cde2b11065709", + "x-ms-correlation-request-id": "4ac1fba2-f37d-4888-8217-168479e27d2f", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-request-id": "b382c016-b91f-4bd2-80c5-b5ce10402d06", + "x-ms-routing-request-id": "JAPANEAST:20230322T030847Z:4ac1fba2-f37d-4888-8217-168479e27d2f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-d839bf6c3215134e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "36fc07f7e2c4679fb99c1c261fca2b82", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-ce830f2b030ea5a5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "05672eb812502776c43b05b35bd064b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:10 GMT", + "Date": "Wed, 22 Mar 2023 03:08:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "36fc07f7e2c4679fb99c1c261fca2b82", - "x-ms-correlation-request-id": "ca265552-a139-4904-b333-45c77ad7da1a", - "x-ms-ratelimit-remaining-subscription-reads": "11694", - "x-ms-request-id": "60907c13-041f-4da2-8050-abb55f148c2e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031011Z:ca265552-a139-4904-b333-45c77ad7da1a", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "05672eb812502776c43b05b35bd064b9", + "x-ms-correlation-request-id": "747a5f69-12aa-4ea1-be75-1dce3af7dea0", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "d9511fb2-96d7-42ec-8a6b-985a98011858", + "x-ms-routing-request-id": "JAPANEAST:20230322T030848Z:747a5f69-12aa-4ea1-be75-1dce3af7dea0", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-b1efab43f902804f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a1da0dcc6b6ea9250a151af654e6535a", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-705121adcf1b86e3-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2c98d9d7034cf950e09b507913043482", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:11 GMT", + "Date": "Wed, 22 Mar 2023 03:08:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a1da0dcc6b6ea9250a151af654e6535a", - "x-ms-correlation-request-id": "56499b5d-0e13-4719-ad3c-37ea5a906535", - "x-ms-ratelimit-remaining-subscription-reads": "11693", - "x-ms-request-id": "66467fa7-7dc8-4eee-909f-f206459c5ed3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031012Z:56499b5d-0e13-4719-ad3c-37ea5a906535", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "2c98d9d7034cf950e09b507913043482", + "x-ms-correlation-request-id": "5c602d3f-9463-44d0-978c-afe2f123cded", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-request-id": "9ca4cc74-414d-4366-8937-a26b58fb9f9e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030850Z:5c602d3f-9463-44d0-978c-afe2f123cded", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-d8be570901c4be4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4fb07b02ddf261c0f84b154a542bf7ee", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-f4e19cb84eccac22-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3952dbfa858678b6ff82b340379bc0c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:13 GMT", + "Date": "Wed, 22 Mar 2023 03:08:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4fb07b02ddf261c0f84b154a542bf7ee", - "x-ms-correlation-request-id": "e884dda5-872b-4801-ba44-db3c3572d504", - "x-ms-ratelimit-remaining-subscription-reads": "11692", - "x-ms-request-id": "3e61bdfe-fd75-4cb0-9c38-027e9b2bf81d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031014Z:e884dda5-872b-4801-ba44-db3c3572d504", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "3952dbfa858678b6ff82b340379bc0c2", + "x-ms-correlation-request-id": "9fe23a00-0995-4fac-8059-4f260defcbea", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-request-id": "497633d3-cfdf-4680-91e4-1cf0de367a8e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030851Z:9fe23a00-0995-4fac-8059-4f260defcbea", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-b57ca07573996743-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1aee77f737a38cd6e1522cafc8a812d3", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-12743b90901b424b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "375324b72b6db5bddd6d24b4c1fc13c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:15 GMT", + "Date": "Wed, 22 Mar 2023 03:08:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1aee77f737a38cd6e1522cafc8a812d3", - "x-ms-correlation-request-id": "5fa991bd-ca3c-4c9c-9a56-74cb3f13c961", - "x-ms-ratelimit-remaining-subscription-reads": "11691", - "x-ms-request-id": "1a2c5507-9e58-4577-bef2-127ba5f37390", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031016Z:5fa991bd-ca3c-4c9c-9a56-74cb3f13c961", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "375324b72b6db5bddd6d24b4c1fc13c0", + "x-ms-correlation-request-id": "ef74f5c8-0cbf-439a-a9da-f975048a0b87", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-request-id": "6feb1add-809a-4725-9947-2dbfaa5ce191", + "x-ms-routing-request-id": "JAPANEAST:20230322T030853Z:ef74f5c8-0cbf-439a-a9da-f975048a0b87", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-4af91a2b7b641749-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a423c249dc1aef8f4d78a92255db54de", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-319a053e65adf0ca-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "80b982072a7e5233231f2cc94f0fc145", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:20 GMT", + "Date": "Wed, 22 Mar 2023 03:08:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a423c249dc1aef8f4d78a92255db54de", - "x-ms-correlation-request-id": "9b9af5bc-6358-4287-a258-ea6850695eaf", - "x-ms-ratelimit-remaining-subscription-reads": "11690", - "x-ms-request-id": "94bc4ada-0f8a-417d-b044-13029dd75fc2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031021Z:9b9af5bc-6358-4287-a258-ea6850695eaf", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "80b982072a7e5233231f2cc94f0fc145", + "x-ms-correlation-request-id": "f9a43d48-06e7-496d-a8f8-c0e176b4f9f7", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-request-id": "29921f42-4041-49c9-9ff3-8a28715a32c2", + "x-ms-routing-request-id": "JAPANEAST:20230322T030858Z:f9a43d48-06e7-496d-a8f8-c0e176b4f9f7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-ef21524807144d46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ddfe2b1d39f7cbb7a5246d9fb0109950", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-a422736ade9c767d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "efc18ddafcb1ce151d9c5b186101b602", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:29 GMT", + "Date": "Wed, 22 Mar 2023 03:09:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ddfe2b1d39f7cbb7a5246d9fb0109950", - "x-ms-correlation-request-id": "04b70485-9aeb-4e01-a2bd-c3d10f7f3e13", - "x-ms-ratelimit-remaining-subscription-reads": "11689", - "x-ms-request-id": "0ee446b4-a383-4b33-b71c-76a40fd8cef1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031029Z:04b70485-9aeb-4e01-a2bd-c3d10f7f3e13", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "efc18ddafcb1ce151d9c5b186101b602", + "x-ms-correlation-request-id": "0d976364-8845-434b-8833-51b0dc1b9770", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-request-id": "08e971de-70a3-4759-8404-b58712c20e1d", + "x-ms-routing-request-id": "JAPANEAST:20230322T030906Z:0d976364-8845-434b-8833-51b0dc1b9770", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-05e9a0c6d22d494f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9201423852081bd3e7ffcc2a8db33606", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-b22b94dc72b906dd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b539f36e3fe28d44f100134dfef365ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:10:46 GMT", + "Date": "Wed, 22 Mar 2023 03:09:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9201423852081bd3e7ffcc2a8db33606", - "x-ms-correlation-request-id": "10d9b1bb-d694-4f53-ba5d-8a3961712da3", - "x-ms-ratelimit-remaining-subscription-reads": "11688", - "x-ms-request-id": "5c347ee3-6191-4fe6-ba0a-8a6ff4ea49a1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031046Z:10d9b1bb-d694-4f53-ba5d-8a3961712da3", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b539f36e3fe28d44f100134dfef365ce", + "x-ms-correlation-request-id": "b8501ee4-fce5-4f9f-b457-841fd59ab445", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-request-id": "5359c1be-2e1a-4afb-984d-4831c3175b68", + "x-ms-routing-request-id": "JAPANEAST:20230322T030923Z:b8501ee4-fce5-4f9f-b457-841fd59ab445", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Running", - "startTime": "2022-07-13T03:10:07.9499738Z" + "startTime": "2023-03-22T03:08:45.9613646Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-c52277bf16c31e4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9c914dfd35aa0fdb0b57fff56eef3e3c", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-581890c36d6116ce-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "33dadeac243b0a0f6dea63e1ce1af122", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:18 GMT", + "Date": "Wed, 22 Mar 2023 03:09:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9c914dfd35aa0fdb0b57fff56eef3e3c", - "x-ms-correlation-request-id": "1a774a54-114b-47ef-81df-38b6eefdd20b", - "x-ms-ratelimit-remaining-subscription-reads": "11687", - "x-ms-request-id": "ea14c907-8952-40d3-97f5-47a997ed205e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031118Z:1a774a54-114b-47ef-81df-38b6eefdd20b", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "33dadeac243b0a0f6dea63e1ce1af122", + "x-ms-correlation-request-id": "8baa95dc-6d10-4089-b0be-97f1caeb86cd", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-request-id": "15aa9e1d-1411-4ea5-8471-ff71409df72a", + "x-ms-routing-request-id": "JAPANEAST:20230322T030955Z:8baa95dc-6d10-4089-b0be-97f1caeb86cd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313/operationStatuses/1bd33330-404c-43a5-87fd-4c92a615ca89", - "name": "1bd33330-404c-43a5-87fd-4c92a615ca89", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253/operationStatuses/00df5c0a-e080-4b69-8fcd-e81ab9308cc8", + "name": "00df5c0a-e080-4b69-8fcd-e81ab9308cc8", "status": "Succeeded", - "startTime": "2022-07-13T03:10:07.9499738Z", - "endTime": "2022-07-13T03:11:08.7369564Z" + "startTime": "2023-03-22T03:08:45.9613646Z", + "endTime": "2023-03-22T03:09:35.5513832Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-1313?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-7253?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-48f628ea58f2fa4e82014b965384017a-1c4d80e67263c440-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "12ea59dfc2d9cbd658e2f5f76d8c3df1", + "traceparent": "00-a2f59a9b8cc592e3c423291bcb8a4e53-0deb28c419a3d280-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5c5a2a680bd69a634934feb0e9c7d029", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1275", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:19 GMT", + "Date": "Wed, 22 Mar 2023 03:09:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "12ea59dfc2d9cbd658e2f5f76d8c3df1", - "x-ms-correlation-request-id": "950eebb4-057a-4103-ba12-556459f3b7ff", - "x-ms-ratelimit-remaining-subscription-reads": "11686", - "x-ms-request-id": "8c8437bb-ce53-4e28-9719-db5c862df194", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031119Z:950eebb4-057a-4103-ba12-556459f3b7ff", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "5c5a2a680bd69a634934feb0e9c7d029", + "x-ms-correlation-request-id": "71e0cd1d-e661-4003-82ed-740f5072a905", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-request-id": "6cf3514a-e3da-4e14-b2f8-0b9d3c7dcf74", + "x-ms-routing-request-id": "JAPANEAST:20230322T030955Z:71e0cd1d-e661-4003-82ed-740f5072a905", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-1313.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-7253.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-1313", + "hostNamePrefix": "webpubsub-7253", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,57 +580,57 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:10:06.8012837Z", + "createdAt": "2023-03-22T03:08:44.9501153Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:10:06.8012837Z" + "lastModifiedAt": "2023-03-22T03:08:44.9501153Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1313", - "name": "webpubsub-1313", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-7253", + "name": "webpubsub-7253", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-1313?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-7253?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-48fb3778bf4a2e4ba7bb7e6040c5d716-059a49250f251647-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "63a266edfc7f03a567f187b052ddacf8", + "traceparent": "00-cc64b74bb68c23228b372c99a3dd5c37-c0fe4d72504d00a2-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "826c8d3783274ac7e42e47f7dc62bed6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:11:21 GMT", + "Date": "Wed, 22 Mar 2023 03:09:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "63a266edfc7f03a567f187b052ddacf8", - "x-ms-correlation-request-id": "717d7d0c-b225-435d-a8ec-a83cc5499e8c", - "x-ms-ratelimit-remaining-subscription-deletes": "14984", - "x-ms-request-id": "e4af023b-a6e6-425d-b13d-ed056af88d2e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031122Z:717d7d0c-b225-435d-a8ec-a83cc5499e8c", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "826c8d3783274ac7e42e47f7dc62bed6", + "x-ms-correlation-request-id": "e162dcc9-4141-4876-938c-4629ab4822a1", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-request-id": "d6ef5219-2b75-4b6a-bfcd-ec4d0330fb2c", + "x-ms-routing-request-id": "JAPANEAST:20230322T030957Z:e162dcc9-4141-4876-938c-4629ab4822a1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-9c4e94f0ac6ba84b9bda36c66e15efa8-0547034d6c836a48-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "08080d19da4de3bdb3e6abe83a26787a", + "traceparent": "00-d73a0af6ef6a1d65de18669bcbc0e1c6-49bd5da0be0dbcb3-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "40aa391a6fade5fa621078a7c46bbee6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -639,15 +639,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:21 GMT", + "Date": "Wed, 22 Mar 2023 03:09:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba9c94e3-c823-4282-8455-b8bf86ef3c80", - "x-ms-ratelimit-remaining-subscription-reads": "11685", - "x-ms-request-id": "ba9c94e3-c823-4282-8455-b8bf86ef3c80", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031122Z:ba9c94e3-c823-4282-8455-b8bf86ef3c80" + "x-ms-correlation-request-id": "553f35f4-06cf-4c30-bd3a-d973ebb5efe7", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-request-id": "553f35f4-06cf-4c30-bd3a-d973ebb5efe7", + "x-ms-routing-request-id": "JAPANEAST:20230322T030958Z:553f35f4-06cf-4c30-bd3a-d973ebb5efe7" }, "ResponseBody": { "value": [] @@ -656,7 +656,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1569150931", + "RandomSeed": "1274848138", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/DeleteAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/DeleteAsync.json index 6c32e8a191d4..63b9fe910da9 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/DeleteAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/DeleteAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6159?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-4769?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2e58eb3f6e2c25478f01254bf5344dbd-0c4cc6e5be11144d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a7972b3a03cc9e8ab3d6c68743df5234", + "traceparent": "00-9769436e8f5498d77fa49f829e1d4e39-9ad94c714fe7ffe9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7e9a18316c71a38e552edee8508060fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:17 GMT", + "Date": "Wed, 22 Mar 2023 03:15:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a58fadc-3cee-4129-9a58-2fb11fb10641", - "x-ms-ratelimit-remaining-subscription-reads": "11631", - "x-ms-request-id": "2a58fadc-3cee-4129-9a58-2fb11fb10641", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031718Z:2a58fadc-3cee-4129-9a58-2fb11fb10641" + "x-ms-correlation-request-id": "3f54385e-6d5a-4224-ad29-c851f71a11f5", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-request-id": "3f54385e-6d5a-4224-ad29-c851f71a11f5", + "x-ms-routing-request-id": "JAPANEAST:20230322T031529Z:3f54385e-6d5a-4224-ad29-c851f71a11f5" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159", - "name": "WebPubSubRG-6159", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769", + "name": "WebPubSubRG-4769", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6155?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4016?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-4b8d58fb02e04b4d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "337484a979c4d29e8bb5df5ebd480f2f", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-d2d9107a142f29e4-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a9ca02defea9624c74bf6ded228a9bd4", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1270", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:22 GMT", + "Date": "Wed, 22 Mar 2023 03:15:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationResults/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationResults/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "337484a979c4d29e8bb5df5ebd480f2f", - "x-ms-correlation-request-id": "d007ce3a-c024-4f37-bdcd-b83258d2d63b", - "x-ms-ratelimit-remaining-subscription-writes": "1167", - "x-ms-request-id": "a9ae450b-d424-48b3-b2da-7c9082797976", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031723Z:d007ce3a-c024-4f37-bdcd-b83258d2d63b", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a9ca02defea9624c74bf6ded228a9bd4", + "x-ms-correlation-request-id": "eb2d7ff8-fede-45b8-a451-5c5d7443ebce", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-request-id": "a752b9ea-3262-46fb-b8be-9b8438dcf5f0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031532Z:eb2d7ff8-fede-45b8-a451-5c5d7443ebce", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-6155.webpubsub.azure.com", + "hostName": "webpubsub-4016.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6155", + "hostNamePrefix": "webpubsub-4016", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,26 +160,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:17:20.50358Z", + "createdAt": "2023-03-22T03:15:30.4190425Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:17:20.50358Z" + "lastModifiedAt": "2023-03-22T03:15:30.4190425Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155", - "name": "webpubsub-6155", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016", + "name": "webpubsub-4016", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-47ab19c882fd904e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b3c3648d725cb276f9d4404eab3ff58e", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-9290f64f7bebc8cd-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b1c9f408f33719874d1cfdad20b632a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -188,34 +188,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:22 GMT", + "Date": "Wed, 22 Mar 2023 03:15:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "b3c3648d725cb276f9d4404eab3ff58e", - "x-ms-correlation-request-id": "e6545a40-e6bf-457f-977d-86c0d2b10aa8", - "x-ms-ratelimit-remaining-subscription-reads": "11630", - "x-ms-request-id": "ebce2440-0182-4446-a0f2-b5e1eba52cd9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031723Z:e6545a40-e6bf-457f-977d-86c0d2b10aa8", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b1c9f408f33719874d1cfdad20b632a3", + "x-ms-correlation-request-id": "f31fac71-654f-448c-9856-c35b796c48d3", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-request-id": "286bcb68-0977-4627-88e5-685b23a7bcfc", + "x-ms-routing-request-id": "JAPANEAST:20230322T031532Z:f31fac71-654f-448c-9856-c35b796c48d3", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-570bb958a0230d4d-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9db157b7989d2d234ec09854425cd8e4", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-744d21a887a554ce-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a5131443446b98cd641fe30a01a409fa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,34 +224,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:24 GMT", + "Date": "Wed, 22 Mar 2023 03:15:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9db157b7989d2d234ec09854425cd8e4", - "x-ms-correlation-request-id": "2a99c0a0-8b32-4e8a-8bc3-6fc594f94cfc", - "x-ms-ratelimit-remaining-subscription-reads": "11629", - "x-ms-request-id": "84a1f5d9-346c-4e56-8b46-a1cfee91f06a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031724Z:2a99c0a0-8b32-4e8a-8bc3-6fc594f94cfc", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a5131443446b98cd641fe30a01a409fa", + "x-ms-correlation-request-id": "f27edb7a-a5ba-48df-9dc9-89ed25c5a7bb", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-request-id": "e9f7d198-fc8e-4542-9164-394b64203efd", + "x-ms-routing-request-id": "JAPANEAST:20230322T031534Z:f27edb7a-a5ba-48df-9dc9-89ed25c5a7bb", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-13f0f679c4f25c48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "58d1da7d5b841fd2cc03a2b33be7075b", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-e88f3a4701379e7c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2ee4ad6de9c1499c53db684249f1890f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,34 +260,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:25 GMT", + "Date": "Wed, 22 Mar 2023 03:15:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "58d1da7d5b841fd2cc03a2b33be7075b", - "x-ms-correlation-request-id": "32903f8b-1720-49ad-ad61-45f42abeeee3", - "x-ms-ratelimit-remaining-subscription-reads": "11628", - "x-ms-request-id": "12bcc907-a2a8-41f4-b76b-a95a702e3804", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031726Z:32903f8b-1720-49ad-ad61-45f42abeeee3", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "2ee4ad6de9c1499c53db684249f1890f", + "x-ms-correlation-request-id": "fa0f44b0-1f07-4f78-8b42-8bebb0627dd3", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-request-id": "63830ca5-9261-4b42-aa74-dbdd2bb684e6", + "x-ms-routing-request-id": "JAPANEAST:20230322T031535Z:fa0f44b0-1f07-4f78-8b42-8bebb0627dd3", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-51505f68110fb945-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a28aa8799af4f4674196659bda21709d", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-00bd2dfd99b4bd7b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "44655a6cac66c45427314d180f7d18a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -296,34 +296,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:26 GMT", + "Date": "Wed, 22 Mar 2023 03:15:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a28aa8799af4f4674196659bda21709d", - "x-ms-correlation-request-id": "6e1f9533-cf42-4c08-aeec-f3447b4eb0cc", - "x-ms-ratelimit-remaining-subscription-reads": "11627", - "x-ms-request-id": "9a83e158-8453-402c-b720-1acc7a2dd3fd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031727Z:6e1f9533-cf42-4c08-aeec-f3447b4eb0cc", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "44655a6cac66c45427314d180f7d18a9", + "x-ms-correlation-request-id": "3dc6aa21-51d0-453b-b263-9a895ea8edd7", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-request-id": "8b98adf7-9669-4876-a1fa-663273c84cdd", + "x-ms-routing-request-id": "JAPANEAST:20230322T031537Z:3dc6aa21-51d0-453b-b263-9a895ea8edd7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-b40d1a0128cc1a48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d0d15cfc9d6e5c0a8492d19af670f167", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-eb414568e65febc1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "733f021204d159e277ca518fdb8b4f72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -332,34 +332,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:30 GMT", + "Date": "Wed, 22 Mar 2023 03:15:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d0d15cfc9d6e5c0a8492d19af670f167", - "x-ms-correlation-request-id": "b55d728c-61bf-4708-b7bc-4fa0083a2f05", - "x-ms-ratelimit-remaining-subscription-reads": "11626", - "x-ms-request-id": "fe8a373d-bf5d-4113-9b67-4858f919beda", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031730Z:b55d728c-61bf-4708-b7bc-4fa0083a2f05", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "733f021204d159e277ca518fdb8b4f72", + "x-ms-correlation-request-id": "334296f9-5d16-4e89-a31b-af5c7d3bdfa7", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-request-id": "35493955-bd4b-4695-9ea2-612e77f415aa", + "x-ms-routing-request-id": "JAPANEAST:20230322T031539Z:334296f9-5d16-4e89-a31b-af5c7d3bdfa7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-889e52ec21dd3646-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "99da3db935d1e2f073dc16eef63744aa", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-049b665c52d1465b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a79dd495c43ec194581f068f9c8439d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -368,34 +368,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:34 GMT", + "Date": "Wed, 22 Mar 2023 03:15:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "99da3db935d1e2f073dc16eef63744aa", - "x-ms-correlation-request-id": "92214c14-ba61-46ab-9c0d-25935669e736", - "x-ms-ratelimit-remaining-subscription-reads": "11625", - "x-ms-request-id": "0c394b49-527b-48b9-9c10-758c0b74f358", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031734Z:92214c14-ba61-46ab-9c0d-25935669e736", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a79dd495c43ec194581f068f9c8439d6", + "x-ms-correlation-request-id": "5fe5b324-a0c3-4d28-aa96-a20ff965bff5", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-request-id": "cb60cfec-e06a-4ef2-9b23-81b89913382e", + "x-ms-routing-request-id": "JAPANEAST:20230322T031543Z:5fe5b324-a0c3-4d28-aa96-a20ff965bff5", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-6f9705767223824c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "dfb605923716dcec9e2d1d61c9ccfed1", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-6dbd48969615eeae-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "462fbec316b1683d770bcc9b5bc5e99c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -404,34 +404,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:42 GMT", + "Date": "Wed, 22 Mar 2023 03:15:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "dfb605923716dcec9e2d1d61c9ccfed1", - "x-ms-correlation-request-id": "8a683a8b-04c1-45ab-8935-cdf3582aaad5", - "x-ms-ratelimit-remaining-subscription-reads": "11624", - "x-ms-request-id": "bc0d04de-283c-4522-9029-46f41067ee16", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031743Z:8a683a8b-04c1-45ab-8935-cdf3582aaad5", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "462fbec316b1683d770bcc9b5bc5e99c", + "x-ms-correlation-request-id": "ba36c183-1341-45d4-9ad9-32af3f9cdad7", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-request-id": "d7d24795-0daf-47ae-b90f-7c3514ffea6c", + "x-ms-routing-request-id": "JAPANEAST:20230322T031552Z:ba36c183-1341-45d4-9ad9-32af3f9cdad7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-32583ee92cfc6a4c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9de2fda5d646c6cb6bee5c92861b664d", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-dd3ef105fc776f6d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3b82dae171df4d6a6e7e1bb2fe52bdf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -440,106 +440,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:17:59 GMT", + "Date": "Wed, 22 Mar 2023 03:16:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9de2fda5d646c6cb6bee5c92861b664d", - "x-ms-correlation-request-id": "a1d868c1-8730-49f6-8335-66e0de45b67b", - "x-ms-ratelimit-remaining-subscription-reads": "11623", - "x-ms-request-id": "5a7a522e-e61b-42d7-a4eb-f00830757ca1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031759Z:a1d868c1-8730-49f6-8335-66e0de45b67b", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "3b82dae171df4d6a6e7e1bb2fe52bdf3", + "x-ms-correlation-request-id": "0f4141aa-933c-4c20-affa-9a80f16fced8", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-request-id": "25891183-5317-480c-9402-da9efa1640a5", + "x-ms-routing-request-id": "JAPANEAST:20230322T031608Z:0f4141aa-933c-4c20-affa-9a80f16fced8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" + "startTime": "2023-03-22T03:15:31.3606342Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-8b40673787f5f242-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f107264d11b9815050fefba4188e19a7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:18:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f107264d11b9815050fefba4188e19a7", - "x-ms-correlation-request-id": "7ef98505-2d62-42cb-bda9-ec461bdcbb02", - "x-ms-ratelimit-remaining-subscription-reads": "11622", - "x-ms-request-id": "71a7c250-073d-4855-8474-ae98c318728b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031832Z:7ef98505-2d62-42cb-bda9-ec461bdcbb02", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", - "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-586bbbddf6b70f46-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f84845dda755bc6439f07428da5a5682", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f84845dda755bc6439f07428da5a5682", - "x-ms-correlation-request-id": "a4c98126-e6bc-441f-a4c0-331ba89f7a52", - "x-ms-ratelimit-remaining-subscription-reads": "11621", - "x-ms-request-id": "63308e45-63c2-4306-927c-2db27552a1d2", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031904Z:a4c98126-e6bc-441f-a4c0-331ba89f7a52", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", - "status": "Running", - "startTime": "2022-07-13T03:17:21.7771391Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-110d7a46faef034a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a314cfc70dc59418ad604c48da27addd", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-3ebccd1193bbfc1e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1dcc7a90095b7fc097352f32f8f86593", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -548,55 +476,55 @@ "Cache-Control": "no-cache", "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:36 GMT", + "Date": "Wed, 22 Mar 2023 03:16:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a314cfc70dc59418ad604c48da27addd", - "x-ms-correlation-request-id": "d5cf0e82-40fe-4086-8c30-21c9617ac63c", - "x-ms-ratelimit-remaining-subscription-reads": "11620", - "x-ms-request-id": "62660820-0351-4f33-b903-5c0612e04a56", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031937Z:d5cf0e82-40fe-4086-8c30-21c9617ac63c", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "1dcc7a90095b7fc097352f32f8f86593", + "x-ms-correlation-request-id": "e81e7d63-1de2-4491-85ca-f10acd4f76e9", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-request-id": "dbfff66d-92ac-4118-9e6a-069b7e9f4cd0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031640Z:e81e7d63-1de2-4491-85ca-f10acd4f76e9", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155/operationStatuses/08f8b12d-af00-4b79-800e-1aba50968ae1", - "name": "08f8b12d-af00-4b79-800e-1aba50968ae1", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016/operationStatuses/98011d09-caa5-47f9-9593-43eb9de3e757", + "name": "98011d09-caa5-47f9-9593-43eb9de3e757", "status": "Succeeded", - "startTime": "2022-07-13T03:17:21.7771391Z", - "endTime": "2022-07-13T03:19:05.4984895Z" + "startTime": "2023-03-22T03:15:31.3606342Z", + "endTime": "2023-03-22T03:16:22.3016329Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6155?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4016?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f67d245b6b52d1458ec806dcde188893-c1d92f0c6af6ec42-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "40b4b5d56dd3a6f8c14ab7c99d28a6f6", + "traceparent": "00-a0541f8dba6c914268dcc5959474532d-24cc737ce5191886-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c1ae6a36fe0152f653e2d733fa8a6a25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1272", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:36 GMT", + "Date": "Wed, 22 Mar 2023 03:16:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "40b4b5d56dd3a6f8c14ab7c99d28a6f6", - "x-ms-correlation-request-id": "c4186d52-149d-4e07-9a48-d14d505c6a3d", - "x-ms-ratelimit-remaining-subscription-reads": "11619", - "x-ms-request-id": "da91cbdf-0681-4c74-9452-f4904c61ae94", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031937Z:c4186d52-149d-4e07-9a48-d14d505c6a3d", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c1ae6a36fe0152f653e2d733fa8a6a25", + "x-ms-correlation-request-id": "d2985e28-0e6f-4a4d-9b8a-be9852ef92ea", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-request-id": "293eeb1a-e665-4469-a69d-7479a1479686", + "x-ms-routing-request-id": "JAPANEAST:20230322T031641Z:d2985e28-0e6f-4a4d-9b8a-be9852ef92ea", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -607,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-6155.webpubsub.azure.com", + "externalIP": "20.51.13.60", + "hostName": "webpubsub-4016.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -617,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6155", + "hostNamePrefix": "webpubsub-4016", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -652,57 +580,56 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:17:20.50358Z", + "createdAt": "2023-03-22T03:15:30.4190425Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:17:20.50358Z" + "lastModifiedAt": "2023-03-22T03:15:30.4190425Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6155", - "name": "webpubsub-6155", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4016", + "name": "webpubsub-4016", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-6155?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4016?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-5739857a901af44cba28540dad90478c-1893b45f56b7d447-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "48dc79a7757ad0e22db44bf45a1ce112", + "traceparent": "00-46c04d409729d587ea94120bdf24dfa7-eec98dc282abf6ee-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e00bd84ecbf9d7401903a3aa41375576", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:19:39 GMT", + "Date": "Wed, 22 Mar 2023 03:16:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "48dc79a7757ad0e22db44bf45a1ce112", - "x-ms-correlation-request-id": "948445ae-2b18-4d9a-86e5-4d2ae34b95d2", - "x-ms-ratelimit-remaining-subscription-deletes": "14979", - "x-ms-request-id": "57468b03-5d14-485d-a40a-77b183cf9a87", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031940Z:948445ae-2b18-4d9a-86e5-4d2ae34b95d2", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e00bd84ecbf9d7401903a3aa41375576", + "x-ms-correlation-request-id": "e2ac30be-68c6-4b2e-bc04-4e20ef7ae993", + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-request-id": "a19f92eb-62dd-4e65-aa67-d93f35bfe413", + "x-ms-routing-request-id": "JAPANEAST:20230322T031642Z:e2ac30be-68c6-4b2e-bc04-4e20ef7ae993", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-df9f68d3042d3b409aa964ed03440c11-c555794dcf16c049-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "61a056b9654a5f62d3e3131e22034ba4", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1fe40acb84ed6a9a29d6a8fd5b4c101b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -711,15 +638,15 @@ "Cache-Control": "no-cache", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:39 GMT", + "Date": "Wed, 22 Mar 2023 03:16:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0071c08e-601a-4ced-ae2d-08d81e0adedc", - "x-ms-ratelimit-remaining-subscription-reads": "11618", - "x-ms-request-id": "0071c08e-601a-4ced-ae2d-08d81e0adedc", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031940Z:0071c08e-601a-4ced-ae2d-08d81e0adedc" + "x-ms-correlation-request-id": "5d1cd046-c79d-465f-a545-93a15e224090", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-request-id": "5d1cd046-c79d-465f-a545-93a15e224090", + "x-ms-routing-request-id": "JAPANEAST:20230322T031643Z:5d1cd046-c79d-465f-a545-93a15e224090" }, "ResponseBody": { "value": [] @@ -728,7 +655,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1898173565", + "RandomSeed": "7700889", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Get.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Get.json index 30f969286d19..260b40852cf1 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Get.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/Get.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-296?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6782?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-921702ade88e204d98fdf40207d4c107-670bcd2b059c754c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "b0cf5dfa3931df6c1908a244adc36ec9", + "traceparent": "00-5d225a3324fc694f8736ed9b6ebd9af6-90b25dabb64f8454-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fcd3becffc378f5cf6d1c0921855a55f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:22 GMT", + "Date": "Wed, 22 Mar 2023 03:09:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d1cb0ed-ff60-4dc5-a468-75acf2faa12f", - "x-ms-ratelimit-remaining-subscription-reads": "11684", - "x-ms-request-id": "7d1cb0ed-ff60-4dc5-a468-75acf2faa12f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031122Z:7d1cb0ed-ff60-4dc5-a468-75acf2faa12f" + "x-ms-correlation-request-id": "31f511f1-00b8-4439-91b9-36edbd14ea53", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-request-id": "31f511f1-00b8-4439-91b9-36edbd14ea53", + "x-ms-routing-request-id": "JAPANEAST:20230322T030958Z:31f511f1-00b8-4439-91b9-36edbd14ea53" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296", - "name": "WebPubSubRG-296", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782", + "name": "WebPubSubRG-6782", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6117?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2016?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-7e329322de2ee747-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "218d0956980b3d083fbe9a20909d2915", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-2fd64b3920149e33-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "64dcb2d6377d8739108b87f3ffade387", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1271", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:28 GMT", + "Date": "Wed, 22 Mar 2023 03:10:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationResults/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationResults/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "218d0956980b3d083fbe9a20909d2915", - "x-ms-correlation-request-id": "db9727d5-f4f0-4738-93dc-0797c5da690a", - "x-ms-ratelimit-remaining-subscription-writes": "1173", - "x-ms-request-id": "ab838826-f5be-48bc-a695-0586a8357e44", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031128Z:db9727d5-f4f0-4738-93dc-0797c5da690a", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "64dcb2d6377d8739108b87f3ffade387", + "x-ms-correlation-request-id": "5e6d2587-1b8d-445f-9cb7-afb15b5089b8", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-request-id": "65c0dd92-66eb-4c05-b666-289ca4abc29b", + "x-ms-routing-request-id": "JAPANEAST:20230322T031002Z:5e6d2587-1b8d-445f-9cb7-afb15b5089b8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-6117.webpubsub.azure.com", + "hostName": "webpubsub-2016.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6117", + "hostNamePrefix": "webpubsub-2016", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,371 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:11:25.738668Z", + "createdAt": "2023-03-22T03:10:00.5911226Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:11:25.738668Z" + "lastModifiedAt": "2023-03-22T03:10:00.5911226Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117", - "name": "webpubsub-6117", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016", + "name": "webpubsub-2016", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-74a2ac9bb5c43342-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "61995cefeac4c4efc773f17bd2be896b", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-c5d10081516bb4c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "bd427a4de99d87529a742670d49cf623", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:28 GMT", + "Date": "Wed, 22 Mar 2023 03:10:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "61995cefeac4c4efc773f17bd2be896b", - "x-ms-correlation-request-id": "165eb947-399a-4702-904e-9b08a98175e6", - "x-ms-ratelimit-remaining-subscription-reads": "11683", - "x-ms-request-id": "0606fe91-fc0b-42e8-a799-44c9cc58adbf", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031129Z:165eb947-399a-4702-904e-9b08a98175e6", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "bd427a4de99d87529a742670d49cf623", + "x-ms-correlation-request-id": "bd36faa0-d7bb-461b-a284-cbff99704f10", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-request-id": "e5cb7136-8eab-43c3-9448-088179e63b11", + "x-ms-routing-request-id": "JAPANEAST:20230322T031002Z:bd36faa0-d7bb-461b-a284-cbff99704f10", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-1ece15fcfe53f841-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "967e2f7997336754ea7efb8c3c2b75ee", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-fc93e95dd0a4f2f4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b6820addb1d7a82aabf1544a7fc6965d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:29 GMT", + "Date": "Wed, 22 Mar 2023 03:10:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "967e2f7997336754ea7efb8c3c2b75ee", - "x-ms-correlation-request-id": "abccc6fe-f7e4-460f-a57d-6468821f7536", - "x-ms-ratelimit-remaining-subscription-reads": "11682", - "x-ms-request-id": "c785ad71-d673-4db1-a14c-d2398e52d465", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031130Z:abccc6fe-f7e4-460f-a57d-6468821f7536", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b6820addb1d7a82aabf1544a7fc6965d", + "x-ms-correlation-request-id": "b63f76da-bd74-4d1c-a9af-c9c953c68997", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-request-id": "21077eba-7160-4383-bed3-0b2a7a141500", + "x-ms-routing-request-id": "JAPANEAST:20230322T031004Z:b63f76da-bd74-4d1c-a9af-c9c953c68997", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-a2f9ab8c0f21b542-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "33317589c70344503d766ab8fda33c67", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-caac82f851e59444-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85a5edc4256bace94d47138e07961673", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:31 GMT", + "Date": "Wed, 22 Mar 2023 03:10:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "33317589c70344503d766ab8fda33c67", - "x-ms-correlation-request-id": "4f60249c-d3df-43a5-bb34-abd62105d00e", - "x-ms-ratelimit-remaining-subscription-reads": "11681", - "x-ms-request-id": "6084c2d6-5f4d-4e96-a4cc-ca7665a22284", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031132Z:4f60249c-d3df-43a5-bb34-abd62105d00e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "85a5edc4256bace94d47138e07961673", + "x-ms-correlation-request-id": "f7ffb33e-6c46-416c-b090-3bd384cd6b7f", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-request-id": "ccb040b7-6195-49b5-8e2c-c6dd1ff543c0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031005Z:f7ffb33e-6c46-416c-b090-3bd384cd6b7f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-e8380b6e49807c49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "9762f1f59ed357f108317645ee63889b", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-5429ed824b535b30-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e694943b112f9cc24f9a12ac940707d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:32 GMT", + "Date": "Wed, 22 Mar 2023 03:10:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9762f1f59ed357f108317645ee63889b", - "x-ms-correlation-request-id": "6cf3c02d-a48d-4f16-8454-80c9eb3222f7", - "x-ms-ratelimit-remaining-subscription-reads": "11680", - "x-ms-request-id": "bb7769a0-34ed-4c6e-9f5a-faa086437fb3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031133Z:6cf3c02d-a48d-4f16-8454-80c9eb3222f7", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e694943b112f9cc24f9a12ac940707d3", + "x-ms-correlation-request-id": "9d3df30e-c8d0-4d09-9b29-82c1e371360c", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-request-id": "19de6ec7-0001-41b3-89ff-0487c271bc58", + "x-ms-routing-request-id": "JAPANEAST:20230322T031006Z:9d3df30e-c8d0-4d09-9b29-82c1e371360c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-1007a0e796a7f34b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5df102fe558db167df3959bd2c9b6a47", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-311efd127cc4f764-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e7acc8de70f7b7b820d669909e9ca014", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:35 GMT", + "Date": "Wed, 22 Mar 2023 03:10:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5df102fe558db167df3959bd2c9b6a47", - "x-ms-correlation-request-id": "e34e9ad0-3974-4643-b9ae-2cbf319ddd44", - "x-ms-ratelimit-remaining-subscription-reads": "11679", - "x-ms-request-id": "68dc6ed7-7b99-4cd9-8545-6abf8203c5f9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031136Z:e34e9ad0-3974-4643-b9ae-2cbf319ddd44", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e7acc8de70f7b7b820d669909e9ca014", + "x-ms-correlation-request-id": "36aca93e-fbf2-4240-b762-f36b0bc20990", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-request-id": "92474eca-2b86-4c4c-842f-1dd90a20ac45", + "x-ms-routing-request-id": "JAPANEAST:20230322T031009Z:36aca93e-fbf2-4240-b762-f36b0bc20990", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-be66e6527c8f6d4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4b969442dec8ea1a83d92bd1500a56d9", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-0c03a0c8a4542e07-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "eb0fe1dab032b22e2b0935d0133d1845", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:40 GMT", + "Date": "Wed, 22 Mar 2023 03:10:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4b969442dec8ea1a83d92bd1500a56d9", - "x-ms-correlation-request-id": "4827814a-2064-48af-9357-581c0f77d74f", - "x-ms-ratelimit-remaining-subscription-reads": "11678", - "x-ms-request-id": "80d43bfc-f40a-49f1-b718-0729f14c5040", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031140Z:4827814a-2064-48af-9357-581c0f77d74f", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "eb0fe1dab032b22e2b0935d0133d1845", + "x-ms-correlation-request-id": "963894c8-dfd6-42ec-aed3-448508fc1646", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-request-id": "8b6ca9b8-4631-4deb-9abe-6d6dbdbf53fb", + "x-ms-routing-request-id": "JAPANEAST:20230322T031013Z:963894c8-dfd6-42ec-aed3-448508fc1646", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-df69a48542e1b341-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fabacfeddfb1a0d989b1b89a45342b6d", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-b521126469a66c2e-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3faf3f402feacb7cdbddc559a832feb3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:11:48 GMT", + "Date": "Wed, 22 Mar 2023 03:10:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fabacfeddfb1a0d989b1b89a45342b6d", - "x-ms-correlation-request-id": "3325fe7c-078f-4ce4-8441-779aea6a7c74", - "x-ms-ratelimit-remaining-subscription-reads": "11677", - "x-ms-request-id": "3403d81c-de83-407e-b12f-8176c0b24af0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031148Z:3325fe7c-078f-4ce4-8441-779aea6a7c74", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "3faf3f402feacb7cdbddc559a832feb3", + "x-ms-correlation-request-id": "a5f0e02f-a9cc-4658-aca5-e1eb7d78a67d", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-request-id": "31661b88-053c-406e-b4ac-77ceae64e99f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031022Z:a5f0e02f-a9cc-4658-aca5-e1eb7d78a67d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-3c0606511e39074e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5a032fc73dcd1fd2e807d9b42a9660d4", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-c37c16bd76d403a1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b3d2fdf91bf82da19af9bbee3ae7a4e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:05 GMT", + "Date": "Wed, 22 Mar 2023 03:10:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5a032fc73dcd1fd2e807d9b42a9660d4", - "x-ms-correlation-request-id": "e128a51f-c043-4aa9-ab29-31cf9dba2793", - "x-ms-ratelimit-remaining-subscription-reads": "11676", - "x-ms-request-id": "ef6720c2-0d19-46f6-812f-e7213a32cfd9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031205Z:e128a51f-c043-4aa9-ab29-31cf9dba2793", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b3d2fdf91bf82da19af9bbee3ae7a4e3", + "x-ms-correlation-request-id": "ee8b01a4-eb53-43ca-9062-884202849f89", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-request-id": "0d47fb69-b93f-4144-9f8a-18c1ccc701a2", + "x-ms-routing-request-id": "JAPANEAST:20230322T031038Z:ee8b01a4-eb53-43ca-9062-884202849f89", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Running", - "startTime": "2022-07-13T03:11:27.2570722Z" + "startTime": "2023-03-22T03:10:01.3250636Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-2952d5cc83933940-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5dd07fe26fe06295baf5c117267fa54f", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-71d1c3f2a0ce3b2d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5e5023bd61ecaa2a65440f55ead40af8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:37 GMT", + "Date": "Wed, 22 Mar 2023 03:11:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5dd07fe26fe06295baf5c117267fa54f", - "x-ms-correlation-request-id": "459bb94d-9210-470e-83ec-5f3899d569bb", - "x-ms-ratelimit-remaining-subscription-reads": "11675", - "x-ms-request-id": "16a151dd-5821-4cf7-8f71-53cca532b809", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031237Z:459bb94d-9210-470e-83ec-5f3899d569bb", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "5e5023bd61ecaa2a65440f55ead40af8", + "x-ms-correlation-request-id": "61ad4015-8d90-424d-bb40-f1ded4cd3f71", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-request-id": "71e073f4-8ff0-44a5-9c1e-b51ff66d2244", + "x-ms-routing-request-id": "JAPANEAST:20230322T031110Z:61ad4015-8d90-424d-bb40-f1ded4cd3f71", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117/operationStatuses/425fee3d-9347-4640-8c13-f28351661c7a", - "name": "425fee3d-9347-4640-8c13-f28351661c7a", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016/operationStatuses/af6edc82-f70a-4a30-a09c-1a547422458d", + "name": "af6edc82-f70a-4a30-a09c-1a547422458d", "status": "Succeeded", - "startTime": "2022-07-13T03:11:27.2570722Z", - "endTime": "2022-07-13T03:12:32.0642957Z" + "startTime": "2023-03-22T03:10:01.3250636Z", + "endTime": "2023-03-22T03:10:51.3964096Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6117?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2016?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-af6f25ef21042a4f84234d22a8a9720b-101b3ec59b020c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "210abdaefb07af0cfc9b11aa052576f3", + "traceparent": "00-570a8b7b95256f44bd2b02b9eee38b82-d3bbdbf0d0ae8679-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "16d7820a656b244c9e82a4f0738e90f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1273", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:37 GMT", + "Date": "Wed, 22 Mar 2023 03:11:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "210abdaefb07af0cfc9b11aa052576f3", - "x-ms-correlation-request-id": "4c5b2920-be90-41f2-b861-94c747c1a15d", - "x-ms-ratelimit-remaining-subscription-reads": "11674", - "x-ms-request-id": "2557eac6-7e1f-496a-9115-f7843221aec8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031238Z:4c5b2920-be90-41f2-b861-94c747c1a15d", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "16d7820a656b244c9e82a4f0738e90f4", + "x-ms-correlation-request-id": "d3298d8d-0250-4eb6-85be-c3ffe7f117dd", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-request-id": "ab4ee830-a7bd-4292-9532-4f45a10fbaba", + "x-ms-routing-request-id": "JAPANEAST:20230322T031111Z:d3298d8d-0250-4eb6-85be-c3ffe7f117dd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-6117.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2016.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6117", + "hostNamePrefix": "webpubsub-2016", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,84 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:11:25.738668Z", + "createdAt": "2023-03-22T03:10:00.5911226Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:11:25.738668Z" + "lastModifiedAt": "2023-03-22T03:10:00.5911226Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117", - "name": "webpubsub-6117", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016", + "name": "webpubsub-2016", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6117?api-version=2021-10-01", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2016?api-version=2021-10-01", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "367", - "Content-Type": "application/json", - "traceparent": "00-fcdaefca25d0544497c1398ffc241edc-595be25dad7c5744-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c5b7e351cd63578c9aa09fd77bbbf968", + "traceparent": "00-1db3e2e5209c7a65380bc793a105a0da-1683a48d7b29d9f7-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "849be238a0e297c7d2274db40b4c43c5", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "sku": { - "name": "Standard_S1" - }, - "tags": {}, - "location": "westus2", - "properties": { - "liveTraceConfiguration": { - "enabled": "true", - "categories": [ - { - "name": "category-01", - "enabled": "true" - } - ] - }, - "resourceLogConfiguration": { - "categories": [ - { - "name": "category1", - "enabled": "false" - } - ] - }, - "networkACLs": { - "defaultAction": "Deny", - "publicNetwork": { - "allow": [], - "deny": [ - "RESTAPI" - ] - }, - "privateEndpoints": [] - } - } - }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:40 GMT", + "Date": "Wed, 22 Mar 2023 03:11:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c5b7e351cd63578c9aa09fd77bbbf968", - "x-ms-correlation-request-id": "e03a3bf0-422b-4db6-abc7-b60120e461d7", - "x-ms-ratelimit-remaining-subscription-writes": "1172", - "x-ms-request-id": "3259ef78-c2de-4c48-8bbf-be0dddca68f8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031240Z:e03a3bf0-422b-4db6-abc7-b60120e461d7", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "849be238a0e297c7d2274db40b4c43c5", + "x-ms-correlation-request-id": "9cb6d60d-7979-4cfa-a4b8-089ee540b0c0", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-request-id": "10bb32bb-3aa4-4403-863a-e214b76360b2", + "x-ms-routing-request-id": "JAPANEAST:20230322T031112Z:9cb6d60d-7979-4cfa-a4b8-089ee540b0c0", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -668,8 +631,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-6117.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2016.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -678,7 +641,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6117", + "hostNamePrefix": "webpubsub-2016", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -713,47 +676,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:11:25.738668Z", + "createdAt": "2023-03-22T03:10:00.5911226Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:12:38.7385448Z" + "lastModifiedAt": "2023-03-22T03:10:00.5911226Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117", - "name": "webpubsub-6117", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016", + "name": "webpubsub-2016", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b0d8fb5ceda03044bcdf3113bbe33e51-dd680b8549dbf647-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "42c6ce7fdfc8e0eb31b386665c343341", + "traceparent": "00-a0ef4d39d786edef10fb65914c2be3a1-bd71e73bba6c1ae4-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b8e3c3ee8d105877d72bbf6abc3937d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1286", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:40 GMT", + "Date": "Wed, 22 Mar 2023 03:11:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "42c6ce7fdfc8e0eb31b386665c343341", - "x-ms-correlation-request-id": "8fc4a47d-5807-4e7a-b9b1-65026111aa8a", - "x-ms-ratelimit-remaining-subscription-reads": "11673", - "x-ms-request-id": "143abc9b-47fe-4d79-99dd-66b383261e02", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031241Z:8fc4a47d-5807-4e7a-b9b1-65026111aa8a", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b8e3c3ee8d105877d72bbf6abc3937d7", + "x-ms-correlation-request-id": "9fbe73bb-3a45-410a-8922-b1961d867d8f", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-request-id": "512c0df4-43ba-41ab-b2bf-f7052435bb19", + "x-ms-routing-request-id": "JAPANEAST:20230322T031112Z:9fbe73bb-3a45-410a-8922-b1961d867d8f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -766,8 +729,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-6117.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2016.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -776,7 +739,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-6117", + "hostNamePrefix": "webpubsub-2016", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -811,54 +774,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:11:25.738668Z", + "createdAt": "2023-03-22T03:10:00.5911226Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:12:38.7385448Z" + "lastModifiedAt": "2023-03-22T03:10:00.5911226Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-6117", - "name": "webpubsub-6117", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2016", + "name": "webpubsub-2016", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-6117?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2016?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82ab99e7c359c74bbb091d21d7de02dd-5ce364f721d6764e-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7b47a9a1091f116716d052426c46f9ae", + "traceparent": "00-87c77faba2aad647b91c33ba29807e7a-650bb3187c689105-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "081c1bb386386a16bb3f444417981952", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:12:42 GMT", + "Date": "Wed, 22 Mar 2023 03:11:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7b47a9a1091f116716d052426c46f9ae", - "x-ms-correlation-request-id": "ff76ca9b-58d2-4580-a0df-8571b8597429", - "x-ms-ratelimit-remaining-subscription-deletes": "14983", - "x-ms-request-id": "48416ab3-efa4-444d-83b3-910ebd6c8179", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031243Z:ff76ca9b-58d2-4580-a0df-8571b8597429", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "081c1bb386386a16bb3f444417981952", + "x-ms-correlation-request-id": "3f325f8a-c543-400a-8bb7-d29b8f6ddace", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-request-id": "020882c8-1aa6-4fcc-838f-4cfc1c51664d", + "x-ms-routing-request-id": "JAPANEAST:20230322T031114Z:3f325f8a-c543-400a-8bb7-d29b8f6ddace", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "919501039", + "RandomSeed": "1915481398", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAll.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAll.json index 2a0136844e40..600c7c12ee33 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAll.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAll.json @@ -1,35 +1,35 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-296?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6782?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6b2b85a83895c946ab91b994acd2b4e3-523d199684f3c846-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "77d29202998769d88d022f7cd097df55", + "traceparent": "00-904d601fdb2efde746060cf11f96774e-c809a7cbaee41272-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3a6fa8ab553bfffceda4a569c5f153d3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:43 GMT", + "Date": "Wed, 22 Mar 2023 03:11:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cee85733-40c4-4bb9-b9ca-38ca680f467f", - "x-ms-ratelimit-remaining-subscription-reads": "11672", - "x-ms-request-id": "cee85733-40c4-4bb9-b9ca-38ca680f467f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031244Z:cee85733-40c4-4bb9-b9ca-38ca680f467f" + "x-ms-correlation-request-id": "80ee72c5-2342-4b07-af88-dd75e5ad0b69", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-request-id": "80ee72c5-2342-4b07-af88-dd75e5ad0b69", + "x-ms-routing-request-id": "JAPANEAST:20230322T031115Z:80ee72c5-2342-4b07-af88-dd75e5ad0b69" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296", - "name": "WebPubSubRG-296", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782", + "name": "WebPubSubRG-6782", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-5954?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2115?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-d46439b172e96743-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e78c1c62f4c72250a5a76331d4a1a99f", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-4e6a3656eb2eaeb9-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "36545f7ff007cd1241dfb5328fbfd8d5", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1273", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:47 GMT", + "Date": "Wed, 22 Mar 2023 03:11:18 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationResults/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationResults/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e78c1c62f4c72250a5a76331d4a1a99f", - "x-ms-correlation-request-id": "d806d646-49a4-47d6-b339-0215d7f0b53f", - "x-ms-ratelimit-remaining-subscription-writes": "1171", - "x-ms-request-id": "90a71107-812f-4794-b78a-0d3bad119487", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031248Z:d806d646-49a4-47d6-b339-0215d7f0b53f", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "36545f7ff007cd1241dfb5328fbfd8d5", + "x-ms-correlation-request-id": "aaf39324-4460-424c-92ac-1c7e148c271d", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-request-id": "5ef2c3cc-5ae6-4408-a530-d53412a88047", + "x-ms-routing-request-id": "JAPANEAST:20230322T031119Z:aaf39324-4460-424c-92ac-1c7e148c271d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-5954.webpubsub.azure.com", + "hostName": "webpubsub-2115.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5954", + "hostNamePrefix": "webpubsub-2115", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,371 +160,371 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:12:46.1916558Z", + "createdAt": "2023-03-22T03:11:16.9508943Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:12:46.1916558Z" + "lastModifiedAt": "2023-03-22T03:11:16.9508943Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954", - "name": "webpubsub-5954", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115", + "name": "webpubsub-2115", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-8270567e8a899c48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f944b050d60c9d3b8254e2f17537b861", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-093629cfb1243afa-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "475dd9995badb8a45c6cfa7647cd5ee5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:47 GMT", + "Date": "Wed, 22 Mar 2023 03:11:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f944b050d60c9d3b8254e2f17537b861", - "x-ms-correlation-request-id": "2a5b5eb5-e2a2-49d0-90fa-cfc0f9ce42e3", - "x-ms-ratelimit-remaining-subscription-reads": "11671", - "x-ms-request-id": "7ca9a4c0-1c6b-4460-a6d4-2ad750c784e0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031248Z:2a5b5eb5-e2a2-49d0-90fa-cfc0f9ce42e3", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "475dd9995badb8a45c6cfa7647cd5ee5", + "x-ms-correlation-request-id": "b82a7f78-9cfa-4148-8a4e-926c29f4d851", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-request-id": "4b35ed22-b50e-4ccd-81c0-c96207cbb3d0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031119Z:b82a7f78-9cfa-4148-8a4e-926c29f4d851", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-4b51eea3734c7b44-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fc0adc85c3883c8d2cfe584104e9488d", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-4874928fb45ca9ee-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "464494cc68bd325f5bcd389019dc6d9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:49 GMT", + "Date": "Wed, 22 Mar 2023 03:11:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fc0adc85c3883c8d2cfe584104e9488d", - "x-ms-correlation-request-id": "957aa482-2a12-416f-87ed-c2186b15d71f", - "x-ms-ratelimit-remaining-subscription-reads": "11670", - "x-ms-request-id": "1e24bb22-4fdd-4e72-a11a-2ae4b663c5c0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031250Z:957aa482-2a12-416f-87ed-c2186b15d71f", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "464494cc68bd325f5bcd389019dc6d9f", + "x-ms-correlation-request-id": "a0a5d38b-8867-46fd-940b-9e3f98d1dce7", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-request-id": "fe5b7b72-6f7e-4cba-8b82-c7b905f49ae5", + "x-ms-routing-request-id": "JAPANEAST:20230322T031121Z:a0a5d38b-8867-46fd-940b-9e3f98d1dce7", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-9787497780d12b48-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "23e13685b05def935fb90f5443fe1857", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-5055e4d2ad513478-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b69997d69061242706dd0e53538d3f31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:51 GMT", + "Date": "Wed, 22 Mar 2023 03:11:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "23e13685b05def935fb90f5443fe1857", - "x-ms-correlation-request-id": "c1319d9e-a297-4f7c-86e6-d2e7ebc74a0c", - "x-ms-ratelimit-remaining-subscription-reads": "11669", - "x-ms-request-id": "67672122-3e5c-4135-aef7-0bb6e834822c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031251Z:c1319d9e-a297-4f7c-86e6-d2e7ebc74a0c", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b69997d69061242706dd0e53538d3f31", + "x-ms-correlation-request-id": "3ba2864d-4b62-4e37-877e-e6fde4b4e97d", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-request-id": "a71b7df3-5209-41c1-9b4f-71be750a841e", + "x-ms-routing-request-id": "JAPANEAST:20230322T031122Z:3ba2864d-4b62-4e37-877e-e6fde4b4e97d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-5c38283c1749f74c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fee18fcc250d8ca42308cd0e7df99998", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-34403f0a5a2f7ce4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "cb69f117c25c3160792bece023139e80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:53 GMT", + "Date": "Wed, 22 Mar 2023 03:11:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fee18fcc250d8ca42308cd0e7df99998", - "x-ms-correlation-request-id": "510accc1-ec2b-40dd-9aaa-76690b584633", - "x-ms-ratelimit-remaining-subscription-reads": "11668", - "x-ms-request-id": "19486da4-ba51-4946-ac1c-7889a1655a3d", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031253Z:510accc1-ec2b-40dd-9aaa-76690b584633", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "cb69f117c25c3160792bece023139e80", + "x-ms-correlation-request-id": "3c43cdc0-364c-4268-a884-f3e3adf79787", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-request-id": "3185c908-9a96-4236-8394-d1b93ce3ac17", + "x-ms-routing-request-id": "JAPANEAST:20230322T031124Z:3c43cdc0-364c-4268-a884-f3e3adf79787", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-05f4354332fdf24f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3f6c550c9556d503491b9dcfb438f82d", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-d23b58260603542d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "af9f5afea8343b836c1f3fe0590cdfcd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:55 GMT", + "Date": "Wed, 22 Mar 2023 03:11:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3f6c550c9556d503491b9dcfb438f82d", - "x-ms-correlation-request-id": "c7ed5337-5422-4b70-b40a-f2d18e9ad5a2", - "x-ms-ratelimit-remaining-subscription-reads": "11667", - "x-ms-request-id": "3912f5d9-405c-4643-8162-0499641fc416", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031255Z:c7ed5337-5422-4b70-b40a-f2d18e9ad5a2", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "af9f5afea8343b836c1f3fe0590cdfcd", + "x-ms-correlation-request-id": "f836a139-f107-4b5d-8b02-f03977eeaedf", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-request-id": "fb6ec7a1-e980-4859-816c-92dcfc7beed1", + "x-ms-routing-request-id": "JAPANEAST:20230322T031127Z:f836a139-f107-4b5d-8b02-f03977eeaedf", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-fafbaa0ee875a64c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "757501e54a08607f91550054e2847165", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-311785b589e2d1de-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2879078da273144236683c36a44701f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:12:59 GMT", + "Date": "Wed, 22 Mar 2023 03:11:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "757501e54a08607f91550054e2847165", - "x-ms-correlation-request-id": "f07fc76a-380b-4a0c-b01d-75a9d29a825a", - "x-ms-ratelimit-remaining-subscription-reads": "11666", - "x-ms-request-id": "41539269-4329-4be0-976f-f92fff6a8c58", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031300Z:f07fc76a-380b-4a0c-b01d-75a9d29a825a", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "2879078da273144236683c36a44701f3", + "x-ms-correlation-request-id": "3ecc5f6f-6013-4d74-8ff5-d2729589e7c3", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-request-id": "8a9a6d67-7091-48c0-a944-6b1153a2a9c9", + "x-ms-routing-request-id": "JAPANEAST:20230322T031132Z:3ecc5f6f-6013-4d74-8ff5-d2729589e7c3", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-f6aae6ad37ada847-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ee487620d99236008b0cb4f187d5d7ea", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-b701276da8715219-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f9548e3f90ee6ffd6d2d5f3d827fd76d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:13:08 GMT", + "Date": "Wed, 22 Mar 2023 03:11:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ee487620d99236008b0cb4f187d5d7ea", - "x-ms-correlation-request-id": "7ae663ac-b519-4b5e-be0a-e3c43786b3e3", - "x-ms-ratelimit-remaining-subscription-reads": "11665", - "x-ms-request-id": "c1eee6b4-ad96-4f72-8fe8-58be9e6430de", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031308Z:7ae663ac-b519-4b5e-be0a-e3c43786b3e3", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "f9548e3f90ee6ffd6d2d5f3d827fd76d", + "x-ms-correlation-request-id": "90dce6f2-1a5e-4dee-8a86-5bfcfa6f6a60", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-request-id": "1ebd8bea-d94f-4b1f-abf5-9cdc8bd30f2d", + "x-ms-routing-request-id": "JAPANEAST:20230322T031140Z:90dce6f2-1a5e-4dee-8a86-5bfcfa6f6a60", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-f3747d3f6388394f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7b289f0f2384c290d50cae0194aff2c4", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-81bcf5968cd0fcc5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1c531e4c75995c0d178b78cb6c4c9725", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "314", + "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:13:24 GMT", + "Date": "Wed, 22 Mar 2023 03:11:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7b289f0f2384c290d50cae0194aff2c4", - "x-ms-correlation-request-id": "830f5da0-45f3-4ca9-b90c-1e9a389d6227", - "x-ms-ratelimit-remaining-subscription-reads": "11664", - "x-ms-request-id": "b58862d9-124f-4b7e-9e68-b12658c03e71", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031324Z:830f5da0-45f3-4ca9-b90c-1e9a389d6227", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "1c531e4c75995c0d178b78cb6c4c9725", + "x-ms-correlation-request-id": "dd6101cc-2db4-40c0-9bcb-5c41286cdf90", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-request-id": "e4249069-3463-42fe-bfc1-420561b7de5d", + "x-ms-routing-request-id": "JAPANEAST:20230322T031157Z:dd6101cc-2db4-40c0-9bcb-5c41286cdf90", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Running", - "startTime": "2022-07-13T03:12:47.0973699Z" + "startTime": "2023-03-22T03:11:17.9758172Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-a032366c97d60140-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3eae37a90aef0b9b013eeafb958ed8bb", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-df19a05ea53700ae-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "caa14c1ee5b7fddf0a0abb45430592b6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "357", + "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:13:56 GMT", + "Date": "Wed, 22 Mar 2023 03:12:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3eae37a90aef0b9b013eeafb958ed8bb", - "x-ms-correlation-request-id": "a2ffd2eb-e946-4ac4-a0fe-d4d6920a427e", - "x-ms-ratelimit-remaining-subscription-reads": "11663", - "x-ms-request-id": "24a21069-500f-40ba-bbc1-d577abce9f17", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031357Z:a2ffd2eb-e946-4ac4-a0fe-d4d6920a427e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "caa14c1ee5b7fddf0a0abb45430592b6", + "x-ms-correlation-request-id": "29bd2f3f-ba0e-4611-b442-9f75a1d4a8cc", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-request-id": "310e5d32-dfa9-44d3-9ab9-5428da78ec0f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031229Z:29bd2f3f-ba0e-4611-b442-9f75a1d4a8cc", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954/operationStatuses/950293e7-8767-4022-80da-b8e10a57a2ba", - "name": "950293e7-8767-4022-80da-b8e10a57a2ba", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115/operationStatuses/52b85dbd-712e-4adb-8005-ceae9e9e3f51", + "name": "52b85dbd-712e-4adb-8005-ceae9e9e3f51", "status": "Succeeded", - "startTime": "2022-07-13T03:12:47.0973699Z", - "endTime": "2022-07-13T03:13:50.0379043Z" + "startTime": "2023-03-22T03:11:17.9758172Z", + "endTime": "2023-03-22T03:12:08.9613786Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-5954?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2115?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-3b90505aed0f1346833a8f1c34876431-3324a2705442314b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4244157df65bfce1e68618862bffa2dc", + "traceparent": "00-9e83560fc886976e13bb43c45998cf7e-57a1627daa0ee0de-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "85eace90e5f4c95981f8e16317310321", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1275", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:13:56 GMT", + "Date": "Wed, 22 Mar 2023 03:12:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4244157df65bfce1e68618862bffa2dc", - "x-ms-correlation-request-id": "a280a73e-63f6-4a40-a8b7-46314c943fcc", - "x-ms-ratelimit-remaining-subscription-reads": "11662", - "x-ms-request-id": "b45ba1b6-9e35-45af-8dc4-49b5e46e85ea", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031357Z:a280a73e-63f6-4a40-a8b7-46314c943fcc", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "85eace90e5f4c95981f8e16317310321", + "x-ms-correlation-request-id": "4bb96167-68cd-4620-8877-d43f0eabb347", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-request-id": "878b7fc3-c18a-4780-8baf-b64bfc051350", + "x-ms-routing-request-id": "JAPANEAST:20230322T031230Z:4bb96167-68cd-4620-8877-d43f0eabb347", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5954.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2115.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5954", + "hostNamePrefix": "webpubsub-2115", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,47 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:12:46.1916558Z", + "createdAt": "2023-03-22T03:11:16.9508943Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:12:46.1916558Z" + "lastModifiedAt": "2023-03-22T03:11:16.9508943Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954", - "name": "webpubsub-5954", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115", + "name": "webpubsub-2115", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1e9a12963c94ad458f6dd5bb207fd9bb-851f0af20a55f14b-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5047ef1a992605fb041d7a4539942c47", + "traceparent": "00-4932d43ff7f84c0f99d9b0b753cb8155-baa1d9cab7ca6cfe-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "361f39960dde66b63e55118fbac71911", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1287", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:13:57 GMT", + "Date": "Wed, 22 Mar 2023 03:12:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5047ef1a992605fb041d7a4539942c47", - "x-ms-correlation-request-id": "963dbd0b-4239-4bab-8ab0-8324eb760d2a", - "x-ms-ratelimit-remaining-subscription-reads": "11661", - "x-ms-request-id": "93a5524d-4a3f-442c-8f49-b0541887a44f", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031358Z:963dbd0b-4239-4bab-8ab0-8324eb760d2a", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "361f39960dde66b63e55118fbac71911", + "x-ms-correlation-request-id": "2ff31180-9944-47cc-928e-c73b8a7869fa", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-request-id": "8d8e7860-1892-4c51-86be-4419f61714c6", + "x-ms-routing-request-id": "JAPANEAST:20230322T031230Z:2ff31180-9944-47cc-928e-c73b8a7869fa", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -633,8 +633,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5954.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2115.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -643,7 +643,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5954", + "hostNamePrefix": "webpubsub-2115", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -678,49 +678,49 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:12:46.1916558Z", + "createdAt": "2023-03-22T03:11:16.9508943Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:12:46.1916558Z" + "lastModifiedAt": "2023-03-22T03:11:16.9508943Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954", - "name": "webpubsub-5954", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115", + "name": "webpubsub-2115", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a59841ee429a2f4ca201d85ae230a0c0-bbec255fafb1a949-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "7e83f233af6ab36956b25869f115df01", + "traceparent": "00-eec6e3129af29ab1a0c59f555b358f0a-7b3c38cfc4f22273-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "9d3bc1f811613831f2d749bf047ce6d8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1287", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:13:57 GMT", + "Date": "Wed, 22 Mar 2023 03:12:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7e83f233af6ab36956b25869f115df01", - "x-ms-correlation-request-id": "36b2158c-cdcc-4299-ba23-3119b7abfc59", - "x-ms-ratelimit-remaining-subscription-reads": "11660", - "x-ms-request-id": "9e58631f-1370-4a3c-a277-1235cf27ed90", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031358Z:36b2158c-cdcc-4299-ba23-3119b7abfc59", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "9d3bc1f811613831f2d749bf047ce6d8", + "x-ms-correlation-request-id": "2b89694d-dd03-4996-a439-5ff607888976", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-request-id": "e4e4b003-7e3f-47e5-ae65-dc0a5c10f305", + "x-ms-routing-request-id": "JAPANEAST:20230322T031230Z:2b89694d-dd03-4996-a439-5ff607888976", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -733,8 +733,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.39", - "hostName": "webpubsub-5954.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-2115.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -743,7 +743,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-5954", + "hostNamePrefix": "webpubsub-2115", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -778,54 +778,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:12:46.1916558Z", + "createdAt": "2023-03-22T03:11:16.9508943Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:12:46.1916558Z" + "lastModifiedAt": "2023-03-22T03:11:16.9508943Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5954", - "name": "webpubsub-5954", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2115", + "name": "webpubsub-2115", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296/providers/Microsoft.SignalRService/webPubSub/webpubsub-5954?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782/providers/Microsoft.SignalRService/webPubSub/webpubsub-2115?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-37085f078371574aa79c2be966395973-2c25c026c9c16a40-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a6e10d9c8846e4941a3f3e3e7c9bc251", + "traceparent": "00-61d981f6dc1d9228a6b8e68bdcae6f1b-8103ae05bf069be9-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "09af99075ce683d81884479ed3ca0fb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:13:59 GMT", + "Date": "Wed, 22 Mar 2023 03:12:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a6e10d9c8846e4941a3f3e3e7c9bc251", - "x-ms-correlation-request-id": "213effb0-8822-4bb7-be40-ce799475023d", - "x-ms-ratelimit-remaining-subscription-deletes": "14982", - "x-ms-request-id": "0e0f363d-bdb5-4bed-aba2-a03180a5e97b", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031400Z:213effb0-8822-4bb7-be40-ce799475023d", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "09af99075ce683d81884479ed3ca0fb9", + "x-ms-correlation-request-id": "5ee973c7-2406-4d5e-85e0-b0c3dd5524d2", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-request-id": "bdbdab16-43af-45d8-9dcb-ccf744b33f86", + "x-ms-routing-request-id": "JAPANEAST:20230322T031232Z:5ee973c7-2406-4d5e-85e0-b0c3dd5524d2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1295771376", + "RandomSeed": "1309904704", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAllAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAllAsync.json index f353547b15ef..315384dd958c 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAllAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAllAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6159?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-4769?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-aeef6b57f8be804fa86c8dbe3646942f-c730ac4d06281542-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "da98443817ba8bfcc7257de8f2581a7c", + "traceparent": "00-7365c01167c586c20f11b9150c1401a4-b0621d2458016ae1-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ab24af0184eff8f4783ca5a8721bdbb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:00 GMT", + "Date": "Wed, 22 Mar 2023 03:17:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3671754-3352-4879-8c6c-aaeb5332e5c7", - "x-ms-ratelimit-remaining-subscription-reads": "11605", - "x-ms-request-id": "c3671754-3352-4879-8c6c-aaeb5332e5c7", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032101Z:c3671754-3352-4879-8c6c-aaeb5332e5c7" + "x-ms-correlation-request-id": "29d9ba8d-99af-4f41-b022-29ee8e73fe8c", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-request-id": "29d9ba8d-99af-4f41-b022-29ee8e73fe8c", + "x-ms-routing-request-id": "JAPANEAST:20230322T031759Z:29d9ba8d-99af-4f41-b022-29ee8e73fe8c" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159", - "name": "WebPubSubRG-6159", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769", + "name": "WebPubSubRG-4769", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-2007?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4672?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-96f6cb97ff978f4b-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "12bf187b1ed6f89bb7d5b618456f46dd", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-ce04457590fdc429-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "43de0d36121b78246aa9efcdada1c963", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "Cache-Control": "no-cache", - "Content-Length": "1272", + "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:05 GMT", + "Date": "Wed, 22 Mar 2023 03:18:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationResults/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationResults/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "12bf187b1ed6f89bb7d5b618456f46dd", - "x-ms-correlation-request-id": "08329477-03cb-4180-b0d5-2778e04afcf5", - "x-ms-ratelimit-remaining-subscription-writes": "1164", - "x-ms-request-id": "40327d68-258e-4b99-be6f-09231a47c57e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032105Z:08329477-03cb-4180-b0d5-2778e04afcf5", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "43de0d36121b78246aa9efcdada1c963", + "x-ms-correlation-request-id": "e59b4130-252c-497f-8f84-f3f7333d0e90", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-request-id": "2099a338-5d90-4c4b-acea-2dad8afb890b", + "x-ms-routing-request-id": "JAPANEAST:20230322T031802Z:e59b4130-252c-497f-8f84-f3f7333d0e90", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-2007.webpubsub.azure.com", + "hostName": "webpubsub-4672.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2007", + "hostNamePrefix": "webpubsub-4672", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,62 +160,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:21:02.940598Z", + "createdAt": "2023-03-22T03:18:00.9141314Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:21:02.940598Z" + "lastModifiedAt": "2023-03-22T03:18:00.9141314Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007", - "name": "webpubsub-2007", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672", + "name": "webpubsub-4672", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-290916cb6e0d8b45-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0dbc1e90a3f12662fde10342457282b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0dbc1e90a3f12662fde10342457282b5", - "x-ms-correlation-request-id": "6c7674ed-5af9-4527-aee5-cbddf3ba8d94", - "x-ms-ratelimit-remaining-subscription-reads": "11604", - "x-ms-request-id": "885ff775-c1cc-4311-bd08-47d8777642c1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032105Z:6c7674ed-5af9-4527-aee5-cbddf3ba8d94", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-2998dbc5b99dff43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "2fa70a37b3abb5a3a0a857b11fcf46d8", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-1d63bb8b353488c5-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "fd22f871abb39de5003385da052bcb9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,34 +188,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:07 GMT", + "Date": "Wed, 22 Mar 2023 03:18:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "2fa70a37b3abb5a3a0a857b11fcf46d8", - "x-ms-correlation-request-id": "5d6d916f-f08c-417b-adfe-01ce1c86cc18", - "x-ms-ratelimit-remaining-subscription-reads": "11603", - "x-ms-request-id": "02e8e602-dee8-46d7-8b46-f51fc10aa36c", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032107Z:5d6d916f-f08c-417b-adfe-01ce1c86cc18", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "fd22f871abb39de5003385da052bcb9a", + "x-ms-correlation-request-id": "28fd3864-a743-473c-b4e5-6b546bb75e21", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-request-id": "54e7d81c-595f-414e-92f2-3d491ed3200f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031803Z:28fd3864-a743-473c-b4e5-6b546bb75e21", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-28ca36dc8660ef4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "26888bee38b2a7ecc749cb8dc235d148", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-b1e1fc4fd606857b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "1eff44dca454e691136c5ffffd280701", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,34 +224,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:08 GMT", + "Date": "Wed, 22 Mar 2023 03:18:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "26888bee38b2a7ecc749cb8dc235d148", - "x-ms-correlation-request-id": "0c56d81c-9b3d-4af1-8e6a-859f071b0e5b", - "x-ms-ratelimit-remaining-subscription-reads": "11602", - "x-ms-request-id": "91010533-dcb4-4524-baea-d49344bfb501", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032108Z:0c56d81c-9b3d-4af1-8e6a-859f071b0e5b", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "1eff44dca454e691136c5ffffd280701", + "x-ms-correlation-request-id": "1d2bd1d0-21b5-4f4d-a825-b4445fb92d75", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-request-id": "91c9b2a5-1db6-4460-952b-51647ca2f7aa", + "x-ms-routing-request-id": "JAPANEAST:20230322T031804Z:1d2bd1d0-21b5-4f4d-a825-b4445fb92d75", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-54c803dd2074f742-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a69448a3b737dc807b066d484cb1062d", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-08e648993fd2ca39-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "b45b3b70cc7fc7b017ea0f26c91e6cb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -296,34 +260,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:09 GMT", + "Date": "Wed, 22 Mar 2023 03:18:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a69448a3b737dc807b066d484cb1062d", - "x-ms-correlation-request-id": "b31ccb26-2882-47bc-8dc0-ff39235d76c9", - "x-ms-ratelimit-remaining-subscription-reads": "11601", - "x-ms-request-id": "b4599247-8f8c-4863-8d66-eb50101e6f84", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032110Z:b31ccb26-2882-47bc-8dc0-ff39235d76c9", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "b45b3b70cc7fc7b017ea0f26c91e6cb8", + "x-ms-correlation-request-id": "edc19727-b1ec-47aa-898e-c127dcf3c276", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-request-id": "80c31cac-3171-431a-9bfd-e5d1e869249b", + "x-ms-routing-request-id": "JAPANEAST:20230322T031805Z:edc19727-b1ec-47aa-898e-c127dcf3c276", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-76c439d11c05c94f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ba542a9a5beafe031e006861e715f36b", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-022ceed2f24d59b9-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "2c207b511a69cd5f663be9464be6a0d7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -332,34 +296,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:12 GMT", + "Date": "Wed, 22 Mar 2023 03:18:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ba542a9a5beafe031e006861e715f36b", - "x-ms-correlation-request-id": "89091dc4-7bd7-4618-aaf4-a4b76ca75569", - "x-ms-ratelimit-remaining-subscription-reads": "11600", - "x-ms-request-id": "66c9a594-a9aa-476f-8b93-2b68a5b2b4a8", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032112Z:89091dc4-7bd7-4618-aaf4-a4b76ca75569", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "2c207b511a69cd5f663be9464be6a0d7", + "x-ms-correlation-request-id": "bcfb2c8a-3c04-4749-8e10-e3fd2eb6420d", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-request-id": "d40e345e-eced-489f-8851-4ebd9717fbd0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031807Z:bcfb2c8a-3c04-4749-8e10-e3fd2eb6420d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-2897f34247465d4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "d70d0ed7a03b36a10babababcaa35a15", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-b34b7b45ad3964ef-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c96a842b16cf101a9438066a946a1df4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -368,34 +332,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:16 GMT", + "Date": "Wed, 22 Mar 2023 03:18:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "d70d0ed7a03b36a10babababcaa35a15", - "x-ms-correlation-request-id": "279f19d0-1ec5-402a-9aa6-3af68d203856", - "x-ms-ratelimit-remaining-subscription-reads": "11599", - "x-ms-request-id": "f02f2c78-8b4f-427a-bdb0-ea094acdd0b4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032117Z:279f19d0-1ec5-402a-9aa6-3af68d203856", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c96a842b16cf101a9438066a946a1df4", + "x-ms-correlation-request-id": "391fa93e-de89-442b-8d58-9ccba98c6bba", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-request-id": "de6cfb9a-c225-4c07-96e5-e55bb94c9306", + "x-ms-routing-request-id": "JAPANEAST:20230322T031809Z:391fa93e-de89-442b-8d58-9ccba98c6bba", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-929ac7c88e4e134e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "97f39e4317e1485e459588364f1ff465", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-e70063e49380128d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "81ada7ffdb085597dc8e4e43e2697b31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -404,34 +368,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:25 GMT", + "Date": "Wed, 22 Mar 2023 03:18:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "97f39e4317e1485e459588364f1ff465", - "x-ms-correlation-request-id": "99939fbc-8752-4b77-ac5c-b4d70a343a7f", - "x-ms-ratelimit-remaining-subscription-reads": "11598", - "x-ms-request-id": "6db918d5-6e12-45d1-b01f-9563ee973d76", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032125Z:99939fbc-8752-4b77-ac5c-b4d70a343a7f", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "81ada7ffdb085597dc8e4e43e2697b31", + "x-ms-correlation-request-id": "313dd894-4c4c-42ce-94b9-48a94c93b0dd", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-request-id": "f08a9d30-52c3-4091-bcf4-31b9a42cf575", + "x-ms-routing-request-id": "JAPANEAST:20230322T031813Z:313dd894-4c4c-42ce-94b9-48a94c93b0dd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-c1c5f47d680bb141-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3d7102122ea3faf1881daf3eaf57347a", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-ab0f1ff03836fcf4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "45fb3849a3b43be96010973014f439fb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -440,34 +404,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:21:41 GMT", + "Date": "Wed, 22 Mar 2023 03:18:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3d7102122ea3faf1881daf3eaf57347a", - "x-ms-correlation-request-id": "c13a29d4-0f53-44a5-91bf-b96709286780", - "x-ms-ratelimit-remaining-subscription-reads": "11597", - "x-ms-request-id": "8fe75aac-a384-429f-8665-1dff44b5bc68", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032142Z:c13a29d4-0f53-44a5-91bf-b96709286780", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "45fb3849a3b43be96010973014f439fb", + "x-ms-correlation-request-id": "28b00204-7b36-4564-b8a1-876f143736d8", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-request-id": "51860767-b4ba-4db5-acf5-4e620ce70b58", + "x-ms-routing-request-id": "JAPANEAST:20230322T031822Z:28b00204-7b36-4564-b8a1-876f143736d8", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-4c667ac6fc534c4b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "491d52a55c22bf8ab0c592a6176ae6eb", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-68d354eee8c375a4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a446f51e1e3850cfec15ec41c7d72d2b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -476,70 +440,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:22:14 GMT", + "Date": "Wed, 22 Mar 2023 03:18:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "491d52a55c22bf8ab0c592a6176ae6eb", - "x-ms-correlation-request-id": "fa3eaea1-c240-4b74-b3b2-93c2519ac440", - "x-ms-ratelimit-remaining-subscription-reads": "11596", - "x-ms-request-id": "3af59322-6c65-4c10-8ac6-f0eff42fc9a4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032214Z:fa3eaea1-c240-4b74-b3b2-93c2519ac440", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a446f51e1e3850cfec15ec41c7d72d2b", + "x-ms-correlation-request-id": "8e91650d-a282-4e01-8bff-1fd387175c8f", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-request-id": "59bd61f4-5f74-43f7-8e93-b9c44002fffc", + "x-ms-routing-request-id": "JAPANEAST:20230322T031838Z:8e91650d-a282-4e01-8bff-1fd387175c8f", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" + "startTime": "2023-03-22T03:18:01.8735593Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-dd502aebc8d44e4a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "c89946b61d321472adf80fc3671f98ed", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:22:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Kestrel", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c89946b61d321472adf80fc3671f98ed", - "x-ms-correlation-request-id": "49b73b79-2976-4eed-aaf2-d59c9f33f9a4", - "x-ms-ratelimit-remaining-subscription-reads": "11595", - "x-ms-request-id": "1ebcb005-4ecd-4e7b-b5b6-83fdc78d8caa", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032246Z:49b73b79-2976-4eed-aaf2-d59c9f33f9a4", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "status": "Running", - "startTime": "2022-07-13T03:21:04.0350047Z" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4?api-version=2021-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-061bfaace7011843-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "fd910e61ab01b64278b18ddd9c4ae31e", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-a9690bb71a74a98d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5c20d4bcd76f5c40bd7220f8446641e7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -548,55 +476,55 @@ "Cache-Control": "no-cache", "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:23:19 GMT", + "Date": "Wed, 22 Mar 2023 03:19:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fd910e61ab01b64278b18ddd9c4ae31e", - "x-ms-correlation-request-id": "11d12863-a4fd-4baa-b149-42309e4059c8", - "x-ms-ratelimit-remaining-subscription-reads": "11594", - "x-ms-request-id": "bf90dcf3-eed4-40ae-b038-554c168ce985", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032319Z:11d12863-a4fd-4baa-b149-42309e4059c8", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "5c20d4bcd76f5c40bd7220f8446641e7", + "x-ms-correlation-request-id": "8405b17b-c3e7-4c82-96fd-d6e1e562a08d", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-request-id": "01e17b4f-a129-45fe-b0d8-ecee11da3d4f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031910Z:8405b17b-c3e7-4c82-96fd-d6e1e562a08d", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007/operationStatuses/e615272f-f35b-47ea-b1c8-3cd51be9bbe4", - "name": "e615272f-f35b-47ea-b1c8-3cd51be9bbe4", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672/operationStatuses/92b3a902-5f44-4979-8c06-88fb23f183a0", + "name": "92b3a902-5f44-4979-8c06-88fb23f183a0", "status": "Succeeded", - "startTime": "2022-07-13T03:21:04.0350047Z", - "endTime": "2022-07-13T03:22:56.9429981Z" + "startTime": "2023-03-22T03:18:01.8735593Z", + "endTime": "2023-03-22T03:18:41.3154803Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-2007?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4672?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-b08f2056294b964880fb0e9b891e8cea-d0e5152c3778734a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "6888c3376bbe8847df099b2a4dc65790", + "traceparent": "00-3012b418f2e576e7b2a55f02fa9961a3-fd35344c0f01b578-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ed255254d7222bf868ab589fb6a77389", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1274", + "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:23:19 GMT", + "Date": "Wed, 22 Mar 2023 03:19:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6888c3376bbe8847df099b2a4dc65790", - "x-ms-correlation-request-id": "c5ba5fcb-fa1b-4d9e-ba49-0eab2e52adbf", - "x-ms-ratelimit-remaining-subscription-reads": "11593", - "x-ms-request-id": "138594f7-509a-4207-a4d3-5387d0600891", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032319Z:c5ba5fcb-fa1b-4d9e-ba49-0eab2e52adbf", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "ed255254d7222bf868ab589fb6a77389", + "x-ms-correlation-request-id": "66216e89-e5af-4882-bfbc-4174597a8cdc", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-request-id": "2c1e336f-3016-4abb-99e9-6b3567d5673d", + "x-ms-routing-request-id": "JAPANEAST:20230322T031911Z:66216e89-e5af-4882-bfbc-4174597a8cdc", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -607,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-2007.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4672.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -617,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2007", + "hostNamePrefix": "webpubsub-4672", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -652,47 +580,46 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:21:02.940598Z", + "createdAt": "2023-03-22T03:18:00.9141314Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:21:02.940598Z" + "lastModifiedAt": "2023-03-22T03:18:00.9141314Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007", - "name": "webpubsub-2007", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672", + "name": "webpubsub-4672", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c585e9c627871241942557d63d8a38fd-0feefb84949fa142-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "0845a42de8d90aea04e250808f947862", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3f746ce2ddd4478bb4eae6c6fdd70b86", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1286", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:23:19 GMT", + "Date": "Wed, 22 Mar 2023 03:19:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0845a42de8d90aea04e250808f947862", - "x-ms-correlation-request-id": "e77cca93-66a6-4e65-b367-543ba8fc1321", - "x-ms-ratelimit-remaining-subscription-reads": "11592", - "x-ms-request-id": "b955d96f-aaf6-4761-ac3d-dcec24212e96", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032320Z:e77cca93-66a6-4e65-b367-543ba8fc1321", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "3f746ce2ddd4478bb4eae6c6fdd70b86", + "x-ms-correlation-request-id": "ecc54efc-683d-499b-9a70-1d796ac27ed2", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-request-id": "52f5824e-cb5c-43e1-a5e8-7b2e5ead4266", + "x-ms-routing-request-id": "JAPANEAST:20230322T031911Z:ecc54efc-683d-499b-9a70-1d796ac27ed2", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -705,8 +632,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-2007.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4672.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -715,7 +642,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2007", + "hostNamePrefix": "webpubsub-4672", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -750,49 +677,48 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:21:02.940598Z", + "createdAt": "2023-03-22T03:18:00.9141314Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:21:02.940598Z" + "lastModifiedAt": "2023-03-22T03:18:00.9141314Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007", - "name": "webpubsub-2007", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672", + "name": "webpubsub-4672", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-40d217e091bc354ba339820296e9fe0c-811d3209d8763d46-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a48cf0142f97f52fc6081df80f1769b1", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "75ed04d440b2e408dcf5f3c47ea0a516", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1286", + "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:23:20 GMT", + "Date": "Wed, 22 Mar 2023 03:19:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a48cf0142f97f52fc6081df80f1769b1", - "x-ms-correlation-request-id": "36ed4101-6e71-4087-8fcb-af3f8cb18f17", - "x-ms-ratelimit-remaining-subscription-reads": "11591", - "x-ms-request-id": "3b94acdc-6e71-418a-9c28-d8b19596a44e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032320Z:36ed4101-6e71-4087-8fcb-af3f8cb18f17", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "75ed04d440b2e408dcf5f3c47ea0a516", + "x-ms-correlation-request-id": "efe7f5b5-551b-4e9c-8058-ee36fb6070fa", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-request-id": "5c1973a2-b4c7-4a01-8624-6c033b9591b7", + "x-ms-routing-request-id": "JAPANEAST:20230322T031912Z:efe7f5b5-551b-4e9c-8058-ee36fb6070fa", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -805,8 +731,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-2007.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-4672.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -815,7 +741,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-2007", + "hostNamePrefix": "webpubsub-4672", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -850,54 +776,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:21:02.940598Z", + "createdAt": "2023-03-22T03:18:00.9141314Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:21:02.940598Z" + "lastModifiedAt": "2023-03-22T03:18:00.9141314Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-2007", - "name": "webpubsub-2007", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-4672", + "name": "webpubsub-4672", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-2007?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-4672?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f3442fb613e1ba468c33920872fb2dc6-59f76624c000fb42-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "f7b0fc59db044e44d87d64db1bc6f84b", + "traceparent": "00-139f90343b313ec252c5dc7aa7fa2439-957e114e90a97083-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "d71597ff01f27713c6de3838f1322d90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:23:22 GMT", + "Date": "Wed, 22 Mar 2023 03:19:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "f7b0fc59db044e44d87d64db1bc6f84b", - "x-ms-correlation-request-id": "84750cdc-32b9-49df-8c04-268318b6e05d", - "x-ms-ratelimit-remaining-subscription-deletes": "14977", - "x-ms-request-id": "f6ab8aff-f8fc-4bf0-8c2e-54b598bd3e21", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032323Z:84750cdc-32b9-49df-8c04-268318b6e05d", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "d71597ff01f27713c6de3838f1322d90", + "x-ms-correlation-request-id": "1e606174-5a2c-4f73-a615-5d4d432aa785", + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-request-id": "268f058b-f2f0-449f-99fe-a436266edd62", + "x-ms-routing-request-id": "JAPANEAST:20230322T031913Z:1e606174-5a2c-4f73-a615-5d4d432aa785", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "1314025707", + "RandomSeed": "1660634772", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAsync.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAsync.json index 2f229d5ed87b..154fb9a994ae 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAsync.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/GetAsync.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6159?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-4769?api-version=**", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-a3130c0bb61b2e46bc930b7b8cef8a3f-47ed987aeb00034e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "69c0006b89729a6cf7c891a40b5bda06", + "traceparent": "00-a9b0e407213b7353208912f26b93f80a-fc589b556aff6b2c-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e4ef85dee088e36a55b790515440a835", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,19 +17,19 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:41 GMT", + "Date": "Wed, 22 Mar 2023 03:16:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ba94fb2-0298-4315-8dd2-7e7165b4f8fb", - "x-ms-ratelimit-remaining-subscription-reads": "11617", - "x-ms-request-id": "8ba94fb2-0298-4315-8dd2-7e7165b4f8fb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031941Z:8ba94fb2-0298-4315-8dd2-7e7165b4f8fb" + "x-ms-correlation-request-id": "44f5aa31-925d-4c7d-bb5e-a712c9480dbc", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-request-id": "44f5aa31-925d-4c7d-bb5e-a712c9480dbc", + "x-ms-routing-request-id": "JAPANEAST:20230322T031644Z:44f5aa31-925d-4c7d-bb5e-a712c9480dbc" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159", - "name": "WebPubSubRG-6159", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769", + "name": "WebPubSubRG-4769", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -38,16 +38,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-1121?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-5764?api-version=2021-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "367", "Content-Type": "application/json", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-93ebbfad8d3a824c-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "172fbbc8857cb1635e6ed38014dd42ab", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-7dbd8882f54b1afa-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "c482a9332a113d5a15c35083be73d662", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -88,23 +88,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "Cache-Control": "no-cache", "Content-Length": "1274", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:45 GMT", + "Date": "Wed, 22 Mar 2023 03:16:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationResults/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "Location": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationResults/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "172fbbc8857cb1635e6ed38014dd42ab", - "x-ms-correlation-request-id": "029f2fea-22a7-4c2a-bcc9-30212ae99240", - "x-ms-ratelimit-remaining-subscription-writes": "1166", - "x-ms-request-id": "232c64cc-d840-4575-a259-56d5a9a80465", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031946Z:029f2fea-22a7-4c2a-bcc9-30212ae99240", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "c482a9332a113d5a15c35083be73d662", + "x-ms-correlation-request-id": "76949254-99fb-4250-a088-d7d9fbb56164", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-request-id": "4302c054-bc2b-4bff-b842-2abee4bf7ee9", + "x-ms-routing-request-id": "JAPANEAST:20230322T031647Z:76949254-99fb-4250-a088-d7d9fbb56164", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -116,7 +116,7 @@ "properties": { "provisioningState": "Creating", "externalIP": null, - "hostName": "webpubsub-1121.webpubsub.azure.com", + "hostName": "webpubsub-5764.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0-preview", @@ -125,7 +125,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-1121", + "hostNamePrefix": "webpubsub-5764", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -160,26 +160,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:19:43.5501254Z", + "createdAt": "2023-03-22T03:16:45.4712517Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:19:43.5501254Z" + "lastModifiedAt": "2023-03-22T03:16:45.4712517Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121", - "name": "webpubsub-1121", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764", + "name": "webpubsub-5764", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-64365df2bed88347-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "a808a38705357bee5cb8131b981ae2ea", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-af839dc14dd74046-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e2fe2a2634255bcc94a6721d19609643", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -188,34 +188,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:47 GMT", + "Date": "Wed, 22 Mar 2023 03:16:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a808a38705357bee5cb8131b981ae2ea", - "x-ms-correlation-request-id": "f9cf9faa-cebc-4ea3-8d27-12c02f8c4fff", - "x-ms-ratelimit-remaining-subscription-reads": "11616", - "x-ms-request-id": "094ee03b-d151-49c7-8873-9c49d80741f4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031947Z:f9cf9faa-cebc-4ea3-8d27-12c02f8c4fff", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e2fe2a2634255bcc94a6721d19609643", + "x-ms-correlation-request-id": "c0effdf2-9b27-4536-8034-00e99c202f49", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-request-id": "681a0a98-0fa5-4659-a2e1-cea0a8f31c02", + "x-ms-routing-request-id": "JAPANEAST:20230322T031647Z:c0effdf2-9b27-4536-8034-00e99c202f49", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-50e6100882fbfa4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "8e28f94e511b9c77d03ea2f6f7b06443", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-96a31a8dfa244c94-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "78bbefbaac246b78ad02e0c6c3c51ba4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -224,34 +224,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:48 GMT", + "Date": "Wed, 22 Mar 2023 03:16:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8e28f94e511b9c77d03ea2f6f7b06443", - "x-ms-correlation-request-id": "085246aa-a3ed-49fe-ae7f-8d1ef40cb22f", - "x-ms-ratelimit-remaining-subscription-reads": "11615", - "x-ms-request-id": "601fac3c-d1fe-41ed-9746-b0fb1c6d32fe", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031948Z:085246aa-a3ed-49fe-ae7f-8d1ef40cb22f", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "78bbefbaac246b78ad02e0c6c3c51ba4", + "x-ms-correlation-request-id": "cacfe114-84d1-43d5-baca-51d252fed1f1", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-request-id": "cde60f7a-fc3e-41ba-a839-73eb9a7389c0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031649Z:cacfe114-84d1-43d5-baca-51d252fed1f1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-6bb27e6bbde50d44-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "71f862829ad5dd75df43584818d0595b", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-d026f9b57a3081c4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "945c8660f475643cfb27f35855de6683", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -260,34 +260,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:49 GMT", + "Date": "Wed, 22 Mar 2023 03:16:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "71f862829ad5dd75df43584818d0595b", - "x-ms-correlation-request-id": "b8082b50-7ea6-4334-8bab-b9b72dabb2e4", - "x-ms-ratelimit-remaining-subscription-reads": "11614", - "x-ms-request-id": "3d30c2f9-d481-4994-a4a5-cf767daaf016", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031950Z:b8082b50-7ea6-4334-8bab-b9b72dabb2e4", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "945c8660f475643cfb27f35855de6683", + "x-ms-correlation-request-id": "456baafb-fc6c-406e-87bc-7404941a7c6c", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-request-id": "f191a882-aded-4519-9f96-517782aa257f", + "x-ms-routing-request-id": "JAPANEAST:20230322T031650Z:456baafb-fc6c-406e-87bc-7404941a7c6c", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-7e916738a201144b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5364a3a35cf236562b6bd8f663f883ac", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-dd7eae92c52a486b-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "33da22b4eab57aa5b1933422530698ce", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -296,34 +296,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:51 GMT", + "Date": "Wed, 22 Mar 2023 03:16:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5364a3a35cf236562b6bd8f663f883ac", - "x-ms-correlation-request-id": "0d80b4d8-ea83-4ca3-8826-2ee8a0d522a8", - "x-ms-ratelimit-remaining-subscription-reads": "11613", - "x-ms-request-id": "ef68ef9b-d86b-491a-8dc0-8fdd60dcce74", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031951Z:0d80b4d8-ea83-4ca3-8826-2ee8a0d522a8", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "33da22b4eab57aa5b1933422530698ce", + "x-ms-correlation-request-id": "4ec8fc9f-09a8-4681-ac4f-cd6a8dcc9c14", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-request-id": "532cdfd8-3391-4a53-bb69-d971f22d1577", + "x-ms-routing-request-id": "JAPANEAST:20230322T031652Z:4ec8fc9f-09a8-4681-ac4f-cd6a8dcc9c14", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-d25eb5fdfd8cd04b-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "3698cf547122b415834aafd7f92f8300", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-0b33a46751ee31ba-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "92bcce8b0104c6ceb2567cfcb81f16cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -332,34 +332,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:53 GMT", + "Date": "Wed, 22 Mar 2023 03:16:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "3698cf547122b415834aafd7f92f8300", - "x-ms-correlation-request-id": "87fd3f90-6dcd-48ff-a672-7699e63d73e1", - "x-ms-ratelimit-remaining-subscription-reads": "11612", - "x-ms-request-id": "03216656-6e06-432d-9e9d-624d23f54b92", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031954Z:87fd3f90-6dcd-48ff-a672-7699e63d73e1", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "92bcce8b0104c6ceb2567cfcb81f16cf", + "x-ms-correlation-request-id": "2ed81c52-76b2-4cad-9412-012099a27038", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-request-id": "e8b29c43-f5cb-483a-911f-e7ac20f88cdf", + "x-ms-routing-request-id": "JAPANEAST:20230322T031654Z:2ed81c52-76b2-4cad-9412-012099a27038", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-f2f610ccda336b42-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "545346e5114b26500cc24569c17f7ae6", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-cc297ef0f31006d4-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "a0125d9ce8eb76eee1e1e2e2bf1a10f4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -368,34 +368,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:19:58 GMT", + "Date": "Wed, 22 Mar 2023 03:16:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "545346e5114b26500cc24569c17f7ae6", - "x-ms-correlation-request-id": "600b8dae-e42f-4faa-9604-930cc4e3a7a4", - "x-ms-ratelimit-remaining-subscription-reads": "11611", - "x-ms-request-id": "80e7a308-9bac-4414-938e-b5b906e76a53", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031958Z:600b8dae-e42f-4faa-9604-930cc4e3a7a4", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "a0125d9ce8eb76eee1e1e2e2bf1a10f4", + "x-ms-correlation-request-id": "6f117eda-2460-4b92-86fd-1c30b2abcddd", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-request-id": "756ef85b-9986-4647-8a20-ffd5d8d13fe8", + "x-ms-routing-request-id": "JAPANEAST:20230322T031658Z:6f117eda-2460-4b92-86fd-1c30b2abcddd", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-51b2f39bda1c184f-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "48f4abbf223731388db0cfa7ad7e3dfc", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-c46ac4980d0045ea-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "86cc258fd321b27e5414805e6da8c192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -404,34 +404,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:20:06 GMT", + "Date": "Wed, 22 Mar 2023 03:17:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "48f4abbf223731388db0cfa7ad7e3dfc", - "x-ms-correlation-request-id": "0b9e65ab-7990-44f5-9ec5-178d1a019a21", - "x-ms-ratelimit-remaining-subscription-reads": "11610", - "x-ms-request-id": "7686aa97-6116-4e7f-84f4-edd62efbd8f4", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032006Z:0b9e65ab-7990-44f5-9ec5-178d1a019a21", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "86cc258fd321b27e5414805e6da8c192", + "x-ms-correlation-request-id": "2e1d0b3f-0785-41bb-98fb-1fa05d46b5d1", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-request-id": "6a989f2d-a4df-47b2-8f0d-1467ac35164d", + "x-ms-routing-request-id": "JAPANEAST:20230322T031707Z:2e1d0b3f-0785-41bb-98fb-1fa05d46b5d1", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-09a098c4ac97544a-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "1c11d7e82fa442607f7229602cacf204", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-14ad06ce6177d412-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f686657cf8f4a3e3df46b1221fec0698", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -440,34 +440,34 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:20:22 GMT", + "Date": "Wed, 22 Mar 2023 03:17:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1c11d7e82fa442607f7229602cacf204", - "x-ms-correlation-request-id": "44da3c4a-b228-43ee-bc38-a540586f7101", - "x-ms-ratelimit-remaining-subscription-reads": "11609", - "x-ms-request-id": "6708f2e5-ec3a-43e5-8f4b-7fcaeb93f627", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032023Z:44da3c4a-b228-43ee-bc38-a540586f7101", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "f686657cf8f4a3e3df46b1221fec0698", + "x-ms-correlation-request-id": "71f4c107-87f2-42d4-a24a-56b1af7dd449", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-request-id": "506e8855-4afc-464e-82b4-019a0549737a", + "x-ms-routing-request-id": "JAPANEAST:20230322T031723Z:71f4c107-87f2-42d4-a24a-56b1af7dd449", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Running", - "startTime": "2022-07-13T03:19:44.5823546Z" + "startTime": "2023-03-22T03:16:46.4493793Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-241e6f2a698ea547-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4d17c8d03b3ac2c80d21c69b41a8788d", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-18ca89d2c4bb7ee0-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "936d87468f52c8aede604cd6678f0839", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -476,35 +476,35 @@ "Cache-Control": "no-cache", "Content-Length": "358", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:20:55 GMT", + "Date": "Wed, 22 Mar 2023 03:17:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4d17c8d03b3ac2c80d21c69b41a8788d", - "x-ms-correlation-request-id": "6faeead2-95ce-401b-a735-08fec8eb800b", - "x-ms-ratelimit-remaining-subscription-reads": "11608", - "x-ms-request-id": "4c8e3d69-d88f-44e8-8394-88e01f4370b1", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032056Z:6faeead2-95ce-401b-a735-08fec8eb800b", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "936d87468f52c8aede604cd6678f0839", + "x-ms-correlation-request-id": "bf6623b4-d9a2-42ab-914a-7082ae1598e4", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-request-id": "257033c9-8e6f-4484-93be-73eaa488b2af", + "x-ms-routing-request-id": "JAPANEAST:20230322T031755Z:bf6623b4-d9a2-42ab-914a-7082ae1598e4", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121/operationStatuses/5e87657a-afe2-40c8-b8c9-03a3693b0df2", - "name": "5e87657a-afe2-40c8-b8c9-03a3693b0df2", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764/operationStatuses/9fd2d19f-f847-4184-ac83-e1e5b849fae3", + "name": "9fd2d19f-f847-4184-ac83-e1e5b849fae3", "status": "Succeeded", - "startTime": "2022-07-13T03:19:44.5823546Z", - "endTime": "2022-07-13T03:20:55.4980302Z" + "startTime": "2023-03-22T03:16:46.4493793Z", + "endTime": "2023-03-22T03:17:36.5890353Z" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-1121?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-5764?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bd5fc6afd4339e49a276da171fa29ffc-f4375c7c353c1a49-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e98148845d6d90424bb1c9c5f9d805e1", + "traceparent": "00-5e178204af78dca458f53f51d4b028f5-d51b269cf0594546-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "5a6550201a9396004129a6da225c9367", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -513,18 +513,18 @@ "Cache-Control": "no-cache", "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:20:56 GMT", + "Date": "Wed, 22 Mar 2023 03:17:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e98148845d6d90424bb1c9c5f9d805e1", - "x-ms-correlation-request-id": "da9d4cc1-30df-49b2-8225-53068831547e", - "x-ms-ratelimit-remaining-subscription-reads": "11607", - "x-ms-request-id": "10c15f66-475b-40f7-80f6-50d490e5c934", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032056Z:da9d4cc1-30df-49b2-8225-53068831547e", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "5a6550201a9396004129a6da225c9367", + "x-ms-correlation-request-id": "18c5068c-3059-47c4-b7ab-afda54153c98", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-request-id": "f74ee1e4-231d-4deb-be91-f0d4cd6f5e73", + "x-ms-routing-request-id": "JAPANEAST:20230322T031756Z:18c5068c-3059-47c4-b7ab-afda54153c98", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -535,8 +535,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-1121.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-5764.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -545,7 +545,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-1121", + "hostNamePrefix": "webpubsub-5764", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -580,84 +580,47 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:19:43.5501254Z", + "createdAt": "2023-03-22T03:16:45.4712517Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:19:43.5501254Z" + "lastModifiedAt": "2023-03-22T03:16:45.4712517Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121", - "name": "webpubsub-1121", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764", + "name": "webpubsub-5764", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-1121?api-version=2021-10-01", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-5764?api-version=2021-10-01", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "Content-Length": "367", - "Content-Type": "application/json", - "traceparent": "00-32e91b373f4f8c4790d4ff61e7f73b0e-151fad8260308649-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "e5d7cabdf066adc10f4f0e8269c501d6", + "traceparent": "00-a3ae0b34db89fa452c460bb57ecef96c-37cb67c42a42cb8e-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "e518e80d2e3aec3fb7be1793ac0d3c4f", "x-ms-return-client-request-id": "true" }, - "RequestBody": { - "sku": { - "name": "Standard_S1" - }, - "tags": {}, - "location": "westus2", - "properties": { - "liveTraceConfiguration": { - "enabled": "true", - "categories": [ - { - "name": "category-01", - "enabled": "true" - } - ] - }, - "resourceLogConfiguration": { - "categories": [ - { - "name": "category1", - "enabled": "false" - } - ] - }, - "networkACLs": { - "defaultAction": "Deny", - "publicNetwork": { - "allow": [], - "deny": [ - "RESTAPI" - ] - }, - "privateEndpoints": [] - } - } - }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "1276", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:20:58 GMT", + "Date": "Wed, 22 Mar 2023 03:17:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "e5d7cabdf066adc10f4f0e8269c501d6", - "x-ms-correlation-request-id": "7d6235d2-41f9-4270-bcfd-d0497013e276", - "x-ms-ratelimit-remaining-subscription-writes": "1165", - "x-ms-request-id": "0a923ca8-b0aa-4c20-a5cd-eb00567c42bd", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032058Z:7d6235d2-41f9-4270-bcfd-d0497013e276", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "e518e80d2e3aec3fb7be1793ac0d3c4f", + "x-ms-correlation-request-id": "e4100033-c72d-447a-b976-34111cc2c907", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-request-id": "57ff99e8-7345-437e-b52e-cd4713f656e5", + "x-ms-routing-request-id": "JAPANEAST:20230322T031756Z:e4100033-c72d-447a-b976-34111cc2c907", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "sku": { @@ -668,8 +631,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-1121.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-5764.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -678,7 +641,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-1121", + "hostNamePrefix": "webpubsub-5764", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -713,27 +676,26 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:19:43.5501254Z", + "createdAt": "2023-03-22T03:16:45.4712517Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:20:56.8468497Z" + "lastModifiedAt": "2023-03-22T03:16:45.4712517Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121", - "name": "webpubsub-1121", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764", + "name": "webpubsub-5764", "type": "Microsoft.SignalRService/WebPubSub" } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub?api-version=2021-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-2902c87d3159424bba15c24b2a2e0333-f0c76f051a99594b-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "76dee41c93d1942787d3da1e4fbf2685", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "ce02783dac872b0487d65229e8d3a682", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -742,18 +704,18 @@ "Cache-Control": "no-cache", "Content-Length": "1288", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:20:58 GMT", + "Date": "Wed, 22 Mar 2023 03:17:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "76dee41c93d1942787d3da1e4fbf2685", - "x-ms-correlation-request-id": "bc62ca0d-c84a-48f8-a5d4-81852fc8d68b", - "x-ms-ratelimit-remaining-subscription-reads": "11606", - "x-ms-request-id": "16f5aa45-d68c-476f-abbb-c3a24c93a4c5", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032058Z:bc62ca0d-c84a-48f8-a5d4-81852fc8d68b", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "ce02783dac872b0487d65229e8d3a682", + "x-ms-correlation-request-id": "f246ee99-4c5d-4654-923b-5259a432ee65", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-request-id": "016cacf8-8147-48a8-8555-55c0047cf9e9", + "x-ms-routing-request-id": "JAPANEAST:20230322T031757Z:f246ee99-4c5d-4654-923b-5259a432ee65", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": { "value": [ @@ -766,8 +728,8 @@ }, "properties": { "provisioningState": "Succeeded", - "externalIP": "20.51.13.52", - "hostName": "webpubsub-1121.webpubsub.azure.com", + "externalIP": "20.51.13.40", + "hostName": "webpubsub-5764.webpubsub.azure.com", "publicPort": 443, "serverPort": 443, "version": "1.0", @@ -776,7 +738,7 @@ "tls": { "clientCertEnabled": false }, - "hostNamePrefix": "webpubsub-1121", + "hostNamePrefix": "webpubsub-5764", "liveTraceConfiguration": { "enabled": "true", "categories": [ @@ -811,54 +773,54 @@ "systemData": { "createdBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "createdByType": "Application", - "createdAt": "2022-07-13T03:19:43.5501254Z", + "createdAt": "2023-03-22T03:16:45.4712517Z", "lastModifiedBy": "8e6d47e0-7969-4fde-a62c-4fea4f165e98", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-07-13T03:20:56.8468497Z" + "lastModifiedAt": "2023-03-22T03:16:45.4712517Z" }, "location": "westus2", "tags": {}, - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/WebPubSub/webpubsub-1121", - "name": "webpubsub-1121", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/WebPubSub/webpubsub-5764", + "name": "webpubsub-5764", "type": "Microsoft.SignalRService/WebPubSub" } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159/providers/Microsoft.SignalRService/webPubSub/webpubsub-1121?api-version=2021-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769/providers/Microsoft.SignalRService/webPubSub/webpubsub-5764?api-version=2021-10-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-0241b4a3bb159d438bb18cac37f12666-dda7599659e9f94d-00", - "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.0.0-alpha.20220713.1 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "5dcbf2b021fdb4b533645fdfed383b0d", + "traceparent": "00-1e263cc9fdfbf6e8cc01311e8e183bf1-72cae8b7e3e7652e-00", + "User-Agent": "azsdk-net-ResourceManager.WebPubSub/1.1.0-alpha.20230321.1 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "7ec8e4cd2377f2fe1179a2d5036dea34", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Wed, 13 Jul 2022 03:21:00 GMT", + "Date": "Wed, 22 Mar 2023 03:17:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Kestrel", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5dcbf2b021fdb4b533645fdfed383b0d", - "x-ms-correlation-request-id": "72871755-adf1-4b22-b32b-17db04d3e881", - "x-ms-ratelimit-remaining-subscription-deletes": "14978", - "x-ms-request-id": "adc1768d-aaed-4866-a78b-9e10058e31b9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T032100Z:72871755-adf1-4b22-b32b-17db04d3e881", - "x-rp-server-mvid": "a240317d-2594-4b08-9f0c-5f370ea616d7" + "x-ms-client-request-id": "7ec8e4cd2377f2fe1179a2d5036dea34", + "x-ms-correlation-request-id": "2345023d-dfda-4d4f-ad9d-7499ce7ffff0", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-request-id": "00e36fc3-7ab0-40cb-9935-9e806d060edb", + "x-ms-routing-request-id": "JAPANEAST:20230322T031758Z:2345023d-dfda-4d4f-ad9d-7499ce7ffff0", + "x-rp-server-mvid": "cc9350c4-39bb-4799-b2d8-466ffea269fe" }, "ResponseBody": null } ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "515711856", + "RandomSeed": "630823973", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(False).json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(False).json index 636925ec8506..821af2c2f328 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(False).json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(False).json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e42f0916fe2aeb4da0c2b9549468adcc-7b7efe6c293e1e43-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "214d914d88bfa9eec6f2b996bbaa9b55", + "traceparent": "00-7fe5b7640537a3b3579a7c6164ed2266-96e075a65e12946d-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "09591e3edefa33b6b3f7892b0dda20d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:06:51 GMT", + "Date": "Wed, 22 Mar 2023 03:06:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a83ac40a-8a56-435d-921f-ce973a83986e", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-request-id": "a83ac40a-8a56-435d-921f-ce973a83986e", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030651Z:a83ac40a-8a56-435d-921f-ce973a83986e" + "x-ms-correlation-request-id": "8f24ca99-3b8b-456b-a1bd-615c14ff1f5e", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-request-id": "8f24ca99-3b8b-456b-a1bd-615c14ff1f5e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030602Z:8f24ca99-3b8b-456b-a1bd-615c14ff1f5e" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -56,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-296?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6782?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-2c1eaed3d240f14b9e6a285fc5920621-6d029b7f3c720746-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "ae7260a4b088c4e57909b5c0b4d4fe7f", + "traceparent": "00-b40e142e3d54c6ae55bec3cac764f1d0-a301882311dfb406-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "96f4d9eac1cc76a7a08f510b324e5a51", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -74,21 +74,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "228", + "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:06:52 GMT", + "Date": "Wed, 22 Mar 2023 03:06:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a888e292-2e5e-4f51-b8ee-edfccf507470", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-request-id": "a888e292-2e5e-4f51-b8ee-edfccf507470", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T030652Z:a888e292-2e5e-4f51-b8ee-edfccf507470" + "x-ms-correlation-request-id": "8dffa656-9491-4b23-931e-ec1baeb3226e", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "8dffa656-9491-4b23-931e-ec1baeb3226e", + "x-ms-routing-request-id": "JAPANEAST:20230322T030605Z:8dffa656-9491-4b23-931e-ec1baeb3226e" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-296", - "name": "WebPubSubRG-296", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6782", + "name": "WebPubSubRG-6782", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -99,7 +99,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "474947780", + "RandomSeed": "677159493", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(True)Async.json b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(True)Async.json index a2ac40c0cfad..d0a588f10172 100644 --- a/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(True)Async.json +++ b/sdk/webpubsub/Azure.ResourceManager.WebPubSub/tests/SessionRecords/WebPubSubTests/WebPubSubTests(True)Async.json @@ -6,33 +6,33 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-e6b9efd20ed8c34b96e932a43c8d6c6d-62f29a6298fbae41-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "187bc81bf5e865c524bc435b227d277a", + "traceparent": "00-365ce2ec2ce61622f367d5ff6a38ba9a-99a356722ed8c1af-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "f648afcb68c0b03501f0cd61441eaeec", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "747", + "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:07 GMT", + "Date": "Wed, 22 Mar 2023 03:12:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65005cb6-1f77-4316-a42e-b15212da08de", - "x-ms-ratelimit-remaining-subscription-reads": "11659", - "x-ms-request-id": "65005cb6-1f77-4316-a42e-b15212da08de", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031407Z:65005cb6-1f77-4316-a42e-b15212da08de" + "x-ms-correlation-request-id": "500fb229-3c0a-4d3e-9958-c9e9bcd24bec", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-request-id": "500fb229-3c0a-4d3e-9958-c9e9bcd24bec", + "x-ms-routing-request-id": "JAPANEAST:20230322T031248Z:500fb229-3c0a-4d3e-9958-c9e9bcd24bec" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], "tags": { - "TagKey-9823": "TagValue-566", + "TagKey-9823": "TagValue-1254", "TagKey-3481": "TagValue-320", "TagKey-4926": "TagValue-1187", "TagKey-751": "TagValue-3921", @@ -56,16 +56,16 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-6159?api-version=**", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/WebPubSubRG-4769?api-version=**", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "22", "Content-Type": "application/json", - "traceparent": "00-7ef104ab0514574f80a0f368abecba4f-0c8fcddaaa94964c-00", - "User-Agent": "azsdk-net-ResourceManager/1.2.0 (.NET Core 3.1.27; Microsoft Windows 10.0.22000)", - "x-ms-client-request-id": "4a36c04434a66e18d3b7a20d5fdba8d6", + "traceparent": "00-467f127ed2a670a3ace862eeedc3d377-c125512ee223eeee-00", + "User-Agent": "azsdk-net-ResourceManager/1.4.0 (.NET 6.0.15; Microsoft Windows 10.0.22621)", + "x-ms-client-request-id": "3dec7ee91367aafee132ba6c2a3859ec", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -76,19 +76,19 @@ "Cache-Control": "no-cache", "Content-Length": "230", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 13 Jul 2022 03:14:08 GMT", + "Date": "Wed, 22 Mar 2023 03:12:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea2ac090-f05c-4d8a-86fd-898a53ec5f73", - "x-ms-ratelimit-remaining-subscription-writes": "1170", - "x-ms-request-id": "ea2ac090-f05c-4d8a-86fd-898a53ec5f73", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220713T031408Z:ea2ac090-f05c-4d8a-86fd-898a53ec5f73" + "x-ms-correlation-request-id": "af06428d-0bdc-43ab-bae1-f6f920c6b5e0", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-request-id": "af06428d-0bdc-43ab-bae1-f6f920c6b5e0", + "x-ms-routing-request-id": "JAPANEAST:20230322T031251Z:af06428d-0bdc-43ab-bae1-f6f920c6b5e0" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-6159", - "name": "WebPubSubRG-6159", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/WebPubSubRG-4769", + "name": "WebPubSubRG-4769", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "properties": { @@ -99,7 +99,7 @@ ], "Variables": { "AZURE_AUTHORITY_HOST": "https://login.microsoftonline.com", - "RandomSeed": "919294016", + "RandomSeed": "840544391", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" }