1 override of Request
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
142public override HttpRequest Request => _request;
14042 references to Request
AutobahnTestApp (4)
Startup.cs (4)
31var wsScheme = context.Request.IsHttps ? "wss" : "ws"; 32var wsUrl = $"{wsScheme}://{context.Request.Host.Host}:{context.Request.Host.Port}{context.Request.Path}";
AzureAppServicesHostingStartupSample (8)
Startup.cs (8)
14logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path); 21await context.Response.WriteAsync("Scheme: " + context.Request.Scheme + Environment.NewLine); 22await context.Response.WriteAsync("Host: " + context.Request.Headers.Host + Environment.NewLine); 23await context.Response.WriteAsync("PathBase: " + context.Request.PathBase.Value + Environment.NewLine); 24await context.Response.WriteAsync("Path: " + context.Request.Path.Value + Environment.NewLine); 25await context.Response.WriteAsync("Query: " + context.Request.QueryString.Value + Environment.NewLine); 40foreach (var header in context.Request.Headers)
AzureAppServicesSample (8)
Startup.cs (8)
25logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path); 32await context.Response.WriteAsync("Scheme: " + context.Request.Scheme + Environment.NewLine); 33await context.Response.WriteAsync("Host: " + context.Request.Headers.Host + Environment.NewLine); 34await context.Response.WriteAsync("PathBase: " + context.Request.PathBase.Value + Environment.NewLine); 35await context.Response.WriteAsync("Path: " + context.Request.Path.Value + Environment.NewLine); 36await context.Response.WriteAsync("Query: " + context.Request.QueryString.Value + Environment.NewLine); 51foreach (var header in context.Request.Headers)
BasicWebSite (9)
Filters\TestExceptionFilter.cs (1)
13if (context.HttpContext.Request.Query.TryGetValue("handleException", out var handleException))
RequestIdMiddleware.cs (1)
24var requestId = context.Request.Headers.RequestId;
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27var query = _actionContext.HttpContext.Request.Query; 43actualUrl = _actionContext.HttpContext.Request.Path.Value,
StartupRequestLimitSize.cs (2)
27httpContext.Request.Body = new RequestBodySizeCheckingStream( 28httpContext.Request.Body,
StartupWhereReadingRequestBodyThrows.cs (1)
23context.Request.Body = new ThrowingStream();
StartupWithoutEndpointRouting.cs (2)
67client.BaseAddress = new Uri($"{httpContext.Request.Scheme}://{httpContext.Request.Host}");
Binding.Http.IntegrationTests (1)
MtomBindingTestHelper.cs (1)
56while (await context.Request.Body.ReadAsync(buffer, 0, 8192) != 0) { }
blazor-devserver (5)
Server\Startup.cs (5)
38if (ctx.Request.Path.StartsWithSegments("/_framework") && !ctx.Request.Path.StartsWithSegments("/_framework/blazor.server.js") && !ctx.Request.Path.StartsWithSegments("/_framework/blazor.web.js")) 40string fileExtension = Path.GetExtension(ctx.Request.Path); 89if (context.Request.PathBase == pathBase)
Certificate.Optional.Sample (2)
Startup.cs (2)
49return context.Response.WriteAsync($"Hello {context.User.Identity.Name} at {context.Request.Host}"); 54return context.Response.WriteAsync($"Hello {context.User.Identity.Name} at {context.Request.Host}. Try /auth");
ControllersFromServicesClassLibrary (2)
ControllerWithConstructorInjection.cs (1)
33ActionContext.HttpContext.Request.Headers["Test-Header"]);
QueryValueService.cs (1)
19return _context.Request.Query["value"];
CookiePolicySample (14)
Startup.cs (14)
19options.CheckConsentNeeded = context => context.Request.PathBase.Equals("/NeedsConsent"); 39var path = context.Request.Path; 80var cookies = context.Request.Cookies; 84await response.WriteAsync($"<a href=\"{context.Request.PathBase}/\">Home</a><br>\r\n"); 85await response.WriteAsync($"<a href=\"{context.Request.PathBase}/Login\">Login</a><br>\r\n"); 86await response.WriteAsync($"<a href=\"{context.Request.PathBase}/Logout\">Logout</a><br>\r\n"); 87await response.WriteAsync($"<a href=\"{context.Request.PathBase}/CreateTempCookie\">Create Temp Cookie</a><br>\r\n"); 88await response.WriteAsync($"<a href=\"{context.Request.PathBase}/RemoveTempCookie\">Remove Temp Cookie</a><br>\r\n"); 89await response.WriteAsync($"<a href=\"{context.Request.PathBase}/CreateEssentialCookie\">Create Essential Cookie</a><br>\r\n"); 90await response.WriteAsync($"<a href=\"{context.Request.PathBase}/RemoveEssentialCookie\">Remove Essential Cookie</a><br>\r\n"); 91await response.WriteAsync($"<a href=\"{context.Request.PathBase}/GrantConsent\">Grant Consent</a><br>\r\n"); 92await response.WriteAsync($"<a href=\"{context.Request.PathBase}/WithdrawConsent\">Withdraw Consent</a><br>\r\n"); 94await response.WriteAsync($"<a href=\"/NeedsConsent{context.Request.Path}\">Needs Consent</a><br>\r\n"); 95await response.WriteAsync($"<a href=\"/NeedsNoConsent{context.Request.Path}\">Needs No Consent</a><br>\r\n");
CorsMiddlewareWebSite (3)
EchoMiddleware.cs (3)
28var path = context.Request.PathBase + context.Request.Path + context.Request.QueryString;
DefaultBuilder.SampleApp (2)
Startup.cs (2)
19await context.Response.WriteAsync($"Hello from {context.Request.GetDisplayUrl()}\r\n"); 23foreach (var header in context.Request.Headers)
DeveloperExceptionPageSample (1)
Startup.cs (1)
19context.Request.RouteValues = new RouteValueDictionary(new
FormatterWebSite (1)
StringInputFormatter.cs (1)
22var request = context.HttpContext.Request;
GenericHostWebSite (2)
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27var query = _actionContext.HttpContext.Request.Query; 43actualUrl = _actionContext.HttpContext.Request.Path.Value,
HeaderPropagationSample (5)
Startup.cs (5)
65foreach (var header in context.Request.Headers) 75var uri = UriHelper.BuildAbsolute(context.Request.Scheme, context.Request.Host, context.Request.PathBase, "/forwarded"); 91foreach (var header in context.Request.Headers)
HostFilteringSample (1)
Startup.cs (1)
46return context.Response.WriteAsync("Hello World! " + context.Request.Host);
HotAddSample (5)
Startup.cs (5)
39var toAdd = context.Request.Query["add"]; 54await context.Response.WriteAsync("<br><a href=\"" + context.Request.PathBase.ToUriComponent() + "\">back</a>"); 65var toRemove = context.Request.Query["remove"]; 78await context.Response.WriteAsync("<br><a href=\"" + context.Request.PathBase.ToUriComponent() + "\">back</a>"); 95await context.Response.WriteAsync("<form action=\"" + context.Request.PathBase.ToUriComponent() + "\" method=\"GET\">");
Http2SampleApp (1)
Startup.cs (1)
23return context.Response.WriteAsync("Hello World! " + context.Request.Protocol);
Http3SampleApp (2)
Startup.cs (2)
23var length = await context.Request.Body.ReadAsync(memory); 26await context.Response.WriteAsync($"Hello World! {context.Request.Protocol} {context.Connection.ClientCertificate?.Subject}");
HttpLogging.Sample (3)
SampleHttpLoggingInterceptor.cs (3)
13if (!logContext.HttpContext.Request.Path.StartsWithSegments("/api")) 41foreach (var header in logContext.HttpContext.Request.Headers) 85logContext.AddParameter(nameof(logContext.HttpContext.Request.Path), "RedactedPath");
HttpOverridesSample (3)
Startup.cs (3)
21foreach (var header in context.Request.Headers) 25await context.Response.WriteAsync($"Method: {context.Request.Method}\r\n"); 26await context.Response.WriteAsync($"Scheme: {context.Request.Scheme}\r\n");
HttpStress (4)
Program.cs (4)
474await context.Request.Body.CopyToAsync(s); 481await context.Request.Body.CopyToAsync(context.Response.Body); 487while ((await context.Request.Body.ReadAsync(buffer)) != 0) 501await context.Request.Body.CopyToAsync(Stream.Null);
IIS.Microbenchmarks (1)
PlaintextBenchmark.cs (1)
56if (httpContext.Request.Path.StartsWithSegments(_path, StringComparison.Ordinal))
IIS.Tests (18)
ClientDisconnectTests.cs (4)
115await ctx.Request.Body.ReadAsync(data); 196var task = ctx.Request.Body.ReadAsync(data, cancellationTokenSource.Token); 243await ctx.Request.Body.ReadAsync(data); 293var task = ctx.Request.Body.ReadAsync(data);
HttpBodyControlFeatureTests.cs (1)
39ctx.Request.Body.Read(new byte[10]);
MaxRequestBodySizeTests.cs (11)
36await ctx.Request.Body.ReadAsync(new byte[2000]); 78await ctx.Request.Body.ReadAsync(new byte[2000]); 114await ctx.Request.Body.ReadAsync(new byte[2000]); 141await ctx.Request.Body.ReadAsync(new byte[2000]); 167await ctx.Request.Body.ReadAsync(new byte[2000]); 190await ctx.Request.Body.ReadAsync(new byte[2000]); 214await ctx.Request.Body.ReadAsync(new byte[2000]); 246Assert.Equal(1, await ctx.Request.Body.ReadAsync(buffer, 0, 1)); 284var num = await ctx.Request.Body.ReadAsync(new byte[2000]); 325async () => await ctx.Request.Body.ReadAsync(buffer, 0, 1)); 327async () => await ctx.Request.Body.ReadAsync(buffer, 0, 1));
ResponseAbortTests.cs (1)
78await ctx.Request.Body.ReadAsync(a);
TestServerTest.cs (1)
26path = ctx.Request.Path.ToString();
IISSample (8)
Startup.cs (8)
39logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path); 46await context.Response.WriteAsync("Scheme: " + context.Request.Scheme + Environment.NewLine); 47await context.Response.WriteAsync("Host: " + context.Request.Headers["Host"] + Environment.NewLine); 48await context.Response.WriteAsync("PathBase: " + context.Request.PathBase.Value + Environment.NewLine); 49await context.Response.WriteAsync("Path: " + context.Request.Path.Value + Environment.NewLine); 50await context.Response.WriteAsync("Query: " + context.Request.QueryString.Value + Environment.NewLine); 67foreach (var header in context.Request.Headers)
InMemory.FunctionalTests (324)
BadHttpRequestTests.cs (5)
152receivedHost = context.Request.Headers.Host; 193await context.Request.Body.ReadAsync(new byte[1], 0, 1); 348await using (var server = new TestServer(context => context.Request.Body.DrainAsync(default), new TestServiceContext(LoggerFactory) { DiagnosticSource = diagListener })) 409await using (var server = new TestServer(context => context.Request.Body.DrainAsync(default), new TestServiceContext(LoggerFactory) { DiagnosticSource = diagListener })) 479await using (var server = new TestServer(context => context.Request.Body.DrainAsync(default), new TestServiceContext(LoggerFactory) { DiagnosticSource = diagListener }))
ChunkedRequestTests.cs (20)
26var request = httpContext.Request; 43var request = httpContext.Request; 62var request = httpContext.Request; 180var request = httpContext.Request; 236var request = httpContext.Request; 364var request = httpContext.Request; 501while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) != 0) 545while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) != 0) 586var request = httpContext.Request; 667var request = httpContext.Request; 711var request = httpContext.Request; 863var readTask = httpContext.Request.Body.CopyToAsync(Stream.Null); 912var request = httpContext.Request; 919var requestTask = httpContext.Request.BodyReader.ReadAsync(); 921httpContext.Request.BodyReader.CancelPendingRead(); 968var request = httpContext.Request; 975httpContext.Request.BodyReader.Complete(); 1017var request = httpContext.Request; 1081var request = httpContext.Request; 1088httpContext.Request.BodyReader.Complete(new Exception());
ChunkedResponseTests.cs (1)
89httpContext.Request.Protocol = "HTTP/2"; // Doesn't support chunking. This change should be ignored.
Http2\Http2ConnectionTests.cs (9)
1147var read = await context.Request.Body.ReadAsync(new byte[10], 0, 10); 1362var readResult = await context.Request.BodyReader.ReadAsync(); 1365context.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1366readResult = await context.Request.BodyReader.ReadAsync(); 1369context.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1371readResult = await context.Request.BodyReader.ReadAsync(); 1376context.Request.BodyReader.AdvanceTo(readResult.Buffer.End); 5322var result = await context.Request.BodyReader.ReadAsync().DefaultTimeout(); 5325context.Request.BodyReader.AdvanceTo(result.Buffer.Start, result.Buffer.End);
Http2\Http2KeepAliveTests.cs (2)
268await c.Request.Body.FlushAsync(); 321await c.Request.Body.FlushAsync();
Http2\Http2StreamTests.cs (58)
183Assert.True(HttpMethods.Equals(method, context.Request.Method)); 184Assert.True(context.Request.CanHaveBody()); 185Assert.Equal(11, context.Request.ContentLength); 186Assert.False(context.Request.Headers.ContainsKey(HeaderNames.TransferEncoding)); 187return context.Request.BodyReader.CopyToAsync(context.Response.BodyWriter); 234Assert.True(HttpMethods.Equals(method, context.Request.Method)); 235Assert.True(context.Request.CanHaveBody()); 236Assert.Null(context.Request.ContentLength); 237Assert.False(context.Request.Headers.ContainsKey(HeaderNames.TransferEncoding)); 238return context.Request.BodyReader.CopyToAsync(context.Response.BodyWriter); 358context.Response.Headers["path"] = context.Request.Path.Value; 359context.Response.Headers["query"] = context.Request.QueryString.Value; 404Assert.Equal(expected, context.Request.Path.Value); 477Assert.Equal(scheme, context.Request.Scheme); 478Assert.False(context.Request.Headers.ContainsKey(InternalHeaderNames.Scheme)); 876var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 878read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 906var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 908read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 954var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 958read = await context.Request.Body.ReadAsync(buffer, total, buffer.Length - total); 996var readResult = await context.Request.BodyReader.ReadAsync(); 999context.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1000readResult = await context.Request.BodyReader.ReadAsync(); 1004context.Request.BodyReader.AdvanceTo(readResult.Buffer.End); 1040var readResult = await context.Request.BodyReader.ReadAsync(); 1042context.Request.BodyReader.AdvanceTo(readResult.Buffer.End); 1048var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 1052read = await context.Request.Body.ReadAsync(buffer, total, buffer.Length - total); 1149while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 1184while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 1219while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 1255while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 1279var readResult = await context.Request.BodyReader.ReadAsync(); 1282context.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1283readResult = await context.Request.BodyReader.ReadAsync(); 1287context.Request.BodyReader.AdvanceTo(readResult.Buffer.End); 1289readResult = await context.Request.BodyReader.ReadAsync(); 1865var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 1867read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 1910while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 1951var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 1953read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 1995while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 2056while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 2112var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2115read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 3247var readTask = context.Request.Body.ReadAsync(new byte[100], 0, 100).DefaultTimeout(); 3289var read = await context.Request.Body.ReadAsync(new byte[100], 0, 100).DefaultTimeout(); 3290var readTask = context.Request.Body.ReadAsync(new byte[100], 0, 100).DefaultTimeout(); 3425var thrownExTask = Assert.ThrowsAnyAsync<OperationCanceledException>(() => context.Request.Body.ReadAsync(buffer, 0, buffer.Length)); 3450var thrownExTask = Assert.ThrowsAnyAsync<OperationCanceledException>(() => context.Request.Body.ReadAsync(buffer, 0, buffer.Length)); 5522var requestBodyTask = context.Request.BodyReader.ReadAsync(); 5541await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.Request.BodyReader.ReadAsync()); 5688var requestBodyTask = context.Request.BodyReader.ReadAsync(); 5709await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.Request.BodyReader.ReadAsync()); 5777Assert.Equal("£", context.Request.Headers["X-Test"]); 5821Assert.Equal("£", context.Request.Headers["X-Test"]);
Http2\Http2TestBase.cs (27)
185_receivedRequestFields.Method = context.Request.Method; 186_receivedRequestFields.Scheme = context.Request.Scheme; 187_receivedRequestFields.Path = context.Request.Path.Value; 189_receivedRequestFields.Authority = context.Request.Host.Value; 190foreach (var header in context.Request.Headers) 200Assert.True(context.Request.SupportsTrailers(), "SupportsTrailers"); 201Assert.False(context.Request.CheckTrailersAvailable(), "SupportsTrailers"); 206await context.Request.Body.CopyToAsync(ms); 209Assert.True(context.Request.SupportsTrailers(), "SupportsTrailers"); 210Assert.True(context.Request.CheckTrailersAvailable(), "SupportsTrailers"); 212_receivedRequestFields.Method = context.Request.Method; 213_receivedRequestFields.Scheme = context.Request.Scheme; 214_receivedRequestFields.Path = context.Request.Path.Value; 216foreach (var header in context.Request.Headers) 235while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 248while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 259while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 328var expectedBytes = int.Parse(context.Request.Path.Value.Substring(1), CultureInfo.InvariantCulture); 335received += await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 338var stalledReadTask = context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 348Assert.False(context.Request.CanHaveBody()); 349Assert.False(context.Request.Headers.ContainsKey(InternalHeaderNames.Method)); 350context.Response.Headers["Method"] = context.Request.Method; 357Assert.False(context.Request.Headers.ContainsKey(InternalHeaderNames.Authority)); 358context.Response.Headers.Host = context.Request.Headers.Host; 365Assert.False(context.Request.Headers.ContainsKey(InternalHeaderNames.Path)); 366context.Response.Headers["path"] = context.Request.Path.ToString();
Http2\Http2TimeoutTests.cs (1)
320while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
Http2\Http2WebSocketTests.cs (33)
24Assert.Equal(HttpMethods.Connect, context.Request.Method); 26Assert.False(context.Request.Headers.TryGetValue(":protocol", out var _)); 27Assert.Equal("http", context.Request.Scheme); 28Assert.Equal("/chat", context.Request.Path.Value); 29Assert.Equal("server.example.com", context.Request.Host.Value); 30Assert.Equal("chat, superchat", context.Request.Headers.WebSocketSubProtocols); 31Assert.Equal("permessage-deflate", context.Request.Headers.SecWebSocketExtensions); 32Assert.Equal("13", context.Request.Headers.SecWebSocketVersion); 33Assert.Equal("http://www.example.com", context.Request.Headers.Origin); 35Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1])); 86Assert.Equal(HttpMethods.Connect, context.Request.Method); 88Assert.False(context.Request.Headers.TryGetValue(":protocol", out var _)); 89Assert.Equal("http", context.Request.Scheme); 90Assert.Equal("/chat", context.Request.Path.Value); 91Assert.Equal("server.example.com", context.Request.Host.Value); 92Assert.Equal("chat, superchat", context.Request.Headers.WebSocketSubProtocols); 93Assert.Equal("permessage-deflate", context.Request.Headers.SecWebSocketExtensions); 94Assert.Equal("13", context.Request.Headers.SecWebSocketVersion); 95Assert.Equal("http://www.example.com", context.Request.Headers.Origin); 97Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1])); 162Assert.Equal(HttpMethods.Connect, context.Request.Method); 164Assert.False(context.Request.Headers.TryGetValue(":protocol", out var _)); 165Assert.Equal("http", context.Request.Scheme); 166Assert.Equal("/chat", context.Request.Path.Value); 167Assert.Equal("server.example.com", context.Request.Host.Value); 168Assert.Equal("chat, superchat", context.Request.Headers.WebSocketSubProtocols); 169Assert.Equal("permessage-deflate", context.Request.Headers.SecWebSocketExtensions); 170Assert.Equal("13", context.Request.Headers.SecWebSocketVersion); 171Assert.Equal("http://www.example.com", context.Request.Headers.Origin); 173Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1])); 455Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1])); 464Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1])); 592Assert.Equal(HttpMethods.Connect, context.Request.Method);
Http2\TlsTests.cs (1)
42return context.Response.WriteAsync("hello world " + context.Request.Protocol);
Http3\Http3ConnectionTests.cs (6)
46while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 86while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 147receivedHeaders = context.Request.Headers[HeaderNames.Cookie]; 149while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 420contentType = context.Request.ContentType; 421authority = context.Request.Host.Value;
Http3\Http3StreamTests.cs (30)
213context.Response.Headers["path"] = context.Request.Path.Value; 214context.Response.Headers["query"] = context.Request.QueryString.Value; 248Assert.Equal(expected, context.Request.Path.Value); 308Assert.Equal(scheme, context.Request.Scheme); 564var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 566read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 593var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 597read = await context.Request.Body.ReadAsync(buffer, total, buffer.Length - total); 627var readResult = await context.Request.BodyReader.ReadAsync(); 630context.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 631readResult = await context.Request.BodyReader.ReadAsync(); 635context.Request.BodyReader.AdvanceTo(readResult.Buffer.End); 1774var requestBodyTask = context.Request.BodyReader.ReadAsync(); 1793await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.Request.BodyReader.ReadAsync()); 1901var requestBodyTask = context.Request.BodyReader.ReadAsync(); 1922await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.Request.BodyReader.ReadAsync()); 1988await c.Request.Body.DrainAsync(default); 1990testValue = c.Request.GetTrailer("TestName"); 2055await c.Request.Body.ReadAsync(data); 2061c.Request.GetTrailer("TestName"); 2484var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2486read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2522while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 2557var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2559read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2594while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 2647while (await context.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { } 2695var read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2698read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 2810readCount += await context.Request.Body.ReadAsync(buffer.AsMemory(readCount, 100 - readCount));
Http3\Http3TestBase.cs (7)
68while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0) 76var expectedBytes = int.Parse(context.Request.Path.Value.Substring(1), CultureInfo.InvariantCulture); 83received += await context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 86var stalledReadTask = context.Request.Body.ReadAsync(buffer, 0, buffer.Length); 96context.Response.Headers["Method"] = context.Request.Method; 103context.Response.Headers["path"] = context.Request.Path.ToString(); 111context.Response.Headers.Host = context.Request.Headers.Host;
Http3\Http3TimeoutTests.cs (1)
428while ((received = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
HttpsConnectionMiddlewareTests.cs (3)
1035var body = await new StreamReader(context.Request.Body).ReadToEndAsync(); 1118await using (var server = new TestServer(context => context.Response.WriteAsync(context.Request.Scheme), new TestServiceContext(LoggerFactory), ConfigureListenOptions)) 1486var request = httpContext.Request;
KeepAliveTimeoutTests.cs (4)
234if (httpContext.Request.Path == "/longrunning") 238else if (httpContext.Request.Path == "/upgrade") 247else if (httpContext.Request.Path == "/consume") 250while (await httpContext.Request.Body.ReadAsync(buffer, 0, buffer.Length) > 0)
KestrelMetricsTests.cs (2)
421var request = httpContext.Request; 423var buffer = new byte[httpContext.Request.ContentLength ?? 0];
MaxRequestBodySizeTests.cs (18)
31Assert.True(context.Request.CanHaveBody()); 36async () => await context.Request.Body.ReadAsync(buffer, 0, 1)); 77using (var stream = new StreamReader(context.Request.Body)) 121using (var stream = new StreamReader(context.Request.Body)) 174async () => await context.Request.Body.ReadAsync(buffer, 0, 1)); 214Assert.Equal(1, await context.Request.Body.ReadAsync(buffer, 0, 1)); 216Assert.Equal(0, await context.Request.Body.ReadAsync(buffer, 0, 1)); 244await using (var server = new TestServer(context => context.Request.Body.CopyToAsync(Stream.Null), 284Assert.Equal(1, await context.Request.Body.ReadAsync(buffer, 0, 1)); 368async () => await context.Request.Body.ReadAsync(buffer, 0, 1)); 370async () => await context.Request.Body.ReadAsync(buffer, 0, 1)); 419count = await context.Request.Body.ReadAsync(buffer, 0, 11); 464count = await context.Request.Body.ReadAsync(buffer, offset, 11 - offset); 469Assert.Equal("trailing-value", context.Request.GetTrailer("Trailing-Header").ToString()); 516count = await context.Request.Body.ReadAsync(buffer, 0, 11); 527count = await context.Request.Body.ReadAsync(buffer, 0, 11); 579async () => await context.Request.Body.ReadAsync(buffer, 0, 1)); 581async () => await context.Request.Body.ReadAsync(buffer, 0, 1));
RequestBodyTimeoutTests.cs (2)
53var readTask = context.Request.Body.ReadAsync(new byte[1], 0, 1); 153var readTask = context.Request.Body.ReadAsync(new byte[1], 0, 1);
RequestHeadersTimeoutTests.cs (1)
137await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1);
RequestTargetProcessingTests.cs (4)
24Assert.Equal("/\u0041\u030A/B/\u0041\u030A", context.Request.Path.Value); 102Assert.Empty(context.Request.Path.Value); 103Assert.Empty(context.Request.PathBase.Value); 104Assert.Empty(context.Request.QueryString.Value);
RequestTests.cs (62)
31if (context.Request.Body is MemoryStream) 41context.Request.Body = new MemoryStream(); 94context.Request.Body = mockStream.Object; 95var data = await context.Request.BodyReader.ReadAsync(); 120await context.Request.Body.FillEntireBufferAsync(data, cts.Token).DefaultTimeout(); 134var task = context.Request.Body.ReadAsync(data, 0, data.Length, cts.Token); 236pathTcs.TrySetResult(context.Request.Path); 237queryTcs.TrySetResult(context.Request.Query); 924Assert.Equal(0, await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1).DefaultTimeout()); 969var readResult = await httpContext.Request.BodyReader.ReadAsync().AsTask().DefaultTimeout(); 1016var readResult = await httpContext.Request.BodyReader.ReadAsync(); 1019httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.End); 1048var readResult = await httpContext.Request.BodyReader.ReadAsync(); 1051httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1052readResult = await httpContext.Request.BodyReader.ReadAsync(); 1083var readResult = await httpContext.Request.BodyReader.ReadAsync(); 1086httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1090readResult = await httpContext.Request.BodyReader.ReadAsync(); 1092httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1126await httpContext.Request.BodyReader.CopyToAsync(ms1); 1127await httpContext.Request.BodyReader.CopyToAsync(ms2); 1180var readResult = await ReadAtLeastAsync(httpContext.Request.BodyReader, numBytes: 3); 1184httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1187readResult = await httpContext.Request.BodyReader.ReadAsync(); 1188httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1192readResult = await httpContext.Request.BodyReader.ReadAsync(); 1196httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1197readResult = await httpContext.Request.BodyReader.ReadAsync(); 1232var readResult = await httpContext.Request.BodyReader.ReadAsync(); 1234httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End); 1236readResult = await httpContext.Request.BodyReader.ReadAsync(); 1237httpContext.Request.BodyReader.AdvanceTo(readResult.Buffer.Slice(1).Start, readResult.Buffer.End); 1392if (context.Request.Body != lastStream) 1394lastStream = context.Request.Body; 1397if (context.Request.Headers != lastRequestHeaders) 1399lastRequestHeaders = context.Request.Headers; 1409await context.Request.Body.CopyToAsync(ms); 1692var ioEx = Assert.Throws<InvalidOperationException>(() => context.Request.Body.Read(new byte[1], 0, 1)); 1695var ioEx2 = Assert.Throws<InvalidOperationException>(() => context.Request.Body.CopyTo(Stream.Null)); 1700offset += await context.Request.Body.ReadAsync(buffer, offset, 5 - offset); 1703Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1], 0, 1)); 1743offset += context.Request.Body.Read(buffer, offset, 5 - offset); 1746Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1], 0, 1)); 1785var ioEx = Assert.Throws<InvalidOperationException>(() => context.Request.Body.Read(new byte[1], 0, 1)); 1788var ioEx2 = Assert.Throws<InvalidOperationException>(() => context.Request.Body.CopyTo(Stream.Null)); 1792var length = await context.Request.Body.FillBufferUntilEndAsync(buffer).DefaultTimeout(); 1833offset += context.Request.Body.Read(buffer, offset, 5 - offset); 1836Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[1], 0, 1)); 1867await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1); 1900var request = httpContext.Request; 1907var requestTask = httpContext.Request.BodyReader.ReadAsync(); 1909httpContext.Request.BodyReader.CancelPendingRead(); 1950var request = httpContext.Request; 1957httpContext.Request.BodyReader.Complete(); 1994var request = httpContext.Request; 1999httpContext.Request.BodyReader.Complete(); 2035var request = httpContext.Request; 2042httpContext.Request.BodyReader.Complete(new Exception()); 2078customHeaderValue = context.Request.Headers["X-CustomHeader"]; 2079contentTypeHeaderValue = context.Request.ContentType; 2195Assert.Equal("£", context.Request.Headers["X-Test"]); 2258Assert.Equal("£", context.Request.Headers["X-Test"]);
ResponseTests.cs (10)
338await context.Request.Body.ReadAsync(new byte[1], 0, 1); 355await context.Request.Body.ReadAsync(new byte[1], 0, 1); 481async () => await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1)); 1521await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1); 2019return httpContext.Request.Body.ReadAsync(new byte[1], 0, 1); 2089return httpContext.Request.Body.ReadAsync(new byte[1], 0, 1); 2135await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1); 2240Assert.Equal(0, await httpContext.Request.Body.ReadAsync(new byte[1], 0, 1).DefaultTimeout()); 2307var request = httpContext.Request; 2356var request = httpContext.Request;
src\Servers\Kestrel\shared\test\TestApp.cs (6)
16var request = httpContext.Request; 18var buffer = new byte[httpContext.Request.ContentLength ?? 0]; 29var request = httpContext.Request; 46var request = httpContext.Request; 48var buffer = new byte[httpContext.Request.ContentLength ?? 0]; 63var request = httpContext.Request;
UpgradeTests.cs (11)
77var read = await context.Request.Body.ReadAsync(buffer, 0, 128).DefaultTimeout(); 165if (HttpMethods.IsPost(context.Request.Method)) 168Assert.Equal(1, context.Request.ContentLength); 169Assert.Equal(1, await context.Request.Body.ReadAsync(new byte[10], 0, 10)); 200if (HttpMethods.IsPost(context.Request.Method)) 202Assert.Equal(0, context.Request.ContentLength); 204Assert.Equal(0, await context.Request.Body.ReadAsync(new byte[10], 0, 10)); 234Assert.Null(context.Request.ContentLength); 236if (HttpMethods.IsPost(context.Request.Method)) 239Assert.Equal("chunked", context.Request.Headers.TransferEncoding); 241var length = await context.Request.Body.FillBufferUntilEndAsync(new byte[100]);
InProcessWebSite (119)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.cs (113)
112await ctx.Response.WriteAsync(ctx.Request.Protocol); 217await ctx.Response.WriteAsync(Environment.GetEnvironmentVariable(ctx.Request.Query["name"].ToString())); 222var varName = ctx.Request.Query["q"]; 223var newValue = ctx.Request.Query["v"]; 268return ctx.Response.WriteAsync($"PathBase: {ctx.Request.PathBase.Value}; Path: {ctx.Request.Path.Value}"); 275Assert.Equal("GET", ctx.Request.Method); 276ctx.Request.Method = "test"; 277Assert.Equal("test", ctx.Request.Method); 279Assert.Equal("http", ctx.Request.Scheme); 280ctx.Request.Scheme = "test"; 281Assert.Equal("test", ctx.Request.Scheme); 283Assert.Equal("/FeatureCollectionSetRequestFeatures", ctx.Request.PathBase); 284ctx.Request.PathBase = "/base"; 285Assert.Equal("/base", ctx.Request.PathBase); 287Assert.Equal("/path", ctx.Request.Path); 288ctx.Request.Path = "/path"; 289Assert.Equal("/path", ctx.Request.Path); 291Assert.Equal("?query", ctx.Request.QueryString.Value); 292ctx.Request.QueryString = QueryString.Empty; 293Assert.Equal("", ctx.Request.QueryString.Value); 295Assert.Equal("HTTP/1.1", ctx.Request.Protocol); 296ctx.Request.Protocol = "HTTP/1.0"; 297Assert.Equal("HTTP/1.0", ctx.Request.Protocol); 299Assert.NotNull(ctx.Request.Headers); 304Assert.NotNull(ctx.Request.Body); 306ctx.Request.Body = body; 307Assert.Same(body, ctx.Request.Body); 392feature.ReasonPhrase = ctx.Request.Query["reason"]; 393feature.StatusCode = int.Parse(ctx.Request.Query["code"], CultureInfo.InvariantCulture); 394if (ctx.Request.Query["writeBody"] == "True") 396await ctx.Response.WriteAsync(ctx.Request.Query["body"]); 402if (ctx.Request.Path.Value.StartsWith("/Path", StringComparison.Ordinal)) 404await ctx.Response.WriteAsync(ctx.Request.Path.Value); 407if (ctx.Request.Path.Value.StartsWith("/Query", StringComparison.Ordinal)) 409await ctx.Response.WriteAsync(ctx.Request.QueryString.Value); 418if (int.TryParse(ctx.Request.Query["length"], out var length)) 467if ((string[])ctx.Request.Headers[headerName] != Array.Empty<string>()) 471if (ctx.Request.Headers.TryGetValue(headerName, out var headerValue) || (string[])headerValue is not null) 478ctx.Request.Headers.Add(headerName, "test"); 479ctx.Request.Headers[headerName] = default; 480ctx.Request.Headers.Add(headerName, "test"); 481ctx.Request.Headers[headerName] = StringValues.Empty; 482ctx.Request.Headers.Add(headerName, "test"); 487ctx.Request.Headers.Add(headerName, "test"); 492ctx.Request.Headers[headerName] = default; 519if (ctx.Request.Path.Equals("/SetStatusCodeAfterWrite")) 533else if (ctx.Request.Path.Equals("/SetHeaderAfterWrite")) 562var result = await ctx.Request.Body.ReadAsync(readBuffer, 0, 1); 565result = await ctx.Request.Body.ReadAsync(readBuffer, 0, 1); 575var result = await ctx.Request.Body.ReadAsync(readBuffer, 0, 4096); 578result = await ctx.Request.Body.ReadAsync(readBuffer, 0, 4096); 589await ctx.Request.Body.ReadAsync(readBuffer, 0, 1); 631var result = await ctx.Request.Body.ReadAsync(readBuffer, 0, readBuffer.Length); 635result = await ctx.Request.Body.ReadAsync(readBuffer, 0, readBuffer.Length); 644var result = await ctx.Request.Body.ReadAsync(readBuffer, 0, readBuffer.Length); 649result = await ctx.Request.Body.ReadAsync(readBuffer, 0, readBuffer.Length); 658if (ctx.Request.Headers.TryGetValue("Response-Content-Type", out var contentType)) 666var reader = new StreamReader(ctx.Request.Body); 690if (ctx.Request.Headers.TryGetValue("Response-Content-Type", out var contentType)) 698var reader = new StreamReader(ctx.Request.Body); 719count += await ctx.Request.Body.ReadAsync(data, count, data.Length - count); 726using (var reader = new StreamReader(ctx.Request.Body)) 737var result = await ctx.Request.Body.ReadAsync(readBuffer, 0, readBuffer.Length); 744result = await ctx.Request.Body.ReadAsync(readBuffer, 0, readBuffer.Length); 768await ctx.Request.Body.CopyToAsync(ctx.Response.Body); 774await ctx.Request.Body.ReadAsync(buffer, 0, 6); 775await ctx.Request.Body.ReadAsync(buffer, 6, 5); 783if (ctx.Request.Path.StartsWithSegments("/NullBuffer")) 787await ctx.Request.Body.ReadAsync(null, 0, 0); 794else if (ctx.Request.Path.StartsWithSegments("/InvalidOffsetSmall")) 798await ctx.Request.Body.ReadAsync(new byte[1], -1, 0); 805else if (ctx.Request.Path.StartsWithSegments("/InvalidOffsetLarge")) 809await ctx.Request.Body.ReadAsync(new byte[1], 2, 0); 816else if (ctx.Request.Path.StartsWithSegments("/InvalidCountSmall")) 820await ctx.Request.Body.ReadAsync(new byte[1], 0, -1); 827else if (ctx.Request.Path.StartsWithSegments("/InvalidCountLarge")) 831await ctx.Request.Body.ReadAsync(new byte[1], 0, -1); 838else if (ctx.Request.Path.StartsWithSegments("/InvalidCountWithOffset")) 842await ctx.Request.Body.ReadAsync(new byte[3], 1, 3); 857if (ctx.Request.Path.StartsWithSegments("/NullBuffer")) 859count = await ctx.Request.Body.ReadAsync(null, 0, 0); 861else if (ctx.Request.Path.StartsWithSegments("/NullBufferPost")) 863count = await ctx.Request.Body.ReadAsync(null, 0, 0); 865else if (ctx.Request.Path.StartsWithSegments("/InvalidCountZeroRead")) 867count = await ctx.Request.Body.ReadAsync(new byte[1], 0, 0); 869else if (ctx.Request.Path.StartsWithSegments("/InvalidCountZeroReadPost")) 871count = await ctx.Request.Body.ReadAsync(new byte[1], 0, 0); 881if (ctx.Request.Path.StartsWithSegments("/InvalidOffsetSmall")) 892else if (ctx.Request.Path.StartsWithSegments("/InvalidOffsetLarge")) 903else if (ctx.Request.Path.StartsWithSegments("/InvalidCountSmall")) 914else if (ctx.Request.Path.StartsWithSegments("/InvalidCountLarge")) 925else if (ctx.Request.Path.StartsWithSegments("/InvalidCountWithOffset")) 942if (ctx.Request.Path.StartsWithSegments("/NullBuffer")) 946else if (ctx.Request.Path.StartsWithSegments("/NullBufferPost")) 987ctx.Request.Headers.ContentLength = ctx.Request.Path.Value.Length; 988return ctx.Response.WriteAsync(ctx.Request.Path.Value); 1067ctx.Response.WriteAsync("Scheme:" + ctx.Request.Scheme + "; Original:" + ctx.Request.Headers["x-original-proto"]); 1069public Task Path(HttpContext ctx) => ctx.Response.WriteAsync(ctx.Request.Path.Value); 1071public Task Query(HttpContext ctx) => ctx.Response.WriteAsync(ctx.Request.QueryString.Value); 1114File.Delete(context.Request.Headers["ANCMRHPath"]); 1122return context.Response.WriteAsync(context.Request.Headers["ANCMRHPath"]); 1146var value = context.Request.Headers["foo"]; 1153var value = context.Request.Headers["foo"]; 1165Assert.True(ctx.Request.Headers.ContainsKey("Transfer-Encoding")); 1166Assert.Equal("gzip, chunked", ctx.Request.Headers["Transfer-Encoding"]); 1183Assert.True(ctx.Request.Headers.ContainsKey("Transfer-Encoding")); 1184Assert.Equal("gzip, chunked", ctx.Request.Headers["Transfer-Encoding"]); 1185Assert.False(ctx.Request.Headers.ContainsKey("Content-Length")); 1186Assert.True(ctx.Request.Headers.ContainsKey("X-Content-Length")); 1187Assert.Equal("5", ctx.Request.Headers["X-Content-Length"]);
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.WebSockets.cs (2)
49Assert.Equal(0, await context.Request.Body.ReadAsync(singleByteArray, 0, 1)); 114string key = context.Request.Headers[Constants.Headers.SecWebSocketKey].ToString();
src\Servers\IIS\IIS\test\testassets\shared\WebSockets\TestStartup.cs (4)
52if (context.Request.Path.StartsWithSegments(requestDelegate.Key, out var matchedPath, out var remainingPath)) 54var pathBase = context.Request.PathBase; 55context.Request.PathBase = pathBase.Add(matchedPath); 56context.Request.Path = remainingPath;
Interop.FunctionalTests (35)
H2SpecTests.cs (1)
151await context.Request.Body.CopyToAsync(Stream.Null);
Http2WebSocketInteropTests.cs (1)
61Assert.Equal(expectedVersion, context.Request.Protocol);
Http3\Http3RequestTests.cs (16)
327contentType = context.Request.ContentType; 328authority = context.Request.Host.Value; 330var data = await context.Request.Body.ReadUntilEndAsync(); 402var body = context.Request.Body; 465var body = context.Request.Body; 548readAsyncTask.SetResult(context.Request.Body.ReadAsync(new byte[1024]).AsTask()); 708var body = context.Request.Body; 891requestHeaders.Add(context.Request.Headers.ToDictionary(k => k.Key, k => k.Value, StringComparer.OrdinalIgnoreCase)); 979var requestBody = context.Request.Body; 1072var requestBody = context.Request.Body; 1220await context.Request.BodyReader.ReadAtLeastAsync(TestData.Length); 1335request1HeaderValue = context.Request.Headers.UserAgent; 1339request2HeaderValue = context.Request.Headers.UserAgent; 1623switch (context.Request.Path.ToString()) 1872var readTask = context.Request.Body.ReadUntilEndAsync(); 1983var data = await context.Request.Body.ReadUntilEndAsync();
HttpClientHttp2InteropTests.cs (17)
81await context.Request.BodyReader.CopyToAsync(context.Response.BodyWriter).DefaultTimeout(); 167await context.Request.BodyReader.CopyToAsync(context.Response.BodyWriter).DefaultTimeout(); 269var reader = context.Request.BodyReader; 328var reader = context.Request.BodyReader; 416using var streamReader = new StreamReader(context.Request.Body); 715using var streamReader = new StreamReader(context.Request.Body); 763var count = await context.Request.Body.ReadAsync(new byte[11], 0, 11); 774using var streamReader = new StreamReader(context.Request.Body); 823var readTask = context.Request.Body.ReadAsync(new byte[11], 0, 11); 869await ReadStreamHelloWorld(context.Request.Body); 870var readTask = context.Request.Body.ReadAsync(new byte[11], 0, 11); 1039Assert.Equal(oneKbString + i, context.Request.Headers["header" + i]); 1148Assert.Equal(oneKbString + i, context.Request.Headers["header" + i]); 1505read = await context.Request.Body.ReadAsync(buffer, 0, buffer.Length).DefaultTimeout(); 1558Assert.Equal("點.看", context.Request.Host.Host); 1559return context.Response.WriteAsync(context.Request.Host.Host); 1583.Configure(app => app.Run(context => context.Response.WriteAsync(context.Request.Path.Value)));
InteropWebsite (1)
TestServiceImpl.cs (1)
137var encoding = context.GetHttpContext().Request.Headers.SingleOrDefault(h => string.Equals(h.Key, "grpc-encoding", StringComparison.OrdinalIgnoreCase)).Value.SingleOrDefault();
JwtBearerSample (2)
Startup.cs (2)
73if (HttpMethods.IsPost(context.Request.Method)) 75var reader = new StreamReader(context.Request.Body);
JwtSample (1)
Startup.cs (1)
79var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.Request.Query["user"]) };
Kestrel.SampleApp (3)
ClientCertBufferingFeature.cs (3)
61if (!_context.Request.Body.CanSeek) 63_context.Request.EnableBuffering(); 66var body = _context.Request.Body;
LargeResponseApp (1)
Startup.cs (1)
25var path = context.Request.Path;
LocalizationSample (1)
Startup.cs (1)
34if (context.Request.Path.Value.EndsWith("favicon.ico", StringComparison.Ordinal))
Microsoft.AspNetCore.Antiforgery (10)
AntiforgeryMiddleware.cs (1)
25var method = context.Request.Method;
Internal\DefaultAntiforgery.cs (3)
94var method = httpContext.Request.Method; 163else if (!httpContext.Request.HasFormContentType) 258if (_options.Cookie.SecurePolicy == CookieSecurePolicy.Always && !context.Request.IsHttps)
Internal\DefaultAntiforgeryTokenStore.cs (6)
26var requestCookie = httpContext.Request.Cookies[_options.Cookie.Name!]; 40var cookieToken = httpContext.Request.Cookies[_options.Cookie.Name!]; 47requestToken = httpContext.Request.Headers[_options.HeaderName]; 51if (requestToken.Count == 0 && httpContext.Request.HasFormContentType && !_options.SuppressReadingTokenFromFormBody) 58form = await httpContext.Request.ReadFormAsync(); 92var pathBase = httpContext.Request.PathBase.ToString();
Microsoft.AspNetCore.Antiforgery.Test (39)
DefaultAntiforgeryTest.cs (6)
637context.HttpContext.Request.Method = "POST"; 677context.HttpContext.Request.Method = "POST"; 716context.HttpContext.Request.Method = httpMethod; 753context.HttpContext.Request.Method = httpMethod; 898context.HttpContext.Request.ContentType = "application/json"; 924context.HttpContext.Request.ContentType = "application/x-www-form-urlencoded";
DefaultAntiforgeryTokenStoreTest.cs (33)
78httpContext.Request.Form = FormCollection.Empty; 101httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 102httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues> 106httpContext.Request.Headers.Add("header-name", "header-value"); 130httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 131httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues> 159httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 160httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues> 164httpContext.Request.Headers.Add("header-name", "header-value"); 189httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 190httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues> 217httpContext.Request.ContentType = "application/json"; 218httpContext.Request.Headers.Add("header-name", "header-value"); 221httpContext.Request.Form = null!; 245httpContext.Request.ContentType = "application/json"; 248httpContext.Request.Form = null!; 272httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 273httpContext.Request.Form = FormCollection.Empty; 299httpContext.Setup(r => r.Request.Cookies).Returns(Mock.Of<IRequestCookieCollection>()); 300httpContext.SetupGet(r => r.Request.HasFormContentType).Returns(true); 301httpContext.Setup(r => r.Request.ReadFormAsync(It.IsAny<CancellationToken>())).Throws(ioException); 324httpContext.Setup(r => r.Request.Cookies).Returns(Mock.Of<IRequestCookieCollection>()); 325httpContext.SetupGet(r => r.Request.HasFormContentType).Returns(true); 326httpContext.Setup(r => r.Request.ReadFormAsync(It.IsAny<CancellationToken>())).Throws(exception); 361.Setup(hc => hc.Request.IsHttps) 367.SetupGet(hc => hc.Request.PathBase) 409.SetupGet(hc => hc.Request.PathBase) 412.SetupGet(hc => hc.Request.Path) 445.SetupGet(hc => hc.Request.PathBase) 448.SetupGet(hc => hc.Request.Path) 484.SetupGet(hc => hc.Request.PathBase) 487.SetupGet(hc => hc.Request.Path) 515context.Request.Headers.Cookie = $"{cookieName}={cookieValue}";
Microsoft.AspNetCore.Authentication (5)
AuthenticationHandler.cs (1)
40get => Context.Request;
AuthenticationMiddleware.cs (2)
44OriginalPath = context.Request.Path, 45OriginalPathBase = context.Request.PathBase
Events\BaseContext.cs (1)
48public HttpRequest Request => HttpContext.Request;
RequestPathBaseCookieBuilder.cs (1)
28var originalPathBase = context.Features.Get<IAuthenticationFeature>()?.OriginalPathBase ?? context.Request.PathBase;
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
51if (!Context.Request.IsHttps)
Microsoft.AspNetCore.Authentication.Cookies (3)
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (3)
95var requestCookies = context.Request.Cookies; 161var requestCookies = context.Request.Cookies; 236var requestCookies = context.Request.Cookies;
Microsoft.AspNetCore.Authentication.Negotiate.Test (12)
EventTests.cs (3)
444Assert.Equal("HTTP/1.1", context.Request.Protocol); // Not HTTP/2 461context.Request.Path = path; 464context.Request.Headers.Authorization = authorizationHeader;
NegotiateHandlerTests.cs (9)
273if (context.Request.Path.Equals("/error")) 409Assert.Equal("HTTP/1.1", context.Request.Protocol); 416Assert.Equal("HTTP/2", context.Request.Protocol); 429Assert.Equal("HTTP/1.1", context.Request.Protocol); // Not HTTP/2 443Assert.Equal("HTTP/1.1", context.Request.Protocol); // Not HTTP/2 455Assert.Equal("HTTP/1.1", context.Request.Protocol); // Not HTTP/2 484context.Request.Protocol = http2 ? "HTTP/2" : "HTTP/1.1"; 485context.Request.Path = path; 488context.Request.Headers.Authorization = authorizationHeader;
Microsoft.AspNetCore.Authentication.Test (37)
CertificateTests.cs (1)
820var request = context.Request;
CookieTests.cs (3)
1158Assert.Equal(new PathString("/base"), context.Request.PathBase); 1710if (context.Request.Path == "/signin") 1817var req = context.Request;
DynamicSchemeTests.cs (1)
139var req = context.Request;
GoogleTests.cs (5)
168var req = context.Request; 220var req = context.Request; 272var req = context.Request; 349var req = context.Request; 1154var req = context.Request;
JwtBearerTests.cs (8)
1174if (context.Request.Path == new PathString("/checkforerrors")) 1183else if (context.Request.Path == new PathString("/oauth")) 1204else if (context.Request.Path == new PathString("/token")) 1209else if (context.Request.Path == new PathString("/unauthorized")) 1215else if (context.Request.Path == new PathString("/forbidden")) 1220else if (context.Request.Path == new PathString("/signIn")) 1224else if (context.Request.Path == new PathString("/signOut")) 1228else if (context.Request.Path == new PathString("/expiration"))
JwtBearerTests_Handler.cs (8)
1206if (context.Request.Path == new PathString("/checkforerrors")) 1215else if (context.Request.Path == new PathString("/oauth")) 1236else if (context.Request.Path == new PathString("/token")) 1241else if (context.Request.Path == new PathString("/unauthorized")) 1247else if (context.Request.Path == new PathString("/forbidden")) 1252else if (context.Request.Path == new PathString("/signIn")) 1256else if (context.Request.Path == new PathString("/signOut")) 1260else if (context.Request.Path == new PathString("/expiration"))
MicrosoftAccountTests.cs (1)
365var req = context.Request;
OpenIdConnect\OpenIdConnectEventTests.cs (1)
28private readonly RequestDelegate AppWritePath = context => context.Response.WriteAsync(context.Request.Path);
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
28private readonly RequestDelegate AppWritePath = context => context.Response.WriteAsync(context.Request.Path);
OpenIdConnect\TestServerBuilder.cs (1)
72var req = context.Request;
PolicyTests.cs (2)
349p.ForwardDefaultSelector = c => c.Request.QueryString.Value.Substring(1); 472var req = context.Request;
TwitterTests.cs (1)
545var req = context.Request;
WsFederation\WsFederationTest.cs (2)
346context.HttpContext.Request.Path = new PathString("/AuthenticationFailed"); 384var authProperties = new AuthenticationProperties() { RedirectUri = context.Request.GetEncodedUrl() };
WsFederation\WsFederationTest_Handler.cs (2)
342context.HttpContext.Request.Path = new PathString("/AuthenticationFailed"); 380var authProperties = new AuthenticationProperties() { RedirectUri = context.Request.GetEncodedUrl() };
Microsoft.AspNetCore.Components.Endpoints (17)
Builder\OpaqueRedirection.cs (1)
54if (!httpContext.Request.Query.TryGetValue("url", out var protectedUrl))
RazorComponentEndpointInvoker.cs (7)
79form: result.HandlerName != null && context.Request.HasFormContentType ? await context.Request.ReadFormAsync() : null); 160var processPost = HttpMethods.IsPost(context.Request.Method) && 168if (context.Request.ContentType is not null && MediaTypeHeaderValue.TryParse(context.Request.ContentType, out var type)) 231await context.Request.ReadFormAsync(); 243if (context.Request.Form.TryGetValue("_handler", out var value))
Rendering\EndpointHtmlRenderer.cs (2)
79navigationManager?.Initialize(GetContextBaseUri(httpContext.Request), GetFullUri(httpContext.Request));
Rendering\EndpointHtmlRenderer.Prerendering.cs (2)
203else if (IsPossibleExternalDestination(httpContext.Request, navigationException.Location) 204&& IsProgressivelyEnhancedNavigation(httpContext.Request))
Rendering\EndpointHtmlRenderer.Streaming.cs (5)
28if (IsProgressivelyEnhancedNavigation(httpContext.Request)) 90!IsProgressivelyEnhancedNavigation(httpContext.Request)) 144var isEnhancedNavigation = IsProgressivelyEnhancedNavigation(_httpContext.Request); 223if (string.Equals(httpContext.Request.Method, "POST", StringComparison.OrdinalIgnoreCase)) 228if (IsProgressivelyEnhancedNavigation(httpContext.Request))
Microsoft.AspNetCore.Components.Endpoints.Tests (5)
EndpointHtmlRendererTest.cs (5)
1657context.Request.Scheme = "http"; 1658context.Request.Host = new HostString("localhost"); 1659context.Request.PathBase = "/base"; 1660context.Request.Path = "/path"; 1661context.Request.QueryString = QueryString.FromUriComponent("?query=value");
Microsoft.AspNetCore.Components.Server (3)
CircuitDisconnectMiddleware.cs (3)
34if (!HttpMethods.IsPost(context.Request.Method)) 56if (!context.Request.HasFormContentType) 61var form = await context.Request.ReadFormAsync();
Microsoft.AspNetCore.Components.WebAssembly.Server (10)
ComponentsWebAssemblyApplicationBuilderExtensions.cs (2)
42builder.MapWhen(ctx => ctx.Request.Path.StartsWithSegments(pathPrefix, out var rest) && rest.StartsWithSegments("/_framework") && 108var requestPath = fileContext.Context.Request.Path;
ContentEncodingNegotiator.cs (4)
41var accept = context.Request.Headers.AcceptEncoding; 90context.Request.Path = context.Request.Path + extension; 117_webHostEnvironment.WebRootFileProvider.GetFileInfo(context.Request.Path + extension).Exists;
TargetPickerUi.cs (2)
114var request = context.Request; 267var request = context.Request;
WebAssemblyNetDebugProxyAppBuilderExtensions.cs (2)
25var queryParams = HttpUtility.ParseQueryString(context.Request.QueryString.Value!); 40var requestPath = context.Request.Path.ToString();
Microsoft.AspNetCore.CookiePolicy (2)
ResponseCookiesWrapper.cs (2)
56var cookie = Context.Request.Cookies[Options.ConsentCookie.Name!]; 240if (Context.Request.IsHttps && !options.Secure)
Microsoft.AspNetCore.CookiePolicy.Test (19)
CookieChunkingTests.cs (9)
87context.Request.Headers["Cookie"] = new[] 118context.Request.Headers["Cookie"] = new[] 149context.Request.Headers["Cookie"] = new[] 170context.Request.Headers["Cookie"] = new[] 190context.Request.Headers["Cookie"] = new[] 211context.Request.Headers.Append("Cookie", "TestCookie=chunks-7;TestCookieC1=1;TestCookieC2=2;TestCookieC3=3;TestCookieC4=4;TestCookieC5=5;TestCookieC6=6;TestCookieC7=7"); 233context.Request.Headers.Append("Cookie", "TestCookie=chunks-7;TestCookieC1=1;TestCookieC2=2"); 251context.Request.Headers.Append("Cookie", "TestCookie=chunks-7;TestCookieC1=1;TestCookieC2=2;TestCookieC4=4"); 270httpContext.Request.Headers["Cookie"] = new[]
CookieConsentTests.cs (7)
132requestContext.Request.Headers.Cookie = ".AspNet.Consent=yes"; 155requestContext.Request.Headers.Cookie = ".AspNet.Consent=yes"; 178requestContext.Request.Headers.Cookie = ".AspNet.Consent=IAmATeapot"; 286requestContext.Request.Headers.Cookie = ".AspNet.Consent=yes"; 378requestContext.Request.Headers.Cookie = ".AspNet.Consent=yes"; 427requestContext.Request.Headers.Cookie = ".AspNet.Consent=yes"; 463requestContext.Request.Headers.Cookie = ".AspNet.Consent=yes";
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (3)
95var requestCookies = context.Request.Cookies; 161var requestCookies = context.Request.Cookies; 236var requestCookies = context.Request.Cookies;
Microsoft.AspNetCore.Cors (7)
Infrastructure\CorsMiddleware.cs (3)
107if (!context.Request.Headers.ContainsKey(CorsConstants.Origin)) 118var isOptionsRequest = HttpMethods.IsOptions(context.Request.Method); 120var isCorsPreflightRequest = isOptionsRequest && context.Request.Headers.ContainsKey(CorsConstants.AccessControlRequestMethod);
Infrastructure\CorsService.cs (4)
68var requestHeaders = context.Request.Headers; 71var isOptionsRequest = HttpMethods.IsOptions(context.Request.Method); 99var headers = context.Request.Headers; 119new[] { result.IsPreflightRequest ? headers.AccessControlRequestMethod.ToString() : context.Request.Method } :
Microsoft.AspNetCore.Diagnostics (20)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (6)
91Path = httpContext.Request.Path.ToString(), 182var headers = httpContext.Request.GetTypedHeaders(); 222foreach (var pair in httpContext.Request.Headers) 245headers: httpContext.Request.Headers, 246path: httpContext.Request.Path.ToString(), 342var request = context.Request;
ExceptionHandler\ExceptionHandlerMiddlewareImpl.cs (3)
141var originalPath = context.Request.Path; 144context.Request.Path = _options.ExceptionHandlingPath; 228context.Request.Path = originalPath;
src\Shared\Diagnostics\BaseView.cs (1)
64Request = Context.Request;
src\Shared\RazorViews\BaseView.cs (1)
83Request = Context.Request;
StatusCodePage\StatusCodePagesExtensions.cs (8)
102context.HttpContext.Response.Redirect(context.HttpContext.Request.PathBase + location); 175var originalPath = context.HttpContext.Request.Path; 176var originalQueryString = context.HttpContext.Request.QueryString; 183OriginalPathBase = context.HttpContext.Request.PathBase.Value!, 195context.HttpContext.Request.Path = newPath; 196context.HttpContext.Request.QueryString = newQueryString; 210context.HttpContext.Request.QueryString = originalQueryString; 211context.HttpContext.Request.Path = originalPath;
WelcomePage\WelcomePageMiddleware.cs (1)
40HttpRequest request = context.Request;
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (7)
DatabaseDeveloperPageExceptionFilter.cs (1)
81Model = new DatabaseErrorPageModel(dbException, contextDetails, _options, errorContext.HttpContext.Request.PathBase)
DatabaseErrorPageMiddleware.cs (1)
104Model = new DatabaseErrorPageModel(exception, new DatabaseContextDetails[] { details }, _options, httpContext.Request.PathBase)
MigrationsEndPointMiddleware.cs (3)
55if (context.Request.Path.Equals(_options.Path)) 65_logger.RequestPathMatched(context.Request.Path); 97var form = await context.Request.ReadFormAsync();
src\Shared\Diagnostics\BaseView.cs (1)
64Request = Context.Request;
src\Shared\RazorViews\BaseView.cs (1)
83Request = Context.Request;
Microsoft.AspNetCore.Diagnostics.HealthChecks (1)
Builder\HealthCheckApplicationBuilderExtensions.cs (1)
225(c.Request.Path.StartsWithSegments(path, out var remaining) &&
Microsoft.AspNetCore.Diagnostics.HealthChecks.Tests (5)
HealthCheckMiddlewareTests.cs (5)
713context.Connection.LocalPort = context.Request.Host.Port.Value; 751context.Connection.LocalPort = context.Request.Host.Port.Value; 789context.Connection.LocalPort = context.Request.Host.Port.Value; 825context.Connection.LocalPort = context.Request.Host.Port.Value; 869context.Connection.LocalPort = context.Request.Host.Port.Value;
Microsoft.AspNetCore.Diagnostics.Tests (12)
ExceptionHandlerMiddlewareTest.cs (3)
86httpContext.Request.RouteValues["John"] = "Doe"; 91Assert.Empty(context.Request.RouteValues); 108httpContext.Request.RouteValues["John"] = "Doe";
StatusCodeMiddlewareTest.cs (9)
44await httpContext.Response.WriteAsync(httpContext.Request.QueryString.Value); 50throw new InvalidOperationException($"Invalid input provided. {context.Request.Path}"); 85var beforeNext = context.Request.QueryString; 87var afterNext = context.Request.QueryString; 108httpContext.Request.QueryString.Value 148Assert.Empty(context.Request.RouteValues); 158httpContext.Request.RouteValues["John"] = "Doe"; 170httpContext.Request.QueryString.Value 214httpContext.Request.RouteValues["John"] = "Doe";
Microsoft.AspNetCore.Grpc.JsonTranscoding (13)
Internal\JsonRequestHelpers.cs (8)
205GrpcServerLog.UnsupportedRequestContentType(serverCallContext.Logger, serverCallContext.HttpContext.Request.ContentType); 206throw new InvalidOperationException($"Unable to read the request as JSON because the request content type '{serverCallContext.HttpContext.Request.ContentType}' is not a known JSON content type."); 209var (stream, usesTranscodingStream) = GetStream(serverCallContext.HttpContext.Request.Body, serverCallContext.RequestEncoding); 282var routeValue = serverCallContext.HttpContext.Request.RouteValues[parameterDescriptor.Key]; 289foreach (var item in serverCallContext.HttpContext.Request.Query) 322var contentType = serverCallContext.HttpContext.Request.ContentType; 341var contentLength = serverCallContext.HttpContext.Request.ContentLength.GetValueOrDefault(); 348using var fs = new FileBufferingReadStream(serverCallContext.HttpContext.Request.Body, memoryThreshold);
Internal\JsonTranscodingRouteAdapter.cs (2)
149values[i] = context.Request.RouteValues[variableParts[i]]; 160context.Request.RouteValues[fullPath] = finalValue;
Internal\JsonTranscodingServerCallContext.cs (3)
51IsJsonRequestContent = JsonRequestHelpers.HasJsonContentType(HttpContext.Request, out var charset); 64protected override string HostCore => HttpContext.Request.Host.Value ?? string.Empty; 147foreach (var header in HttpContext.Request.Headers)
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
UnaryServerCallHandlerTests.cs (2)
1603httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 1620httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues>
Microsoft.AspNetCore.HeaderPropagation (1)
HeaderPropagationMiddleware.cs (1)
71context.Request.Headers.TryGetValue(entry.InboundHeaderName, out var value);
Microsoft.AspNetCore.HostFiltering (3)
HostFilteringMiddleware.cs (3)
84var host = context.Request.Headers.Host.ToString(); 121_logger.RequestRejectedMissingHost(context.Request.Protocol); 125_logger.RequestAllowedMissingHost(context.Request.Protocol);
Microsoft.AspNetCore.HostFiltering.Tests (7)
HostFilteringMiddlewareTests.cs (7)
59ctx.Request.Headers.Remove(HeaderNames.Host); 65Assert.False(c.Request.Headers.TryGetValue(HeaderNames.Host, out var host)); 100ctx.Request.Headers.Host = ""; 106Assert.True(c.Request.Headers.TryGetValue(HeaderNames.Host, out var host)); 157ctx.Request.Headers.Host = hosturl; 209ctx.Request.Headers.Host = hosturl; 248ctx.Request.Headers.Host = currentHost;
Microsoft.AspNetCore.Hosting (30)
Internal\HostingApplicationDiagnostics.cs (15)
63context.MetricsTagsFeature.Method = httpContext.Request.Method; 64context.MetricsTagsFeature.Protocol = httpContext.Request.Protocol; 65context.MetricsTagsFeature.Scheme = httpContext.Request.Scheme; 328[DynamicDependency(nameof(HttpContext.Request), typeof(HttpContext))] 349[DynamicDependency(nameof(HttpContext.Request), typeof(HttpContext))] 372_eventSource.RequestStart(httpContext.Request.Method, httpContext.Request.Path); 378_metrics.RequestStart(httpContext.Request.Scheme, httpContext.Request.Method); 386var headers = httpContext.Request.Headers; 489[DynamicDependency(nameof(HttpContext.Request), typeof(HttpContext))] 564_path = (httpContext.Request.PathBase.HasValue 565? httpContext.Request.PathBase + httpContext.Request.Path 566: httpContext.Request.Path).ToString();
Internal\HostingRequestFinishedLog.cs (2)
30var request = _context.HttpContext.Request; 64var request = _context.HttpContext.Request;
Internal\HostingRequestStartingLog.cs (1)
40_request = httpContext.Request;
Internal\HostingRequestUnhandledLog.cs (11)
230 => new KeyValuePair<string, object?>(nameof(_httpContext.Request.Method), _httpContext.Request.Method), 241 => new KeyValuePair<string, object?>(nameof(_httpContext.Request.Scheme), _httpContext.Request.Scheme), 252 => new KeyValuePair<string, object?>(nameof(_httpContext.Request.Host), _httpContext.Request.Host), 263 => new KeyValuePair<string, object?>(nameof(_httpContext.Request.PathBase), _httpContext.Request.PathBase), 274 => new KeyValuePair<string, object?>(nameof(_httpContext.Request.Path), _httpContext.Request.Path), 42var request = _httpContext.Request;
src\Shared\RazorViews\BaseView.cs (1)
83Request = Context.Request;
Microsoft.AspNetCore.Hosting.Tests (2)
Internal\HostingRequestStartLogTests.cs (1)
28mockContext.Setup(context => context.Request).Returns(mockRequest.Object);
WebHostTests.cs (1)
946capturedRequest = httpContext.Request;
Microsoft.AspNetCore.Http (10)
Features\RequestBodyPipeFeature.cs (3)
36!ReferenceEquals(_streamInstanceWhenWrapped, _context.Request.Body)) 38_streamInstanceWhenWrapped = _context.Request.Body; 39_internalPipeReader = PipeReader.Create(_context.Request.Body, _defaultReaderOptions);
src\Shared\Debugger\HttpContextDebugFormatter.cs (7)
56if (!string.IsNullOrEmpty(context.Request.Method)) 58sb.Append(context.Request.Method); 61GetRequestUrl(sb, context.Request, includeQueryString: false); 62if (!string.IsNullOrEmpty(context.Request.Protocol)) 65sb.Append(context.Request.Protocol); 67if (!string.IsNullOrEmpty(context.Request.ContentType)) 70sb.Append(context.Request.ContentType);
Microsoft.AspNetCore.Http.Abstractions.Tests (24)
MapPathMiddlewareTests.cs (18)
15context.Items["test.PathBase"] = context.Request.PathBase.Value; 16context.Items["test.Path"] = context.Request.Path.Value; 63Assert.Equal(basePath, context.Request.PathBase.Value); 64Assert.Equal(requestPath, context.Request.Path.Value); 152Assert.Equal(basePath, context.Request.PathBase.Value); 153Assert.Equal(requestPath, context.Request.Path.Value); 174Assert.Equal(basePath, context.Request.PathBase.Value); 175Assert.Equal(requestPath, context.Request.Path.Value); 196Assert.Equal(string.Empty, context.Request.PathBase.Value); 197Assert.Equal("/route1/subroute1", context.Request.Path.Value); 202Assert.Equal(string.Empty, context.Request.PathBase.Value); 203Assert.Equal("/route2", context.Request.Path.Value); 208Assert.Equal(string.Empty, context.Request.PathBase.Value); 209Assert.Equal("/route2/subroute2", context.Request.Path.Value); 214Assert.Equal(string.Empty, context.Request.PathBase.Value); 215Assert.Equal("/route2/subroute2/subsub2", context.Request.Path.Value); 241context.Request.PathBase = new PathString(basePath); 242context.Request.Path = new PathString(requestPath);
UsePathBaseExtensionsTests.cs (6)
216context.Items["test.Path"] = context.Request.Path; 217context.Items["test.PathBase"] = context.Request.PathBase; 227Assert.Equal(pathBase, requestContext.Request.PathBase.Value); 228Assert.Equal(requestPath, requestContext.Request.Path.Value); 234context.Request.PathBase = new PathString(pathBase); 235context.Request.Path = new PathString(requestPath);
Microsoft.AspNetCore.Http.Connections (10)
Internal\HttpConnectionDispatcher.cs (10)
79if (HttpMethods.IsPost(context.Request.Method)) 84else if (HttpMethods.IsGet(context.Request.Method) || HttpMethods.IsConnect(context.Request.Method)) 89else if (HttpMethods.IsDelete(context.Request.Method)) 108if (HttpMethods.IsPost(context.Request.Method)) 131var headers = context.Request.GetTypedHeaders(); 341if (context.Request.Query.TryGetValue("NegotiateVersion", out var queryStringVersion)) 368if (options.AllowStatefulReconnects == true && context.Request.Query.TryGetValue("UseStatefulReconnect", out var useStatefulReconnectValue)) 447private static StringValues GetConnectionToken(HttpContext context) => context.Request.Query["id"]; 488await context.Request.Body.CopyToAsync(connection.ApplicationStream, bufferSize);
Microsoft.AspNetCore.Http.Connections.Tests (10)
HttpConnectionDispatcherTests.cs (10)
816Assert.Equal(3, connectionHttpContext.Request.Query.Count); 817Assert.Equal("value", connectionHttpContext.Request.Query["another"]); 819Assert.Equal(3, connectionHttpContext.Request.Headers.Count); 820Assert.Equal("h1", connectionHttpContext.Request.Headers["header1"]); 821Assert.Equal("h2", connectionHttpContext.Request.Headers["header2"]); 822Assert.Equal("h3", connectionHttpContext.Request.Headers["header3"]); 3242var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.Request.Query["user"]) }; 3306new Claim(ClaimTypes.NameIdentifier, context.Request.Query["user"]) 3404var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.Request.Query["user"]) }; 3758context.Request.Headers["Accept"] = "text/event-stream";
Microsoft.AspNetCore.Http.Extensions (10)
DefaultProblemDetailsWriter.cs (1)
29var acceptHeader = httpContext.Request.Headers.Accept.GetList<MediaTypeHeaderValue>();
HttpRequestJsonExtensions.cs (2)
319return (httpContext.Request.Body, false); 322var inputStream = Encoding.CreateTranscodingStream(httpContext.Request.Body, encoding, Encoding.UTF8, leaveOpen: true);
RequestDelegateFactory.cs (7)
94private static readonly MemberExpression HttpRequestExpr = Expression.Property(HttpContextExpr, typeof(HttpContext).GetProperty(nameof(HttpContext.Request))!); 1361if (!httpContext.Request.HasJsonContentType()) 1363Log.UnexpectedJsonContentType(httpContext, httpContext.Request.ContentType, throwOnBadRequest); 1369bodyValue = await httpContext.Request.ReadFromJsonAsync(jsonTypeInfo); 1492if (!httpContext.Request.HasFormContentType) 1494Log.UnexpectedNonFormContentType(httpContext, httpContext.Request.ContentType, throwOnBadRequest); 1501formValue = await httpContext.Request.ReadFormAsync();
Microsoft.AspNetCore.Http.Extensions.Tests (304)
ParameterBindingMethodCacheTests.cs (4)
1082if (!int.TryParse(context.Request.Headers.ETag, out var val)) 1098if (!int.TryParse(context.Request.Headers.ETag, out var val)) 1117if (!int.TryParse(context.Request.Headers.ETag, out var val)) 1130if (!int.TryParse(context.Request.Headers.ETag, out var val))
RequestDelegateFactoryTests.cs (11)
420if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 441if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 457if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 480if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 498if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 514if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 533if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 546if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 564if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 3539var body = await JsonSerializer.DeserializeAsync<JsonTodo>(context.Request.Body); 3540context.Request.Body.Position = 0;
RequestDelegateGenerator\CompileTimeCreationTests.cs (6)
145httpContext.Request.RouteValues["id"] = i.ToString(CultureInfo.InvariantCulture); 408httpContext.Request.QueryString = QueryString.Create("value", endpoint.DisplayName); 523httpContext.Request.QueryString = httpContext.Request.QueryString.Add(QueryString.Create(value, value)); 526httpContext.Request.Headers[value] = value; 529httpContext.Request.RouteValues[value] = value;
RequestDelegateGenerator\RequestDelegateCreationTestBase.cs (3)
223httpContext.Request.Headers["Content-Type"] = "application/json"; 227httpContext.Request.Body = stream; 228httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
RequestDelegateGenerator\RequestDelegateCreationTests.Arrays.cs (35)
35httpContext.Request.QueryString = new QueryString("?p=1&p=1"); 56httpContext.Request.Headers.Add("p", new StringValues(new string[] { "1", "1" })); 77httpContext.Request.Headers.Add("p", new StringValues(new string[] { "1", "1" })); 98httpContext.Request.Headers.Add("p", new StringValues(new string[] { "1", "1" })); 171httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 196httpContext.Request.QueryString = new QueryString("?p=1&p=1"); 217httpContext.Request.QueryString = new QueryString("?p=Item1&p=Item2"); 238httpContext.Request.QueryString = new QueryString("?p=Item1&p=Item2"); 279httpContext.Request.QueryString = new QueryString("?p=&p="); 300httpContext.Request.QueryString = new QueryString("?p=Item1&p=Item2"); 321httpContext.Request.QueryString = new QueryString("?p=Item1&p=Item2"); 342httpContext.Request.QueryString = new QueryString("?p=Item1&p=Item2"); 364httpContext.Request.Headers["Content-Type"] = "application/json"; 367httpContext.Request.Body = stream; 368httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 369httpContext.Request.QueryString = new QueryString("?p=ValueFromQueryString"); 391httpContext.Request.Headers["Content-Type"] = "application/json"; 394httpContext.Request.Body = stream; 395httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 396httpContext.Request.QueryString = new QueryString("?p=ValueFromQueryString"); 418httpContext.Request.Headers["Content-Type"] = "application/json"; 421httpContext.Request.Body = stream; 422httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 423httpContext.Request.QueryString = new QueryString("?p=ValueFromQueryString"); 445httpContext.Request.Headers["Content-Type"] = "application/json"; 448httpContext.Request.Body = stream; 449httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 450httpContext.Request.QueryString = new QueryString("?p=ValueFromQueryString"); 472httpContext.Request.Headers["Content-Type"] = "application/json"; 475httpContext.Request.Body = stream; 476httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 477httpContext.Request.QueryString = new QueryString("?p=ValueFromQueryString"); 501httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 506httpContext.Request.Headers["Custom"] = new(new[] { "4", "5", "6" }); 508httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTests.AsParameters.cs (11)
28httpContext.Request.RouteValues["value"] = originalRouteParam.ToString(NumberFormatInfo.InvariantInfo); 68httpContext.Request.Query = query; 96httpContext.Request.Headers[customHeaderName] = originalHeaderParam.ToString(NumberFormatInfo.InvariantInfo); 200httpContext.Request.RouteValues[paramName] = originalRouteParam.ToString(NumberFormatInfo.InvariantInfo); 280httpContext.Request.RouteValues[nameof(ParameterListWithReadOnlyProperties.Value)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo); 281httpContext.Request.RouteValues[nameof(ParameterListWithReadOnlyProperties.ConstantValue)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo); 282httpContext.Request.RouteValues[nameof(ParameterListWithReadOnlyProperties.ReadOnlyValue)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo); 283httpContext.Request.RouteValues[nameof(ParameterListWithReadOnlyProperties.PrivateSetValue)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo); 313httpContext.Request.RouteValues[nameof(SampleParameterList.Foo)] = foo.ToString(NumberFormatInfo.InvariantInfo); 314httpContext.Request.RouteValues[nameof(AdditionalSampleParameterList.Bar)] = bar.ToString(NumberFormatInfo.InvariantInfo); 340httpContext.Request.Headers.Referer = uriValue;
RequestDelegateGenerator\RequestDelegateCreationTests.BindAsync.cs (12)
57httpContext.Request.Headers.Referer = "https://example.org"; 78httpContext.Request.Headers.Referer = "https://example.org"; 178httpContext.Request.Headers.Referer = "https://example.org"; 195httpContext.Request.Headers.Referer = "https://example.org"; 213httpContext.Request.Body = stream; 215httpContext.Request.Headers["Content-Type"] = "application/json"; 216httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 233httpContext.Request.Headers.Referer = "https://example.org"; 269httpContext.Request.Body = stream; 271httpContext.Request.Headers["Content-Type"] = "application/json"; 272httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 289httpContext.Request.Headers.Referer = "https://example.org";
RequestDelegateGenerator\RequestDelegateCreationTests.cs (15)
213httpContext.Request.Headers["headerValue"] = requestData; 431httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 436httpContext.Request.Headers.Referer = "https://example.org"; 457httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 462httpContext.Request.Headers.Referer = "https://example.org"; 483httpContext.Request.Method = "GET"; 504httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 509httpContext.Request.Headers.Referer = "https://example.org"; 529httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 534httpContext.Request.Headers.Referer = "https://example.org"; 554httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 559httpContext.Request.Headers.Referer = "https://example.org"; 584httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 589httpContext.Request.Headers["Custom"] = new(new[] { "4", "5", "6" }); 591httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTests.Filters.cs (7)
62httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 141httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 183httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 234httpContext.Request.Body = stream; 235httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 299httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 340httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTests.Forms.cs (79)
35httpContext.Request.Body = stream; 36httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 41Assert.Equal(httpContext.Request.Form.Files, httpContext.Items["formFiles"]); 70httpContext.Request.Body = stream; 71httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 76Assert.Equal(httpContext.Request.Form.Files, httpContext.Items["formFiles"]); 105httpContext.Request.Body = stream; 106httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 111Assert.Equal(httpContext.Request.Form.Files["file"], httpContext.Items["formFiles"]); 143httpContext.Request.Body = stream; 144httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 149Assert.Equal(httpContext.Request.Form.Files["file"], httpContext.Items["formFiles"]); 181httpContext.Request.Body = stream; 182httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 187Assert.Equal(httpContext.Request.Form.Files["file1"], httpContext.Items["file1"]); 192Assert.Equal(httpContext.Request.Form.Files["file2"], httpContext.Items["file2"]); 222httpContext.Request.Body = stream; 223httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 228Assert.Equal(httpContext.Request.Form.Files["file1"], httpContext.Items["file1"]); 231Assert.Equal(httpContext.Request.Form.Files["file2"], httpContext.Items["file2"]); 259httpContext.Request.Body = stream; 260httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 265Assert.Equal(httpContext.Request.Form.Files["my_file"], httpContext.Items["formFiles"]); 295httpContext.Request.Body = stream; 296httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 302Assert.Equal(httpContext.Request.Form.Files["file"], httpContext.Items["formFiles"]); 322httpContext.Request.Headers["Content-Type"] = "application/xml"; 323httpContext.Request.Headers["Content-Length"] = "1"; 369httpContext.Request.Body = stream; 370httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 402httpContext.Request.Body = stream; 403httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 408Assert.Equal(httpContext.Request.Form.Files, httpContext.Items["formFiles"]); 412Assert.Equal(httpContext.Request.Form.Files["file"], httpContext.Items["file"]); 451httpContext.Request.Body = stream; 452httpContext.Request.Headers[headerName] = headerValue; 453httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 459Assert.Equal(httpContext.Request.Form.Files["file"], httpContext.Items["file"]); 491httpContext.Request.Body = stream; 492httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 504Assert.Equal(httpContext.Request.Form.Files["file"], httpContext.Items["file"]); 550httpContext.Request.Body = stream; 551httpContext.Request.Headers["Content-Type"] = contentType; 556Assert.Equal(httpContext.Request.Form, httpContext.Items["formFiles"]); 597httpContext.Request.Body = stream; 598httpContext.Request.Headers["Content-Type"] = contentType; 603Assert.Equal(httpContext.Request.Form, httpContext.Items["formFiles"]); 644httpContext.Request.Body = stream; 645httpContext.Request.Headers["Content-Type"] = contentType; 650Assert.Equal(httpContext.Request.Form["message"][0], httpContext.Items["message"]); 673httpContext.Request.Body = stream; 674httpContext.Request.Headers["Content-Type"] = contentType; 679Assert.Equal(httpContext.Request.Form["message"][0], httpContext.Items["message"]); 682Assert.Equal(httpContext.Request.Form["name"][0], httpContext.Items["name"]); 706httpContext.Request.Body = stream; 707httpContext.Request.Headers["Content-Type"] = contentType; 712Assert.Equal(httpContext.Request.Form["message"][0], httpContext.Items["message"]); 736httpContext.Request.Body = stream; 737httpContext.Request.Headers["Content-Type"] = contentType; 742Assert.Equal(httpContext.Request.Form["message"][0], httpContext.Items["message"]); 766httpContext.Request.Body = stream; 767httpContext.Request.Headers["Content-Type"] = contentType; 772Assert.Equal(httpContext.Request.Form["message"][0], httpContext.Items["message"]); 829httpContext.Request.Body = stream; 830httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 838Assert.Equal(httpContext.Request.Form.Files, formFilesArgument); 842Assert.Equal(httpContext.Request.Form, formArgument); 873httpContext.Request.Body = stream; 874httpContext.Request.Headers["Content-Type"] = contentType; 897httpContext.Request.Form = new FormCollection(new Dictionary<string, StringValues> 930httpContext.Request.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 931httpContext.Request.Headers["Content-Length"] = "1"; 932httpContext.Request.Body = new ExceptionThrowingRequestBodyStream(ioException); 962httpContext.Request.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 963httpContext.Request.Headers["Content-Length"] = "2049"; 964httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes(new string('x', 2049))); 999httpContext.Request.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 1000httpContext.Request.Headers["Content-Length"] = "2049"; 1001httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes(new string('x', 2049)));
RequestDelegateGenerator\RequestDelegateCreationTests.JsonBody.cs (40)
86httpContext.Request.Headers["Content-Type"] = "application/json"; 90httpContext.Request.Body = stream; 91httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 106httpContext.Request.Headers["Content-Type"] = "application/json"; 107httpContext.Request.Headers["Content-Length"] = "0"; 233httpContext.Request.Body = stream; 234httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 239Assert.Same(httpContext.Request.Body, stream); 242httpContext.Request.Body.Position = 0; 244int read = await httpContext.Request.Body.ReadAsync(data.AsMemory()); 248httpContext.Request.Body.Position = 0; 249var result = await httpContext.Request.BodyReader.ReadAsync(); 252httpContext.Request.BodyReader.AdvanceTo(result.Buffer.End); 274httpContext.Request.Body = stream; 275httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture); 280Assert.Same(httpContext.Request.Body, stream); 283httpContext.Request.Body.Position = 0; 285int read = await httpContext.Request.Body.ReadAsync(data.AsMemory()); 289httpContext.Request.Body.Position = 0; 290var result = await httpContext.Request.BodyReader.ReadAsync(); 293httpContext.Request.BodyReader.AdvanceTo(result.Buffer.End); 317httpContext.Request.Body = stream; 319httpContext.Request.Headers["Content-Length"] = requestBodyBytes.Length.ToString(CultureInfo.InvariantCulture); 324Assert.Same(httpContext.Request.Body, stream); 325Assert.Same(httpContext.Request.BodyReader, pipeReader); 328int read = await httpContext.Request.Body.ReadAsync(new byte[requestBodyBytes.Length].AsMemory()); 331var result = await httpContext.Request.BodyReader.ReadAsync(); 334httpContext.Request.BodyReader.AdvanceTo(result.Buffer.End); 358httpContext.Request.Body = stream; 360httpContext.Request.Headers["Content-Length"] = requestBodyBytes.Length.ToString(CultureInfo.InvariantCulture); 365Assert.Same(httpContext.Request.Body, stream); 366Assert.Same(httpContext.Request.BodyReader, pipeReader); 369int read = await httpContext.Request.Body.ReadAsync(new byte[requestBodyBytes.Length].AsMemory()); 372var result = await httpContext.Request.BodyReader.ReadAsync(); 375httpContext.Request.BodyReader.AdvanceTo(result.Buffer.End); 398httpContext.Request.Headers["Content-Type"] = "application/json"; 399httpContext.Request.Headers["Content-Length"] = "0"; 427httpContext.Request.Headers["Content-Type"] = "application/json"; 431httpContext.Request.Body = stream; 432httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
RequestDelegateGenerator\RequestDelegateCreationTests.JsonBodyOrService.cs (2)
198httpContext.Request.Headers["Content-Type"] = "application/json"; 199httpContext.Request.Headers["Content-Length"] = "0";
RequestDelegateGenerator\RequestDelegateCreationTests.Logging.cs (24)
36httpContext.Request.Form = new FormCollection(null); 98httpContext.Request.RouteValues["tryParsable"] = "invalid!"; 99httpContext.Request.RouteValues["tryParsable2"] = "invalid again!"; 149httpContext.Request.RouteValues["tryParsable"] = "invalid!"; 150httpContext.Request.RouteValues["tryParsable2"] = "invalid again!"; 186httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues>() 384httpContext.Request.Headers["Content-Type"] = "application/xml"; 385httpContext.Request.Headers["Content-Length"] = "1"; 435httpContext.Request.Headers["Content-Type"] = "application/xml"; 481httpContext.Request.Headers["Content-Type"] = "application/json"; 482httpContext.Request.Headers["Content-Length"] = "1"; 483httpContext.Request.Body = new ExceptionThrowingRequestBodyStream(ioException); 517httpContext.Request.Headers["Content-Type"] = "application/json"; 518httpContext.Request.Headers["Content-Length"] = "1"; 519httpContext.Request.Body = new ExceptionThrowingRequestBodyStream(jsonException); 558httpContext.Request.Headers["Content-Type"] = "application/json"; 559httpContext.Request.Headers["Content-Length"] = "1"; 560httpContext.Request.Body = new ExceptionThrowingRequestBodyStream(jsonException); 597httpContext.Request.Headers["Content-Type"] = "application/json"; 598httpContext.Request.Headers["Content-Length"] = "1"; 599httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes("{")); 637httpContext.Request.Headers["Content-Type"] = "application/json"; 638httpContext.Request.Headers["Content-Length"] = "1"; 639httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes("{"));
RequestDelegateGenerator\RequestDelegateCreationTests.QueryParameters.cs (4)
54httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues> 100httpContext.Request.QueryString = new QueryString("?p="); 121httpContext.Request.QueryString = new QueryString("?p1=Hello&p2=world!"); 178httpContext.Request.QueryString = new QueryString($"?{name}=test");
RequestDelegateGenerator\RequestDelegateCreationTests.RouteParameter.cs (10)
53httpContext.Request.RouteValues["routeValue"] = requestData; 113httpContext.Request.RouteValues["value"] = expectedBody; 118httpContext.Request.QueryString = new QueryString($"?value={expectedBody}"); 135httpContext.Request.RouteValues["value"] = "fromRoute"; 136httpContext.Request.QueryString = new QueryString($"?value=fromQuery"); 152httpContext.Request.RouteValues["value"] = "fromRoute"; 153httpContext.Request.QueryString = new QueryString($"?value=fromQuery"); 186httpContext.Request.RouteValues[routeParameterName] = "test"; 202httpContext.Request.RouteValues[unmatchedName] = unmatchedRouteParam.ToString(NumberFormatInfo.InvariantInfo); 226httpContext.Request.RouteValues[paramName] = originalRouteParam.ToString(NumberFormatInfo.InvariantInfo);
RequestDelegateGenerator\RequestDelegateCreationTests.SpecialTypes.cs (2)
103Assert.Equal(httpContext.Request, httpContext.Items["arg"]); 149Assert.Same(httpContext.Request, httpContext.Items["request"]);
RequestDelegateGenerator\RequestDelegateCreationTests.TryParse.cs (10)
78httpContext.Request.QueryString = new QueryString($"?p={UrlEncoder.Default.Encode(queryStringInput)}"); 116httpContext.Request.QueryString = new QueryString($"?time={UrlEncoder.Default.Encode(queryStringInput)}"); 148httpContext.Request.QueryString = new QueryString($"?time={UrlEncoder.Default.Encode(queryStringInput)}"); 173httpContext.Request.QueryString = new QueryString("?p=1"); 196httpContext.Request.QueryString = new QueryString("?p=1"); 212httpContext.Request.QueryString = new QueryString("?p=1"); 237httpContext.Request.QueryString = new QueryString("?p=Done"); 257httpContext.Request.RouteValues["tryParsable"] = routeValue; 277httpContext.Request.RouteValues["myBindAsyncRecord"] = "foo"; 278httpContext.Request.Query = new QueryCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RuntimeCreationTests.ComplexFormBinding.cs (14)
30httpContext.Request.Body = stream; 31httpContext.Request.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 66httpContext.Request.Body = stream; 67httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 98httpContext.Request.Body = stream; 99httpContext.Request.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 135httpContext.Request.Body = stream; 136httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 172httpContext.Request.Body = stream; 173httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary"; 207httpContext.Request.Body = stream; 208httpContext.Request.Headers["Content-Type"] = "application/x-www-form-urlencoded"; 244httpContext.Request.Body = stream; 245httpContext.Request.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
RequestDelegateGenerator\SharedTypes.cs (15)
92var body = await JsonSerializer.DeserializeAsync<JsonTodo>(context.Request.Body); 93context.Request.Body.Position = 0; 207var body = await context.Request.ReadFromJsonAsync<CustomTodo>(); 208context.Request.Body.Position = 0; 226if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 253if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 278if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 305if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 322if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 338if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 359if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 392if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 426if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 450if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 1107return new BindableStruct(httpContext.Request.Query["value"].ToString());
Microsoft.AspNetCore.Http.Microbenchmarks (18)
src\Http\Http.Extensions\test\RequestDelegateGenerator\RequestDelegateCreationTestBase.cs (3)
223httpContext.Request.Headers["Content-Type"] = "application/json"; 227httpContext.Request.Body = stream; 228httpContext.Request.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
src\Http\Http.Extensions\test\RequestDelegateGenerator\SharedTypes.cs (15)
92var body = await JsonSerializer.DeserializeAsync<JsonTodo>(context.Request.Body); 93context.Request.Body.Position = 0; 207var body = await context.Request.ReadFromJsonAsync<CustomTodo>(); 208context.Request.Body.Position = 0; 226if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 253if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 278if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 305if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 322if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 338if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 359if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 392if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 426if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 450if (!Uri.TryCreate(context.Request.Headers.Referer, UriKind.Absolute, out var uri)) 1107return new BindableStruct(httpContext.Request.Query["value"].ToString());
Microsoft.AspNetCore.Http.Results (6)
src\Shared\RangeHelper\RangeHelper.cs (3)
18/// Provides a parser for the Range Header in an <see cref="HttpContext.Request"/>. 23/// Returns the normalized form of the requested range if the Range Header in the <see cref="HttpContext.Request"/> is valid. 40var rawRangeHeader = context.Request.Headers.Range;
src\Shared\ResultsHelpers\FileResultHelper.cs (2)
99var request = httpContext.Request; 294var serveBody = !HttpMethods.IsHead(httpContext.Request.Method);
src\Shared\ResultsHelpers\SharedUrlHelper.cs (1)
23var applicationPath = httpContext.Request.PathBase;
Microsoft.AspNetCore.Http.Results.Tests (83)
src\Shared\ResultsTests\FileContentResultTestBase.cs (18)
62var requestHeaders = httpContext.Request.GetTypedHeaders(); 68httpContext.Request.Method = HttpMethods.Get; 101var requestHeaders = httpContext.Request.GetTypedHeaders(); 108httpContext.Request.Method = HttpMethods.Get; 140var requestHeaders = httpContext.Request.GetTypedHeaders(); 147httpContext.Request.Method = HttpMethods.Get; 174var requestHeaders = httpContext.Request.GetTypedHeaders(); 181httpContext.Request.Method = HttpMethods.Get; 211httpContext.Request.Headers.Range = rangeString; 212httpContext.Request.Method = HttpMethods.Get; 242httpContext.Request.Headers.Range = rangeString; 243httpContext.Request.Method = HttpMethods.Get; 274var requestHeaders = httpContext.Request.GetTypedHeaders(); 279httpContext.Request.Headers.Range = "bytes = 0-6"; 280httpContext.Request.Method = HttpMethods.Get; 308var requestHeaders = httpContext.Request.GetTypedHeaders(); 313httpContext.Request.Headers.Range = "bytes = 0-6"; 314httpContext.Request.Method = HttpMethods.Get;
src\Shared\ResultsTests\FileStreamResultTestBase.cs (21)
40var requestHeaders = httpContext.Request.GetTypedHeaders(); 46httpContext.Request.Method = HttpMethods.Get; 82var requestHeaders = httpContext.Request.GetTypedHeaders(); 89httpContext.Request.Method = HttpMethods.Get; 123var requestHeaders = httpContext.Request.GetTypedHeaders(); 130httpContext.Request.Method = HttpMethods.Get; 160var requestHeaders = httpContext.Request.GetTypedHeaders(); 167httpContext.Request.Method = HttpMethods.Get; 199httpContext.Request.Headers.Range = rangeString; 200httpContext.Request.Method = HttpMethods.Get; 232httpContext.Request.Headers.Range = rangeString; 233httpContext.Request.Method = HttpMethods.Get; 266var requestHeaders = httpContext.Request.GetTypedHeaders(); 271httpContext.Request.Headers.Range = "bytes = 0-6"; 272httpContext.Request.Method = HttpMethods.Get; 302var requestHeaders = httpContext.Request.GetTypedHeaders(); 307httpContext.Request.Headers.Range = "bytes = 0-6"; 308httpContext.Request.Method = HttpMethods.Get; 343var requestHeaders = httpContext.Request.GetTypedHeaders(); 349httpContext.Request.Method = HttpMethods.Get; 428httpContext.Request.Method = "HEAD";
src\Shared\ResultsTests\PhysicalFileResultTestBase.cs (22)
42var requestHeaders = httpContext.Request.GetTypedHeaders(); 45httpContext.Request.Method = HttpMethods.Get; 74var requestHeaders = httpContext.Request.GetTypedHeaders(); 78httpContext.Request.Method = HttpMethods.Get; 106var requestHeaders = httpContext.Request.GetTypedHeaders(); 110httpContext.Request.Method = HttpMethods.Get; 133var requestHeaders = httpContext.Request.GetTypedHeaders(); 137httpContext.Request.Method = HttpMethods.Get; 162var requestHeaders = httpContext.Request.GetTypedHeaders(); 164httpContext.Request.Headers.Range = rangeString; 165httpContext.Request.Method = HttpMethods.Get; 188var requestHeaders = httpContext.Request.GetTypedHeaders(); 190httpContext.Request.Headers.Range = rangeString; 191httpContext.Request.Method = HttpMethods.Get; 217var requestHeaders = httpContext.Request.GetTypedHeaders(); 219httpContext.Request.Headers.Range = "bytes = 0-6"; 220httpContext.Request.Method = HttpMethods.Get; 244var requestHeaders = httpContext.Request.GetTypedHeaders(); 246httpContext.Request.Headers.Range = "bytes = 0-6"; 247httpContext.Request.Method = HttpMethods.Get; 298var requestHeaders = httpContext.Request.GetTypedHeaders(); 301httpContext.Request.Method = HttpMethods.Get;
src\Shared\ResultsTests\VirtualFileResultTestBase.cs (22)
54var requestHeaders = httpContext.Request.GetTypedHeaders(); 57httpContext.Request.Method = HttpMethods.Get; 92var requestHeaders = httpContext.Request.GetTypedHeaders(); 96httpContext.Request.Method = HttpMethods.Get; 129var requestHeaders = httpContext.Request.GetTypedHeaders(); 133httpContext.Request.Method = HttpMethods.Get; 162var requestHeaders = httpContext.Request.GetTypedHeaders(); 166httpContext.Request.Method = HttpMethods.Get; 197var requestHeaders = httpContext.Request.GetTypedHeaders(); 198httpContext.Request.Headers.Range = rangeString; 200httpContext.Request.Method = HttpMethods.Get; 230var requestHeaders = httpContext.Request.GetTypedHeaders(); 231httpContext.Request.Headers.Range = rangeString; 233httpContext.Request.Method = HttpMethods.Get; 267var requestHeaders = httpContext.Request.GetTypedHeaders(); 269httpContext.Request.Headers.Range = "bytes = 0-6"; 270httpContext.Request.Method = HttpMethods.Get; 298var requestHeaders = httpContext.Request.GetTypedHeaders(); 300httpContext.Request.Headers.Range = "bytes = 0-6"; 301httpContext.Request.Method = HttpMethods.Get; 333var requestHeaders = httpContext.Request.GetTypedHeaders(); 336httpContext.Request.Method = HttpMethods.Get;
Microsoft.AspNetCore.Http.Tests (2)
DefaultHttpContextTests.cs (2)
327TestCachedFeaturesAreNull(context.Request, features); 355TestCachedFeaturesAreSet(context.Request, features);
Microsoft.AspNetCore.HttpLogging (3)
HttpLoggingMiddleware.cs (2)
109var request = context.Request; 279context.Request.Body = originalBody;
W3CLoggingMiddleware.cs (1)
118var request = context.Request;
Microsoft.AspNetCore.HttpLogging.Tests (30)
HttpLoggingMiddlewareTests.cs (30)
124var res = await c.Request.Body.ReadAsync(arr); 155var res = await c.Request.Body.ReadAsync(arr); 187var res = await c.Request.Body.ReadAsync(arr); 219var res = await c.Request.Body.ReadAsync(arr); 250var res = await c.Request.Body.ReadAsync(arr); 319var res = await c.Request.Body.ReadAsync(arr); 348c.Request.Body.CopyTo(ms); 376await c.Request.Body.CopyToAsync(ms); 408var res = await c.Request.Body.ReadAsync(arr); 444var res = await c.Request.Body.ReadAsync(arr); 477var res = await c.Request.Body.ReadAsync(arr); 502_ = await c.Request.Body.ReadAsync(new byte[0]); 503var res = await c.Request.Body.ReadAsync(arr); 537var res = await c.Request.Body.ReadAsync(arr); 574var res = await c.Request.Body.ReadAsync(arr); 613var res = await c.Request.Body.ReadAsync(arr); 651var res = await c.Request.Body.ReadAsync(arr); 690var res = await c.Request.Body.ReadAsync(arr); 1510await c.Request.Body.DrainAsync(default); 1579await c.Request.Body.DrainAsync(default); 1927await c.Request.Body.ReadAsync(new byte[100]); 1993var res = await context.Request.Body.ReadAsync(arr); 2033await c.Request.Body.ReadAsync(new byte[100]); 2039await c.Request.Body.ReadAsync(new byte[100]); 2045await c.Request.Body.ReadAsync(new byte[100]); 2052await c.Request.Body.ReadAsync(new byte[100]); 2058await c.Request.Body.ReadAsync(new byte[100]); 2064await c.Request.Body.ReadAsync(new byte[100]); 2070await c.Request.Body.ReadAsync(new byte[100]); 2076await c.Request.Body.ReadAsync(new byte[100]);
Microsoft.AspNetCore.HttpOverrides (9)
CertificateForwardingMiddleware.cs (1)
49var header = httpContext.Request.Headers[_options.CertificateHeader];
ForwardedHeadersMiddleware.cs (2)
127var request = context.Request; 128var requestHeaders = context.Request.Headers;
HttpMethodOverrideMiddleware.cs (6)
38if (HttpMethods.IsPost(context.Request.Method)) 42if (context.Request.HasFormContentType) 49var xHttpMethodOverrideValue = context.Request.Headers[xHttpMethodOverride]; 52context.Request.Method = xHttpMethodOverrideValue.ToString(); 61var form = await context.Request.ReadFormAsync(); 65context.Request.Method = methodType.ToString();
Microsoft.AspNetCore.HttpOverrides.Tests (106)
CertificateForwardingTest.cs (5)
71c.Request.Headers["X-Client-Cert"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData); 110c.Request.Headers["X-Client-Cert"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData); 148c.Request.Headers["X-ARR-ClientCert"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData); 186c.Request.Headers["not-the-right-header"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData); 224c.Request.Headers["X-Client-Cert"] = "OOPS" + Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData);
ForwardedHeadersMiddlewareTest.cs (95)
40c.Request.Headers["X-Forwarded-For"] = "11.111.111.11:9090"; 46Assert.False(context.Request.Headers.ContainsKey("X-Original-For")); 48Assert.False(context.Request.Headers.ContainsKey("X-Forwarded-For")); 76c.Request.Headers["X-Forwarded-For"] = header; 83Assert.False(context.Request.Headers.ContainsKey("X-Original-For")); 84Assert.True(context.Request.Headers.ContainsKey("X-Forwarded-For")); 85Assert.Equal(header, context.Request.Headers["X-Forwarded-For"]); 134c.Request.Headers["X-Forwarded-For"] = header; 141Assert.Equal(remainingHeader, context.Request.Headers["X-Forwarded-For"].ToString()); 172c.Request.Headers["X-Forwarded-For"] = "10.0.0.1:1234"; 181Assert.True(context.Request.Headers.ContainsKey("X-Original-For")); 183context.Request.Headers["X-Original-For"]); 189Assert.False(context.Request.Headers.ContainsKey("X-Original-For")); 245c.Request.Headers["X-Forwarded-For"] = header; 277c.Request.Headers["X-Forwarded-For"] = "BAD-IP"; 306c.Request.Headers["X-Forwarded-Host"] = "testhost"; 309Assert.Equal("testhost", context.Request.Host.ToString()); 365Assert.Equal(hostHeader, context.Request.Host.ToString()); 378c.Request.Headers["X-Forwarded-Host"] = hostHeader; 450Assert.NotEqual(hostHeader, context.Request.Host.Value); 463c.Request.Headers["X-Forwarded-Host"] = hostHeader; 501Assert.Equal(hostHeader, context.Request.Headers.Host); 513ctx.Request.Headers["X-forwarded-Host"] = hostHeader; 552Assert.NotEqual<string>(hostHeader, context.Request.Headers.Host); 564ctx.Request.Headers["X-forwarded-Host"] = hostHeader; 588Assert.Equal("bar.foo.com:432", context.Request.Headers.Host); 600ctx.Request.Headers["X-forwarded-Host"] = "stuff:523, bar.foo.com:432, bar.com:80"; 636c.Request.Headers["X-Forwarded-Proto"] = header; 639Assert.Equal(expected, context.Request.Scheme); 677Assert.Equal(scheme, context.Request.Scheme); 690c.Request.Headers["X-Forwarded-Proto"] = scheme; 734Assert.Equal("http", context.Request.Scheme); 747c.Request.Headers["X-Forwarded-Proto"] = scheme; 785c.Request.Headers["X-Forwarded-Proto"] = protoHeader; 786c.Request.Headers["X-Forwarded-For"] = forHeader; 789Assert.Equal(expected, context.Request.Scheme); 827c.Request.Headers["X-Forwarded-Proto"] = protoHeader; 828c.Request.Headers["X-Forwarded-For"] = forHeader; 831Assert.Equal(expected, context.Request.Scheme); 877c.Request.Headers["X-Forwarded-Proto"] = protoHeader; 878c.Request.Headers["X-Forwarded-For"] = forHeader; 882Assert.Equal(expected, context.Request.Scheme); 918c.Request.Headers["X-Forwarded-Proto"] = "Protocol"; 919c.Request.Headers["X-Forwarded-For"] = "11.111.111.11"; 920c.Request.Headers["X-Forwarded-Host"] = "testhost"; 921c.Request.Headers["X-Forwarded-Prefix"] = "/pathbase"; 925Assert.Equal("testhost", context.Request.Host.ToString()); 926Assert.Equal("Protocol", context.Request.Scheme); 927Assert.Equal("/pathbase", context.Request.PathBase); 953c.Request.Headers["X-Forwarded-Proto"] = "Protocol"; 954c.Request.Headers["X-Forwarded-For"] = "11.111.111.11"; 955c.Request.Headers["X-Forwarded-Host"] = "otherhost"; 956c.Request.Headers["X-Forwarded-Prefix"] = "/pathbase"; 960Assert.Equal("localhost", context.Request.Host.ToString()); 961Assert.Equal("http", context.Request.Scheme); 962Assert.Equal(PathString.Empty, context.Request.PathBase); 988c.Request.Headers["X-Forwarded-Proto"] = "Protocol"; 989c.Request.Headers["X-Forwarded-For"] = "11.111.111.11"; 993Assert.Equal("localhost", context.Request.Host.ToString()); 994Assert.Equal("Protocol", context.Request.Scheme); 1042c.Request.Headers["X-Forwarded-For"] = forHeader; 1081c.Request.Headers["X-Forwarded-Proto"] = header; 1084Assert.Equal(expectedScheme, context.Request.Scheme); 1085Assert.Equal(remainingHeader, context.Request.Headers["X-Forwarded-Proto"].ToString()); 1118c.Request.Headers["X-Forwarded-Proto"] = header; 1121Assert.Equal(expectedScheme, context.Request.Scheme); 1122Assert.Equal(remainingHeader, context.Request.Headers["X-Forwarded-Proto"].ToString()); 1157c.Request.Headers["X-Forwarded-Prefix"] = forwardedPrefix; 1160Assert.Equal(expectedUnescapedPathBase, context.Request.PathBase.Value); 1162Assert.False(context.Request.Headers.ContainsKey("X-Original-Prefix")); 1164Assert.False(context.Request.Headers.ContainsKey("X-Forwarded-Prefix")); 1199c.Request.PathBase = new PathString(pathBase); 1200c.Request.Headers["X-Forwarded-Prefix"] = forwardedPrefix; 1203Assert.Equal(expectedUnescapedPathBase, context.Request.PathBase.Value); 1204Assert.Equal(expectedOriginalPrefix, context.Request.Headers["X-Original-Prefix"]); 1206Assert.False(context.Request.Headers.ContainsKey("X-Forwarded-Prefix")); 1235c.Request.Headers["X-Forwarded-Prefix"] = forwardedPrefix; 1238Assert.Equal(PathString.Empty, context.Request.PathBase); 1239Assert.False(context.Request.Headers.ContainsKey("X-Original-Prefix")); 1240Assert.True(context.Request.Headers.ContainsKey("X-Forwarded-Prefix")); 1279c.Request.Headers["X-Forwarded-For"] = forwardedFor; 1280c.Request.Headers["X-Forwarded-Host"] = forwardedHost; 1281c.Request.Headers["X-Forwarded-Proto"] = forwardedProto; 1282c.Request.Headers["X-Forwarded-Prefix"] = forwardedPrefix; 1285Assert.Equal(PathString.Empty, context.Request.PathBase); 1286Assert.False(context.Request.Headers.ContainsKey("X-Original-For")); 1287Assert.False(context.Request.Headers.ContainsKey("X-Original-Host")); 1288Assert.False(context.Request.Headers.ContainsKey("X-Original-Proto")); 1289Assert.False(context.Request.Headers.ContainsKey("X-Original-Prefix")); 1290Assert.True(context.Request.Headers.ContainsKey("X-Forwarded-For")); 1291Assert.True(context.Request.Headers.ContainsKey("X-Forwarded-Host")); 1292Assert.True(context.Request.Headers.ContainsKey("X-Forwarded-Proto")); 1293Assert.True(context.Request.Headers.ContainsKey("X-Forwarded-Prefix")); 1325c.Request.Headers["X-Forwarded-Prefix"] = forwardedPrefix; 1328Assert.Equal(expectedforwardedPrefix, context.Request.Headers["X-Forwarded-Prefix"].ToString());
HttpMethodOverrideMiddlewareTest.cs (6)
29Assert.Equal("DELETE", context.Request.Method); 59Assert.Equal("POST", context.Request.Method); 89Assert.Equal("GET", context.Request.Method); 122Assert.Equal("DELETE", context.Request.Method); 160Assert.Equal("POST", context.Request.Method); 197Assert.Equal("POST", context.Request.Method);
Microsoft.AspNetCore.HttpsPolicy (6)
HstsMiddleware.cs (3)
64if (!context.Request.IsHttps) 70if (IsHostExcluded(context.Request.Host.Host)) 72_logger.SkippingExcludedHost(context.Request.Host.Host);
HttpsRedirectionMiddleware.cs (3)
80if (context.Request.IsHttps) 91var host = context.Request.Host; 101var request = context.Request;
Microsoft.AspNetCore.Identity.InMemory.Test (1)
FunctionalTest.cs (1)
300var req = context.Request;
Microsoft.AspNetCore.Localization (3)
AcceptLanguageHeaderRequestCultureProvider.cs (1)
27var acceptLanguageHeader = httpContext.Request.GetTypedHeaders().AcceptLanguage;
CookieRequestCultureProvider.cs (1)
33var cookie = httpContext.Request.Cookies[CookieName];
QueryStringRequestCultureProvider.cs (1)
31var request = httpContext.Request;
Microsoft.AspNetCore.Localization.Tests (1)
CustomRequestCultureProviderTest.cs (1)
67var segments = context.Request.Path.Value.Split(new char[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
Microsoft.AspNetCore.Mvc.Core (63)
AcceptedAtActionResult.cs (1)
69var request = context.HttpContext.Request;
ActionConstraints\HttpMethodActionConstraint.cs (1)
68var request = context.RouteContext.HttpContext.Request;
ApplicationModels\DefaultApplicationModelProvider.cs (1)
35_supportsNonGetRequests = context => !HttpMethods.IsGet(context.HttpContext.Request.Method);
BindPropertyAttribute.cs (1)
86return !HttpMethods.IsGet(context.HttpContext.Request.Method);
ConsumesAttribute.cs (2)
114var requestContentType = context.HttpContext.Request.ContentType; 160var requestContentType = context.RouteContext.HttpContext.Request.ContentType;
ControllerBase.cs (1)
42public HttpRequest Request => HttpContext?.Request!;
CreatedAtActionResult.cs (1)
69var request = context.HttpContext.Request;
Filters\RequestFormLimitsFilter.cs (1)
40features.Set<IFormFeature>(new FormFeature(context.HttpContext.Request, FormOptions));
Formatters\FormatFilter.cs (1)
46var query = context.HttpContext.Request.Query["format"];
Formatters\InputFormatter.cs (2)
55var contentType = context.HttpContext.Request.ContentType; 98canHaveBody ??= context.HttpContext.Request.ContentLength != 0;
Formatters\SystemTextJsonInputFormatter.cs (2)
130return (httpContext.Request.Body, false); 133var inputStream = Encoding.CreateTranscodingStream(httpContext.Request.Body, encoding, Encoding.UTF8, leaveOpen: true);
Formatters\TextInputFormatter.cs (2)
43context.HttpContext.Request.ContentType); 84var requestContentType = context.HttpContext.Request.ContentType;
Formatters\TextOutputFormatter.cs (1)
172var request = context.HttpContext.Request;
Infrastructure\DefaultOutputFormatterSelector.cs (1)
72var request = context.HttpContext.Request;
ModelBinding\Binders\BodyModelBinder.cs (7)
136hasBody ??= httpContext.Request.ContentLength is not null && httpContext.Request.ContentLength == 0; 146var message = Resources.FormatUnsupportedContentType(httpContext.Request.ContentType); 206var contentType = formatterContext.HttpContext.Request.ContentType; 218var contentType = formatterContext.HttpContext.Request.ContentType; 230var contentType = formatterContext.HttpContext.Request.ContentType; 232if (formatterContext.HttpContext.Request.HasFormContentType)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
40var request = bindingContext.HttpContext.Request;
ModelBinding\Binders\FormFileModelBinder.cs (1)
140var request = bindingContext.HttpContext.Request;
ModelBinding\Binders\HeaderModelBinder.cs (3)
62var request = bindingContext.HttpContext.Request; 102var request = bindingContext.HttpContext.Request; 125var request = bindingContext.HttpContext.Request;
ModelBinding\FormFileValueProviderFactory.cs (1)
21var request = context.ActionContext.HttpContext.Request;
ModelBinding\FormValueProviderFactory.cs (2)
22var request = context.ActionContext.HttpContext.Request; 34var request = context.ActionContext.HttpContext.Request;
ModelBinding\JQueryFormValueProviderFactory.cs (2)
22var request = context.ActionContext.HttpContext.Request; 34var request = context.ActionContext.HttpContext.Request;
ModelBinding\JQueryQueryStringValueProviderFactory.cs (1)
20var query = context.ActionContext.HttpContext.Request.Query;
ModelBinding\QueryStringValueProviderFactory.cs (1)
21var query = context.ActionContext.HttpContext.Request.Query;
RequireHttpsAttribute.cs (3)
45if (!filterContext.HttpContext.Request.IsHttps) 66if (!HttpMethods.IsGet(filterContext.HttpContext.Request.Method)) 74var request = filterContext.HttpContext.Request;
Routing\ActionEndpointFactory.cs (1)
531routeData.PushState(router: null, context.Request.RouteValues, new RouteValueDictionary(dataTokens?.DataTokens));
Routing\ControllerRequestDelegateFactory.cs (2)
74routeData = new RouteData(context.Request.RouteValues); 79routeData.PushState(router: null, context.Request.RouteValues, dataTokens);
Routing\UrlHelperBase.cs (7)
60Protocol = ActionContext.HttpContext.Request.Scheme, 61Host = ActionContext.HttpContext.Request.Host.ToUriComponent() 131var pathBase = ActionContext.HttpContext.Request.PathBase; 149host = string.IsNullOrEmpty(host) ? ActionContext.HttpContext.Request.Host.Value : host; 211host = string.IsNullOrEmpty(host) ? ActionContext.HttpContext.Request.Host.Value : host; 305var applicationPath = httpContext.Request.PathBase; 470var pathBase = ActionContext.HttpContext.Request.PathBase;
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (3)
95var requestCookies = context.Request.Cookies; 161var requestCookies = context.Request.Cookies; 236var requestCookies = context.Request.Cookies;
src\Shared\RangeHelper\RangeHelper.cs (3)
18/// Provides a parser for the Range Header in an <see cref="HttpContext.Request"/>. 23/// Returns the normalized form of the requested range if the Range Header in the <see cref="HttpContext.Request"/> is valid. 40var rawRangeHeader = context.Request.Headers.Range;
src\Shared\ResultsHelpers\FileResultHelper.cs (2)
99var request = httpContext.Request; 294var serveBody = !HttpMethods.IsHead(httpContext.Request.Method);
src\Shared\ResultsHelpers\SharedUrlHelper.cs (1)
23var applicationPath = httpContext.Request.PathBase;
UrlHelperExtensions.cs (4)
529protocol = httpContext.Request.Scheme; 534host = httpContext.Request.Host.ToUriComponent(); 578protocol = httpContext.Request.Scheme; 583host = httpContext.Request.Host.ToUriComponent();
Microsoft.AspNetCore.Mvc.Core.Test (169)
ControllerBaseTest.cs (1)
3015httpContext.Setup(c => c.Request)
Controllers\ControllerBinderDelegateProviderTest.cs (2)
808controllerContext.HttpContext.Request.Method = "GET"; 871controllerContext.HttpContext.Request.Method = "POST";
FileResultHelperTest.cs (2)
405httpContext.Request.Headers.IfModifiedSince = HeaderUtilities.FormatDate(ifModifiedSince); 443httpContext.Request.Headers.IfUnmodifiedSince = HeaderUtilities.FormatDate(ifUnmodifiedSince);
Filters\RequestFormLimitsFilterTest.cs (3)
43var oldFormFeature = new FormFeature(authorizationFilterContext.HttpContext.Request); 66authorizationFilterContext.HttpContext.Request.Form = new FormCollection(null); 117new FormFeature(authorizationFilterContext.HttpContext.Request));
Formatters\FormatFilterTest.cs (9)
69httpContext.Setup(c => c.Request.Query.ContainsKey("format")).Returns(true); 70httpContext.Setup(c => c.Request.Query["format"]).Returns("xml"); 329httpContext.Setup(c => c.Request.Query["format"]).Returns("json"); 366httpContext.Setup(c => c.Request.Query["format"]).Returns("json"); 401httpContext.Setup(c => c.Request.Query.ContainsKey("format")).Returns(false); 436httpContext.Setup(c => c.Request.Query.ContainsKey("format")).Returns(false); 441httpContext.Setup(c => c.Request.Query.ContainsKey("format")).Returns(true); 442httpContext.Setup(c => c.Request.Query["format"]).Returns(format); 446httpContext.Setup(c => c.Request.Query.ContainsKey("format")).Returns(false);
Formatters\InputFormatterTest.cs (1)
421context.HttpContext.Request.ContentLength = 0;
Formatters\JsonInputFormatterTestBase.cs (7)
124Assert.True(httpContext.Request.Body.CanRead, "Verify that the request stream hasn't been disposed"); 546var testBufferedReadStream = new VerifyDisposeFileBufferingReadStream(httpContext.Request.Body, 1024); 547httpContext.Request.Body = testBufferedReadStream; 569httpContext.Request.EnableBuffering(); 579var requestBody = httpContext.Request.Body; 593httpContext.Request.EnableBuffering(); 594var requestBody = httpContext.Request.Body;
Formatters\TextInputFormatterTest.cs (8)
26context.HttpContext.Request.ContentType = "application/json;charset=utf-8"; 27context.HttpContext.Request.ContentLength = 1; 54context.HttpContext.Request.ContentLength = 1; 76context.HttpContext.Request.ContentType = "application/json;charset=" + charset; 100context.HttpContext.Request.ContentType = "application/json;charset=utf-8"; 126context.HttpContext.Request.ContentType = "application/json;charset=" + charset; 160context.HttpContext.Request.ContentType = "application/json;charset=\"" + charset + "\""; 194context.HttpContext.Request.ContentType = contentType;
Formatters\TextOutputFormatterTests.cs (1)
45httpContext.SetupGet(o => o.Request).Returns(httpRequest);
Infrastructure\ActionSelectorTest.cs (1)
1110httpContext.SetupGet(c => c.Request).Returns(request.Object);
Infrastructure\DefaultOutputFormatterSelectorTest.cs (8)
33context.HttpContext.Request.Headers.Accept = "application/xml"; // This will not be used 63context.HttpContext.Request.Headers.Accept = "application/xml"; // This will not be used 92context.HttpContext.Request.Headers.Accept = "application/xml"; // This will not be used 163context.HttpContext.Request.Headers.Accept = acceptHeader; 222context.HttpContext.Request.Headers.Accept = "text/custom,application/custom"; 257context.HttpContext.Request.Headers.Accept = "text/custom,application/custom"; 286context.HttpContext.Request.Headers.Accept = "text/custom"; 315context.HttpContext.Request.Headers.Accept = "text/custom, text/custom2";
Infrastructure\ObjectResultExecutorTest.cs (3)
99httpContext.Request.Headers.Accept = "application/xml"; // This will not be used 389actionContext.HttpContext.Request.Headers.Accept = acceptHeader; 426actionContext.HttpContext.Request.Headers.Accept = acceptHeader;
ModelBinding\Binders\BodyModelBinderTests.cs (2)
604bindingContext.HttpContext.Request.ContentType = "application/json"; 633bindingContext.HttpContext.Request.ContentType = "multipart/form-data";
ModelBinding\Binders\FormCollectionModelBinderTest.cs (2)
60httpContext.Setup(h => h.Request.ReadFormAsync(It.IsAny<CancellationToken>())) 62httpContext.Setup(h => h.Request.HasFormContentType).Returns(hasForm);
ModelBinding\Binders\FormFileModelBinderTest.cs (2)
475httpContext.Setup(h => h.Request.ReadFormAsync(It.IsAny<CancellationToken>())) 477httpContext.Setup(h => h.Request.HasFormContentType).Returns(true);
ModelBinding\Binders\HeaderModelBinderTests.cs (11)
28bindingContext.HttpContext.Request.Headers.Add(header, new[] { headerValue }); 50bindingContext.HttpContext.Request.Headers.Add(header, new[] { headerValue }); 77bindingContext.HttpContext.Request.Headers.Add(header, new[] { headerValue }); 96bindingContext.HttpContext.Request.Headers.Add("Header", new[] { headerValue }); 146bindingContext.HttpContext.Request.Headers.Add("Header", headerValue); 206bindingContext.HttpContext.Request.Headers.Add("Header", new[] { headerValue }); 223bindingContext.HttpContext.Request.Headers.Add("Header", "application/json,text/json"); 240bindingContext.HttpContext.Request.Headers.Add("Header", "application/json,text/json"); 264bindingContext.HttpContext.Request.Headers.Add("Header", "application/json,text/json"); 286bindingContext.HttpContext.Request.Headers.Add("Header", headerValue); 310bindingContext.HttpContext.Request.Headers.Add("Header", headerValue);
ModelBinding\FormFileValueProviderFactoryTest.cs (4)
48var files = (FormFileCollection)context.ActionContext.HttpContext.Request.Form.Files; 105context.Setup(c => c.Request.ContentType).Returns("application/x-www-form-urlencoded"); 106context.Setup(c => c.Request.HasFormContentType).Returns(true); 107context.Setup(c => c.Request.ReadFormAsync(It.IsAny<CancellationToken>())).ThrowsAsync(exception);
ModelBinding\FormValueProviderFactoryTest.cs (3)
93context.Setup(c => c.Request.ContentType).Returns("application/x-www-form-urlencoded"); 94context.Setup(c => c.Request.HasFormContentType).Returns(true); 95context.Setup(c => c.Request.ReadFormAsync(It.IsAny<CancellationToken>())).ThrowsAsync(exception);
ModelBinding\JQueryFormValueProviderFactoryTest.cs (3)
178context.Setup(c => c.Request.ContentType).Returns("application/x-www-form-urlencoded"); 179context.Setup(c => c.Request.HasFormContentType).Returns(true); 180context.Setup(c => c.Request.ReadFormAsync(It.IsAny<CancellationToken>())).ThrowsAsync(exception);
Routing\ControllerLinkGeneratorExtensionsTest.cs (5)
58httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 116httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 177httpContext.Request.Scheme = "http"; 178httpContext.Request.Host = new HostString("example.com"); 179httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?");
Routing\EndpointRoutingUrlHelperTest.cs (1)
56urlHelper.ActionContext.HttpContext.Request.RouteValues = new RouteValueDictionary
Routing\PageLinkGeneratorExtensionsTest.cs (5)
30httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 87httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 147httpContext.Request.Scheme = "http"; 148httpContext.Request.Host = new HostString("example.com"); 149httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?");
Routing\UrlHelperBaseTest.cs (2)
47UrlHelperBase.AppendPathAndFragment(builder, httpContext.Request.PathBase, virtualPath, string.Empty); 68UrlHelperBase.AppendPathAndFragment(builder, httpContext.Request.PathBase, virtualPath, fragmentValue);
src\Shared\ResultsTests\FileContentResultTestBase.cs (18)
62var requestHeaders = httpContext.Request.GetTypedHeaders(); 68httpContext.Request.Method = HttpMethods.Get; 101var requestHeaders = httpContext.Request.GetTypedHeaders(); 108httpContext.Request.Method = HttpMethods.Get; 140var requestHeaders = httpContext.Request.GetTypedHeaders(); 147httpContext.Request.Method = HttpMethods.Get; 174var requestHeaders = httpContext.Request.GetTypedHeaders(); 181httpContext.Request.Method = HttpMethods.Get; 211httpContext.Request.Headers.Range = rangeString; 212httpContext.Request.Method = HttpMethods.Get; 242httpContext.Request.Headers.Range = rangeString; 243httpContext.Request.Method = HttpMethods.Get; 274var requestHeaders = httpContext.Request.GetTypedHeaders(); 279httpContext.Request.Headers.Range = "bytes = 0-6"; 280httpContext.Request.Method = HttpMethods.Get; 308var requestHeaders = httpContext.Request.GetTypedHeaders(); 313httpContext.Request.Headers.Range = "bytes = 0-6"; 314httpContext.Request.Method = HttpMethods.Get;
src\Shared\ResultsTests\FileStreamResultTestBase.cs (21)
40var requestHeaders = httpContext.Request.GetTypedHeaders(); 46httpContext.Request.Method = HttpMethods.Get; 82var requestHeaders = httpContext.Request.GetTypedHeaders(); 89httpContext.Request.Method = HttpMethods.Get; 123var requestHeaders = httpContext.Request.GetTypedHeaders(); 130httpContext.Request.Method = HttpMethods.Get; 160var requestHeaders = httpContext.Request.GetTypedHeaders(); 167httpContext.Request.Method = HttpMethods.Get; 199httpContext.Request.Headers.Range = rangeString; 200httpContext.Request.Method = HttpMethods.Get; 232httpContext.Request.Headers.Range = rangeString; 233httpContext.Request.Method = HttpMethods.Get; 266var requestHeaders = httpContext.Request.GetTypedHeaders(); 271httpContext.Request.Headers.Range = "bytes = 0-6"; 272httpContext.Request.Method = HttpMethods.Get; 302var requestHeaders = httpContext.Request.GetTypedHeaders(); 307httpContext.Request.Headers.Range = "bytes = 0-6"; 308httpContext.Request.Method = HttpMethods.Get; 343var requestHeaders = httpContext.Request.GetTypedHeaders(); 349httpContext.Request.Method = HttpMethods.Get; 428httpContext.Request.Method = "HEAD";
src\Shared\ResultsTests\PhysicalFileResultTestBase.cs (22)
42var requestHeaders = httpContext.Request.GetTypedHeaders(); 45httpContext.Request.Method = HttpMethods.Get; 74var requestHeaders = httpContext.Request.GetTypedHeaders(); 78httpContext.Request.Method = HttpMethods.Get; 106var requestHeaders = httpContext.Request.GetTypedHeaders(); 110httpContext.Request.Method = HttpMethods.Get; 133var requestHeaders = httpContext.Request.GetTypedHeaders(); 137httpContext.Request.Method = HttpMethods.Get; 162var requestHeaders = httpContext.Request.GetTypedHeaders(); 164httpContext.Request.Headers.Range = rangeString; 165httpContext.Request.Method = HttpMethods.Get; 188var requestHeaders = httpContext.Request.GetTypedHeaders(); 190httpContext.Request.Headers.Range = rangeString; 191httpContext.Request.Method = HttpMethods.Get; 217var requestHeaders = httpContext.Request.GetTypedHeaders(); 219httpContext.Request.Headers.Range = "bytes = 0-6"; 220httpContext.Request.Method = HttpMethods.Get; 244var requestHeaders = httpContext.Request.GetTypedHeaders(); 246httpContext.Request.Headers.Range = "bytes = 0-6"; 247httpContext.Request.Method = HttpMethods.Get; 298var requestHeaders = httpContext.Request.GetTypedHeaders(); 301httpContext.Request.Method = HttpMethods.Get;
src\Shared\ResultsTests\VirtualFileResultTestBase.cs (22)
54var requestHeaders = httpContext.Request.GetTypedHeaders(); 57httpContext.Request.Method = HttpMethods.Get; 92var requestHeaders = httpContext.Request.GetTypedHeaders(); 96httpContext.Request.Method = HttpMethods.Get; 129var requestHeaders = httpContext.Request.GetTypedHeaders(); 133httpContext.Request.Method = HttpMethods.Get; 162var requestHeaders = httpContext.Request.GetTypedHeaders(); 166httpContext.Request.Method = HttpMethods.Get; 197var requestHeaders = httpContext.Request.GetTypedHeaders(); 198httpContext.Request.Headers.Range = rangeString; 200httpContext.Request.Method = HttpMethods.Get; 230var requestHeaders = httpContext.Request.GetTypedHeaders(); 231httpContext.Request.Headers.Range = rangeString; 233httpContext.Request.Method = HttpMethods.Get; 267var requestHeaders = httpContext.Request.GetTypedHeaders(); 269httpContext.Request.Headers.Range = "bytes = 0-6"; 270httpContext.Request.Method = HttpMethods.Get; 298var requestHeaders = httpContext.Request.GetTypedHeaders(); 300httpContext.Request.Headers.Range = "bytes = 0-6"; 301httpContext.Request.Method = HttpMethods.Get; 333var requestHeaders = httpContext.Request.GetTypedHeaders(); 336httpContext.Request.Method = HttpMethods.Get;
Microsoft.AspNetCore.Mvc.Cors (5)
CorsAuthorizationFilter.cs (2)
75var request = httpContext.Request; 90httpContext.Request.Headers[CorsConstants.AccessControlRequestMethod];
CorsHttpMethodActionConstraint.cs (1)
30var request = context.RouteContext.HttpContext.Request;
DisableCorsAuthorizationFilter.cs (2)
27context.HttpContext.Request.Headers[CorsConstants.AccessControlRequestMethod]; 29context.HttpContext.Request.Method,
Microsoft.AspNetCore.Mvc.Cors.Test (1)
CorsAuthorizationFilterTest.cs (1)
33authorizationContext.HttpContext.Request.Method = preflightRequestMethod;
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
XmlDataContractSerializerInputFormatter.cs (1)
104var request = context.HttpContext.Request;
XmlSerializerInputFormatter.cs (1)
88var request = context.HttpContext.Request;
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (9)
XmlDataContractSerializerInputFormatterTest.cs (3)
472Assert.True(context.HttpContext.Request.Body.CanRead); 747httpContext.SetupGet(c => c.Request).Returns(request.Object); 748httpContext.SetupGet(c => c.Request).Returns(request.Object);
XmlDataContractSerializerOutputFormatterTest.cs (2)
708outputFormatterContext.HttpContext.Request.QueryString = new QueryString("?indent=" + indent); 831var request = context.HttpContext.Request;
XmlSerializerInputFormatterTest.cs (2)
489Assert.True(context.HttpContext.Request.Body.CanRead); 683httpContext.SetupGet(c => c.Request).Returns(request.Object);
XmlSerializerOutputFormatterTest.cs (2)
92outputFormatterContext.HttpContext.Request.QueryString = new QueryString("?indent=" + indent); 621var request = context.HttpContext.Request;
Microsoft.AspNetCore.Mvc.FunctionalTests (2)
AntiforgeryMiddlewareTest.cs (2)
111context.Request.Body = new SizeLimitedStream(context.Request.Body, context.Features.Get<IHttpMaxRequestBodySizeFeature>()?.MaxRequestBodySize);
Microsoft.AspNetCore.Mvc.IntegrationTests (1)
ModelBindingTestHelper.cs (1)
229public bool CanHaveBody => _context.Request.ContentLength != 0;
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
NewtonsoftJsonInputFormatter.cs (1)
102var request = httpContext.Request;
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (11)
NewtonsoftJsonInputFormatterTest.cs (3)
453httpContext.Setup(h => h.Request.Body).Returns(new NonSeekableReadStream(content, allowSyncReads: false)); 454httpContext.Setup(h => h.Request.ContentType).Returns("application/json"); 455httpContext.Setup(h => h.Request.ContentLength).Returns(content.Length);
NewtonsoftJsonPatchInputFormatterTest.cs (1)
267httpContext.SetupGet(c => c.Request).Returns(request.Object);
src\Mvc\Mvc.Core\test\Formatters\JsonInputFormatterTestBase.cs (7)
124Assert.True(httpContext.Request.Body.CanRead, "Verify that the request stream hasn't been disposed"); 546var testBufferedReadStream = new VerifyDisposeFileBufferingReadStream(httpContext.Request.Body, 1024); 547httpContext.Request.Body = testBufferedReadStream; 569httpContext.Request.EnableBuffering(); 579var requestBody = httpContext.Request.Body; 593httpContext.Request.EnableBuffering(); 594var requestBody = httpContext.Request.Body;
Microsoft.AspNetCore.Mvc.RazorPages (9)
ApplicationModels\DefaultPageApplicationModelPartsProvider.cs (1)
25_supportsNonGetRequests = context => !HttpMethods.IsGet(context.HttpContext.Request.Method);
Infrastructure\DefaultPageHandlerMethodSelector.cs (3)
88var httpMethod = context.HttpContext.Request.Method; 155if (context.HttpContext.Request.Query.TryGetValue(Handler, out var queryValues)) 166return HttpMethods.IsHead(context.HttpContext.Request.Method) ? HttpMethods.Get : null;
Infrastructure\HandleOptionsRequestsPageFilter.cs (1)
41HttpMethods.IsOptions(context.HttpContext.Request.Method))
Infrastructure\PageRequestDelegateFactory.cs (2)
86routeData = new RouteData(context.Request.RouteValues); 91routeData.PushState(router: null, context.Request.RouteValues, dataTokens);
PageBase.cs (1)
47public HttpRequest Request => HttpContext?.Request!;
PageModel.cs (1)
66public HttpRequest Request => HttpContext?.Request!;
Microsoft.AspNetCore.Mvc.RazorPages.Test (6)
Infrastructure\DisallowOptionsRequestsPageFilterTest.cs (5)
47context.HttpContext.Request.Method = "PUT"; 63context.HttpContext.Request.Method = "DELETE"; 80context.HttpContext.Request.Method = "Options"; 98context.HttpContext.Request.Method = "Options"; 114context.HttpContext.Request.Method = "Options";
Infrastructure\PageBinderFactoryTest.cs (1)
457page.HttpContext.Request.Method = "Post";
Microsoft.AspNetCore.Mvc.TagHelpers (9)
Cache\CacheTagKey.cs (1)
82var request = httpContext.Request;
ImageTagHelper.cs (1)
127output.Attributes.SetAttribute(SrcAttributeName, FileVersionProvider.AddFileVersionToPath(ViewContext.HttpContext.Request.PathBase, Src));
LinkTagHelper.cs (4)
283FileVersionProvider.AddFileVersionToPath(ViewContext.HttpContext.Request.PathBase, Href), 455valueToWrite = FileVersionProvider.AddFileVersionToPath(ViewContext.HttpContext.Request.PathBase, fallbackHrefs[i]); 476ViewContext.HttpContext.Request.PathBase); 525hrefValue = FileVersionProvider.AddFileVersionToPath(ViewContext.HttpContext.Request.PathBase, hrefValue);
ScriptTagHelper.cs (3)
250FileVersionProvider.AddFileVersionToPath(ViewContext.HttpContext.Request.PathBase, Src), 369srcValue = FileVersionProvider.AddFileVersionToPath(ViewContext.HttpContext.Request.PathBase, srcValue); 408ViewContext.HttpContext.Request.PathBase);
Microsoft.AspNetCore.Mvc.TagHelpers.Test (17)
CacheTagHelperTest.cs (4)
105cacheTagHelper1.ViewContext.HttpContext.Request.QueryString = new QueryString( 127cacheTagHelper2.ViewContext.HttpContext.Request.QueryString = new QueryString( 156cacheTagHelper1.ViewContext.HttpContext.Request.Headers["Cookie"] = "cookie1=value1;cookie2=value2"; 178cacheTagHelper2.ViewContext.HttpContext.Request.Headers["Cookie"] = "cookie1=value1;cookie2=not-value2";
CacheTagKeyTest.cs (5)
211cacheTagHelper.ViewContext.HttpContext.Request.Headers["Cookie"] = 237var headers = cacheTagHelper.ViewContext.HttpContext.Request.Headers; 265cacheTagHelper.ViewContext.HttpContext.Request.QueryString = 404cacheTagHelper.ViewContext.HttpContext.Request.Headers["Content-Type"] = "text/html"; 431cacheTagHelper.ViewContext.HttpContext.Request.Headers["Content-Type"] = "text/html";
DistributedCacheTagHelperTest.cs (4)
148cacheTagHelper1.ViewContext.HttpContext.Request.QueryString = new QueryString( 173cacheTagHelper2.ViewContext.HttpContext.Request.QueryString = new QueryString( 208cacheTagHelper1.ViewContext.HttpContext.Request.Headers["Cookie"] = "cookie1=value1;cookie2=value2"; 232cacheTagHelper2.ViewContext.HttpContext.Request.Headers["Cookie"] = "cookie1=value1;cookie2=not-value2";
FormTagHelperTest.cs (1)
154viewContext.HttpContext.Request.Path = "/home/index";
ImageTagHelperTest.cs (1)
232actionContext.HttpContext.Request.PathBase = new Http.PathString(requestPathBase);
LinkTagHelperTest.cs (1)
954actionContext.HttpContext.Request.PathBase = new PathString(requestPathBase);
ScriptTagHelperTest.cs (1)
829actionContext.HttpContext.Request.PathBase = new Http.PathString(requestPathBase);
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
CookieTempDataProvider.cs (2)
60if (context.Request.Cookies.ContainsKey(_options.Cookie.Name)) 131var pathBase = httpContext.Request.PathBase.ToString();
DefaultHtmlGenerator.cs (1)
281var request = viewContext.HttpContext.Request;
Filters\AutoValidateAntiforgeryTokenAuthorizationFilter.cs (1)
22var method = context.HttpContext.Request.Method;
ViewComponent.cs (1)
39public HttpRequest Request => ViewContext?.HttpContext?.Request!;
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (9)
CookieTempDataProviderTest.cs (1)
335httpContext.Request.Headers.Cookie = stringBuilder.ToString();
Filters\AutoValidateAntiforgeryTokenAuthorizationFilterTest.cs (3)
32actionContext.HttpContext.Request.Method = httpMethod; 60actionContext.HttpContext.Request.Method = httpMethod; 84actionContext.HttpContext.Request.Method = "POST";
Filters\ValidateAntiforgeryTokenAuthorizationFilterTest.cs (3)
36actionContext.HttpContext.Request.Method = httpMethod; 60actionContext.HttpContext.Request.Method = "POST"; 88actionContext.HttpContext.Request.Method = "POST";
Rendering\HtmlHelperFormTest.cs (2)
135var request = htmlHelper.ViewContext.HttpContext.Request; 185var request = htmlHelper.ViewContext.HttpContext.Request;
Microsoft.AspNetCore.OutputCaching.Tests (102)
OutputCacheAttributeTests.cs (4)
78context.HttpContext.Request.Headers["HeaderA"] = "ValueA"; 79context.HttpContext.Request.Headers["HeaderB"] = "ValueB"; 94context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB"); 109context.HttpContext.Request.RouteValues = new Routing.RouteValueDictionary()
OutputCacheKeyProviderTests.cs (50)
20context.HttpContext.Request.Method = "head"; 21context.HttpContext.Request.Path = "/path/subpath"; 22context.HttpContext.Request.Scheme = "https"; 23context.HttpContext.Request.Host = new HostString("example.com", 80); 24context.HttpContext.Request.PathBase = "/pathBase"; 25context.HttpContext.Request.QueryString = new QueryString("?query.Key=a&query.Value=b"); 37context.HttpContext.Request.Method = "head"; 38context.HttpContext.Request.Path = "/path/subpath"; 39context.HttpContext.Request.Scheme = "https"; 40context.HttpContext.Request.Host = new HostString("example.com", 80); 41context.HttpContext.Request.PathBase = "/pathBase"; 42context.HttpContext.Request.QueryString = new QueryString("?query.Key=a&query.Value=b"); 56context.HttpContext.Request.Method = HttpMethods.Get; 57context.HttpContext.Request.Path = "/Path"; 70context.HttpContext.Request.Method = HttpMethods.Get; 71context.HttpContext.Request.Path = "/Path"; 99context.HttpContext.Request.RouteValues["RouteA"] = "ValueA"; 100context.HttpContext.Request.RouteValues["RouteB"] = "ValueB"; 112context.HttpContext.Request.RouteValues["RouteA"] = 123.456; 145context.HttpContext.Request.Headers["HeaderA"] = "ValueA"; 146context.HttpContext.Request.Headers["HeaderB"] = "ValueB"; 158context.HttpContext.Request.Headers["HeaderA"] = "ValueA"; 170context.HttpContext.Request.Headers["HeaderA"] = "ValueB"; 171context.HttpContext.Request.Headers.Append("HeaderA", "ValueA"); 183context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB"); 196context.HttpContext.Request.QueryString = new QueryString("?queryA=ValueA&queryB=ValueB"); 209context.HttpContext.Request.QueryString = new QueryString("?queryA=ValueA"); 222context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB"); 237context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueA&QueryA=ValueB"); 252context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueB&QueryA=ValueA"); 267context.HttpContext.Request.Headers["HeaderA"] = "ValueA"; 268context.HttpContext.Request.Headers["HeaderB"] = "ValueB"; 269context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB"); 270context.HttpContext.Request.RouteValues["RouteA"] = "ValueA"; 271context.HttpContext.Request.RouteValues["RouteB"] = "ValueB"; 286context.HttpContext.Request.Path = "/path" + KeyDelimiter; 301context.HttpContext.Request.Host = new HostString("example.com" + KeyDelimiter, 80); 311context.HttpContext.Request.PathBase = "/pathBase" + KeyDelimiter; 323context.HttpContext.Request.Headers["HeaderA"] = "ValueA" + KeyDelimiter; 324context.HttpContext.Request.Headers["HeaderB"] = "ValueB"; 337context.HttpContext.Request.Headers["HeaderA"] = "ValueA"; 338context.HttpContext.Request.Headers["HeaderB"] = "ValueB" + KeyDelimiter; 351context.HttpContext.Request.QueryString = new QueryString($"?QueryA=ValueA{KeyDelimiter}&QueryB=ValueB"); 364context.HttpContext.Request.QueryString = new QueryString($"?QueryA{KeyDelimiter}=ValueA&QueryB=ValueB"); 377context.HttpContext.Request.QueryString = new QueryString($"?QueryA=ValueA&QueryB=ValueB{KeyDelimiter}"); 390context.HttpContext.Request.RouteValues["RouteA"] = "ValueA" + KeyDelimiter; 391context.HttpContext.Request.RouteValues["RouteB"] = "ValueB"; 404context.HttpContext.Request.RouteValues["RouteA"] = "ValueA"; 405context.HttpContext.Request.RouteValues["RouteB"] = "ValueB" + KeyDelimiter; 419context.HttpContext.Request.RouteValues["RouteA"] = "ValueA";
OutputCacheMiddlewareTests.cs (31)
39context.HttpContext.Request.Headers.CacheControl = new CacheControlHeaderValue() 133context.HttpContext.Request.Headers.IfNoneMatch = "*"; 179context.HttpContext.Request.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow); 217context.HttpContext.Request.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow); 260context.HttpContext.Request.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow); 263context.HttpContext.Request.Headers.IfNoneMatch = EntityTagHeaderValue.Any.ToString(); 281context.HttpContext.Request.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow); 284context.HttpContext.Request.Headers.IfNoneMatch = "\"E1\""; 297context.HttpContext.Request.Headers.IfNoneMatch = "\"E1\""; 327context.HttpContext.Request.Headers.IfNoneMatch = requestETag.ToString(); 344context.HttpContext.Request.Headers.IfNoneMatch = "\"E1\""; 359context.HttpContext.Request.Headers.IfNoneMatch = new string[] { "\"E0\", \"E1\"", "\"E1\", \"E2\"" }; 640context.HttpContext.Request.Method = method; 669context.HttpContext.Request.Method = "HEAD"; 832context1.HttpContext.Request.Method = "GET"; 833context1.HttpContext.Request.Path = "/"; 836context2.HttpContext.Request.Method = "GET"; 837context2.HttpContext.Request.Path = "/"; 883context1.HttpContext.Request.Method = "GET"; 884context1.HttpContext.Request.Path = "/"; 888context2.HttpContext.Request.Method = "GET"; 889context2.HttpContext.Request.Path = "/"; 946context1.HttpContext.Request.Method = "GET"; 947context1.HttpContext.Request.Path = "/"; 950context2.HttpContext.Request.Method = "GET"; 951context2.HttpContext.Request.Path = "/"; 972context.HttpContext.Request.Method = "GET"; 994context.AllowCacheLookup = !context.HttpContext.Request.Headers.ContainsKey("X-Refresh"); 1042requestContext.HttpContext.Request.Method = "GET"; 1043requestContext.HttpContext.Request.Path = "/"; 1049requestContext.HttpContext.Request.Headers.Add("X-Refresh", "randomvalue");
OutputCachePolicyBuilderTests.cs (6)
107context.HttpContext.Request.Headers["HeaderA"] = "ValueA"; 108context.HttpContext.Request.Headers["HeaderB"] = "ValueB"; 124context.HttpContext.Request.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB"); 140context.HttpContext.Request.RouteValues = new Routing.RouteValueDictionary() 160context.HttpContext.Request.RouteValues = new Routing.RouteValueDictionary() 180context.HttpContext.Request.RouteValues = new Routing.RouteValueDictionary()
OutputCachePolicyProviderTests.cs (9)
49context.HttpContext.Request.Method = method; 68context.HttpContext.Request.Method = method; 81context.HttpContext.Request.Method = HttpMethods.Get; 82context.HttpContext.Request.Headers.Authorization = "Placeholder"; 97context.HttpContext.Request.Method = HttpMethods.Get; 98context.HttpContext.Request.Headers.CacheControl = new CacheControlHeaderValue() 115context.HttpContext.Request.Method = HttpMethods.Get; 116context.HttpContext.Request.Headers.Pragma = "no-cache"; 117context.HttpContext.Request.Headers.CacheControl = "max-age=10";
OutputCacheTests.cs (1)
889var builders = TestUtils.CreateBuildersWithOutputCaching(contextAction: context => context.Response.Headers.Vary = context.Request.Headers.Pragma);
TestUtils.cs (1)
39if (context.Request.Method != "HEAD")
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
119if (context.Request.IsHttps)
Microsoft.AspNetCore.Owin.Tests (16)
OwinEnvironmentTests.cs (16)
22context.Request.Method = "SomeMethod"; 24context.Request.Body = Stream.Null; 25context.Request.Headers["CustomRequestHeader"] = "CustomRequestValue"; 26context.Request.Path = new PathString("/path"); 27context.Request.PathBase = new PathString("/pathBase"); 28context.Request.Protocol = "http/1.0"; 29context.Request.QueryString = new QueryString("?key=value"); 30context.Request.Scheme = "http"; 84Assert.Equal("SomeMethod", context.Request.Method); 85Assert.Same(Stream.Null, context.Request.Body); 86Assert.Equal("CustomRequestValue", context.Request.Headers["CustomRequestHeader"]); 87Assert.Equal("/path", context.Request.Path.Value); 88Assert.Equal("/pathBase", context.Request.PathBase.Value); 89Assert.Equal("http/1.0", context.Request.Protocol); 90Assert.Equal("?key=value", context.Request.QueryString.Value); 91Assert.Equal("http", context.Request.Scheme);
Microsoft.AspNetCore.RequestDecompression (6)
DefaultRequestDecompressionProvider.cs (3)
32var encodings = context.Request.Headers.ContentEncoding; 52context.Request.Headers.Remove(HeaderNames.ContentEncoding); 54return matchingProvider.GetDecompressionStream(context.Request.Body);
RequestDecompressionMiddleware.cs (3)
58var request = context.Request.Body; 65context.Request.Body = new SizeLimitedStream(decompressionStream, sizeLimit); 70context.Request.Body = request;
Microsoft.AspNetCore.RequestDecompression.Tests (7)
RequestDecompressionMiddlewareTests.cs (7)
228await context.Request.Body.CopyToAsync(ms, context.RequestAborted); 296contentEncodingHeader = context.Request.Headers.ContentEncoding; 299await context.Request.Body.CopyToAsync(ms, context.RequestAborted); 375await context.Request.Body.CopyToAsync(ms, context.RequestAborted); 474await context.Request.Body.CopyToAsync(ms, context.RequestAborted); 558await context.Request.Body.CopyToAsync(ms, context.RequestAborted); 712await context.Request.Body.CopyToAsync(ms, context.RequestAborted);
Microsoft.AspNetCore.ResponseCaching (13)
ResponseCachingKeyProvider.cs (5)
41var request = context.HttpContext.Request; 90var request = context.HttpContext.Request; 106var requestHeaders = context.HttpContext.Request.Headers; 135var queryArray = context.HttpContext.Request.Query.ToArray(); 164var queryKeyValues = context.HttpContext.Request.Query[queryKey];
ResponseCachingMiddleware.cs (4)
230if (HeaderUtilities.ContainsCacheDirective(context.HttpContext.Request.Headers.CacheControl, CacheControlHeaderValue.OnlyIfCachedString)) 343&& HttpMethods.IsHead(context.HttpContext.Request.Method))) 431var ifNoneMatchHeader = context.HttpContext.Request.Headers.IfNoneMatch; 459var ifModifiedSince = context.HttpContext.Request.Headers.IfModifiedSince;
ResponseCachingPolicyProvider.cs (4)
14var request = context.HttpContext.Request; 35var requestHeaders = context.HttpContext.Request.Headers; 63return !HeaderUtilities.ContainsCacheDirective(context.HttpContext.Request.Headers.CacheControl, CacheControlHeaderValue.NoStoreString); 170var requestCacheControlHeaders = context.HttpContext.Request.Headers.CacheControl;
Microsoft.AspNetCore.ResponseCaching.Tests (5)
ResponseCachingTests.cs (2)
848var builders = TestUtils.CreateBuildersWithResponseCaching(contextAction: context => context.Response.Headers.Vary = context.Request.Headers.Pragma); 883var builders = TestUtils.CreateBuildersWithResponseCaching(contextAction: context => context.Response.Headers.Vary = context.Request.Headers.Pragma);
TestUtils.cs (3)
36var expires = context.Request.Query["Expires"]; 58var contentLength = context.Request.Query["ContentLength"]; 64if (context.Request.Method != "HEAD")
Microsoft.AspNetCore.ResponseCompression (4)
ResponseCompressionBody.cs (1)
59if (!_compressionChecked && HttpMethods.IsHead(_context.Request.Method))
ResponseCompressionProvider.cs (3)
78var accept = context.Request.Headers.AcceptEncoding; 168if (context.Request.IsHttps 221if (string.IsNullOrEmpty(context.Request.Headers.AcceptEncoding))
Microsoft.AspNetCore.ResponseCompression.Tests (1)
ResponseCompressionMiddlewareTest.cs (1)
1261if (HttpMethods.IsHead(context.Request.Method))
Microsoft.AspNetCore.Rewrite (33)
ApacheModRewrite\ApacheModRewriteRule.cs (1)
24var initMatchRes = InitialMatch.Evaluate(context.HttpContext.Request.Path, context);
IISUrlRewrite\IISUrlRewriteRule.cs (1)
42var path = context.HttpContext.Request.Path;
PatternSegments\HeaderSegment.cs (1)
17return context.HttpContext.Request.Headers[_header];
PatternSegments\IsHttpsModSegment.cs (1)
12return context.HttpContext.Request.IsHttps ? "on" : "off";
PatternSegments\IsHttpsUrlSegment.cs (1)
12return context.HttpContext.Request.IsHttps ? "ON" : "OFF";
PatternSegments\QueryStringSegment.cs (1)
10var queryString = context.HttpContext.Request.QueryString.ToString();
PatternSegments\RequestFilenameSegment.cs (1)
10return context.HttpContext.Request.Path;
PatternSegments\RequestMethodSegment.cs (1)
10return context.HttpContext.Request.Method;
PatternSegments\SchemeSegment.cs (1)
10return context.HttpContext.Request.Scheme;
PatternSegments\ServerNameSegment.cs (1)
12return context.HttpContext.Request.Host.Host.ToString(CultureInfo.InvariantCulture);
PatternSegments\UrlSegment.cs (2)
25return _uriMatchPart == UriMatchPart.Full ? context.HttpContext.Request.GetEncodedUrl() : (string)context.HttpContext.Request.Path;
RedirectRule.cs (1)
29var request = context.HttpContext.Request;
RedirectToHttpsRule.cs (3)
17if (!context.HttpContext.Request.IsHttps) 19var host = context.HttpContext.Request.Host; 32var req = context.HttpContext.Request;
RedirectToNonWwwRule.cs (1)
36var request = context.HttpContext.Request;
RedirectToWwwHelper.cs (1)
44var request = context.HttpContext.Request;
RedirectToWwwRule.cs (2)
36var req = context.HttpContext.Request; 54new HostString($"www.{context.HttpContext.Request.Host.Value}"),
RewriteMiddleware.cs (4)
64var originalPath = context.Request.Path; 73if (originalPath != context.Request.Path) 100logger.RewriteMiddlewareRequestContinueResults(httpContext.Request.GetEncodedUrl()); 108logger.RewriteMiddlewareRequestStopRules(httpContext.Request.GetEncodedUrl());
RewriteRule.cs (2)
29var path = context.HttpContext.Request.Path; 43var request = context.HttpContext.Request;
UrlActions\AbortAction.cs (2)
14context.Logger.AbortedRequest(context.HttpContext.Request.Path + context.HttpContext.Request.QueryString);
UrlActions\CustomResponseAction.cs (1)
47context.Logger.CustomResponse(context.HttpContext.Request.GetEncodedUrl());
UrlActions\RedirectAction.cs (3)
33var pathBase = context.HttpContext.Request.PathBase; 59var query = context.HttpContext.Request.QueryString.Add( 76response.Headers.Location = pathBase + pattern + context.HttpContext.Request.QueryString;
UrlActions\RewriteAction.cs (1)
48var request = context.HttpContext.Request;
Microsoft.AspNetCore.Rewrite.Tests (107)
ApacheModRewrite\ModRewriteMiddlewareTest.cs (32)
27app.Run(context => context.Response.WriteAsync(context.Request.Path)); 53app.Run(context => context.Response.WriteAsync(context.Request.Path)); 79app.Run(context => context.Response.WriteAsync(context.Request.Path)); 104app.Run(context => context.Response.WriteAsync(context.Request.Path)); 129app.Run(context => context.Response.WriteAsync(context.Request.Path)); 154app.Run(context => context.Response.WriteAsync(context.Request.Path)); 179app.Run(context => context.Response.WriteAsync(context.Request.Path)); 206app.Run(context => context.Response.WriteAsync(context.Request.Path)); 237app.Run(context => context.Response.WriteAsync(context.Request.Path)); 263app.Run(context => context.Response.WriteAsync(context.Request.Path)); 289app.Run(context => context.Response.WriteAsync(context.Request.Scheme + "://" + context.Request.Host.Host + context.Request.Path + context.Request.QueryString)); 315app.Run(context => context.Response.WriteAsync(context.Request.Scheme + "://" + context.Request.Host.Host + context.Request.Path + context.Request.QueryString)); 342app.Run(context => context.Response.WriteAsync(context.Request.Scheme + "://" + context.Request.Host.Host + context.Request.Path + context.Request.QueryString)); 370app.Run(context => context.Response.WriteAsync(context.Request.Scheme + "://" + context.Request.Host.Host + context.Request.Path + context.Request.QueryString)); 398app.Run(context => context.Response.WriteAsync(context.Request.Path + context.Request.QueryString)); 423context.Request.Path + 424context.Request.QueryString)); 453context.Request.Path + 454context.Request.QueryString));
IISUrlRewrite\MiddleWareTests.cs (23)
69app.Run(context => context.Response.WriteAsync(context.Request.Path + context.Request.QueryString)); 105app.Run(context => context.Response.WriteAsync(context.Request.Path + context.Request.QueryString)); 277context.Request.Scheme + 279context.Request.Host + 280context.Request.Path + 281context.Request.QueryString)); 314context.Request.Scheme + 316context.Request.Host + 317context.Request.Path + 318context.Request.QueryString)); 351context.Request.Scheme + 353context.Request.Host + 354context.Request.Path + 355context.Request.QueryString)); 388context.Request.Path + 389context.Request.QueryString)); 422context.Request.Path + 423context.Request.QueryString)); 608app.Run(context => context.Response.WriteAsync(context.Request.GetEncodedUrl())); 653app.Run(context => context.Response.WriteAsync(context.Request.GetEncodedUrl())); 740app.Run(context => context.Response.WriteAsync(context.Request.GetEncodedUrl()));
MiddlewareTests.cs (45)
29context.Request.Scheme + 31context.Request.Host + 32context.Request.Path + 33context.Request.QueryString)); 59context.Request.Scheme + 61context.Request.Host + 62context.Request.Path + 63context.Request.QueryString)); 91context.Request.Scheme + 93context.Request.Host + 94context.Request.Path + 95context.Request.QueryString)); 123context.Request.Scheme + 125context.Request.Host + 126context.Request.Path + 127context.Request.QueryString)); 660endpoints.MapGet("/foo", context => context.Response.WriteAsync($"{context.GetEndpoint()?.DisplayName} from {context.Request.Path}")); 687context.Request.Path + 688context.Request.QueryString)); 714context.Request.Path + 715context.Request.QueryString)); 861context.Request.Scheme + 863context.Request.Host + 864context.Request.Path + 865context.Request.QueryString)); 899context.Request.Scheme + 901context.Request.Host + 902context.Request.Path + 903context.Request.QueryString)); 935context.Request.Scheme + 937context.Request.Host + 938context.Request.Path + 939context.Request.QueryString)); 972context.Request.Scheme + 974context.Request.Host + 975context.Request.Path + 976context.Request.QueryString)); 1009context.Request.Scheme + 1011context.Request.Host + 1012context.Request.Path + 1013context.Request.QueryString)); 1042context.Request.Scheme + 1044context.Request.Host + 1045context.Request.Path + 1046context.Request.QueryString));
PatternSegments\HeaderSegmentTests.cs (1)
18context.HttpContext.Request.Headers.Location = "foo";
PatternSegments\IsHttpsModSegmentTests.cs (1)
19context.HttpContext.Request.Scheme = input;
PatternSegments\IsHttpsSegmentTests.cs (1)
19context.HttpContext.Request.Scheme = input;
PatternSegments\QueryStringSegmentTests.cs (1)
16context.HttpContext.Request.QueryString = new QueryString("?hey=1");
PatternSegments\RequestFilenameSegmentTests.cs (1)
17context.HttpContext.Request.Path = new PathString("/foo/bar");
PatternSegments\RequestMethodSegmentTests.cs (1)
17context.HttpContext.Request.Method = HttpMethods.Get;
PatternSegments\SchemeSegmentTests.cs (1)
17context.HttpContext.Request.Scheme = "http";
Microsoft.AspNetCore.Routing (29)
Constraints\HttpMethodRouteConstraint.cs (1)
49return AllowedMethods.Contains(httpContext.Request.Method, StringComparer.OrdinalIgnoreCase);
DefaultLinkGenerator.cs (4)
91pathBase ?? httpContext.Request.PathBase, 142scheme ?? httpContext.Request.Scheme, 143host ?? httpContext.Request.Host, 144pathBase ?? httpContext.Request.PathBase,
EndpointRoutingMiddleware.cs (1)
174httpContext.Request.Method is {} method &&
Matching\AcceptsMatcherPolicy.cs (2)
92var contentType = httpContext.Request.ContentType; 358var contentType = httpContext.Request.ContentType;
Matching\ContentEncodingNegotiationMatcherPolicy.cs (1)
17private protected override StringValues GetNegotiationHeader(HttpContext httpContext) => httpContext.Request.Headers[HeaderName];
Matching\DefaultEndpointSelector.cs (2)
40httpContext.Request.RouteValues = state.Values!; 103httpContext.Request.RouteValues = values!;
Matching\DfaMatcher.cs (2)
42var path = httpContext.Request.Path.Value!; 308Log.CandidateRejectedByConstraint(_logger, httpContext.Request.Path, endpoint, constraint.Key, constraint.Value, values[constraint.Key]);
Matching\HostMatcherPolicy.cs (3)
335var hostString = httpContext.Request.Host; 340else if (string.Equals("https", httpContext.Request.Scheme, StringComparison.OrdinalIgnoreCase)) 344else if (string.Equals("http", httpContext.Request.Scheme, StringComparison.OrdinalIgnoreCase))
Matching\HttpMethodDictionaryPolicyJumpTable.cs (1)
23var httpMethod = httpContext.Request.Method;
Matching\HttpMethodMatcherPolicy.cs (4)
115var httpMethod = httpContext.Request.Method; 116var headers = httpContext.Request.Headers; 153httpContext.Request.RouteValues = null!; 422var headers = httpContext.Request.Headers;
Matching\HttpMethodSingleEntryPolicyJumpTable.cs (1)
36var httpMethod = httpContext.Request.Method;
Matching\NegotiationMatcherPolicy.cs (2)
142httpContext.Request.RouteValues = null!; 377var header = httpContext.Request.Headers[_negotiationHeader];
RequestDelegateRouteBuilderExtensions.cs (1)
239return handler(httpContext.Request, httpContext.Response, httpContext.GetRouteData());
RouteBase.cs (1)
113var requestPath = context.HttpContext.Request.Path;
RouterMiddleware.cs (1)
61httpContext.Request.RouteValues = context.RouteData.Values;
Tree\TreeRouter.cs (2)
179var tokenizer = new PathTokenizer(context.HttpContext.Request.Path); 196if (!matcher.TryMatch(context.HttpContext.Request.Path, context.RouteData.Values))
Microsoft.AspNetCore.Routing.Abstractions (1)
RoutingHttpContextExtensions.cs (1)
26return routingFeature?.RouteData ?? new RouteData(httpContext.Request.RouteValues);
Microsoft.AspNetCore.Routing.FunctionalTests (5)
MinimalFormTests.cs (5)
88var form = await context.Request.ReadFormAsync(); 350var form = await context.Request.ReadFormAsync(); 364var form = context.Request.Form; 452context.Request.Body = new SizeLimitedStream(context.Request.Body, context.Features.Get<IHttpMaxRequestBodySizeFeature>()?.MaxRequestBodySize);
Microsoft.AspNetCore.Routing.Microbenchmarks (11303)
EndpointRoutingBenchmarkBase.cs (2)
74message.AppendLine(FormattableString.Invariant($"{httpContext.Request.Method} {httpContext.Request.Path}"));
LinkGeneration\LinkGenerationGithubBenchmark.generated.cs (486)
268Requests[0].Request.Method = "GET"; 269Requests[0].Request.Path = "/emojis"; 272Requests[1].Request.Method = "GET"; 273Requests[1].Request.Path = "/events"; 276Requests[2].Request.Method = "GET"; 277Requests[2].Request.Path = "/feeds"; 280Requests[3].Request.Method = "GET"; 281Requests[3].Request.Path = "/gists"; 284Requests[4].Request.Method = "POST"; 285Requests[4].Request.Path = "/gists"; 288Requests[5].Request.Method = "GET"; 289Requests[5].Request.Path = "/issues"; 292Requests[6].Request.Method = "POST"; 293Requests[6].Request.Path = "/markdown"; 296Requests[7].Request.Method = "GET"; 297Requests[7].Request.Path = "/meta"; 300Requests[8].Request.Method = "GET"; 301Requests[8].Request.Path = "/notifications"; 304Requests[9].Request.Method = "PUT"; 305Requests[9].Request.Path = "/notifications"; 308Requests[10].Request.Method = "GET"; 309Requests[10].Request.Path = "/rate_limit"; 312Requests[11].Request.Method = "GET"; 313Requests[11].Request.Path = "/repositories"; 316Requests[12].Request.Method = "GET"; 317Requests[12].Request.Path = "/user"; 320Requests[13].Request.Method = "PATCH"; 321Requests[13].Request.Path = "/user"; 324Requests[14].Request.Method = "GET"; 325Requests[14].Request.Path = "/users"; 328Requests[15].Request.Method = "GET"; 329Requests[15].Request.Path = "/gists/public"; 332Requests[16].Request.Method = "GET"; 333Requests[16].Request.Path = "/gists/starred"; 336Requests[17].Request.Method = "GET"; 337Requests[17].Request.Path = "/gitignore/templates"; 340Requests[18].Request.Method = "POST"; 341Requests[18].Request.Path = "/markdown/raw"; 344Requests[19].Request.Method = "GET"; 345Requests[19].Request.Path = "/search/code"; 348Requests[20].Request.Method = "GET"; 349Requests[20].Request.Path = "/search/issues"; 352Requests[21].Request.Method = "GET"; 353Requests[21].Request.Path = "/search/repositories"; 356Requests[22].Request.Method = "GET"; 357Requests[22].Request.Path = "/search/users"; 360Requests[23].Request.Method = "GET"; 361Requests[23].Request.Path = "/user/emails"; 364Requests[24].Request.Method = "DELETE"; 365Requests[24].Request.Path = "/user/emails"; 368Requests[25].Request.Method = "POST"; 369Requests[25].Request.Path = "/user/emails"; 372Requests[26].Request.Method = "GET"; 373Requests[26].Request.Path = "/user/followers"; 376Requests[27].Request.Method = "GET"; 377Requests[27].Request.Path = "/user/following"; 380Requests[28].Request.Method = "GET"; 381Requests[28].Request.Path = "/user/issues"; 384Requests[29].Request.Method = "POST"; 385Requests[29].Request.Path = "/user/keys"; 388Requests[30].Request.Method = "GET"; 389Requests[30].Request.Path = "/user/keys"; 392Requests[31].Request.Method = "GET"; 393Requests[31].Request.Path = "/user/orgs"; 396Requests[32].Request.Method = "GET"; 397Requests[32].Request.Path = "/user/repos"; 400Requests[33].Request.Method = "POST"; 401Requests[33].Request.Path = "/user/repos"; 404Requests[34].Request.Method = "GET"; 405Requests[34].Request.Path = "/user/starred"; 408Requests[35].Request.Method = "GET"; 409Requests[35].Request.Path = "/user/subscriptions"; 412Requests[36].Request.Method = "GET"; 413Requests[36].Request.Path = "/user/teams"; 416Requests[37].Request.Method = "GET"; 417Requests[37].Request.Path = "/legacy/repos/search/d50aacc"; 420Requests[38].Request.Method = "GET"; 421Requests[38].Request.Path = "/legacy/user/email/8341f"; 424Requests[39].Request.Method = "GET"; 425Requests[39].Request.Path = "/legacy/user/search/24fa852"; 428Requests[40].Request.Method = "GET"; 429Requests[40].Request.Path = "/legacy/issues/search/f8f51/b60908a1-4/7e0c7/30ea8fe"; 432Requests[41].Request.Method = "GET"; 433Requests[41].Request.Path = "/gitignore/templates/a2ba346f"; 436Requests[42].Request.Method = "GET"; 437Requests[42].Request.Path = "/notifications/threads/1df78"; 440Requests[43].Request.Method = "PATCH"; 441Requests[43].Request.Path = "/notifications/threads/24a82"; 444Requests[44].Request.Method = "DELETE"; 445Requests[44].Request.Path = "/user/following/770fc247"; 448Requests[45].Request.Method = "GET"; 449Requests[45].Request.Path = "/user/following/5ac246a4"; 452Requests[46].Request.Method = "PUT"; 453Requests[46].Request.Path = "/user/following/20904d4a"; 456Requests[47].Request.Method = "DELETE"; 457Requests[47].Request.Path = "/user/keys/2cb10"; 460Requests[48].Request.Method = "GET"; 461Requests[48].Request.Path = "/user/keys/37adb"; 464Requests[49].Request.Method = "DELETE"; 465Requests[49].Request.Path = "/notifications/threads/6d635/subscription"; 468Requests[50].Request.Method = "GET"; 469Requests[50].Request.Path = "/notifications/threads/8117f/subscription"; 472Requests[51].Request.Method = "PUT"; 473Requests[51].Request.Path = "/notifications/threads/6ca24/subscription"; 476Requests[52].Request.Method = "PUT"; 477Requests[52].Request.Path = "/user/starred/348ac/b0848"; 480Requests[53].Request.Method = "GET"; 481Requests[53].Request.Path = "/user/starred/92490/2ff1b"; 484Requests[54].Request.Method = "DELETE"; 485Requests[54].Request.Path = "/user/starred/0670e/5ca5b"; 488Requests[55].Request.Method = "PUT"; 489Requests[55].Request.Path = "/user/subscriptions/a7cee/6440a"; 492Requests[56].Request.Method = "GET"; 493Requests[56].Request.Path = "/user/subscriptions/0f395/79a07"; 496Requests[57].Request.Method = "DELETE"; 497Requests[57].Request.Path = "/user/subscriptions/6df5e/ee72b"; 500Requests[58].Request.Method = "GET"; 501Requests[58].Request.Path = "/gists/bc994"; 504Requests[59].Request.Method = "PATCH"; 505Requests[59].Request.Path = "/gists/16fd7"; 508Requests[60].Request.Method = "DELETE"; 509Requests[60].Request.Path = "/gists/26a18"; 512Requests[61].Request.Method = "PATCH"; 513Requests[61].Request.Path = "/orgs/0843c"; 516Requests[62].Request.Method = "GET"; 517Requests[62].Request.Path = "/orgs/58d34"; 520Requests[63].Request.Method = "PATCH"; 521Requests[63].Request.Path = "/teams/9daee4"; 524Requests[64].Request.Method = "GET"; 525Requests[64].Request.Path = "/teams/9814e3"; 528Requests[65].Request.Method = "DELETE"; 529Requests[65].Request.Path = "/teams/1b5067"; 532Requests[66].Request.Method = "GET"; 533Requests[66].Request.Path = "/users/16a15e92"; 536Requests[67].Request.Method = "GET"; 537Requests[67].Request.Path = "/gists/8bfc9/comments"; 540Requests[68].Request.Method = "POST"; 541Requests[68].Request.Path = "/gists/8a24e/comments"; 544Requests[69].Request.Method = "POST"; 545Requests[69].Request.Path = "/gists/b269a/forks"; 548Requests[70].Request.Method = "DELETE"; 549Requests[70].Request.Path = "/gists/6fa8c/star"; 552Requests[71].Request.Method = "GET"; 553Requests[71].Request.Path = "/gists/31eb2/star"; 556Requests[72].Request.Method = "PUT"; 557Requests[72].Request.Path = "/gists/cf969/star"; 560Requests[73].Request.Method = "GET"; 561Requests[73].Request.Path = "/orgs/b92c3/events"; 564Requests[74].Request.Method = "GET"; 565Requests[74].Request.Path = "/orgs/afa76/issues"; 568Requests[75].Request.Method = "GET"; 569Requests[75].Request.Path = "/orgs/81b06/members"; 572Requests[76].Request.Method = "GET"; 573Requests[76].Request.Path = "/orgs/e9b92/public_members"; 576Requests[77].Request.Method = "GET"; 577Requests[77].Request.Path = "/orgs/96108/repos"; 580Requests[78].Request.Method = "POST"; 581Requests[78].Request.Path = "/orgs/7ef10/repos"; 584Requests[79].Request.Method = "POST"; 585Requests[79].Request.Path = "/orgs/91838/teams"; 588Requests[80].Request.Method = "GET"; 589Requests[80].Request.Path = "/orgs/c1602/teams"; 592Requests[81].Request.Method = "GET"; 593Requests[81].Request.Path = "/teams/ae1fcf/members"; 596Requests[82].Request.Method = "GET"; 597Requests[82].Request.Path = "/teams/82e12b/repos"; 600Requests[83].Request.Method = "GET"; 601Requests[83].Request.Path = "/users/c5b5ee96/events"; 604Requests[84].Request.Method = "GET"; 605Requests[84].Request.Path = "/users/3ebe3c63/followers"; 608Requests[85].Request.Method = "GET"; 609Requests[85].Request.Path = "/users/7eb8ee04/gists"; 612Requests[86].Request.Method = "GET"; 613Requests[86].Request.Path = "/users/ce5247f6/keys"; 616Requests[87].Request.Method = "GET"; 617Requests[87].Request.Path = "/users/4e212684/orgs"; 620Requests[88].Request.Method = "GET"; 621Requests[88].Request.Path = "/users/25bd0823/received_events"; 624Requests[89].Request.Method = "GET"; 625Requests[89].Request.Path = "/users/b5cdb182/repos"; 628Requests[90].Request.Method = "GET"; 629Requests[90].Request.Path = "/users/0926f1ee/starred"; 632Requests[91].Request.Method = "GET"; 633Requests[91].Request.Path = "/users/52fd945f/subscriptions"; 636Requests[92].Request.Method = "GET"; 637Requests[92].Request.Path = "/users/c079f122/received_events/public"; 640Requests[93].Request.Method = "GET"; 641Requests[93].Request.Path = "/users/f3d3f90a/events/orgs/b877e"; 644Requests[94].Request.Method = "DELETE"; 645Requests[94].Request.Path = "/gists/1425f/comments/3a1b3cd3-"; 648Requests[95].Request.Method = "GET"; 649Requests[95].Request.Path = "/gists/f885b/comments/1f24dd6a-"; 652Requests[96].Request.Method = "PATCH"; 653Requests[96].Request.Path = "/gists/0b9be/comments/3f237cca-"; 656Requests[97].Request.Method = "DELETE"; 657Requests[97].Request.Path = "/orgs/97bbf/members/3b77a2e7"; 660Requests[98].Request.Method = "GET"; 661Requests[98].Request.Path = "/orgs/c7fdb/members/76a43729"; 664Requests[99].Request.Method = "PUT"; 665Requests[99].Request.Path = "/orgs/191ee/public_members/119c87f1"; 668Requests[100].Request.Method = "GET"; 669Requests[100].Request.Path = "/orgs/ee407/public_members/8ff12154"; 672Requests[101].Request.Method = "DELETE"; 673Requests[101].Request.Path = "/orgs/4d9da/public_members/446d97e9"; 676Requests[102].Request.Method = "GET"; 677Requests[102].Request.Path = "/teams/fa75fc/members/978bd8d5"; 680Requests[103].Request.Method = "PUT"; 681Requests[103].Request.Path = "/teams/cbcdd2/members/d55986df"; 684Requests[104].Request.Method = "DELETE"; 685Requests[104].Request.Path = "/teams/cade8a/members/f83610eb"; 688Requests[105].Request.Method = "DELETE"; 689Requests[105].Request.Path = "/teams/1d5e29/memberships/5f9d213c"; 692Requests[106].Request.Method = "PUT"; 693Requests[106].Request.Path = "/teams/17d43f/memberships/5a2f444c"; 696Requests[107].Request.Method = "GET"; 697Requests[107].Request.Path = "/teams/12e975/memberships/8bb2fd20"; 700Requests[108].Request.Method = "GET"; 701Requests[108].Request.Path = "/users/c2ccdc27/following/85519b02-f"; 704Requests[109].Request.Method = "PUT"; 705Requests[109].Request.Path = "/teams/0c0a5a/repos/1f88c/6b60f"; 708Requests[110].Request.Method = "DELETE"; 709Requests[110].Request.Path = "/teams/6529ef/repos/ac003/62dd8"; 712Requests[111].Request.Method = "GET"; 713Requests[111].Request.Path = "/teams/101239/repos/51df9/aa3f3"; 716Requests[112].Request.Method = "PATCH"; 717Requests[112].Request.Path = "/repos/df7c9/ffcbe"; 720Requests[113].Request.Method = "DELETE"; 721Requests[113].Request.Path = "/repos/1f316/0f4ec"; 724Requests[114].Request.Method = "GET"; 725Requests[114].Request.Path = "/repos/08c95/7adde"; 728Requests[115].Request.Method = "GET"; 729Requests[115].Request.Path = "/networks/468be/29a19/events"; 732Requests[116].Request.Method = "GET"; 733Requests[116].Request.Path = "/repos/db561/2d460/assignees"; 736Requests[117].Request.Method = "GET"; 737Requests[117].Request.Path = "/repos/0eb0c/ec96b/branches"; 740Requests[118].Request.Method = "GET"; 741Requests[118].Request.Path = "/repos/8d58d/a31da/collaborators"; 744Requests[119].Request.Method = "GET"; 745Requests[119].Request.Path = "/repos/9d638/100e1/comments"; 748Requests[120].Request.Method = "GET"; 749Requests[120].Request.Path = "/repos/2afda/40624/commits"; 752Requests[121].Request.Method = "GET"; 753Requests[121].Request.Path = "/repos/583f1/f2f56/contributors"; 756Requests[122].Request.Method = "GET"; 757Requests[122].Request.Path = "/repos/96246/cf112/deployments"; 760Requests[123].Request.Method = "POST"; 761Requests[123].Request.Path = "/repos/af325/068fe/deployments"; 764Requests[124].Request.Method = "GET"; 765Requests[124].Request.Path = "/repos/726c3/22a16/downloads"; 768Requests[125].Request.Method = "GET"; 769Requests[125].Request.Path = "/repos/bc0e4/44660/events"; 772Requests[126].Request.Method = "GET"; 773Requests[126].Request.Path = "/repos/e8481/456ae/forks"; 776Requests[127].Request.Method = "POST"; 777Requests[127].Request.Path = "/repos/fa493/a87f8/forks"; 780Requests[128].Request.Method = "POST"; 781Requests[128].Request.Path = "/repos/e5328/77db0/hooks"; 784Requests[129].Request.Method = "GET"; 785Requests[129].Request.Path = "/repos/d219e/a06cf/hooks"; 788Requests[130].Request.Method = "GET"; 789Requests[130].Request.Path = "/repos/7a830/48c99/issues"; 792Requests[131].Request.Method = "POST"; 793Requests[131].Request.Path = "/repos/62103/40680/issues"; 796Requests[132].Request.Method = "GET"; 797Requests[132].Request.Path = "/repos/6b1aa/de4d3/keys"; 800Requests[133].Request.Method = "POST"; 801Requests[133].Request.Path = "/repos/47645/65364/keys"; 804Requests[134].Request.Method = "GET"; 805Requests[134].Request.Path = "/repos/f252f/d0dc5/labels"; 808Requests[135].Request.Method = "POST"; 809Requests[135].Request.Path = "/repos/8436b/fea30/labels"; 812Requests[136].Request.Method = "GET"; 813Requests[136].Request.Path = "/repos/d5058/668a7/languages"; 816Requests[137].Request.Method = "POST"; 817Requests[137].Request.Path = "/repos/a9546/9b556/merges"; 820Requests[138].Request.Method = "GET"; 821Requests[138].Request.Path = "/repos/5258b/6f2cd/milestones"; 824Requests[139].Request.Method = "POST"; 825Requests[139].Request.Path = "/repos/5f70d/513b2/milestones"; 828Requests[140].Request.Method = "PUT"; 829Requests[140].Request.Path = "/repos/90aa5/bdde5/notifications"; 832Requests[141].Request.Method = "GET"; 833Requests[141].Request.Path = "/repos/5f672/af6ff/notifications"; 836Requests[142].Request.Method = "POST"; 837Requests[142].Request.Path = "/repos/9277e/8e49c/pulls"; 840Requests[143].Request.Method = "GET"; 841Requests[143].Request.Path = "/repos/a4973/6dbf0/pulls"; 844Requests[144].Request.Method = "GET"; 845Requests[144].Request.Path = "/repos/a53d8/0627b/readme"; 848Requests[145].Request.Method = "POST"; 849Requests[145].Request.Path = "/repos/2bc2b/0a7aa/releases"; 852Requests[146].Request.Method = "GET"; 853Requests[146].Request.Path = "/repos/4bb1f/8220c/releases"; 856Requests[147].Request.Method = "GET"; 857Requests[147].Request.Path = "/repos/7a4e8/d54f8/stargazers"; 860Requests[148].Request.Method = "GET"; 861Requests[148].Request.Path = "/repos/63547/0d37c/subscribers"; 864Requests[149].Request.Method = "PUT"; 865Requests[149].Request.Path = "/repos/6cdda/a402c/subscription"; 868Requests[150].Request.Method = "GET"; 869Requests[150].Request.Path = "/repos/60320/4381b/subscription"; 872Requests[151].Request.Method = "DELETE"; 873Requests[151].Request.Path = "/repos/ed808/292c1/subscription"; 876Requests[152].Request.Method = "GET"; 877Requests[152].Request.Path = "/repos/74160/84ba7/tags"; 880Requests[153].Request.Method = "GET"; 881Requests[153].Request.Path = "/repos/ef45e/30a80/teams"; 884Requests[154].Request.Method = "GET"; 885Requests[154].Request.Path = "/repos/02825/d5092/watchers"; 888Requests[155].Request.Method = "POST"; 889Requests[155].Request.Path = "/repos/be33a/5f87e/git/blobs"; 892Requests[156].Request.Method = "POST"; 893Requests[156].Request.Path = "/repos/1a46d/093a4/git/commits"; 896Requests[157].Request.Method = "GET"; 897Requests[157].Request.Path = "/repos/14024/d64d2/git/refs"; 900Requests[158].Request.Method = "POST"; 901Requests[158].Request.Path = "/repos/d361c/fea9a/git/refs"; 904Requests[159].Request.Method = "POST"; 905Requests[159].Request.Path = "/repos/9a774/6a8ce/git/tags"; 908Requests[160].Request.Method = "POST"; 909Requests[160].Request.Path = "/repos/630e1/6a452/git/trees"; 912Requests[161].Request.Method = "GET"; 913Requests[161].Request.Path = "/repos/27ccf/49922/issues/comments"; 916Requests[162].Request.Method = "GET"; 917Requests[162].Request.Path = "/repos/1e557/77fad/issues/events"; 920Requests[163].Request.Method = "GET"; 921Requests[163].Request.Path = "/repos/297e9/11542/pulls/comments"; 924Requests[164].Request.Method = "GET"; 925Requests[164].Request.Path = "/repos/3c261/5719e/stats/code_frequency"; 928Requests[165].Request.Method = "GET"; 929Requests[165].Request.Path = "/repos/74b31/45543/stats/commit_activity"; 932Requests[166].Request.Method = "GET"; 933Requests[166].Request.Path = "/repos/909d8/56712/stats/contributors"; 936Requests[167].Request.Method = "GET"; 937Requests[167].Request.Path = "/repos/b8ecd/2a142/stats/participation"; 940Requests[168].Request.Method = "GET"; 941Requests[168].Request.Path = "/repos/72fcd/e0d41/stats/punch_card"; 944Requests[169].Request.Method = "GET"; 945Requests[169].Request.Path = "/repos/f8e07/b0719/git/blobs/a82e41d"; 948Requests[170].Request.Method = "GET"; 949Requests[170].Request.Path = "/repos/22ba5/326c5/git/commits/9fd2dd7"; 952Requests[171].Request.Method = "DELETE"; 953Requests[171].Request.Path = "/repos/6052c/2b5e3/git/refs/f9a94"; 956Requests[172].Request.Method = "PATCH"; 957Requests[172].Request.Path = "/repos/2de37/f89e9/git/refs/cda61"; 960Requests[173].Request.Method = "GET"; 961Requests[173].Request.Path = "/repos/66069/dcb46/git/refs/f682e"; 964Requests[174].Request.Method = "GET"; 965Requests[174].Request.Path = "/repos/cab0e/a64fa/git/tags/507f4b6"; 968Requests[175].Request.Method = "GET"; 969Requests[175].Request.Path = "/repos/76633/6d2b3/git/trees/a45672d"; 972Requests[176].Request.Method = "GET"; 973Requests[176].Request.Path = "/repos/611e5/14e81/issues/comments/70d5316a-"; 976Requests[177].Request.Method = "PATCH"; 977Requests[177].Request.Path = "/repos/d4bb1/0e97d/issues/comments/f03032b3-"; 980Requests[178].Request.Method = "DELETE"; 981Requests[178].Request.Path = "/repos/221b6/f1cdb/issues/comments/a769f3b6-"; 984Requests[179].Request.Method = "GET"; 985Requests[179].Request.Path = "/repos/7ad51/f85f2/issues/events/cec2e88"; 988Requests[180].Request.Method = "PATCH"; 989Requests[180].Request.Path = "/repos/5ad14/2c490/pulls/comments/0ce89290-"; 992Requests[181].Request.Method = "GET"; 993Requests[181].Request.Path = "/repos/13ba8/30bb3/pulls/comments/e643400f-"; 996Requests[182].Request.Method = "DELETE"; 997Requests[182].Request.Path = "/repos/cd3a3/d6224/pulls/comments/c225e938-"; 1000Requests[183].Request.Method = "PATCH"; 1001Requests[183].Request.Path = "/repos/33c72/2f2bd/releases/assets/d06f4"; 1004Requests[184].Request.Method = "DELETE"; 1005Requests[184].Request.Path = "/repos/18b7c/c3d06/releases/assets/97762"; 1008Requests[185].Request.Method = "GET"; 1009Requests[185].Request.Path = "/repos/38549/7ae63/releases/assets/2498e"; 1012Requests[186].Request.Method = "GET"; 1013Requests[186].Request.Path = "/repos/2cd8e/bb684/assignees/04058a9c"; 1016Requests[187].Request.Method = "GET"; 1017Requests[187].Request.Path = "/repos/ab58d/4a13e/branches/c48dc6"; 1020Requests[188].Request.Method = "PUT"; 1021Requests[188].Request.Path = "/repos/a856e/bf188/collaborators/5af36"; 1024Requests[189].Request.Method = "DELETE"; 1025Requests[189].Request.Path = "/repos/b17c0/6051b/collaborators/0b415"; 1028Requests[190].Request.Method = "GET"; 1029Requests[190].Request.Path = "/repos/e4fc3/95a37/collaborators/9bd1b"; 1032Requests[191].Request.Method = "DELETE"; 1033Requests[191].Request.Path = "/repos/fa150/ca148/comments/02b69539-"; 1036Requests[192].Request.Method = "GET"; 1037Requests[192].Request.Path = "/repos/6d3cc/5ad75/comments/c6a0df3f-"; 1040Requests[193].Request.Method = "PATCH"; 1041Requests[193].Request.Path = "/repos/883ad/d79a0/comments/edac8612-"; 1044Requests[194].Request.Method = "GET"; 1045Requests[194].Request.Path = "/repos/59b5d/9ffbe/commits/d6d94ac"; 1048Requests[195].Request.Method = "GET"; 1049Requests[195].Request.Path = "/repos/19be8/61e28/contents/f4c5a"; 1052Requests[196].Request.Method = "DELETE"; 1053Requests[196].Request.Path = "/repos/6e29a/43f51/contents/52ffe"; 1056Requests[197].Request.Method = "PUT"; 1057Requests[197].Request.Path = "/repos/a3605/bf28b/contents/a8fe5"; 1060Requests[198].Request.Method = "GET"; 1061Requests[198].Request.Path = "/repos/a869c/dd5fa/downloads/f1808e48-0"; 1064Requests[199].Request.Method = "DELETE"; 1065Requests[199].Request.Path = "/repos/94d90/ae933/downloads/f9e25b5f-6"; 1068Requests[200].Request.Method = "DELETE"; 1069Requests[200].Request.Path = "/repos/0fe83/e2353/hooks/a83a19"; 1072Requests[201].Request.Method = "GET"; 1073Requests[201].Request.Path = "/repos/648c3/fc66e/hooks/04b461"; 1076Requests[202].Request.Method = "PATCH"; 1077Requests[202].Request.Path = "/repos/3ac61/92269/hooks/79e4df"; 1080Requests[203].Request.Method = "GET"; 1081Requests[203].Request.Path = "/repos/8d523/ba527/issues/9a222a"; 1084Requests[204].Request.Method = "PATCH"; 1085Requests[204].Request.Path = "/repos/9ed96/f6553/issues/4df9d5"; 1088Requests[205].Request.Method = "GET"; 1089Requests[205].Request.Path = "/repos/472ec/16a4a/keys/84edc"; 1092Requests[206].Request.Method = "DELETE"; 1093Requests[206].Request.Path = "/repos/1a88d/4c019/keys/b3e45"; 1096Requests[207].Request.Method = "GET"; 1097Requests[207].Request.Path = "/repos/334fe/0c9d7/labels/4c1ee"; 1100Requests[208].Request.Method = "PATCH"; 1101Requests[208].Request.Path = "/repos/5dcde/f973d/labels/80435"; 1104Requests[209].Request.Method = "DELETE"; 1105Requests[209].Request.Path = "/repos/00a37/12e4b/labels/d7158"; 1108Requests[210].Request.Method = "PATCH"; 1109Requests[210].Request.Path = "/repos/e24fa/a168e/milestones/a38b20"; 1112Requests[211].Request.Method = "GET"; 1113Requests[211].Request.Path = "/repos/24592/f8af1/milestones/8e871e"; 1116Requests[212].Request.Method = "DELETE"; 1117Requests[212].Request.Path = "/repos/c5ee0/38414/milestones/da7976"; 1120Requests[213].Request.Method = "GET"; 1121Requests[213].Request.Path = "/repos/912e9/c81d6/pulls/ce677a"; 1124Requests[214].Request.Method = "PATCH"; 1125Requests[214].Request.Path = "/repos/aef6c/5ec7e/pulls/633b87"; 1128Requests[215].Request.Method = "PATCH"; 1129Requests[215].Request.Path = "/repos/6085e/ff8aa/releases/dcda3"; 1132Requests[216].Request.Method = "GET"; 1133Requests[216].Request.Path = "/repos/4d7f4/ceafa/releases/97fd7"; 1136Requests[217].Request.Method = "DELETE"; 1137Requests[217].Request.Path = "/repos/1f81e/89e6a/releases/6b744"; 1140Requests[218].Request.Method = "GET"; 1141Requests[218].Request.Path = "/repos/8b417/ad4a5/statuses/08833"; 1144Requests[219].Request.Method = "POST"; 1145Requests[219].Request.Path = "/repos/b7600/1d17b/statuses/9de98"; 1148Requests[220].Request.Method = "GET"; 1149Requests[220].Request.Path = "/repos/ceff2/ff6ae/commits/ae429/status"; 1152Requests[221].Request.Method = "GET"; 1153Requests[221].Request.Path = "/repos/13588/5ba9b/commits/534a9aa/comments"; 1156Requests[222].Request.Method = "POST"; 1157Requests[222].Request.Path = "/repos/ba059/a94ca/commits/dfc6938/comments"; 1160Requests[223].Request.Method = "GET"; 1161Requests[223].Request.Path = "/repos/39532/6e5f6/deployments/f41d0/statuses"; 1164Requests[224].Request.Method = "POST"; 1165Requests[224].Request.Path = "/repos/18373/23ac8/deployments/392c1/statuses"; 1168Requests[225].Request.Method = "POST"; 1169Requests[225].Request.Path = "/repos/73148/9d526/hooks/59adb8/tests"; 1172Requests[226].Request.Method = "POST"; 1173Requests[226].Request.Path = "/repos/19a36/91f69/issues/765c82/comments"; 1176Requests[227].Request.Method = "GET"; 1177Requests[227].Request.Path = "/repos/ffa54/61a37/issues/710513/comments"; 1180Requests[228].Request.Method = "GET"; 1181Requests[228].Request.Path = "/repos/fcb0f/0c8e2/issues/de0d38/events"; 1184Requests[229].Request.Method = "POST"; 1185Requests[229].Request.Path = "/repos/158d7/00bed/issues/9bc6b6/labels"; 1188Requests[230].Request.Method = "GET"; 1189Requests[230].Request.Path = "/repos/67c56/41fd8/issues/6b6858/labels"; 1192Requests[231].Request.Method = "PUT"; 1193Requests[231].Request.Path = "/repos/b8194/06cc6/issues/effa3d/labels"; 1196Requests[232].Request.Method = "DELETE"; 1197Requests[232].Request.Path = "/repos/57423/979fd/issues/6d3fce/labels"; 1200Requests[233].Request.Method = "GET"; 1201Requests[233].Request.Path = "/repos/d799e/53e56/milestones/80ebe2/labels"; 1204Requests[234].Request.Method = "GET"; 1205Requests[234].Request.Path = "/repos/55311/56e4a/pulls/666fa7/comments"; 1208Requests[235].Request.Method = "POST"; 1209Requests[235].Request.Path = "/repos/c9cd2/f3e91/pulls/ae901f/comments"; 1212Requests[236].Request.Method = "GET"; 1213Requests[236].Request.Path = "/repos/3195c/e552e/pulls/6b6d2b/commits"; 1216Requests[237].Request.Method = "GET"; 1217Requests[237].Request.Path = "/repos/2d6b6/77639/pulls/3423c6/files"; 1220Requests[238].Request.Method = "PUT"; 1221Requests[238].Request.Path = "/repos/6c6d3/3a6b0/pulls/1da47f/merge"; 1224Requests[239].Request.Method = "GET"; 1225Requests[239].Request.Path = "/repos/b144c/c707e/pulls/a5fcb2/merge"; 1228Requests[240].Request.Method = "GET"; 1229Requests[240].Request.Path = "/repos/81459/8618d/releases/65289/assets"; 1232Requests[241].Request.Method = "DELETE"; 1233Requests[241].Request.Path = "/repos/3c5a4/a7525/issues/e93fff/labels/cd7b0"; 1236Requests[242].Request.Method = "GET"; 1237Requests[242].Request.Path = "/repos/85bd9/70da2/2dc44fe9-83b9-/01762";
Matching\MatcherAzureBenchmarkBase.generated.cs (10320)
5184Requests[0].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5185Requests[0].Request.Path = "/account"; 5188Requests[1].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5189Requests[1].Request.Path = "/analyze"; 5192Requests[2].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5193Requests[2].Request.Path = "/apis"; 5196Requests[3].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5197Requests[3].Request.Path = "/Applications"; 5200Requests[4].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5201Requests[4].Request.Path = "/ApplicationTypes"; 5204Requests[5].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5205Requests[5].Request.Path = "/apps"; 5208Requests[6].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5209Requests[6].Request.Path = "/apps"; 5212Requests[7].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5213Requests[7].Request.Path = "/authorizationServers"; 5216Requests[8].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5217Requests[8].Request.Path = "/backends"; 5220Requests[9].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5221Requests[9].Request.Path = "/BuildJob"; 5224Requests[10].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5225Requests[10].Request.Path = "/certificates"; 5228Requests[11].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5229Requests[11].Request.Path = "/certificates"; 5232Requests[12].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5233Requests[12].Request.Path = "/ComposeDeployments"; 5236Requests[13].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5237Requests[13].Request.Path = "/datasources"; 5240Requests[14].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5241Requests[14].Request.Path = "/datasources"; 5244Requests[15].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5245Requests[15].Request.Path = "/deletedcertificates"; 5248Requests[16].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5249Requests[16].Request.Path = "/deletedkeys"; 5252Requests[17].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5253Requests[17].Request.Path = "/deletedsecrets"; 5256Requests[18].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5257Requests[18].Request.Path = "/deletedstorage"; 5260Requests[19].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5261Requests[19].Request.Path = "/describe"; 5264Requests[20].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5265Requests[20].Request.Path = "/detect"; 5268Requests[21].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5269Requests[21].Request.Path = "/domains"; 5272Requests[22].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5273Requests[22].Request.Path = "/entities"; 5276Requests[23].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5277Requests[23].Request.Path = "/facelists"; 5280Requests[24].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5281Requests[24].Request.Path = "/Faults"; 5284Requests[25].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5285Requests[25].Request.Path = "/findsimilars"; 5288Requests[26].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5289Requests[26].Request.Path = "/generateThumbnail"; 5292Requests[27].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5293Requests[27].Request.Path = "/group"; 5296Requests[28].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5297Requests[28].Request.Path = "/groups"; 5300Requests[29].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5301Requests[29].Request.Path = "/identify"; 5304Requests[30].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5305Requests[30].Request.Path = "/identityProviders"; 5308Requests[31].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5309Requests[31].Request.Path = "/ImageStore"; 5312Requests[32].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5313Requests[32].Request.Path = "/indexers"; 5316Requests[33].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5317Requests[33].Request.Path = "/indexers"; 5320Requests[34].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5321Requests[34].Request.Path = "/indexes"; 5324Requests[35].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5325Requests[35].Request.Path = "/indexes"; 5328Requests[36].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5329Requests[36].Request.Path = "/jobs"; 5332Requests[37].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5333Requests[37].Request.Path = "/Jobs"; 5336Requests[38].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5337Requests[38].Request.Path = "/jobschedules"; 5340Requests[39].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5341Requests[39].Request.Path = "/jobschedules"; 5344Requests[40].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5345Requests[40].Request.Path = "/keys"; 5348Requests[41].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5349Requests[41].Request.Path = "/lifetimejobstats"; 5352Requests[42].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5353Requests[42].Request.Path = "/lifetimepoolstats"; 5356Requests[43].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5357Requests[43].Request.Path = "/loggers"; 5360Requests[44].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5361Requests[44].Request.Path = "/models"; 5364Requests[45].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5365Requests[45].Request.Path = "/news"; 5368Requests[46].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5369Requests[46].Request.Path = "/nodeagentskus"; 5372Requests[47].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5373Requests[47].Request.Path = "/nodecounts"; 5376Requests[48].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5377Requests[48].Request.Path = "/Nodes"; 5380Requests[49].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5381Requests[49].Request.Path = "/ocr"; 5384Requests[50].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5385Requests[50].Request.Path = "/offers"; 5388Requests[51].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5389Requests[51].Request.Path = "/openidConnectProviders"; 5392Requests[52].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5393Requests[52].Request.Path = "/persongroups"; 5396Requests[53].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5397Requests[53].Request.Path = "/pipelines"; 5400Requests[54].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5401Requests[54].Request.Path = "/policies"; 5404Requests[55].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5405Requests[55].Request.Path = "/policySnippets"; 5408Requests[56].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5409Requests[56].Request.Path = "/pools"; 5412Requests[57].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5413Requests[57].Request.Path = "/pools"; 5416Requests[58].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5417Requests[58].Request.Path = "/poolusagemetrics"; 5420Requests[59].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5421Requests[59].Request.Path = "/products"; 5424Requests[60].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5425Requests[60].Request.Path = "/projects"; 5428Requests[61].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5429Requests[61].Request.Path = "/projects"; 5432Requests[62].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5433Requests[62].Request.Path = "/properties"; 5436Requests[63].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5437Requests[63].Request.Path = "/recognizeText"; 5440Requests[64].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5441Requests[64].Request.Path = "/recurrences"; 5444Requests[65].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5445Requests[65].Request.Path = "/regions"; 5448Requests[66].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5449Requests[66].Request.Path = "/search"; 5452Requests[67].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5453Requests[67].Request.Path = "/secrets"; 5456Requests[68].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5457Requests[68].Request.Path = "/servicestats"; 5460Requests[69].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5461Requests[69].Request.Path = "/spellcheck"; 5464Requests[70].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5465Requests[70].Request.Path = "/storage"; 5468Requests[71].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5469Requests[71].Request.Path = "/subscriptions"; 5472Requests[72].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5473Requests[72].Request.Path = "/synonymmaps"; 5476Requests[73].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5477Requests[73].Request.Path = "/synonymmaps"; 5480Requests[74].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5481Requests[74].Request.Path = "/tag"; 5484Requests[75].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5485Requests[75].Request.Path = "/templates"; 5488Requests[76].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5489Requests[76].Request.Path = "/tenants"; 5492Requests[77].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5493Requests[77].Request.Path = "/users"; 5496Requests[78].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5497Requests[78].Request.Path = "/verify"; 5500Requests[79].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5501Requests[79].Request.Path = "/$/CancelRepairTask"; 5504Requests[80].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5505Requests[80].Request.Path = "/$/CreateRepairTask"; 5508Requests[81].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5509Requests[81].Request.Path = "/$/DeleteRepairTask"; 5512Requests[82].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5513Requests[82].Request.Path = "/$/ForceApproveRepairTask"; 5516Requests[83].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5517Requests[83].Request.Path = "/$/GetAadMetadata"; 5520Requests[84].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5521Requests[84].Request.Path = "/$/GetClusterConfiguration"; 5524Requests[85].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5525Requests[85].Request.Path = "/$/GetClusterConfigurationUpgradeStatus"; 5528Requests[86].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5529Requests[86].Request.Path = "/$/GetClusterHealth"; 5532Requests[87].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5533Requests[87].Request.Path = "/$/GetClusterHealth"; 5536Requests[88].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5537Requests[88].Request.Path = "/$/GetClusterHealthChunk"; 5540Requests[89].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5541Requests[89].Request.Path = "/$/GetClusterHealthChunk"; 5544Requests[90].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5545Requests[90].Request.Path = "/$/GetClusterManifest"; 5548Requests[91].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5549Requests[91].Request.Path = "/$/GetLoadInformation"; 5552Requests[92].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5553Requests[92].Request.Path = "/$/GetProvisionedCodeVersions"; 5556Requests[93].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5557Requests[93].Request.Path = "/$/GetProvisionedConfigVersions"; 5560Requests[94].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5561Requests[94].Request.Path = "/$/GetRepairTaskList"; 5564Requests[95].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5565Requests[95].Request.Path = "/$/GetUpgradeOrchestrationServiceState"; 5568Requests[96].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5569Requests[96].Request.Path = "/$/GetUpgradeProgress"; 5572Requests[97].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5573Requests[97].Request.Path = "/$/InvokeInfrastructureCommand"; 5576Requests[98].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5577Requests[98].Request.Path = "/$/InvokeInfrastructureQuery"; 5580Requests[99].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5581Requests[99].Request.Path = "/$/MoveToNextUpgradeDomain"; 5584Requests[100].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5585Requests[100].Request.Path = "/$/Provision"; 5588Requests[101].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5589Requests[101].Request.Path = "/$/RecoverAllPartitions"; 5592Requests[102].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5593Requests[102].Request.Path = "/$/RecoverSystemPartitions"; 5596Requests[103].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5597Requests[103].Request.Path = "/$/ReportClusterHealth"; 5600Requests[104].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5601Requests[104].Request.Path = "/$/RollbackUpgrade"; 5604Requests[105].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5605Requests[105].Request.Path = "/$/SetUpgradeOrchestrationServiceState"; 5608Requests[106].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5609Requests[106].Request.Path = "/$/StartClusterConfigurationUpgrade"; 5612Requests[107].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5613Requests[107].Request.Path = "/$/Unprovision"; 5616Requests[108].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5617Requests[108].Request.Path = "/$/UpdateRepairExecutionState"; 5620Requests[109].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5621Requests[109].Request.Path = "/$/UpdateRepairTaskHealthPolicy"; 5624Requests[110].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5625Requests[110].Request.Path = "/$/UpdateUpgrade"; 5628Requests[111].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5629Requests[111].Request.Path = "/$/Upgrade"; 5632Requests[112].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5633Requests[112].Request.Path = "/api/events"; 5636Requests[113].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5637Requests[113].Request.Path = "/apps/assistants"; 5640Requests[114].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5641Requests[114].Request.Path = "/apps/cultures"; 5644Requests[115].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5645Requests[115].Request.Path = "/apps/customprebuiltdomains"; 5648Requests[116].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5649Requests[116].Request.Path = "/apps/customprebuiltdomains"; 5652Requests[117].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5653Requests[117].Request.Path = "/apps/domains"; 5656Requests[118].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5657Requests[118].Request.Path = "/apps/import"; 5660Requests[119].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5661Requests[119].Request.Path = "/apps/usagescenarios"; 5664Requests[120].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5665Requests[120].Request.Path = "/BackupRestore/BackupPolicies"; 5668Requests[121].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5669Requests[121].Request.Path = "/certificates/contacts"; 5672Requests[122].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 5673Requests[122].Request.Path = "/certificates/contacts"; 5676Requests[123].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 5677Requests[123].Request.Path = "/certificates/contacts"; 5680Requests[124].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5681Requests[124].Request.Path = "/certificates/issuers"; 5684Requests[125].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5685Requests[125].Request.Path = "/docs/$count"; 5688Requests[126].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5689Requests[126].Request.Path = "/docs/autocomplete"; 5692Requests[127].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5693Requests[127].Request.Path = "/docs/autocomplete"; 5696Requests[128].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5697Requests[128].Request.Path = "/images/details"; 5700Requests[129].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5701Requests[129].Request.Path = "/images/search"; 5704Requests[130].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5705Requests[130].Request.Path = "/images/trending"; 5708Requests[131].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5709Requests[131].Request.Path = "/images/visualsearch"; 5712Requests[132].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5713Requests[132].Request.Path = "/keys/restore"; 5716Requests[133].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5717Requests[133].Request.Path = "/news/search"; 5720Requests[134].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5721Requests[134].Request.Path = "/news/trendingtopics"; 5724Requests[135].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 5725Requests[135].Request.Path = "/portalsettings/delegation"; 5728Requests[136].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 5729Requests[136].Request.Path = "/portalsettings/delegation"; 5732Requests[137].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5733Requests[137].Request.Path = "/portalsettings/delegation"; 5736Requests[138].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 5737Requests[138].Request.Path = "/portalsettings/signin"; 5740Requests[139].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 5741Requests[139].Request.Path = "/portalsettings/signin"; 5744Requests[140].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5745Requests[140].Request.Path = "/portalsettings/signin"; 5748Requests[141].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 5749Requests[141].Request.Path = "/portalsettings/signup"; 5752Requests[142].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5753Requests[142].Request.Path = "/portalsettings/signup"; 5756Requests[143].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 5757Requests[143].Request.Path = "/portalsettings/signup"; 5760Requests[144].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5761Requests[144].Request.Path = "/reports/byApi"; 5764Requests[145].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5765Requests[145].Request.Path = "/reports/byGeo"; 5768Requests[146].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5769Requests[146].Request.Path = "/reports/byOperation"; 5772Requests[147].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5773Requests[147].Request.Path = "/reports/byProduct"; 5776Requests[148].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5777Requests[148].Request.Path = "/reports/byRequest"; 5780Requests[149].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5781Requests[149].Request.Path = "/reports/bySubscription"; 5784Requests[150].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5785Requests[150].Request.Path = "/reports/byTime"; 5788Requests[151].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5789Requests[151].Request.Path = "/reports/byUser"; 5792Requests[152].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5793Requests[152].Request.Path = "/secrets/restore"; 5796Requests[153].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5797Requests[153].Request.Path = "/storage/restore"; 5800Requests[154].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5801Requests[154].Request.Path = "/Tools/Chaos"; 5804Requests[155].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5805Requests[155].Request.Path = "/v2.0/entities"; 5808Requests[156].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5809Requests[156].Request.Path = "/v2.0/keyPhrases"; 5812Requests[157].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5813Requests[157].Request.Path = "/v2.0/languages"; 5816Requests[158].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5817Requests[158].Request.Path = "/v2.0/sentiment"; 5820Requests[159].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5821Requests[159].Request.Path = "/videos/details"; 5824Requests[160].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5825Requests[160].Request.Path = "/videos/search"; 5828Requests[161].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5829Requests[161].Request.Path = "/videos/trending"; 5832Requests[162].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5833Requests[162].Request.Path = "/Applications/$/Create"; 5836Requests[163].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5837Requests[163].Request.Path = "/ApplicationTypes/$/Provision"; 5840Requests[164].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5841Requests[164].Request.Path = "/BackupRestore/$/GetBackups"; 5844Requests[165].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5845Requests[165].Request.Path = "/catalog/usql/acl"; 5848Requests[166].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5849Requests[166].Request.Path = "/catalog/usql/databases"; 5852Requests[167].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 5853Requests[167].Request.Path = "/ComposeDeployments/$/Create"; 5856Requests[168].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5857Requests[168].Request.Path = "/EventsStore/Applications/Events"; 5860Requests[169].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5861Requests[169].Request.Path = "/EventsStore/Cluster/Events"; 5864Requests[170].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5865Requests[170].Request.Path = "/EventsStore/Containers/Events"; 5868Requests[171].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5869Requests[171].Request.Path = "/EventsStore/Nodes/Events"; 5872Requests[172].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5873Requests[172].Request.Path = "/EventsStore/Partitions/Events"; 5876Requests[173].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5877Requests[173].Request.Path = "/EventsStore/Services/Events"; 5880Requests[174].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5881Requests[174].Request.Path = "/Faults/$/Cancel"; 5884Requests[175].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5885Requests[175].Request.Path = "/ImageStore/$/CommitUploadSession"; 5888Requests[176].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5889Requests[176].Request.Path = "/ImageStore/$/Copy"; 5892Requests[177].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 5893Requests[177].Request.Path = "/ImageStore/$/DeleteUploadSession"; 5896Requests[178].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5897Requests[178].Request.Path = "/ImageStore/$/GetUploadSession"; 5900Requests[179].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5901Requests[179].Request.Path = "/Names/$/Create"; 5904Requests[180].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5905Requests[180].Request.Path = "/providers/Microsoft.AAD/operations"; 5908Requests[181].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5909Requests[181].Request.Path = "/providers/Microsoft.Addons/operations"; 5912Requests[182].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5913Requests[182].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices"; 5916Requests[183].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5917Requests[183].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices"; 5920Requests[184].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 5921Requests[184].Request.Path = "/providers/Microsoft.ADHybridHealthService/configuration"; 5924Requests[185].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5925Requests[185].Request.Path = "/providers/Microsoft.ADHybridHealthService/configuration"; 5928Requests[186].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5929Requests[186].Request.Path = "/providers/Microsoft.ADHybridHealthService/configuration"; 5932Requests[187].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5933Requests[187].Request.Path = "/providers/Microsoft.ADHybridHealthService/operations"; 5936Requests[188].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 5937Requests[188].Request.Path = "/providers/Microsoft.ADHybridHealthService/services"; 5940Requests[189].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5941Requests[189].Request.Path = "/providers/Microsoft.ADHybridHealthService/services"; 5944Requests[190].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5945Requests[190].Request.Path = "/providers/Microsoft.Advisor/operations"; 5948Requests[191].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5949Requests[191].Request.Path = "/providers/Microsoft.AnalysisServices/operations"; 5952Requests[192].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5953Requests[192].Request.Path = "/providers/Microsoft.ApiManagement/operations"; 5956Requests[193].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5957Requests[193].Request.Path = "/providers/Microsoft.Authorization/policyDefinitions"; 5960Requests[194].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5961Requests[194].Request.Path = "/providers/Microsoft.Authorization/policySetDefinitions"; 5964Requests[195].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5965Requests[195].Request.Path = "/providers/Microsoft.Authorization/providerOperations"; 5968Requests[196].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5969Requests[196].Request.Path = "/providers/Microsoft.Automation/operations"; 5972Requests[197].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5973Requests[197].Request.Path = "/providers/Microsoft.AzureStack/operations"; 5976Requests[198].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5977Requests[198].Request.Path = "/providers/Microsoft.Backup.Admin/operations"; 5980Requests[199].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5981Requests[199].Request.Path = "/providers/Microsoft.Batch/operations"; 5984Requests[200].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5985Requests[200].Request.Path = "/providers/Microsoft.BatchAI/operations"; 5988Requests[201].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5989Requests[201].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts"; 5992Requests[202].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5993Requests[202].Request.Path = "/providers/Microsoft.Billing/operations"; 5996Requests[203].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 5997Requests[203].Request.Path = "/providers/Microsoft.BotService/operations"; 6000Requests[204].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6001Requests[204].Request.Path = "/providers/Microsoft.Cache/operations"; 6004Requests[205].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6005Requests[205].Request.Path = "/providers/Microsoft.Capacity/operations"; 6008Requests[206].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6009Requests[206].Request.Path = "/providers/Microsoft.Capacity/reservationOrders"; 6012Requests[207].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6013Requests[207].Request.Path = "/providers/Microsoft.Cdn/checkNameAvailability"; 6016Requests[208].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6017Requests[208].Request.Path = "/providers/Microsoft.Cdn/edgenodes"; 6020Requests[209].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6021Requests[209].Request.Path = "/providers/Microsoft.Cdn/operations"; 6024Requests[210].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6025Requests[210].Request.Path = "/providers/Microsoft.CertificateRegistration/operations"; 6028Requests[211].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6029Requests[211].Request.Path = "/providers/Microsoft.CognitiveServices/operations"; 6032Requests[212].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6033Requests[212].Request.Path = "/providers/Microsoft.Commerce.Admin/operations"; 6036Requests[213].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6037Requests[213].Request.Path = "/providers/Microsoft.Compute.Admin/operations"; 6040Requests[214].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6041Requests[214].Request.Path = "/providers/Microsoft.Compute/operations"; 6044Requests[215].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6045Requests[215].Request.Path = "/providers/Microsoft.Consumption/operations"; 6048Requests[216].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6049Requests[216].Request.Path = "/providers/Microsoft.ContainerInstance/operations"; 6052Requests[217].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6053Requests[217].Request.Path = "/providers/Microsoft.ContainerRegistry/operations"; 6056Requests[218].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6057Requests[218].Request.Path = "/providers/Microsoft.ContainerService/operations"; 6060Requests[219].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6061Requests[219].Request.Path = "/providers/Microsoft.CustomerInsights/operations"; 6064Requests[220].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6065Requests[220].Request.Path = "/providers/Microsoft.DataBox/operations"; 6068Requests[221].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6069Requests[221].Request.Path = "/providers/Microsoft.Databricks/operations"; 6072Requests[222].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6073Requests[222].Request.Path = "/providers/Microsoft.DataCatalog/operations"; 6076Requests[223].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6077Requests[223].Request.Path = "/providers/Microsoft.DataFactory/operations"; 6080Requests[224].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6081Requests[224].Request.Path = "/providers/Microsoft.DataLakeAnalytics/operations"; 6084Requests[225].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6085Requests[225].Request.Path = "/providers/Microsoft.DataLakeStore/operations"; 6088Requests[226].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6089Requests[226].Request.Path = "/providers/Microsoft.DataMigration/operations"; 6092Requests[227].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6093Requests[227].Request.Path = "/providers/Microsoft.DBforMySQL/operations"; 6096Requests[228].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6097Requests[228].Request.Path = "/providers/Microsoft.DBforPostgreSQL/operations"; 6100Requests[229].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6101Requests[229].Request.Path = "/providers/Microsoft.Devices/operations"; 6104Requests[230].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6105Requests[230].Request.Path = "/providers/Microsoft.DevTestLab/operations"; 6108Requests[231].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6109Requests[231].Request.Path = "/providers/Microsoft.DocumentDB/operations"; 6112Requests[232].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6113Requests[232].Request.Path = "/providers/Microsoft.DomainRegistration/operations"; 6116Requests[233].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6117Requests[233].Request.Path = "/providers/Microsoft.EventGrid/operations"; 6120Requests[234].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6121Requests[234].Request.Path = "/providers/Microsoft.EventGrid/topicTypes"; 6124Requests[235].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6125Requests[235].Request.Path = "/providers/Microsoft.EventHub/operations"; 6128Requests[236].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6129Requests[236].Request.Path = "/providers/Microsoft.Fabric.Admin/operations"; 6132Requests[237].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6133Requests[237].Request.Path = "/providers/Microsoft.Gallery.Admin/operations"; 6136Requests[238].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6137Requests[238].Request.Path = "/providers/Microsoft.HanaOnAzure/operations"; 6140Requests[239].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6141Requests[239].Request.Path = "/providers/Microsoft.HDInsight/operations"; 6144Requests[240].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6145Requests[240].Request.Path = "/providers/Microsoft.ImportExport/locations"; 6148Requests[241].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6149Requests[241].Request.Path = "/providers/Microsoft.ImportExport/operations"; 6152Requests[242].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6153Requests[242].Request.Path = "/providers/Microsoft.InfrastructureInsights.Admin/operations"; 6156Requests[243].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6157Requests[243].Request.Path = "/providers/microsoft.insights/eventcategories"; 6160Requests[244].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6161Requests[244].Request.Path = "/providers/microsoft.insights/operations"; 6164Requests[245].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6165Requests[245].Request.Path = "/providers/Microsoft.Intune/locations"; 6168Requests[246].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6169Requests[246].Request.Path = "/providers/Microsoft.IoTCentral/operations"; 6172Requests[247].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6173Requests[247].Request.Path = "/providers/Microsoft.IoTSpaces/operations"; 6176Requests[248].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6177Requests[248].Request.Path = "/providers/Microsoft.KeyVault.Admin/operations"; 6180Requests[249].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6181Requests[249].Request.Path = "/providers/Microsoft.KeyVault/operations"; 6184Requests[250].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6185Requests[250].Request.Path = "/providers/Microsoft.Logic/operations"; 6188Requests[251].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6189Requests[251].Request.Path = "/providers/Microsoft.MachineLearning/operations"; 6192Requests[252].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6193Requests[252].Request.Path = "/providers/Microsoft.MachineLearningCompute/operations"; 6196Requests[253].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6197Requests[253].Request.Path = "/providers/Microsoft.MachineLearningExperimentation/operations"; 6200Requests[254].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6201Requests[254].Request.Path = "/providers/Microsoft.MachineLearningServices/operations"; 6204Requests[255].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6205Requests[255].Request.Path = "/providers/Microsoft.ManagedIdentity/operations"; 6208Requests[256].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6209Requests[256].Request.Path = "/providers/Microsoft.Management/checkNameAvailability"; 6212Requests[257].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6213Requests[257].Request.Path = "/providers/Microsoft.Management/getEntities"; 6216Requests[258].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6217Requests[258].Request.Path = "/providers/Microsoft.Management/managementGroups"; 6220Requests[259].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6221Requests[259].Request.Path = "/providers/Microsoft.Management/operations"; 6224Requests[260].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6225Requests[260].Request.Path = "/providers/Microsoft.Management/startTenantBackfill"; 6228Requests[261].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6229Requests[261].Request.Path = "/providers/Microsoft.Management/tenantBackfillStatus"; 6232Requests[262].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6233Requests[262].Request.Path = "/providers/Microsoft.ManagementPartner/operations"; 6236Requests[263].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6237Requests[263].Request.Path = "/providers/Microsoft.Maps/operations"; 6240Requests[264].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6241Requests[264].Request.Path = "/providers/Microsoft.MarketplaceOrdering/operations"; 6244Requests[265].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6245Requests[265].Request.Path = "/providers/Microsoft.Media/operations"; 6248Requests[266].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6249Requests[266].Request.Path = "/providers/Microsoft.Migrate/operations"; 6252Requests[267].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6253Requests[267].Request.Path = "/providers/Microsoft.Network/checkTrafficManagerNameAvailability"; 6256Requests[268].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6257Requests[268].Request.Path = "/providers/Microsoft.Network/operations"; 6260Requests[269].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6261Requests[269].Request.Path = "/providers/Microsoft.NotificationHubs/operations"; 6264Requests[270].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6265Requests[270].Request.Path = "/providers/Microsoft.OperationalInsights/operations"; 6268Requests[271].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6269Requests[271].Request.Path = "/providers/Microsoft.OperationsManagement/operations"; 6272Requests[272].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6273Requests[272].Request.Path = "/providers/Microsoft.PolicyInsights/operations"; 6276Requests[273].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6277Requests[273].Request.Path = "/providers/Microsoft.PowerBI/operations"; 6280Requests[274].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6281Requests[274].Request.Path = "/providers/Microsoft.PowerBIDedicated/operations"; 6284Requests[275].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6285Requests[275].Request.Path = "/providers/Microsoft.RecoveryServices/operations"; 6288Requests[276].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6289Requests[276].Request.Path = "/providers/Microsoft.Relay/operations"; 6292Requests[277].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6293Requests[277].Request.Path = "/providers/Microsoft.ResourceHealth/operations"; 6296Requests[278].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6297Requests[278].Request.Path = "/providers/Microsoft.Search/operations"; 6300Requests[279].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6301Requests[279].Request.Path = "/providers/Microsoft.Security/operations"; 6304Requests[280].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6305Requests[280].Request.Path = "/providers/Microsoft.ServiceBus/operations"; 6308Requests[281].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6309Requests[281].Request.Path = "/providers/Microsoft.ServiceFabric/operations"; 6312Requests[282].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6313Requests[282].Request.Path = "/providers/Microsoft.SignalRService/operations"; 6316Requests[283].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6317Requests[283].Request.Path = "/providers/Microsoft.Sql/operations"; 6320Requests[284].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6321Requests[284].Request.Path = "/providers/Microsoft.Storage.Admin/operations"; 6324Requests[285].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6325Requests[285].Request.Path = "/providers/Microsoft.Storage/operations"; 6328Requests[286].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6329Requests[286].Request.Path = "/providers/Microsoft.StorSimple/operations"; 6332Requests[287].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6333Requests[287].Request.Path = "/providers/Microsoft.StreamAnalytics/operations"; 6336Requests[288].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6337Requests[288].Request.Path = "/providers/Microsoft.Subscription/operations"; 6340Requests[289].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6341Requests[289].Request.Path = "/providers/Microsoft.Subscription/subscriptionDefinitions"; 6344Requests[290].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6345Requests[290].Request.Path = "/providers/Microsoft.Subscription/subscriptionOperations"; 6348Requests[291].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6349Requests[291].Request.Path = "/providers/Microsoft.Subscriptions.Admin/operations"; 6352Requests[292].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6353Requests[292].Request.Path = "/providers/Microsoft.Subscriptions/operations"; 6356Requests[293].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6357Requests[293].Request.Path = "/providers/Microsoft.TimeSeriesInsights/operations"; 6360Requests[294].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6361Requests[294].Request.Path = "/providers/Microsoft.Update.Admin/operations"; 6364Requests[295].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6365Requests[295].Request.Path = "/providers/microsoft.visualstudio/operations"; 6368Requests[296].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6369Requests[296].Request.Path = "/providers/Microsoft.Web/availableStacks"; 6372Requests[297].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6373Requests[297].Request.Path = "/providers/Microsoft.Web/operations"; 6376Requests[298].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6377Requests[298].Request.Path = "/providers/Microsoft.Web/sourcecontrols"; 6380Requests[299].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6381Requests[299].Request.Path = "/Tools/Chaos/Events"; 6384Requests[300].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6385Requests[300].Request.Path = "/Tools/Chaos/Schedule"; 6388Requests[301].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6389Requests[301].Request.Path = "/Tools/Chaos/Schedule"; 6392Requests[302].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6393Requests[302].Request.Path = "/BackupRestore/BackupPolicies/$/Create"; 6396Requests[303].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6397Requests[303].Request.Path = "/contentmoderator/lists/v1.0/imagelists"; 6400Requests[304].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6401Requests[304].Request.Path = "/contentmoderator/lists/v1.0/imagelists"; 6404Requests[305].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6405Requests[305].Request.Path = "/contentmoderator/lists/v1.0/termlists"; 6408Requests[306].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6409Requests[306].Request.Path = "/contentmoderator/lists/v1.0/termlists"; 6412Requests[307].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6413Requests[307].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/premiumCheck"; 6416Requests[308].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6417Requests[308].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/premiumCheck"; 6420Requests[309].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6421Requests[309].Request.Path = "/providers/Microsoft.BotService/botServices/checkNameAvailability"; 6424Requests[310].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6425Requests[310].Request.Path = "/providers/Microsoft.Intune/locations/hostName"; 6428Requests[311].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6429Requests[311].Request.Path = "/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default"; 6432Requests[312].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6433Requests[312].Request.Path = "/providers/Microsoft.Web/publishingUsers/web"; 6436Requests[313].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6437Requests[313].Request.Path = "/providers/Microsoft.Web/publishingUsers/web"; 6440Requests[314].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6441Requests[314].Request.Path = "/Tools/Chaos/$/Report"; 6444Requests[315].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6445Requests[315].Request.Path = "/Tools/Chaos/$/Start"; 6448Requests[316].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6449Requests[316].Request.Path = "/Tools/Chaos/$/Stop"; 6452Requests[317].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6453Requests[317].Request.Path = "/contentmoderator/moderate/v1.0/ProcessImage/Evaluate"; 6456Requests[318].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6457Requests[318].Request.Path = "/contentmoderator/moderate/v1.0/ProcessImage/FindFaces"; 6460Requests[319].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6461Requests[319].Request.Path = "/contentmoderator/moderate/v1.0/ProcessImage/Match"; 6464Requests[320].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6465Requests[320].Request.Path = "/contentmoderator/moderate/v1.0/ProcessImage/OCR"; 6468Requests[321].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6469Requests[321].Request.Path = "/contentmoderator/moderate/v1.0/ProcessText/DetectLanguage"; 6472Requests[322].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6473Requests[322].Request.Path = "/contentmoderator/moderate/v1.0/ProcessText/Screen"; 6476Requests[323].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6477Requests[323].Request.Path = "/providers/microsoft.insights/eventtypes/management/values"; 6480Requests[324].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6481Requests[324].Request.Path = "/contentmoderator/lists/v1.0/imagelists/25aa61"; 6484Requests[325].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6485Requests[325].Request.Path = "/contentmoderator/lists/v1.0/imagelists/0dcf18"; 6488Requests[326].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6489Requests[326].Request.Path = "/contentmoderator/lists/v1.0/imagelists/4e479e"; 6492Requests[327].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6493Requests[327].Request.Path = "/contentmoderator/lists/v1.0/termlists/2fba04"; 6496Requests[328].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6497Requests[328].Request.Path = "/contentmoderator/lists/v1.0/termlists/6f112d"; 6500Requests[329].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6501Requests[329].Request.Path = "/contentmoderator/lists/v1.0/termlists/2704d5"; 6504Requests[330].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6505Requests[330].Request.Path = "/contentmoderator/lists/v1.0/imagelists/413be3/images"; 6508Requests[331].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6509Requests[331].Request.Path = "/contentmoderator/lists/v1.0/imagelists/46b449/images"; 6512Requests[332].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6513Requests[332].Request.Path = "/contentmoderator/lists/v1.0/imagelists/9e2d1f/images"; 6516Requests[333].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6517Requests[333].Request.Path = "/contentmoderator/lists/v1.0/imagelists/32b297/RefreshIndex"; 6520Requests[334].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6521Requests[334].Request.Path = "/contentmoderator/lists/v1.0/termlists/4768ab/RefreshIndex"; 6524Requests[335].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6525Requests[335].Request.Path = "/contentmoderator/lists/v1.0/termlists/3e9c6e/terms"; 6528Requests[336].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6529Requests[336].Request.Path = "/contentmoderator/lists/v1.0/termlists/efd19d/terms"; 6532Requests[337].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6533Requests[337].Request.Path = "/contentmoderator/review/v1.0/teams/d31cc2d7/jobs"; 6536Requests[338].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6537Requests[338].Request.Path = "/contentmoderator/review/v1.0/teams/751e507c/reviews"; 6540Requests[339].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6541Requests[339].Request.Path = "/contentmoderator/lists/v1.0/imagelists/f7b4a3/images/f12b023"; 6544Requests[340].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6545Requests[340].Request.Path = "/contentmoderator/lists/v1.0/termlists/aa1aa0/terms/a9b7c"; 6548Requests[341].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6549Requests[341].Request.Path = "/contentmoderator/lists/v1.0/termlists/f3f417/terms/35bb6"; 6552Requests[342].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6553Requests[342].Request.Path = "/contentmoderator/review/v1.0/teams/fc285269/jobs/c79da"; 6556Requests[343].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6557Requests[343].Request.Path = "/contentmoderator/review/v1.0/teams/0e6abeaf/reviews/7dd8ffd8"; 6560Requests[344].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6561Requests[344].Request.Path = "/contentmoderator/review/v1.0/teams/693bebc4/reviews/ea3553ca/frames"; 6564Requests[345].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6565Requests[345].Request.Path = "/contentmoderator/review/v1.0/teams/7a0e3357/reviews/36ae2d30/frames"; 6568Requests[346].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6569Requests[346].Request.Path = "/contentmoderator/review/v1.0/teams/5048e6f1/reviews/489585ff/publish"; 6572Requests[347].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6573Requests[347].Request.Path = "/contentmoderator/review/v1.0/teams/53354982/reviews/d7f03610/transcript"; 6576Requests[348].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6577Requests[348].Request.Path = "/contentmoderator/review/v1.0/teams/eb87ce25/reviews/998117ed/transcriptmoderationresult"; 6580Requests[349].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6581Requests[349].Request.Path = "/catalog/usql/databases/93692dd6-f87"; 6584Requests[350].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6585Requests[350].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/f5ff924c-f8"; 6588Requests[351].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 6589Requests[351].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/b9c7be79-aa"; 6592Requests[352].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6593Requests[352].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/1c9a239f-e0"; 6596Requests[353].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 6597Requests[353].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/484449f9-f3"; 6600Requests[354].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6601Requests[354].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/1d7b7ad3-9e"; 6604Requests[355].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6605Requests[355].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/7d9fc8a3-1a"; 6608Requests[356].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6609Requests[356].Request.Path = "/providers/Microsoft.Authorization/policyDefinitions/c47668b4-df1d-4131-9"; 6612Requests[357].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6613Requests[357].Request.Path = "/providers/Microsoft.Authorization/policySetDefinitions/ab27ed95-271e-469b-82fb"; 6616Requests[358].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6617Requests[358].Request.Path = "/providers/Microsoft.Authorization/providerOperations/cfb3f171-01e4-42f4-892e-5"; 6620Requests[359].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6621Requests[359].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts/df588"; 6624Requests[360].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6625Requests[360].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/b391d0ba-6d11-4092"; 6628Requests[361].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 6629Requests[361].Request.Path = "/providers/Microsoft.DocumentDB/databaseAccountNames/2288d58c-0b"; 6632Requests[362].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6633Requests[362].Request.Path = "/providers/Microsoft.EventGrid/topicTypes/c431ed5b-7f58"; 6636Requests[363].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6637Requests[363].Request.Path = "/providers/Microsoft.ImportExport/locations/08942aa9-146"; 6640Requests[364].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6641Requests[364].Request.Path = "/providers/Microsoft.Management/managementGroups/a8fb179"; 6644Requests[365].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6645Requests[365].Request.Path = "/providers/Microsoft.Management/managementGroups/77e200d"; 6648Requests[366].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 6649Requests[366].Request.Path = "/providers/Microsoft.Management/managementGroups/bb9e50d"; 6652Requests[367].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6653Requests[367].Request.Path = "/providers/Microsoft.Management/managementGroups/1adf866"; 6656Requests[368].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6657Requests[368].Request.Path = "/providers/Microsoft.ManagementPartner/partners/5f9118fe-"; 6660Requests[369].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6661Requests[369].Request.Path = "/providers/Microsoft.ManagementPartner/partners/4005a6a8-"; 6664Requests[370].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6665Requests[370].Request.Path = "/providers/Microsoft.ManagementPartner/partners/c3fb95a7-"; 6668Requests[371].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 6669Requests[371].Request.Path = "/providers/Microsoft.ManagementPartner/partners/932703a1-"; 6672Requests[372].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6673Requests[372].Request.Path = "/providers/Microsoft.Subscription/subscriptionDefinitions/4396a9c7-d3fd-4dac-bdb0-ef"; 6676Requests[373].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6677Requests[373].Request.Path = "/providers/Microsoft.Subscription/subscriptionDefinitions/207eb2dd-c9c8-4458-afa6-a6"; 6680Requests[374].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6681Requests[374].Request.Path = "/providers/Microsoft.Subscription/subscriptionOperations/3bab0549-0d"; 6684Requests[375].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6685Requests[375].Request.Path = "/providers/Microsoft.Web/sourcecontrols/b18cc219-f067-4f0"; 6688Requests[376].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6689Requests[376].Request.Path = "/providers/Microsoft.Web/sourcecontrols/a7099740-741a-473"; 6692Requests[377].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6693Requests[377].Request.Path = "/catalog/usql/databases/8d9d68e1-2df/acl"; 6696Requests[378].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6697Requests[378].Request.Path = "/catalog/usql/databases/2f7e76be-d8b/assemblies"; 6700Requests[379].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6701Requests[379].Request.Path = "/catalog/usql/databases/4278cafa-37e/credentials"; 6704Requests[380].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6705Requests[380].Request.Path = "/catalog/usql/databases/3d494e04-a84/externaldatasources"; 6708Requests[381].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6709Requests[381].Request.Path = "/catalog/usql/databases/80427fc0-9f1/schemas"; 6712Requests[382].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6713Requests[382].Request.Path = "/catalog/usql/databases/c40247c2-546/secrets"; 6716Requests[383].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6717Requests[383].Request.Path = "/catalog/usql/databases/7275f9ee-ae4/statistics"; 6720Requests[384].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6721Requests[384].Request.Path = "/catalog/usql/databases/1cf4a5b3-8d5/tables"; 6724Requests[385].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6725Requests[385].Request.Path = "/catalog/usql/databases/5fcfc12a-323/tablevaluedfunctions"; 6728Requests[386].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6729Requests[386].Request.Path = "/catalog/usql/databases/8ff06c64-ad9/views"; 6732Requests[387].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6733Requests[387].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/940de8c0-f2/addomainservicemembers"; 6736Requests[388].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6737Requests[388].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/21d35358-a9/addsservicemembers"; 6740Requests[389].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6741Requests[389].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/fed58734-2e/alerts"; 6744Requests[390].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6745Requests[390].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/d02246e9-f7/configuration"; 6748Requests[391].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6749Requests[391].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/392e98c5-d2/forestsummary"; 6752Requests[392].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6753Requests[392].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/e48a65d6-f9/metricmetadata"; 6756Requests[393].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6757Requests[393].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/54621a83-0a/replicationstatus"; 6760Requests[394].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6761Requests[394].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/5e118514-fd/replicationsummary"; 6764Requests[395].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6765Requests[395].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/26af5da8-21/alerts"; 6768Requests[396].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6769Requests[396].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/6691379d-1f/exportstatus"; 6772Requests[397].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6773Requests[397].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/3ed12a22-74/metricmetadata"; 6776Requests[398].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 6777Requests[398].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/28cd7a5e-58/monitoringconfiguration"; 6780Requests[399].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6781Requests[399].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/34605a3e-ba/monitoringconfigurations"; 6784Requests[400].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6785Requests[400].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/2baef7ac-c7/servicemembers"; 6788Requests[401].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6789Requests[401].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/aa95fd42-74/servicemembers"; 6792Requests[402].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6793Requests[402].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/155b0c82-c90f-4214/merge"; 6796Requests[403].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6797Requests[403].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/0b4c03f2-9cab-44af/reservations"; 6800Requests[404].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6801Requests[404].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/b687eba5-3577-4be3/split"; 6804Requests[405].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6805Requests[405].Request.Path = "/providers/Microsoft.EventGrid/topicTypes/377c6660-948c/eventTypes"; 6808Requests[406].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6809Requests[406].Request.Path = "/providers/Microsoft.Intune/locations/388062e4/androidPolicies"; 6812Requests[407].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6813Requests[407].Request.Path = "/providers/Microsoft.Intune/locations/b205c42c/apps"; 6816Requests[408].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6817Requests[408].Request.Path = "/providers/Microsoft.Intune/locations/91df0de5/flaggedUsers"; 6820Requests[409].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6821Requests[409].Request.Path = "/providers/Microsoft.Intune/locations/ea0ec772/iosPolicies"; 6824Requests[410].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6825Requests[410].Request.Path = "/providers/Microsoft.Intune/locations/b20b8976/operationResults"; 6828Requests[411].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6829Requests[411].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/6ea17143-34/exporterrors/counts"; 6832Requests[412].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6833Requests[412].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/ff073b5e-a9/exporterrors/listV2"; 6836Requests[413].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6837Requests[413].Request.Path = "/providers/Microsoft.Intune/locations/a8d648a7/statuses/default"; 6840Requests[414].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6841Requests[414].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/ade1b803-23/feedbacktype/alerts/feedback"; 6844Requests[415].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6845Requests[415].Request.Path = "/providers/Microsoft.Billing/billingAccounts/ccae3b9c-b2c5-4f/providers/Microsoft.Consumption/balances"; 6848Requests[416].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6849Requests[416].Request.Path = "/providers/Microsoft.Billing/billingAccounts/c524e916-836f-40/providers/Microsoft.Consumption/costTags"; 6852Requests[417].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6853Requests[417].Request.Path = "/providers/Microsoft.Billing/billingAccounts/51071c3e-8bf2-4f/providers/Microsoft.Consumption/costTags"; 6856Requests[418].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6857Requests[418].Request.Path = "/providers/Microsoft.Billing/billingAccounts/9191b4ed-4d7f-49/providers/Microsoft.Consumption/marketplaces"; 6860Requests[419].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6861Requests[419].Request.Path = "/providers/Microsoft.Billing/billingAccounts/96fe9ee3-1324-4f/providers/Microsoft.Consumption/usageDetails"; 6864Requests[420].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6865Requests[420].Request.Path = "/providers/Microsoft.Billing/departments/05450b32-c5c/providers/Microsoft.Consumption/marketplaces"; 6868Requests[421].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6869Requests[421].Request.Path = "/providers/Microsoft.Billing/departments/12f104fa-b3f/providers/Microsoft.Consumption/usageDetails"; 6872Requests[422].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6873Requests[422].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts/afb11455-5f8e-4532-/providers/Microsoft.Consumption/marketplaces"; 6876Requests[423].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6877Requests[423].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts/944c41e1-4e05-43be-/providers/Microsoft.Consumption/usageDetails"; 6880Requests[424].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6881Requests[424].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts/f3ac579a-45b5-4527-8d/providers/Microsoft.Subscription/createSubscription"; 6884Requests[425].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6885Requests[425].Request.Path = "/providers/Microsoft.Capacity/reservationorders/7a202111-b6ac-490a/providers/Microsoft.Consumption/reservationDetails"; 6888Requests[426].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6889Requests[426].Request.Path = "/providers/Microsoft.Capacity/reservationorders/55284163-f97a-4619/providers/Microsoft.Consumption/reservationSummaries"; 6892Requests[427].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6893Requests[427].Request.Path = "/providers/Microsoft.CostManagement/billingAccounts/2fd5f886-94d1-4a/providers/Microsoft.Consumption/tags"; 6896Requests[428].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6897Requests[428].Request.Path = "/providers/Microsoft.Management/managementgroups/b4ae8938-5329-4b6/providers/Microsoft.Authorization/policyDefinitions"; 6900Requests[429].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6901Requests[429].Request.Path = "/providers/Microsoft.Management/managementgroups/2bace433-bddf-420/providers/Microsoft.Authorization/policySetDefinitions"; 6904Requests[430].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6905Requests[430].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/4dbcc8e6-76/reports/badpassword/details/user"; 6908Requests[431].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6909Requests[431].Request.Path = "/providers/Microsoft.Management/managementgroups/3d8586a5-4d06-4ad/providers/Microsoft.Authorization/policyDefinitions/96ced39a-f12b-42cd-a"; 6912Requests[432].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6913Requests[432].Request.Path = "/providers/Microsoft.Management/managementgroups/39d8cd83-a4e3-466/providers/Microsoft.Authorization/policyDefinitions/ca864824-f84e-451c-a"; 6916Requests[433].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6917Requests[433].Request.Path = "/providers/Microsoft.Management/managementgroups/ac3de0b6-0c84-400/providers/Microsoft.Authorization/policyDefinitions/a32da581-2aa8-49a7-b"; 6920Requests[434].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6921Requests[434].Request.Path = "/providers/Microsoft.Management/managementgroups/197d1db2-e6ab-46e/providers/Microsoft.Authorization/policySetDefinitions/ad0bf8f1-fcb9-428d-b94e"; 6924Requests[435].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6925Requests[435].Request.Path = "/providers/Microsoft.Management/managementgroups/c873f8b5-2d2f-444/providers/Microsoft.Authorization/policySetDefinitions/b884c108-6b9d-4f51-94bf"; 6928Requests[436].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 6929Requests[436].Request.Path = "/providers/Microsoft.Management/managementgroups/caa2520a-38cd-44e/providers/Microsoft.Authorization/policySetDefinitions/124cb0d9-e10a-4c8b-be7a"; 6932Requests[437].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6933Requests[437].Request.Path = "/providers/Microsoft.Billing/billingAccounts/58dbeb24-cb26-41/providers/Microsoft.Billing/billingPeriods/ceb3e668-a5b0-41f/providers/Microsoft.Consumption/balances"; 6936Requests[438].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6937Requests[438].Request.Path = "/providers/Microsoft.Billing/billingAccounts/e815176f-d651-4a/providers/Microsoft.Billing/billingPeriods/56b72c33-d8e9-40e/providers/Microsoft.Consumption/marketplaces"; 6940Requests[439].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6941Requests[439].Request.Path = "/providers/Microsoft.Billing/billingAccounts/37797732-a671-4b/providers/Microsoft.Billing/billingPeriods/80b660af-c5e0-46f/providers/Microsoft.Consumption/usageDetails"; 6944Requests[440].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6945Requests[440].Request.Path = "/providers/Microsoft.Billing/departments/98546c3a-020/providers/Microsoft.Billing/billingPeriods/5afbb630-4fbd-42b/providers/Microsoft.Consumption/marketplaces"; 6948Requests[441].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6949Requests[441].Request.Path = "/providers/Microsoft.Billing/departments/6d6d340f-74a/providers/Microsoft.Billing/billingPeriods/60ca7d18-5bb7-48a/providers/Microsoft.Consumption/usageDetails"; 6952Requests[442].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6953Requests[442].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts/dfc2caef-c829-4fdf-/providers/Microsoft.Billing/billingPeriods/52488d12-95c4-4bd/providers/Microsoft.Consumption/marketplaces"; 6956Requests[443].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6957Requests[443].Request.Path = "/providers/Microsoft.Billing/enrollmentAccounts/5ea1c5f1-789a-4a67-/providers/Microsoft.Billing/billingPeriods/fd36d2a6-f1d1-4b2/providers/Microsoft.Consumption/usageDetails"; 6960Requests[444].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6961Requests[444].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/e722bb21-4f/feedbacktype/alerts/ea114d0a-/alertfeedback"; 6964Requests[445].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6965Requests[445].Request.Path = "/catalog/usql/databases/522b21fc-3c4/assemblies/6bb3dc2e-b36"; 6968Requests[446].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 6969Requests[446].Request.Path = "/catalog/usql/databases/4f97ae5b-10b/credentials/c526f56a-1a70-"; 6972Requests[447].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6973Requests[447].Request.Path = "/catalog/usql/databases/959fe508-a50/credentials/f2866fe5-2d7b-"; 6976Requests[448].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6977Requests[448].Request.Path = "/catalog/usql/databases/cd112a49-96d/credentials/c77e81dc-96c3-"; 6980Requests[449].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 6981Requests[449].Request.Path = "/catalog/usql/databases/2dc20285-cf0/credentials/f0f276bd-b579-"; 6984Requests[450].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6985Requests[450].Request.Path = "/catalog/usql/databases/9b34c996-f88/externaldatasources/c7144c88-f194-48c4-9de"; 6988Requests[451].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6989Requests[451].Request.Path = "/catalog/usql/databases/ed84ef31-2b5/schemas/76a906e7-4"; 6992Requests[452].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 6993Requests[452].Request.Path = "/catalog/usql/databases/f9656aaf-d3a/secrets/6c34b504-4"; 6996Requests[453].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 6997Requests[453].Request.Path = "/catalog/usql/databases/3b60ae23-c1f/secrets/1f087fea-a"; 7000Requests[454].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7001Requests[454].Request.Path = "/catalog/usql/databases/060711e3-06a/secrets/5debd271-f"; 7004Requests[455].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7005Requests[455].Request.Path = "/catalog/usql/databases/087653a9-053/secrets/8b7d8ec2-9"; 7008Requests[456].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7009Requests[456].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/7065ac2e-12/dimensions/7114a017-"; 7012Requests[457].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7013Requests[457].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/4728ae6a-a6/metricmetadata/2041ddb0-a"; 7016Requests[458].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7017Requests[458].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/92de7596-50/checkServiceFeatureAvailibility/b75bd81b-14"; 7020Requests[459].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7021Requests[459].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/b167109d-b8/metricmetadata/edc8a92d-a"; 7024Requests[460].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7025Requests[460].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/32b2a987-5c/servicemembers/ad90bbd6-e8bd-4"; 7028Requests[461].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7029Requests[461].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/f0e9cde0-25/servicemembers/2a8471b9-bcd4-4"; 7032Requests[462].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7033Requests[462].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/15c9d56b-4a/TenantAllowlisting/57c79c6d-29"; 7036Requests[463].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7037Requests[463].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/c83f0452-418f-432d/reservations/912a0cb0-6552"; 7040Requests[464].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7041Requests[464].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/5658130b-a23c-4cbb/reservations/ea6b0616-6fb6"; 7044Requests[465].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7045Requests[465].Request.Path = "/providers/Microsoft.Intune/locations/c3370383/androidPolicies/f0c310dc-5"; 7048Requests[466].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7049Requests[466].Request.Path = "/providers/Microsoft.Intune/locations/4867d324/androidPolicies/0a164356-3"; 7052Requests[467].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7053Requests[467].Request.Path = "/providers/Microsoft.Intune/locations/6c0935f3/androidPolicies/0bb726fe-1"; 7056Requests[468].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7057Requests[468].Request.Path = "/providers/Microsoft.Intune/locations/6ce2504d/androidPolicies/3be2c33c-4"; 7060Requests[469].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7061Requests[469].Request.Path = "/providers/Microsoft.Intune/locations/e01a286a/flaggedUsers/907ab9ce"; 7064Requests[470].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7065Requests[470].Request.Path = "/providers/Microsoft.Intune/locations/50ff2f7e/iosPolicies/d4c02ef8-d"; 7068Requests[471].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7069Requests[471].Request.Path = "/providers/Microsoft.Intune/locations/0e3e1b3e/iosPolicies/bf931ef8-0"; 7072Requests[472].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7073Requests[472].Request.Path = "/providers/Microsoft.Intune/locations/6b84aca5/iosPolicies/8a7d396a-2"; 7076Requests[473].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7077Requests[473].Request.Path = "/providers/Microsoft.Intune/locations/91ff4eff/iosPolicies/1256392a-e"; 7080Requests[474].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7081Requests[474].Request.Path = "/providers/Microsoft.Management/managementGroups/d31ad31/subscriptions/b027f36c-9322-"; 7084Requests[475].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7085Requests[475].Request.Path = "/providers/Microsoft.Management/managementGroups/55d7357/subscriptions/82cc4132-cddb-"; 7088Requests[476].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7089Requests[476].Request.Path = "/catalog/usql/databases/5737ef02-734/schemas/2ffdce38-b/packages"; 7092Requests[477].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7093Requests[477].Request.Path = "/catalog/usql/databases/ebb1e575-88f/schemas/90f366dc-5/procedures"; 7096Requests[478].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7097Requests[478].Request.Path = "/catalog/usql/databases/8fdaff71-30a/schemas/3cd27cea-e/statistics"; 7100Requests[479].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7101Requests[479].Request.Path = "/catalog/usql/databases/82ab4106-551/schemas/09bd2151-b/tables"; 7104Requests[480].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7105Requests[480].Request.Path = "/catalog/usql/databases/fb2a2e1c-8af/schemas/23b91f04-c/tabletypes"; 7108Requests[481].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7109Requests[481].Request.Path = "/catalog/usql/databases/5cbb7c69-35c/schemas/f9fcad13-5/tablevaluedfunctions"; 7112Requests[482].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7113Requests[482].Request.Path = "/catalog/usql/databases/d0e472a9-d86/schemas/b0f0efe3-e/types"; 7116Requests[483].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7117Requests[483].Request.Path = "/catalog/usql/databases/6eda39fa-d3e/schemas/09bc74ca-d/views"; 7120Requests[484].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7121Requests[484].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/16c3aae0-57/servicemembers/929a4a00-11b5-4/alerts"; 7124Requests[485].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7125Requests[485].Request.Path = "/providers/Microsoft.ADHybridHealthService/service/10817748-7a/servicemembers/978c1c85-14b1-4/connectors"; 7128Requests[486].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7129Requests[486].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/6af49530-c0/servicemembers/5590f18b-d642-4/alerts"; 7132Requests[487].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7133Requests[487].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/a14077e8-9c/servicemembers/98fbefd0-5c06-4/credentials"; 7136Requests[488].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7137Requests[488].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/a35df15d-b7/servicemembers/0f12227f-649b-4/data"; 7140Requests[489].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7141Requests[489].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/25acf844-eb/servicemembers/25e61e52-afd7-4/datafreshness"; 7144Requests[490].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7145Requests[490].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/c840c66b-45/servicemembers/27ce50a3-5fb9-4/exportstatus"; 7148Requests[491].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7149Requests[491].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/cf0ec528-10/servicemembers/134e985e-a05c-4/globalconfiguration"; 7152Requests[492].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7153Requests[492].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/c4563e1d-b7/servicemembers/f1fb81a5-c7c1-4/serviceconfiguration"; 7156Requests[493].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7157Requests[493].Request.Path = "/providers/Microsoft.Capacity/reservationOrders/7d20576e-63e9-44e4/reservations/c4e7a692-2bfa/revisions"; 7160Requests[494].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7161Requests[494].Request.Path = "/providers/Microsoft.Intune/locations/e0a5c0bb/AndroidPolicies/db9da655-3/apps"; 7164Requests[495].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7165Requests[495].Request.Path = "/providers/Microsoft.Intune/locations/21a6b242/androidPolicies/c0def284-7/groups"; 7168Requests[496].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7169Requests[496].Request.Path = "/providers/Microsoft.Intune/locations/ba980de6/flaggedUsers/4acea646/flaggedEnrolledApps"; 7172Requests[497].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7173Requests[497].Request.Path = "/providers/Microsoft.Intune/locations/63e6dcb1/iosPolicies/4016b26e-4/apps"; 7176Requests[498].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7177Requests[498].Request.Path = "/providers/Microsoft.Intune/locations/2138f3ec/iosPolicies/0e5b6d6b-1/groups"; 7180Requests[499].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7181Requests[499].Request.Path = "/providers/Microsoft.Intune/locations/54e6dcee/users/0cef01bb/devices"; 7184Requests[500].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7185Requests[500].Request.Path = "/providers/Microsoft.Capacity/reservationorders/d1121b87-725b-47a1/reservations/e5af7101-0561/providers/Microsoft.Consumption/reservationDetails"; 7188Requests[501].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7189Requests[501].Request.Path = "/providers/Microsoft.Capacity/reservationorders/b649436b-24dc-469a/reservations/cd0302f5-f662/providers/Microsoft.Consumption/reservationSummaries"; 7192Requests[502].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7193Requests[502].Request.Path = "/catalog/usql/databases/ee9020bb-9fb/schemas/fcf7aff1-3/packages/dbad130a-eb"; 7196Requests[503].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7197Requests[503].Request.Path = "/catalog/usql/databases/b7096c8d-54e/schemas/ef350499-0/procedures/03737b1f-9326"; 7200Requests[504].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7201Requests[504].Request.Path = "/catalog/usql/databases/ecb583d1-465/schemas/7a0383ee-a/tables/587ab987-"; 7204Requests[505].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7205Requests[505].Request.Path = "/catalog/usql/databases/03c972c4-153/schemas/96319834-8/tabletypes/d61bee34-2ef9"; 7208Requests[506].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7209Requests[506].Request.Path = "/catalog/usql/databases/3c184fb1-0a4/schemas/8a759027-1/tablevaluedfunctions/0f37bc63-249a-48ce-ac29"; 7212Requests[507].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7213Requests[507].Request.Path = "/catalog/usql/databases/42be4030-110/schemas/ee034e9f-1/views/fb2f94a2"; 7216Requests[508].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7217Requests[508].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/35178c04-48/metricmetadata/5e3544bb-5/groups/37896d9b-"; 7220Requests[509].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7221Requests[509].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/b8d0d188-05/metricmetadata/43d752a3-6/groups/4fddb8f1-"; 7224Requests[510].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7225Requests[510].Request.Path = "/providers/Microsoft.Intune/locations/fcdcca85/androidPolicies/3926053d-f/apps/95dd42c"; 7228Requests[511].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7229Requests[511].Request.Path = "/providers/Microsoft.Intune/locations/68b0edc7/androidPolicies/95b041a6-0/apps/d38538d"; 7232Requests[512].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7233Requests[512].Request.Path = "/providers/Microsoft.Intune/locations/8d6fd178/androidPolicies/16ea146c-e/groups/8d04903"; 7236Requests[513].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7237Requests[513].Request.Path = "/providers/Microsoft.Intune/locations/c286d2d9/androidPolicies/c5275598-5/groups/d7ae910"; 7240Requests[514].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7241Requests[514].Request.Path = "/providers/Microsoft.Intune/locations/c53b5c3d/iosPolicies/dbcbe18f-9/apps/ef60ec0"; 7244Requests[515].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7245Requests[515].Request.Path = "/providers/Microsoft.Intune/locations/4b70cc25/iosPolicies/0960e653-8/apps/e742952"; 7248Requests[516].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7249Requests[516].Request.Path = "/providers/Microsoft.Intune/locations/502341f0/iosPolicies/2274b5e1-6/groups/7aef78d"; 7252Requests[517].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7253Requests[517].Request.Path = "/providers/Microsoft.Intune/locations/b093142d/iosPolicies/ef230112-e/groups/c75ab1f"; 7256Requests[518].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7257Requests[518].Request.Path = "/providers/Microsoft.Intune/locations/1f763112/users/579226bd/devices/d212c0d5-2"; 7260Requests[519].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7261Requests[519].Request.Path = "/catalog/usql/databases/c3d15cff-038/schemas/17b7b7d2-6/tables/2f1848ff-/partitions"; 7264Requests[520].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7265Requests[520].Request.Path = "/catalog/usql/databases/2f2cc894-608/schemas/79ea882b-7/tables/a9725310-/previewrows"; 7268Requests[521].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7269Requests[521].Request.Path = "/catalog/usql/databases/83eb945c-15a/schemas/89a1f5d9-9/tables/b756a303-/statistics"; 7272Requests[522].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7273Requests[522].Request.Path = "/catalog/usql/databases/d733c3b9-4a0/schemas/94adc39c-1/tables/be815c04-/tablefragments"; 7276Requests[523].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7277Requests[523].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/1a429c36-b7/metrics/d4353f5e-b/groups/9b08f6aa-/average"; 7280Requests[524].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7281Requests[524].Request.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/34fdab9d-71/metrics/d23abe43-7/groups/781e023d-/sum"; 7284Requests[525].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7285Requests[525].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/4d271c53-c7/metrics/0e2749aa-b/groups/90f416c2-/average"; 7288Requests[526].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7289Requests[526].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/4b8ffcec-c2/metrics/6b2dd782-d/groups/fd43abfe-/sum"; 7292Requests[527].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7293Requests[527].Request.Path = "/providers/Microsoft.Intune/locations/ae9891e7/users/f4a0ecaa/devices/8b63666c-3/wipe"; 7296Requests[528].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7297Requests[528].Request.Path = "/catalog/usql/databases/d0782c60-77e/schemas/f79332ec-6/tables/eb9d811b-/partitions/f1efa048-800e"; 7300Requests[529].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7301Requests[529].Request.Path = "/catalog/usql/databases/f7ae3995-d29/schemas/9ac28ef4-2/tables/8e3c0f94-/statistics/f385ea1d-f85d-"; 7304Requests[530].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7305Requests[530].Request.Path = "/providers/Microsoft.ADHybridHealthService/services/a9205564-5a/servicemembers/d407b0e5-0abd-4/metrics/1adcb4d5-f/groups/2afcba17-"; 7308Requests[531].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7309Requests[531].Request.Path = "/catalog/usql/databases/1b34028d-d5b/schemas/42d87371-6/tables/a3d4d429-/partitions/d365ba29-dd01/previewrows"; 7312Requests[532].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7313Requests[532].Request.Path = "/apps/customprebuiltdomains/27f4187"; 7316Requests[533].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7317Requests[533].Request.Path = "/BackupRestore/BackupPolicies/d11f8dc6-f337-40"; 7320Requests[534].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7321Requests[534].Request.Path = "/certificates/issuers/587d7e46-72"; 7324Requests[535].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7325Requests[535].Request.Path = "/certificates/issuers/0df7f88b-72"; 7328Requests[536].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7329Requests[536].Request.Path = "/certificates/issuers/b816a099-a3"; 7332Requests[537].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7333Requests[537].Request.Path = "/certificates/issuers/e239824a-df"; 7336Requests[538].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7337Requests[538].Request.Path = "/webhdfs/v1/26769904-de69-"; 7340Requests[539].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7341Requests[539].Request.Path = "/webhdfs/v1/7bbc4fc0"; 7344Requests[540].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7345Requests[540].Request.Path = "/webhdfs/v1/18be8"; 7348Requests[541].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7349Requests[541].Request.Path = "/webhdfs/v1/ce6cf1fa-b9ab-4b4e-a5"; 7352Requests[542].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7353Requests[542].Request.Path = "/webhdfs/va/05f7fb94-74ff-47ef-9c9e-f"; 7356Requests[543].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7357Requests[543].Request.Path = "/BackupRestore/BackupPolicies/93a5f9e9-0df7-47/$/Delete"; 7360Requests[544].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7361Requests[544].Request.Path = "/BackupRestore/BackupPolicies/c62827dc-6aad-45/$/GetBackupEnabledEntities"; 7364Requests[545].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7365Requests[545].Request.Path = "/BackupRestore/BackupPolicies/4f2b96db-fbc8-44/$/Update"; 7368Requests[546].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7369Requests[546].Request.Path = "/EventsStore/Applications/e503edf3-37fc/$/Events"; 7372Requests[547].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7373Requests[547].Request.Path = "/EventsStore/CorrelatedEvents/6d5356dc-af36-4/$/Events"; 7376Requests[548].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7377Requests[548].Request.Path = "/EventsStore/Nodes/4e7c1ccf/$/Events"; 7380Requests[549].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7381Requests[549].Request.Path = "/EventsStore/Partitions/d67d8a7c-db/$/Events"; 7384Requests[550].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7385Requests[550].Request.Path = "/EventsStore/Services/96bcf9a5-/$/Events"; 7388Requests[551].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7389Requests[551].Request.Path = "/Faults/Nodes/1887565c/$/GetTransitionProgress"; 7392Requests[552].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7393Requests[552].Request.Path = "/Faults/Nodes/d62b04d5/$/StartTransition"; 7396Requests[553].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7397Requests[553].Request.Path = "/EventsStore/Partitions/ec33cc83-64/$/Replicas/Events"; 7400Requests[554].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7401Requests[554].Request.Path = "/Services/$/c417dcba-/$/GetPartitions/$/Recover"; 7404Requests[555].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7405Requests[555].Request.Path = "/EventsStore/Partitions/09db8dab-f9/$/Replicas/74a84f0e-/$/Events"; 7408Requests[556].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7409Requests[556].Request.Path = "/Faults/Services/dfc0e352-/$/GetPartitions/382113a9-a3/$/GetDataLossProgress"; 7412Requests[557].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7413Requests[557].Request.Path = "/Faults/Services/7a15971e-/$/GetPartitions/fcf03752-db/$/GetQuorumLossProgress"; 7416Requests[558].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7417Requests[558].Request.Path = "/Faults/Services/591d91bb-/$/GetPartitions/24f4ace0-c1/$/GetRestartProgress"; 7420Requests[559].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7421Requests[559].Request.Path = "/Faults/Services/f6bf794c-/$/GetPartitions/103b439c-15/$/StartDataLoss"; 7424Requests[560].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7425Requests[560].Request.Path = "/Faults/Services/3d855d31-/$/GetPartitions/919bd10f-8e/$/StartQuorumLoss"; 7428Requests[561].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7429Requests[561].Request.Path = "/Faults/Services/17a02d30-/$/GetPartitions/0acaf73b-7f/$/StartRestart"; 7432Requests[562].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7433Requests[562].Request.Path = "/apis/e756c"; 7436Requests[563].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7437Requests[563].Request.Path = "/apis/b334c"; 7440Requests[564].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7441Requests[564].Request.Path = "/apis/dfe77"; 7444Requests[565].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7445Requests[565].Request.Path = "/apis/10de7"; 7448Requests[566].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7449Requests[566].Request.Path = "/Applications/d01cf355-de3e"; 7452Requests[567].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7453Requests[567].Request.Path = "/ApplicationTypes/8a030075-94f5-4212-"; 7456Requests[568].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7457Requests[568].Request.Path = "/apps/702dc"; 7460Requests[569].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7461Requests[569].Request.Path = "/apps/baa40"; 7464Requests[570].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7465Requests[570].Request.Path = "/apps/ab5c5"; 7468Requests[571].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7469Requests[571].Request.Path = "/authorizationServers/9348f66"; 7472Requests[572].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7473Requests[572].Request.Path = "/authorizationServers/90d8dd4"; 7476Requests[573].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7477Requests[573].Request.Path = "/authorizationServers/e3d960b"; 7480Requests[574].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7481Requests[574].Request.Path = "/authorizationServers/55ad8a2"; 7484Requests[575].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7485Requests[575].Request.Path = "/backends/f91018df-"; 7488Requests[576].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7489Requests[576].Request.Path = "/backends/2ac52071-"; 7492Requests[577].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7493Requests[577].Request.Path = "/backends/098081a8-"; 7496Requests[578].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7497Requests[578].Request.Path = "/backends/2b9bd7f6-"; 7500Requests[579].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7501Requests[579].Request.Path = "/certificates/9a7465ab-7844"; 7504Requests[580].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7505Requests[580].Request.Path = "/certificates/e7e484e1-5bc4"; 7508Requests[581].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7509Requests[581].Request.Path = "/certificates/01d84a1c-6dc8-43"; 7512Requests[582].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7513Requests[582].Request.Path = "/ComposeDeployments/ab5a79d4-11dc-"; 7516Requests[583].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7517Requests[583].Request.Path = "/deletedcertificates/295eaff7-73c8-41"; 7520Requests[584].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7521Requests[584].Request.Path = "/deletedcertificates/7f689dfe-f60a-48"; 7524Requests[585].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7525Requests[585].Request.Path = "/deletedkeys/e160f5b8"; 7528Requests[586].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7529Requests[586].Request.Path = "/deletedkeys/2ef92ad1"; 7532Requests[587].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7533Requests[587].Request.Path = "/deletedsecrets/fb6c8877-4f"; 7536Requests[588].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7537Requests[588].Request.Path = "/deletedsecrets/b3b8475d-bb"; 7540Requests[589].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7541Requests[589].Request.Path = "/deletedstorage/7b7393ea-16f3-46f5-b"; 7544Requests[590].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7545Requests[590].Request.Path = "/deletedstorage/8ea1f03b-c6f9-4bb1-a"; 7548Requests[591].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7549Requests[591].Request.Path = "/domains/d7389d88"; 7552Requests[592].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7553Requests[592].Request.Path = "/facelists/92239e42-0"; 7556Requests[593].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7557Requests[593].Request.Path = "/facelists/9d11db61-d"; 7560Requests[594].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7561Requests[594].Request.Path = "/facelists/5b4960dd-b"; 7564Requests[595].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7565Requests[595].Request.Path = "/facelists/1d354058-0"; 7568Requests[596].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7569Requests[596].Request.Path = "/groups/9da11b3"; 7572Requests[597].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7573Requests[597].Request.Path = "/groups/d1b8799"; 7576Requests[598].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7577Requests[598].Request.Path = "/groups/49be350"; 7580Requests[599].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7581Requests[599].Request.Path = "/groups/fb6b877"; 7584Requests[600].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7585Requests[600].Request.Path = "/identityProviders/143965ad-a020-42b5-b"; 7588Requests[601].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7589Requests[601].Request.Path = "/identityProviders/6685c6a9-0a67-4316-9"; 7592Requests[602].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7593Requests[602].Request.Path = "/identityProviders/93d09a82-5ce6-40d5-a"; 7596Requests[603].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7597Requests[603].Request.Path = "/identityProviders/9390249f-a954-4520-b"; 7600Requests[604].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7601Requests[604].Request.Path = "/ImageStore/1b8a55ea-c6"; 7604Requests[605].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7605Requests[605].Request.Path = "/ImageStore/4174f25f-f8"; 7608Requests[606].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7609Requests[606].Request.Path = "/ImageStore/ca25bd5f-16"; 7612Requests[607].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7613Requests[607].Request.Path = "/jobs/c3b1d"; 7616Requests[608].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7617Requests[608].Request.Path = "/jobs/6c07df0b-3f"; 7620Requests[609].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7621Requests[609].Request.Path = "/Jobs/dca95b9c-b6"; 7624Requests[610].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7625Requests[610].Request.Path = "/Jobs/a8aeed8f-36"; 7628Requests[611].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 7629Requests[611].Request.Path = "/jobschedules/98088610-ab03"; 7632Requests[612].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7633Requests[612].Request.Path = "/jobschedules/976ff427-1efd"; 7636Requests[613].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7637Requests[613].Request.Path = "/jobschedules/545369bd-eb30"; 7640Requests[614].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7641Requests[614].Request.Path = "/jobschedules/204a59a1-1923"; 7644Requests[615].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7645Requests[615].Request.Path = "/jobschedules/13627dab-4746"; 7648Requests[616].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7649Requests[616].Request.Path = "/keys/6f7cf5bc"; 7652Requests[617].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7653Requests[617].Request.Path = "/keys/360505f3"; 7656Requests[618].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7657Requests[618].Request.Path = "/loggers/9f4e352c"; 7660Requests[619].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7661Requests[619].Request.Path = "/loggers/c31e7baa"; 7664Requests[620].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7665Requests[620].Request.Path = "/loggers/25c09157"; 7668Requests[621].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7669Requests[621].Request.Path = "/loggers/7fd42fff"; 7672Requests[622].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7673Requests[622].Request.Path = "/Names/9e7298"; 7676Requests[623].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7677Requests[623].Request.Path = "/Names/bb401a"; 7680Requests[624].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7681Requests[624].Request.Path = "/Nodes/31dde36d"; 7684Requests[625].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7685Requests[625].Request.Path = "/openidConnectProviders/49ad4"; 7688Requests[626].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7689Requests[626].Request.Path = "/openidConnectProviders/40b65"; 7692Requests[627].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7693Requests[627].Request.Path = "/openidConnectProviders/e689f"; 7696Requests[628].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7697Requests[628].Request.Path = "/openidConnectProviders/a38ee"; 7700Requests[629].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7701Requests[629].Request.Path = "/Partitions/b8a3da24-2f"; 7704Requests[630].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7705Requests[630].Request.Path = "/persongroups/3b5b98f6-6ea8"; 7708Requests[631].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7709Requests[631].Request.Path = "/persongroups/e39bc3a1-8dd6"; 7712Requests[632].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7713Requests[632].Request.Path = "/persongroups/a22998f2-c6a6"; 7716Requests[633].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7717Requests[633].Request.Path = "/persongroups/ffe852f6-f7b7"; 7720Requests[634].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7721Requests[634].Request.Path = "/pipelines/747ab2b2-4a4d-46"; 7724Requests[635].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7725Requests[635].Request.Path = "/policies/38b62994"; 7728Requests[636].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7729Requests[636].Request.Path = "/policies/4acac6a3"; 7732Requests[637].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7733Requests[637].Request.Path = "/policies/93c1a981"; 7736Requests[638].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7737Requests[638].Request.Path = "/pools/41343e"; 7740Requests[639].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7741Requests[639].Request.Path = "/pools/5cb259"; 7744Requests[640].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 7745Requests[640].Request.Path = "/pools/54e906"; 7748Requests[641].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7749Requests[641].Request.Path = "/pools/02a477"; 7752Requests[642].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7753Requests[642].Request.Path = "/products/04e18688-"; 7756Requests[643].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7757Requests[643].Request.Path = "/products/4a6f83a8-"; 7760Requests[644].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7761Requests[644].Request.Path = "/products/151c8c1d-"; 7764Requests[645].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7765Requests[645].Request.Path = "/products/db650c93-"; 7768Requests[646].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7769Requests[646].Request.Path = "/projects/deb64cd7-"; 7772Requests[647].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7773Requests[647].Request.Path = "/projects/b15afb9f-"; 7776Requests[648].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7777Requests[648].Request.Path = "/projects/62294a47-"; 7780Requests[649].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7781Requests[649].Request.Path = "/properties/a3d170"; 7784Requests[650].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7785Requests[650].Request.Path = "/properties/e98a5a"; 7788Requests[651].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7789Requests[651].Request.Path = "/properties/24c08c"; 7792Requests[652].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7793Requests[652].Request.Path = "/properties/5e00c2"; 7796Requests[653].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7797Requests[653].Request.Path = "/quotas/7d3ce473-c988-4"; 7800Requests[654].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7801Requests[654].Request.Path = "/quotas/938dec85-8431-4"; 7804Requests[655].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7805Requests[655].Request.Path = "/recurrences/abe1aac9-5788-4511"; 7808Requests[656].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7809Requests[656].Request.Path = "/secrets/87427030-19"; 7812Requests[657].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7813Requests[657].Request.Path = "/secrets/7d4c29d8-e1"; 7816Requests[658].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7817Requests[658].Request.Path = "/storage/e7d81916-0a94-4b7a-a"; 7820Requests[659].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7821Requests[659].Request.Path = "/storage/22c1c3c9-6481-48f0-8"; 7824Requests[660].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7825Requests[660].Request.Path = "/storage/14bb921d-3427-4430-8"; 7828Requests[661].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7829Requests[661].Request.Path = "/storage/ef6b988c-729b-4d9e-9"; 7832Requests[662].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7833Requests[662].Request.Path = "/subscriptions/378fd"; 7836Requests[663].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7837Requests[663].Request.Path = "/subscriptions/44a282cc-266c-"; 7840Requests[664].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7841Requests[664].Request.Path = "/subscriptions/cc4db31d-167f-"; 7844Requests[665].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7845Requests[665].Request.Path = "/subscriptions/c712c145-97c2-"; 7848Requests[666].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7849Requests[666].Request.Path = "/templates/aa168cf5-ca7"; 7852Requests[667].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7853Requests[667].Request.Path = "/templates/fc259cba-5fb"; 7856Requests[668].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7857Requests[668].Request.Path = "/templates/d9f6d1af-e49"; 7860Requests[669].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7861Requests[669].Request.Path = "/templates/a05dc574-42b"; 7864Requests[670].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7865Requests[670].Request.Path = "/tenant/afaa060b-d"; 7868Requests[671].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7869Requests[671].Request.Path = "/tenant/78a72012-9"; 7872Requests[672].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7873Requests[672].Request.Path = "/textOperations/94b18479-0e"; 7876Requests[673].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7877Requests[673].Request.Path = "/users/124c9"; 7880Requests[674].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7881Requests[674].Request.Path = "/users/5c30c"; 7884Requests[675].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7885Requests[675].Request.Path = "/users/672e7"; 7888Requests[676].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7889Requests[676].Request.Path = "/users/313a8"; 7892Requests[677].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7893Requests[677].Request.Path = "/WebHdfsExt/6080c"; 7896Requests[678].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7897Requests[678].Request.Path = "/WebHdfsExt/18cd6"; 7900Requests[679].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7901Requests[679].Request.Path = "/apis/e3171/operations"; 7904Requests[680].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7905Requests[680].Request.Path = "/apis/6aa38/policies"; 7908Requests[681].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7909Requests[681].Request.Path = "/apis/1c7fe/products"; 7912Requests[682].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7913Requests[682].Request.Path = "/apis/79bc8/schemas"; 7916Requests[683].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7917Requests[683].Request.Path = "/apps/b1aaf/endpoints"; 7920Requests[684].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7921Requests[684].Request.Path = "/apps/ea29e/metrics"; 7924Requests[685].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7925Requests[685].Request.Path = "/apps/bf053/permissions"; 7928Requests[686].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7929Requests[686].Request.Path = "/apps/77c6e/permissions"; 7932Requests[687].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7933Requests[687].Request.Path = "/apps/d8164/permissions"; 7936Requests[688].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7937Requests[688].Request.Path = "/apps/75942/permissions"; 7940Requests[689].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7941Requests[689].Request.Path = "/apps/563cc/publish"; 7944Requests[690].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7945Requests[690].Request.Path = "/apps/e781b/publishsettings"; 7948Requests[691].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7949Requests[691].Request.Path = "/apps/25001/publishsettings"; 7952Requests[692].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7953Requests[692].Request.Path = "/apps/63247/query"; 7956Requests[693].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7957Requests[693].Request.Path = "/apps/d531e/query"; 7960Requests[694].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7961Requests[694].Request.Path = "/apps/8d2d6/querylogs"; 7964Requests[695].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7965Requests[695].Request.Path = "/apps/f41e6/settings"; 7968Requests[696].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 7969Requests[696].Request.Path = "/apps/448a9/settings"; 7972Requests[697].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7973Requests[697].Request.Path = "/apps/a23fb/versions"; 7976Requests[698].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7977Requests[698].Request.Path = "/certificates/73f7dc2c-b795-41/create"; 7980Requests[699].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 7981Requests[699].Request.Path = "/certificates/e30d8a66-04bf-46/import"; 7984Requests[700].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 7985Requests[700].Request.Path = "/certificates/eb0cb40f-656f-4b/pending"; 7988Requests[701].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7989Requests[701].Request.Path = "/certificates/237df1b3-a184-40/pending"; 7992Requests[702].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 7993Requests[702].Request.Path = "/certificates/cfe67a33-b976-43/pending"; 7996Requests[703].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 7997Requests[703].Request.Path = "/certificates/c2d2f982-ccfe-4b/policy"; 8000Requests[704].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 8001Requests[704].Request.Path = "/certificates/4191102f-590c-4b/policy"; 8004Requests[705].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8005Requests[705].Request.Path = "/certificates/9be5b82a-7926-49/versions"; 8008Requests[706].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8009Requests[706].Request.Path = "/delegatedProviders/6614dbae-6979-4d22-/offers"; 8012Requests[707].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8013Requests[707].Request.Path = "/deletedcertificates/d5aaf3fe-f10b-44/recover"; 8016Requests[708].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8017Requests[708].Request.Path = "/deletedkeys/2e3a3349/recover"; 8020Requests[709].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8021Requests[709].Request.Path = "/deletedsecrets/c077070c-1f/recover"; 8024Requests[710].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8025Requests[710].Request.Path = "/deletedstorage/321afa37-fb50-46cf-8/recover"; 8028Requests[711].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8029Requests[711].Request.Path = "/deletedstorage/0c6b120f-9752-4078-9/sas"; 8032Requests[712].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8033Requests[712].Request.Path = "/facelists/15bacb4c-e/persistedFaces"; 8036Requests[713].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8037Requests[713].Request.Path = "/groups/2fe853a/users"; 8040Requests[714].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8041Requests[714].Request.Path = "/jobs/bf5ca/addtaskcollection"; 8044Requests[715].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8045Requests[715].Request.Path = "/jobs/108cc/disable"; 8048Requests[716].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8049Requests[716].Request.Path = "/jobs/d2784/enable"; 8052Requests[717].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8053Requests[717].Request.Path = "/jobs/def23/jobpreparationandreleasetaskstatus"; 8056Requests[718].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8057Requests[718].Request.Path = "/jobs/bb64c/taskcounts"; 8060Requests[719].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8061Requests[719].Request.Path = "/jobs/0b01e/tasks"; 8064Requests[720].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8065Requests[720].Request.Path = "/jobs/8622c/tasks"; 8068Requests[721].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8069Requests[721].Request.Path = "/jobs/d8ee0/terminate"; 8072Requests[722].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8073Requests[722].Request.Path = "/Jobs/cb3b3382-ab/CancelJob"; 8076Requests[723].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8077Requests[723].Request.Path = "/Jobs/c513a8c8-54/GetDebugDataPath"; 8080Requests[724].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8081Requests[724].Request.Path = "/Jobs/d236fedb-dd/GetDebugDataPath"; 8084Requests[725].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8085Requests[725].Request.Path = "/Jobs/3ca9e0af-cf/GetStatistics"; 8088Requests[726].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8089Requests[726].Request.Path = "/Jobs/38018ea1-87/GetStatistics"; 8092Requests[727].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8093Requests[727].Request.Path = "/jobs/c944b14d-c3/YieldJob"; 8096Requests[728].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8097Requests[728].Request.Path = "/jobschedules/fe58ed1d-c3e5/disable"; 8100Requests[729].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8101Requests[729].Request.Path = "/jobschedules/57d826ab-8633/enable"; 8104Requests[730].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8105Requests[730].Request.Path = "/jobschedules/76b32a25-436a/jobs"; 8108Requests[731].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8109Requests[731].Request.Path = "/jobschedules/b9e0b514-24cc/terminate"; 8112Requests[732].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8113Requests[732].Request.Path = "/keys/d9e6967f/backup"; 8116Requests[733].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8117Requests[733].Request.Path = "/keys/4b289dfe/create"; 8120Requests[734].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8121Requests[734].Request.Path = "/keys/b693e2aa/versions"; 8124Requests[735].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8125Requests[735].Request.Path = "/models/b6df1/analyze"; 8128Requests[736].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8129Requests[736].Request.Path = "/persongroups/296bb7b2-ddfa/persons"; 8132Requests[737].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8133Requests[737].Request.Path = "/persongroups/28a03393-b009/persons"; 8136Requests[738].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8137Requests[738].Request.Path = "/persongroups/f37cb2c6-a95f/train"; 8140Requests[739].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8141Requests[739].Request.Path = "/persongroups/60f3404c-da85/training"; 8144Requests[740].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8145Requests[740].Request.Path = "/pools/5540fb/disableautoscale"; 8148Requests[741].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8149Requests[741].Request.Path = "/pools/3f0e49/enableautoscale"; 8152Requests[742].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8153Requests[742].Request.Path = "/pools/605f58/evaluateautoscale"; 8156Requests[743].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8157Requests[743].Request.Path = "/pools/cabbad/nodes"; 8160Requests[744].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8161Requests[744].Request.Path = "/pools/437d57/removenodes"; 8164Requests[745].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8165Requests[745].Request.Path = "/pools/b7da64/resize"; 8168Requests[746].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8169Requests[746].Request.Path = "/pools/153c29/stopresize"; 8172Requests[747].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8173Requests[747].Request.Path = "/pools/e7eb02/updateproperties"; 8176Requests[748].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8177Requests[748].Request.Path = "/pools/b0c5d9/upgradeos"; 8180Requests[749].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8181Requests[749].Request.Path = "/products/74df056b-/apis"; 8184Requests[750].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8185Requests[750].Request.Path = "/products/5973bb3a-/groups"; 8188Requests[751].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8189Requests[751].Request.Path = "/products/e7a08ee0-/policies"; 8192Requests[752].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8193Requests[752].Request.Path = "/products/1076e9de-/subscriptions"; 8196Requests[753].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 8197Requests[753].Request.Path = "/projects/82395036-/images"; 8200Requests[754].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8201Requests[754].Request.Path = "/projects/ebc90bbe-/images"; 8204Requests[755].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8205Requests[755].Request.Path = "/projects/0bf730b1-/iterations"; 8208Requests[756].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 8209Requests[756].Request.Path = "/projects/179f45cb-/predictions"; 8212Requests[757].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8213Requests[757].Request.Path = "/projects/ccf484e1-/tags"; 8216Requests[758].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8217Requests[758].Request.Path = "/projects/f5d13230-/tags"; 8220Requests[759].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8221Requests[759].Request.Path = "/projects/7a10a329-/train"; 8224Requests[760].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8225Requests[760].Request.Path = "/providers/db04db2f-edc2-4b3e-9919-9/operations"; 8228Requests[761].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8229Requests[761].Request.Path = "/secrets/3e4ce1c3-6c/backup"; 8232Requests[762].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8233Requests[762].Request.Path = "/secrets/facc0061-39/versions"; 8236Requests[763].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8237Requests[763].Request.Path = "/storage/cd72e4d4-c6ff-4c46-b/backup"; 8240Requests[764].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8241Requests[764].Request.Path = "/storage/fc43a107-86fb-4a89-8/regeneratekey"; 8244Requests[765].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8245Requests[765].Request.Path = "/storage/0388fbaa-2bde-4a86-a/sas"; 8248Requests[766].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8249Requests[766].Request.Path = "/subscriptions/8b424/regeneratePrimaryKey"; 8252Requests[767].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8253Requests[767].Request.Path = "/subscriptions/ee250/regenerateSecondaryKey"; 8256Requests[768].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8257Requests[768].Request.Path = "/subscriptions/ac66aaa2-7800-/locations"; 8260Requests[769].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8261Requests[769].Request.Path = "/subscriptions/5caff573-482e-/providers"; 8264Requests[770].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8265Requests[770].Request.Path = "/subscriptions/bf658f64-680e-/resourcegroups"; 8268Requests[771].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8269Requests[771].Request.Path = "/subscriptions/19df9045-6ab6-/resources"; 8272Requests[772].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8273Requests[772].Request.Path = "/subscriptions/b3d57c87-2819-/tagNames"; 8276Requests[773].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8277Requests[773].Request.Path = "/tenant/10070398-4/git"; 8280Requests[774].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8281Requests[774].Request.Path = "/tenant/4af7dd60-b/regeneratePrimaryKey"; 8284Requests[775].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8285Requests[775].Request.Path = "/tenant/c56b905a-f/regenerateSecondaryKey"; 8288Requests[776].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8289Requests[776].Request.Path = "/tenant/ce51577a-bfea-457/deploy"; 8292Requests[777].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8293Requests[777].Request.Path = "/tenant/980d38d9-c59f-4f7/save"; 8296Requests[778].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8297Requests[778].Request.Path = "/tenant/72062f52-d924-4a6/syncState"; 8300Requests[779].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8301Requests[779].Request.Path = "/tenant/595749c6-1078-46f/validate"; 8304Requests[780].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8305Requests[780].Request.Path = "/users/73ba5/generateSsoUrl"; 8308Requests[781].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8309Requests[781].Request.Path = "/users/7cf5b/groups"; 8312Requests[782].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8313Requests[782].Request.Path = "/users/4b8c5/identities"; 8316Requests[783].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8317Requests[783].Request.Path = "/users/0b329/subscriptions"; 8320Requests[784].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8321Requests[784].Request.Path = "/users/f0b88/token"; 8324Requests[785].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8325Requests[785].Request.Path = "/workspaces/a910ff67-17/query"; 8328Requests[786].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8329Requests[786].Request.Path = "/workspaces/2e3164c4-7b/query"; 8332Requests[787].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8333Requests[787].Request.Path = "/Applications/f1e30f3d-c543/$/Delete"; 8336Requests[788].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8337Requests[788].Request.Path = "/Applications/fda1284b-8557/$/DisableBackup"; 8340Requests[789].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8341Requests[789].Request.Path = "/Applications/b51cffb8-39bf/$/EnableBackup"; 8344Requests[790].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8345Requests[790].Request.Path = "/Applications/f320177c-841c/$/GetBackupConfigurationInfo"; 8348Requests[791].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8349Requests[791].Request.Path = "/Applications/074d2167-bb2c/$/GetBackups"; 8352Requests[792].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8353Requests[792].Request.Path = "/Applications/bc7c9b6b-f7a2/$/GetHealth"; 8356Requests[793].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8357Requests[793].Request.Path = "/Applications/0046ea84-76ba/$/GetHealth"; 8360Requests[794].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8361Requests[794].Request.Path = "/Applications/d036ffbd-dddd/$/GetLoadInformation"; 8364Requests[795].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8365Requests[795].Request.Path = "/Applications/b5abeb63-8542/$/GetServices"; 8368Requests[796].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8369Requests[796].Request.Path = "/Applications/97e38602-224e/$/GetUpgradeProgress"; 8372Requests[797].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8373Requests[797].Request.Path = "/Applications/71100aa3-14a7/$/MoveToNextUpgradeDomain"; 8376Requests[798].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8377Requests[798].Request.Path = "/Applications/a5e6c630-e386/$/ReportHealth"; 8380Requests[799].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8381Requests[799].Request.Path = "/Applications/d81e0ffb-8cf9/$/ResumeBackup"; 8384Requests[800].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8385Requests[800].Request.Path = "/Applications/c312a7cb-995b/$/RollbackUpgrade"; 8388Requests[801].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8389Requests[801].Request.Path = "/Applications/fff9b2df-589c/$/SuspendBackup"; 8392Requests[802].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8393Requests[802].Request.Path = "/Applications/71399a19-599d/$/UpdateUpgrade"; 8396Requests[803].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8397Requests[803].Request.Path = "/Applications/147962f8-307c/$/Upgrade"; 8400Requests[804].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8401Requests[804].Request.Path = "/Applications/99de231c-c0c4-4/$/MoveNextUpgradeDomain"; 8404Requests[805].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8405Requests[805].Request.Path = "/ApplicationTypes/b4ae891c-13f7-4b8e-/$/GetApplicationManifest"; 8408Requests[806].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8409Requests[806].Request.Path = "/ApplicationTypes/1183e49e-75f1-4704-/$/GetServiceManifest"; 8412Requests[807].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8413Requests[807].Request.Path = "/ApplicationTypes/e3d000c2-ca7f-4d99-/$/GetServiceTypes"; 8416Requests[808].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8417Requests[808].Request.Path = "/ApplicationTypes/198b12cb-3ad6-4139-/$/Unprovision"; 8420Requests[809].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8421Requests[809].Request.Path = "/apps/884cb/events/$metadata"; 8424Requests[810].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8425Requests[810].Request.Path = "/apps/39e3d/metrics/metadata"; 8428Requests[811].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8429Requests[811].Request.Path = "/apps/202b8/query/schema"; 8432Requests[812].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8433Requests[812].Request.Path = "/apps/49d08/versions/import"; 8436Requests[813].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8437Requests[813].Request.Path = "/certificates/e2e0e6c2-b88b-42/pending/merge"; 8440Requests[814].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8441Requests[814].Request.Path = "/ComposeDeployments/cd43ccfd-e4dd-/$/Delete"; 8444Requests[815].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8445Requests[815].Request.Path = "/ComposeDeployments/83ea37bc-fc16-/$/GetUpgradeProgress"; 8448Requests[816].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8449Requests[816].Request.Path = "/ComposeDeployments/50c170fa-c9e8-/$/Upgrade"; 8452Requests[817].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8453Requests[817].Request.Path = "/ImageStore/7cbb81ae-2d/$/GetUploadSession"; 8456Requests[818].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 8457Requests[818].Request.Path = "/ImageStore/daf409a0-e0/$/UploadChunk"; 8460Requests[819].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8461Requests[819].Request.Path = "/Names/6492ae/$/GetProperties"; 8464Requests[820].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 8465Requests[820].Request.Path = "/Names/b0efb1/$/GetProperty"; 8468Requests[821].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 8469Requests[821].Request.Path = "/Names/904669/$/GetProperty"; 8472Requests[822].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8473Requests[822].Request.Path = "/Names/861b3d/$/GetProperty"; 8476Requests[823].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8477Requests[823].Request.Path = "/Names/2fcefb/$/GetSubNames"; 8480Requests[824].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8481Requests[824].Request.Path = "/Nodes/c4b39a13/$/Activate"; 8484Requests[825].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8485Requests[825].Request.Path = "/Nodes/85caf970/$/Deactivate"; 8488Requests[826].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8489Requests[826].Request.Path = "/Nodes/e67a7b50/$/DeployServicePackage"; 8492Requests[827].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8493Requests[827].Request.Path = "/Nodes/5a1efdd7/$/GetApplications"; 8496Requests[828].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8497Requests[828].Request.Path = "/Nodes/0225062e/$/GetHealth"; 8500Requests[829].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8501Requests[829].Request.Path = "/Nodes/f2cbc65f/$/GetHealth"; 8504Requests[830].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8505Requests[830].Request.Path = "/Nodes/f78919ab/$/GetLoadInformation"; 8508Requests[831].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8509Requests[831].Request.Path = "/Nodes/ee0ab328/$/RemoveNodeState"; 8512Requests[832].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8513Requests[832].Request.Path = "/Nodes/40657a8f/$/ReportHealth"; 8516Requests[833].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8517Requests[833].Request.Path = "/Nodes/7f776435/$/Restart"; 8520Requests[834].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8521Requests[834].Request.Path = "/Nodes/66bd5a77/$/Start"; 8524Requests[835].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8525Requests[835].Request.Path = "/Nodes/5bf546d1/$/Stop"; 8528Requests[836].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8529Requests[836].Request.Path = "/Partitions/97f781d1-b2/$/Backup"; 8532Requests[837].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8533Requests[837].Request.Path = "/Partitions/84345432-b4/$/DisableBackup"; 8536Requests[838].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8537Requests[838].Request.Path = "/Partitions/adc43efd-a0/$/EnableBackup"; 8540Requests[839].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8541Requests[839].Request.Path = "/Partitions/a4fdc7a7-44/$/GetBackupConfigurationInfo"; 8544Requests[840].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8545Requests[840].Request.Path = "/Partitions/0fe03f5a-9a/$/GetBackupProgress"; 8548Requests[841].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8549Requests[841].Request.Path = "/Partitions/0050c1a7-1e/$/GetBackups"; 8552Requests[842].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8553Requests[842].Request.Path = "/Partitions/61c4bc06-7a/$/GetHealth"; 8556Requests[843].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8557Requests[843].Request.Path = "/Partitions/9a9d7693-88/$/GetHealth"; 8560Requests[844].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8561Requests[844].Request.Path = "/Partitions/6c80d567-d1/$/GetLoadInformation"; 8564Requests[845].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8565Requests[845].Request.Path = "/Partitions/232ef6a6-3e/$/GetReplicas"; 8568Requests[846].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8569Requests[846].Request.Path = "/Partitions/b3cc5c40-4a/$/GetRestoreProgress"; 8572Requests[847].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8573Requests[847].Request.Path = "/Partitions/f060aaab-56/$/GetServiceName"; 8576Requests[848].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8577Requests[848].Request.Path = "/Partitions/42ac866e-69/$/Recover"; 8580Requests[849].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8581Requests[849].Request.Path = "/Partitions/9052d799-d2/$/ReportHealth"; 8584Requests[850].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8585Requests[850].Request.Path = "/Partitions/99025638-96/$/ResetLoad"; 8588Requests[851].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8589Requests[851].Request.Path = "/Partitions/562b58e5-9b/$/Restore"; 8592Requests[852].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8593Requests[852].Request.Path = "/Partitions/7ec7070a-b7/$/ResumeBackup"; 8596Requests[853].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8597Requests[853].Request.Path = "/Partitions/939b61a8-e9/$/SuspendBackup"; 8600Requests[854].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8601Requests[854].Request.Path = "/projects/26bcc9a7-/images/files"; 8604Requests[855].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8605Requests[855].Request.Path = "/projects/be82b800-/images/id"; 8608Requests[856].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8609Requests[856].Request.Path = "/projects/0ac8c21b-/images/predictions"; 8612Requests[857].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 8613Requests[857].Request.Path = "/projects/4560e2be-/images/regions"; 8616Requests[858].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8617Requests[858].Request.Path = "/projects/3b40e5ec-/images/regions"; 8620Requests[859].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8621Requests[859].Request.Path = "/projects/5a1a8f9e-/images/tagged"; 8624Requests[860].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 8625Requests[860].Request.Path = "/projects/b1d78b4a-/images/tags"; 8628Requests[861].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8629Requests[861].Request.Path = "/projects/11917603-/images/tags"; 8632Requests[862].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8633Requests[862].Request.Path = "/projects/e5253ed6-/images/untagged"; 8636Requests[863].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8637Requests[863].Request.Path = "/projects/cdaa0b04-/images/urls"; 8640Requests[864].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8641Requests[864].Request.Path = "/projects/e1d4e435-/predictions/query"; 8644Requests[865].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8645Requests[865].Request.Path = "/projects/562348bb-/quicktest/image"; 8648Requests[866].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8649Requests[866].Request.Path = "/projects/113b1986-/quicktest/url"; 8652Requests[867].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8653Requests[867].Request.Path = "/Services/ab575683-/$/Delete"; 8656Requests[868].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8657Requests[868].Request.Path = "/Services/23376534-/$/DisableBackup"; 8660Requests[869].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8661Requests[869].Request.Path = "/Services/d4095803-/$/EnableBackup"; 8664Requests[870].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8665Requests[870].Request.Path = "/Services/0431d2a4-/$/GetApplicationName"; 8668Requests[871].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8669Requests[871].Request.Path = "/Services/bff31263-/$/GetBackupConfigurationInfo"; 8672Requests[872].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8673Requests[872].Request.Path = "/Services/e2a9d29d-/$/GetBackups"; 8676Requests[873].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8677Requests[873].Request.Path = "/Services/86ac9864-/$/GetDescription"; 8680Requests[874].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8681Requests[874].Request.Path = "/Services/6fc8ba32-/$/GetHealth"; 8684Requests[875].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8685Requests[875].Request.Path = "/Services/e524bd5b-/$/GetHealth"; 8688Requests[876].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8689Requests[876].Request.Path = "/Services/ac25d8af-/$/GetPartitions"; 8692Requests[877].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8693Requests[877].Request.Path = "/Services/521379e0-/$/ReportHealth"; 8696Requests[878].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8697Requests[878].Request.Path = "/Services/7e924ad0-/$/ResolvePartition"; 8700Requests[879].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8701Requests[879].Request.Path = "/Services/4f6bcf02-/$/ResumeBackup"; 8704Requests[880].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8705Requests[880].Request.Path = "/Services/c4066929-/$/SuspendBackup"; 8708Requests[881].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8709Requests[881].Request.Path = "/Services/7ad3bf49-/$/Update"; 8712Requests[882].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8713Requests[882].Request.Path = "/tenant/5f6fc501-3/git/regeneratePrimaryKey"; 8716Requests[883].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8717Requests[883].Request.Path = "/tenant/07f9ea58-f/git/regenerateSecondaryKey"; 8720Requests[884].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8721Requests[884].Request.Path = "/projects/54dec105-/images/tagged/count"; 8724Requests[885].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8725Requests[885].Request.Path = "/projects/3f6ddd0e-/images/untagged/count"; 8728Requests[886].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8729Requests[886].Request.Path = "/subscriptions/0a5a0c6d-71f0-/providers/Microsoft.AAD/domainServices"; 8732Requests[887].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8733Requests[887].Request.Path = "/subscriptions/fb7e38ea-cddd-/providers/Microsoft.Advisor/configurations"; 8736Requests[888].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 8737Requests[888].Request.Path = "/subscriptions/46b22cf9-858e-/providers/Microsoft.Advisor/configurations"; 8740Requests[889].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8741Requests[889].Request.Path = "/subscriptions/21b6ffc4-40da-/providers/Microsoft.Advisor/generateRecommendations"; 8744Requests[890].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8745Requests[890].Request.Path = "/subscriptions/1264f84b-d223-/providers/Microsoft.Advisor/recommendations"; 8748Requests[891].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8749Requests[891].Request.Path = "/subscriptions/af225166-5f40-/providers/Microsoft.Advisor/suppressions"; 8752Requests[892].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8753Requests[892].Request.Path = "/subscriptions/a2918165-b0b2-/providers/Microsoft.AnalysisServices/servers"; 8756Requests[893].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8757Requests[893].Request.Path = "/subscriptions/c13257a4-e1be-/providers/Microsoft.AnalysisServices/skus"; 8760Requests[894].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8761Requests[894].Request.Path = "/subscriptions/258d12b1-72f2-/providers/Microsoft.ApiManagement/checkNameAvailability"; 8764Requests[895].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8765Requests[895].Request.Path = "/subscriptions/901e692f-e538-/providers/Microsoft.ApiManagement/service"; 8768Requests[896].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8769Requests[896].Request.Path = "/subscriptions/0bdb0c4d-b319-/providers/Microsoft.Authorization/classicAdministrators"; 8772Requests[897].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8773Requests[897].Request.Path = "/subscriptions/7ec58203-f3da-/providers/Microsoft.Authorization/locks"; 8776Requests[898].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8777Requests[898].Request.Path = "/subscriptions/453decbc-11e9-/providers/Microsoft.Authorization/policyAssignments"; 8780Requests[899].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8781Requests[899].Request.Path = "/subscriptions/6841c237-6a91-/providers/Microsoft.Authorization/policyDefinitions"; 8784Requests[900].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8785Requests[900].Request.Path = "/subscriptions/e4ad2fbb-317b-/providers/Microsoft.Authorization/policySetDefinitions"; 8788Requests[901].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8789Requests[901].Request.Path = "/subscriptions/d9d4352e-2e35-/providers/Microsoft.Authorization/roleAssignments"; 8792Requests[902].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8793Requests[902].Request.Path = "/subscriptions/1c5fbf85-2b5c-/providers/Microsoft.Automation/automationAccounts"; 8796Requests[903].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8797Requests[903].Request.Path = "/subscriptions/d489737f-5ebd-/providers/Microsoft.Batch/batchAccounts"; 8800Requests[904].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8801Requests[904].Request.Path = "/subscriptions/95368823-be35-/providers/Microsoft.BatchAI/clusters"; 8804Requests[905].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8805Requests[905].Request.Path = "/subscriptions/01e71765-c032-/providers/Microsoft.BatchAI/fileServers"; 8808Requests[906].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8809Requests[906].Request.Path = "/subscriptions/066ba07b-f9e8-/providers/Microsoft.BatchAI/jobs"; 8812Requests[907].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8813Requests[907].Request.Path = "/subscriptions/e30ac44d-1763-/providers/Microsoft.BatchAI/workspaces"; 8816Requests[908].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8817Requests[908].Request.Path = "/subscriptions/2d0503b6-58e1-/providers/Microsoft.Billing/billingPeriods"; 8820Requests[909].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8821Requests[909].Request.Path = "/subscriptions/aebd7110-1360-/providers/Microsoft.Billing/invoices"; 8824Requests[910].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8825Requests[910].Request.Path = "/subscriptions/329c7408-368e-/providers/Microsoft.BotService/botServices"; 8828Requests[911].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8829Requests[911].Request.Path = "/subscriptions/43381579-d824-/providers/Microsoft.Cache/CheckNameAvailability"; 8832Requests[912].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8833Requests[912].Request.Path = "/subscriptions/8cc1a5b5-64be-/providers/Microsoft.Cache/Redis"; 8836Requests[913].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8837Requests[913].Request.Path = "/subscriptions/eac0509e-2c39-/providers/Microsoft.Capacity/appliedReservations"; 8840Requests[914].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8841Requests[914].Request.Path = "/subscriptions/bdb0b1f7-0f01-/providers/Microsoft.Capacity/catalogs"; 8844Requests[915].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8845Requests[915].Request.Path = "/subscriptions/e8404501-3911-/providers/Microsoft.Cdn/checkNameAvailability"; 8848Requests[916].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8849Requests[916].Request.Path = "/subscriptions/3846164b-d147-/providers/Microsoft.Cdn/checkResourceUsage"; 8852Requests[917].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8853Requests[917].Request.Path = "/subscriptions/c8afe5bb-ae62-/providers/Microsoft.Cdn/profiles"; 8856Requests[918].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8857Requests[918].Request.Path = "/subscriptions/285ee03a-12e4-/providers/Microsoft.Cdn/validateProbe"; 8860Requests[919].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8861Requests[919].Request.Path = "/subscriptions/77f9a941-6ddb-/providers/Microsoft.CertificateRegistration/certificateOrders"; 8864Requests[920].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8865Requests[920].Request.Path = "/subscriptions/c7919896-8cf6-/providers/Microsoft.CertificateRegistration/validateCertificateRegistrationInformation"; 8868Requests[921].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8869Requests[921].Request.Path = "/subscriptions/dfbd3abc-6afb-/providers/Microsoft.CognitiveServices/accounts"; 8872Requests[922].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8873Requests[922].Request.Path = "/subscriptions/9de165c5-a845-/providers/Microsoft.CognitiveServices/skus"; 8876Requests[923].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8877Requests[923].Request.Path = "/subscriptions/4065b95b-6192-/providers/Microsoft.Commerce.Admin/subscriberUsageAggregates"; 8880Requests[924].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8881Requests[924].Request.Path = "/subscriptions/0de13f8f-6274-/providers/Microsoft.Commerce.Admin/updateEncryption"; 8884Requests[925].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8885Requests[925].Request.Path = "/subscriptions/ab4d1fc0-a352-/providers/Microsoft.Commerce/RateCard"; 8888Requests[926].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8889Requests[926].Request.Path = "/subscriptions/b636a8ab-3a18-/providers/Microsoft.Commerce/UsageAggregates"; 8892Requests[927].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8893Requests[927].Request.Path = "/subscriptions/fbeb450f-2dc2-/providers/Microsoft.Compute/disks"; 8896Requests[928].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8897Requests[928].Request.Path = "/subscriptions/b44f5eb3-5952-/providers/Microsoft.Compute/galleries"; 8900Requests[929].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8901Requests[929].Request.Path = "/subscriptions/4688bd31-77f6-/providers/Microsoft.Compute/images"; 8904Requests[930].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8905Requests[930].Request.Path = "/subscriptions/66d35a79-eb43-/providers/Microsoft.Compute/skus"; 8908Requests[931].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8909Requests[931].Request.Path = "/subscriptions/9181ace1-4b6c-/providers/Microsoft.Compute/snapshots"; 8912Requests[932].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8913Requests[932].Request.Path = "/subscriptions/01445b38-3dcf-/providers/Microsoft.Compute/virtualMachines"; 8916Requests[933].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8917Requests[933].Request.Path = "/subscriptions/086ae94a-d24d-/providers/Microsoft.Compute/virtualMachineScaleSets"; 8920Requests[934].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8921Requests[934].Request.Path = "/subscriptions/8c26d0a3-2c27-/providers/Microsoft.Consumption/budgets"; 8924Requests[935].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8925Requests[935].Request.Path = "/subscriptions/58715cc1-da0f-/providers/Microsoft.Consumption/forecasts"; 8928Requests[936].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8929Requests[936].Request.Path = "/subscriptions/e6d912d5-a65f-/providers/Microsoft.Consumption/marketplaces"; 8932Requests[937].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8933Requests[937].Request.Path = "/subscriptions/365acf77-7ba3-/providers/Microsoft.Consumption/reservationRecommendations"; 8936Requests[938].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8937Requests[938].Request.Path = "/subscriptions/f2a30466-5f3f-/providers/Microsoft.Consumption/usageDetails"; 8940Requests[939].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8941Requests[939].Request.Path = "/subscriptions/6fccc861-579c-/providers/Microsoft.ContainerInstance/containerGroups"; 8944Requests[940].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8945Requests[940].Request.Path = "/subscriptions/d3e733bb-ff9a-/providers/Microsoft.ContainerRegistry/checkNameAvailability"; 8948Requests[941].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8949Requests[941].Request.Path = "/subscriptions/d1d5a743-7fef-/providers/Microsoft.ContainerRegistry/registries"; 8952Requests[942].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8953Requests[942].Request.Path = "/subscriptions/6565c67e-2b33-/providers/Microsoft.ContainerService/containerServices"; 8956Requests[943].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8957Requests[943].Request.Path = "/subscriptions/08e683bc-ccb7-/providers/Microsoft.ContainerService/managedClusters"; 8960Requests[944].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8961Requests[944].Request.Path = "/subscriptions/a3ba9879-b0ca-/providers/Microsoft.CustomerInsights/hubs"; 8964Requests[945].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8965Requests[945].Request.Path = "/subscriptions/5f487c4c-0773-/providers/Microsoft.DataBox/jobs"; 8968Requests[946].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8969Requests[946].Request.Path = "/subscriptions/d79f3883-1cfc-/providers/Microsoft.Databricks/workspaces"; 8972Requests[947].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8973Requests[947].Request.Path = "/subscriptions/042023a8-7c2e-/providers/Microsoft.DataFactory/factories"; 8976Requests[948].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8977Requests[948].Request.Path = "/subscriptions/077418d5-9cd9-/providers/Microsoft.DataLakeAnalytics/accounts"; 8980Requests[949].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8981Requests[949].Request.Path = "/subscriptions/1c264d89-aae7-/providers/Microsoft.DataLakeStore/accounts"; 8984Requests[950].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8985Requests[950].Request.Path = "/subscriptions/1f1db437-0ffe-/providers/Microsoft.DataMigration/services"; 8988Requests[951].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8989Requests[951].Request.Path = "/subscriptions/67959fe5-ed43-/providers/Microsoft.DataMigration/skus"; 8992Requests[952].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 8993Requests[952].Request.Path = "/subscriptions/c1c54da4-3a26-/providers/Microsoft.DBforMySQL/checkNameAvailability"; 8996Requests[953].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 8997Requests[953].Request.Path = "/subscriptions/6db645fb-a27b-/providers/Microsoft.DBforMySQL/performanceTiers"; 9000Requests[954].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9001Requests[954].Request.Path = "/subscriptions/9f5b84bd-a1b4-/providers/Microsoft.DBforMySQL/servers"; 9004Requests[955].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9005Requests[955].Request.Path = "/subscriptions/30d324cb-ef20-/providers/Microsoft.DBforPostgreSQL/checkNameAvailability"; 9008Requests[956].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9009Requests[956].Request.Path = "/subscriptions/6ccc3dbb-690b-/providers/Microsoft.DBforPostgreSQL/performanceTiers"; 9012Requests[957].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9013Requests[957].Request.Path = "/subscriptions/5b9e5fea-63ca-/providers/Microsoft.DBforPostgreSQL/servers"; 9016Requests[958].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9017Requests[958].Request.Path = "/subscriptions/08e6a542-dc6c-/providers/Microsoft.Devices/checkNameAvailability"; 9020Requests[959].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9021Requests[959].Request.Path = "/subscriptions/cc01704f-1fe1-/providers/Microsoft.Devices/checkProvisioningServiceNameAvailability"; 9024Requests[960].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9025Requests[960].Request.Path = "/subscriptions/62693f65-3c70-/providers/Microsoft.Devices/IotHubs"; 9028Requests[961].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9029Requests[961].Request.Path = "/subscriptions/6f39740a-bd55-/providers/Microsoft.Devices/provisioningServices"; 9032Requests[962].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9033Requests[962].Request.Path = "/subscriptions/ea71a529-c606-/providers/Microsoft.Devices/usages"; 9036Requests[963].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9037Requests[963].Request.Path = "/subscriptions/88dbf9a4-e93a-/providers/Microsoft.DevTestLab/labs"; 9040Requests[964].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9041Requests[964].Request.Path = "/subscriptions/aba6c745-cd72-/providers/Microsoft.DevTestLab/schedules"; 9044Requests[965].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9045Requests[965].Request.Path = "/subscriptions/3405359b-1a86-/providers/Microsoft.DocumentDB/databaseAccounts"; 9048Requests[966].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9049Requests[966].Request.Path = "/subscriptions/cdac7e69-032a-/providers/Microsoft.DomainRegistration/checkDomainAvailability"; 9052Requests[967].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9053Requests[967].Request.Path = "/subscriptions/903d4f4b-a043-/providers/Microsoft.DomainRegistration/domains"; 9056Requests[968].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9057Requests[968].Request.Path = "/subscriptions/b2f972a3-19e0-/providers/Microsoft.DomainRegistration/generateSsoRequest"; 9060Requests[969].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9061Requests[969].Request.Path = "/subscriptions/b9d6fe3d-8ba6-/providers/Microsoft.DomainRegistration/listDomainRecommendations"; 9064Requests[970].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9065Requests[970].Request.Path = "/subscriptions/a0766c86-4f20-/providers/Microsoft.DomainRegistration/topLevelDomains"; 9068Requests[971].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9069Requests[971].Request.Path = "/subscriptions/30bd17e5-3b57-/providers/Microsoft.DomainRegistration/validateDomainRegistrationInformation"; 9072Requests[972].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9073Requests[972].Request.Path = "/subscriptions/bebb30ec-0e1e-/providers/Microsoft.EventGrid/eventSubscriptions"; 9076Requests[973].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9077Requests[973].Request.Path = "/subscriptions/aec6d0bf-e9c5-/providers/Microsoft.EventGrid/topics"; 9080Requests[974].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9081Requests[974].Request.Path = "/subscriptions/a95d1545-da7e-/providers/Microsoft.EventHub/CheckNameAvailability"; 9084Requests[975].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9085Requests[975].Request.Path = "/subscriptions/390d250c-4214-/providers/Microsoft.EventHub/CheckNamespaceAvailability"; 9088Requests[976].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9089Requests[976].Request.Path = "/subscriptions/7c4b2982-3c2f-/providers/Microsoft.EventHub/namespaces"; 9092Requests[977].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9093Requests[977].Request.Path = "/subscriptions/75a2d4e6-74d8-/providers/Microsoft.Features/features"; 9096Requests[978].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9097Requests[978].Request.Path = "/subscriptions/ff5075ea-7701-/providers/microsoft.gallery.admin/galleryItems"; 9100Requests[979].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9101Requests[979].Request.Path = "/subscriptions/0ac2f646-a44b-/providers/microsoft.gallery.admin/galleryItems"; 9104Requests[980].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9105Requests[980].Request.Path = "/subscriptions/88d19def-4ba0-/providers/Microsoft.HanaOnAzure/hanaInstances"; 9108Requests[981].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9109Requests[981].Request.Path = "/subscriptions/bd473a6f-9c00-/providers/Microsoft.HDInsight/clusters"; 9112Requests[982].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9113Requests[982].Request.Path = "/subscriptions/daaf34b4-96f1-/providers/Microsoft.ImportExport/jobs"; 9116Requests[983].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9117Requests[983].Request.Path = "/subscriptions/fe3bc475-72a7-/providers/microsoft.insights/actionGroups"; 9120Requests[984].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9121Requests[984].Request.Path = "/subscriptions/e68c6114-ffab-/providers/microsoft.insights/activityLogAlerts"; 9124Requests[985].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9125Requests[985].Request.Path = "/subscriptions/430259fd-e37b-/providers/Microsoft.Insights/components"; 9128Requests[986].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9129Requests[986].Request.Path = "/subscriptions/e23417a9-cb23-/providers/microsoft.insights/listMigrationdate"; 9132Requests[987].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9133Requests[987].Request.Path = "/subscriptions/afb95f48-bfa4-/providers/microsoft.insights/logprofiles"; 9136Requests[988].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9137Requests[988].Request.Path = "/subscriptions/0714f45c-a049-/providers/Microsoft.Insights/metricAlerts"; 9140Requests[989].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9141Requests[989].Request.Path = "/subscriptions/8e7cf130-43c4-/providers/microsoft.insights/migrateToNewPricingModel"; 9144Requests[990].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9145Requests[990].Request.Path = "/subscriptions/cc2a16a8-e9ce-/providers/microsoft.insights/rollbackToLegacyPricingModel"; 9148Requests[991].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9149Requests[991].Request.Path = "/subscriptions/e31b3661-94d7-/providers/microsoft.insights/scheduledQueryRules"; 9152Requests[992].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9153Requests[992].Request.Path = "/subscriptions/a6f87413-1940-/providers/Microsoft.Insights/webtests"; 9156Requests[993].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9157Requests[993].Request.Path = "/subscriptions/0f638a4c-8051-/providers/Microsoft.IoTCentral/checkNameAvailability"; 9160Requests[994].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9161Requests[994].Request.Path = "/subscriptions/24da9142-d847-/providers/Microsoft.IoTCentral/IoTApps"; 9164Requests[995].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9165Requests[995].Request.Path = "/subscriptions/e58b4a26-9959-/providers/Microsoft.IoTSpaces/checkNameAvailability"; 9168Requests[996].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9169Requests[996].Request.Path = "/subscriptions/8360ae11-9e4b-/providers/Microsoft.IoTSpaces/Graph"; 9172Requests[997].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9173Requests[997].Request.Path = "/subscriptions/c4e695d6-538f-/providers/Microsoft.KeyVault/checkNameAvailability"; 9176Requests[998].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9177Requests[998].Request.Path = "/subscriptions/e7b82dca-b3f3-/providers/Microsoft.KeyVault/deletedVaults"; 9180Requests[999].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9181Requests[999].Request.Path = "/subscriptions/f62ec81b-248c-/providers/Microsoft.KeyVault/vaults"; 9184Requests[1000].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9185Requests[1000].Request.Path = "/subscriptions/6e6b976c-82fe-/providers/Microsoft.Logic/integrationAccounts"; 9188Requests[1001].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9189Requests[1001].Request.Path = "/subscriptions/cb8a5cee-0f64-/providers/Microsoft.Logic/workflows"; 9192Requests[1002].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9193Requests[1002].Request.Path = "/subscriptions/486385fd-2b23-/providers/Microsoft.MachineLearning/commitmentPlans"; 9196Requests[1003].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9197Requests[1003].Request.Path = "/subscriptions/938b0efa-9eca-/providers/Microsoft.MachineLearning/skus"; 9200Requests[1004].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9201Requests[1004].Request.Path = "/subscriptions/16361157-288d-/providers/Microsoft.MachineLearning/webServices"; 9204Requests[1005].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9205Requests[1005].Request.Path = "/subscriptions/52fdc34a-6c10-/providers/Microsoft.MachineLearning/workspaces"; 9208Requests[1006].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9209Requests[1006].Request.Path = "/subscriptions/5c89d884-3d39-/providers/Microsoft.MachineLearningCompute/operationalizationClusters"; 9212Requests[1007].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9213Requests[1007].Request.Path = "/subscriptions/2c76e406-d2b1-/providers/Microsoft.MachineLearningExperimentation/accounts"; 9216Requests[1008].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9217Requests[1008].Request.Path = "/subscriptions/a2fe8944-808a-/providers/Microsoft.MachineLearningServices/workspaces"; 9220Requests[1009].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9221Requests[1009].Request.Path = "/subscriptions/807bb23c-6a9d-/providers/Microsoft.ManagedIdentity/userAssignedIdentities"; 9224Requests[1010].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9225Requests[1010].Request.Path = "/subscriptions/c77a28f7-54f1-/providers/Microsoft.Maps/accounts"; 9228Requests[1011].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9229Requests[1011].Request.Path = "/subscriptions/a58b330b-15f2-/providers/Microsoft.Media/CheckNameAvailability"; 9232Requests[1012].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9233Requests[1012].Request.Path = "/subscriptions/cc0aa715-5a43-/providers/Microsoft.Media/mediaservices"; 9236Requests[1013].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9237Requests[1013].Request.Path = "/subscriptions/08f789a7-81d0-/providers/Microsoft.Network.Admin/adminLoadBalancers"; 9240Requests[1014].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9241Requests[1014].Request.Path = "/subscriptions/88528d53-d7fb-/providers/Microsoft.Network.Admin/adminOverview"; 9244Requests[1015].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9245Requests[1015].Request.Path = "/subscriptions/11593304-b279-/providers/Microsoft.Network.Admin/adminPublicIpAddresses"; 9248Requests[1016].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9249Requests[1016].Request.Path = "/subscriptions/a96762e9-f34f-/providers/Microsoft.Network.Admin/adminVirtualNetworks"; 9252Requests[1017].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9253Requests[1017].Request.Path = "/subscriptions/71594e4d-64fe-/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets"; 9256Requests[1018].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9257Requests[1018].Request.Path = "/subscriptions/d8252758-af67-/providers/Microsoft.Network/applicationGateways"; 9260Requests[1019].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9261Requests[1019].Request.Path = "/subscriptions/68a3bd99-ac0e-/providers/Microsoft.Network/applicationSecurityGroups"; 9264Requests[1020].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9265Requests[1020].Request.Path = "/subscriptions/884a681e-a255-/providers/Microsoft.Network/bgpServiceCommunities"; 9268Requests[1021].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9269Requests[1021].Request.Path = "/subscriptions/963cfc45-bd9b-/providers/Microsoft.Network/ddosProtectionPlans"; 9272Requests[1022].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9273Requests[1022].Request.Path = "/subscriptions/fedc37c5-f484-/providers/Microsoft.Network/dnszones"; 9276Requests[1023].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9277Requests[1023].Request.Path = "/subscriptions/b035912e-9702-/providers/Microsoft.Network/expressRouteCircuits"; 9280Requests[1024].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9281Requests[1024].Request.Path = "/subscriptions/88bd1b39-78bf-/providers/Microsoft.Network/expressRouteCrossConnections"; 9284Requests[1025].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9285Requests[1025].Request.Path = "/subscriptions/25279605-40d1-/providers/Microsoft.Network/expressRouteServiceProviders"; 9288Requests[1026].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9289Requests[1026].Request.Path = "/subscriptions/de323d9d-3676-/providers/Microsoft.Network/loadBalancers"; 9292Requests[1027].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9293Requests[1027].Request.Path = "/subscriptions/852e11ab-3639-/providers/Microsoft.Network/networkInterfaces"; 9296Requests[1028].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9297Requests[1028].Request.Path = "/subscriptions/62853ea7-0c8b-/providers/Microsoft.Network/networkSecurityGroups"; 9300Requests[1029].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9301Requests[1029].Request.Path = "/subscriptions/bd8cb706-0640-/providers/Microsoft.Network/networkWatchers"; 9304Requests[1030].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9305Requests[1030].Request.Path = "/subscriptions/74055f37-0834-/providers/Microsoft.Network/publicIPAddresses"; 9308Requests[1031].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9309Requests[1031].Request.Path = "/subscriptions/af96f5eb-e9a7-/providers/Microsoft.Network/routeFilters"; 9312Requests[1032].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9313Requests[1032].Request.Path = "/subscriptions/5554c946-2662-/providers/Microsoft.Network/routeTables"; 9316Requests[1033].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9317Requests[1033].Request.Path = "/subscriptions/de047bdf-40fb-/providers/Microsoft.Network/trafficmanagerprofiles"; 9320Requests[1034].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9321Requests[1034].Request.Path = "/subscriptions/a1f47576-2fb6-/providers/Microsoft.Network/trafficManagerUserMetricsKeys"; 9324Requests[1035].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9325Requests[1035].Request.Path = "/subscriptions/8009859d-d974-/providers/Microsoft.Network/trafficManagerUserMetricsKeys"; 9328Requests[1036].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9329Requests[1036].Request.Path = "/subscriptions/8424a2df-e09c-/providers/Microsoft.Network/trafficManagerUserMetricsKeys"; 9332Requests[1037].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9333Requests[1037].Request.Path = "/subscriptions/28e10f36-916b-/providers/Microsoft.Network/virtualNetworks"; 9336Requests[1038].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9337Requests[1038].Request.Path = "/subscriptions/4c43efb2-83df-/providers/Microsoft.NotificationHubs/checkNamespaceAvailability"; 9340Requests[1039].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9341Requests[1039].Request.Path = "/subscriptions/8ba19503-53da-/providers/Microsoft.NotificationHubs/namespaces"; 9344Requests[1040].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9345Requests[1040].Request.Path = "/subscriptions/ba8a95df-f742-/providers/Microsoft.OperationalInsights/linkTargets"; 9348Requests[1041].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9349Requests[1041].Request.Path = "/subscriptions/bc28ee82-a370-/providers/Microsoft.OperationalInsights/workspaces"; 9352Requests[1042].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9353Requests[1042].Request.Path = "/subscriptions/a2c5cce2-1cd1-/providers/Microsoft.OperationsManagement/ManagementAssociations"; 9356Requests[1043].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9357Requests[1043].Request.Path = "/subscriptions/af482e37-5767-/providers/Microsoft.OperationsManagement/ManagementConfigurations"; 9360Requests[1044].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9361Requests[1044].Request.Path = "/subscriptions/6769846a-79ed-/providers/Microsoft.OperationsManagement/solutions"; 9364Requests[1045].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9365Requests[1045].Request.Path = "/subscriptions/ec5760af-793f-/providers/Microsoft.PowerBI/workspaceCollections"; 9368Requests[1046].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9369Requests[1046].Request.Path = "/subscriptions/66125a82-b772-/providers/Microsoft.PowerBIDedicated/capacities"; 9372Requests[1047].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9373Requests[1047].Request.Path = "/subscriptions/cc428b3c-67a5-/providers/Microsoft.PowerBIDedicated/skus"; 9376Requests[1048].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9377Requests[1048].Request.Path = "/subscriptions/b036a651-fe3d-/providers/Microsoft.RecoveryServices/vaults"; 9380Requests[1049].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9381Requests[1049].Request.Path = "/subscriptions/5d4023a3-9545-/providers/Microsoft.Relay/checkNameAvailability"; 9384Requests[1050].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9385Requests[1050].Request.Path = "/subscriptions/f0a6a841-6dfd-/providers/Microsoft.Relay/namespaces"; 9388Requests[1051].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9389Requests[1051].Request.Path = "/subscriptions/704a7a62-34f5-/providers/Microsoft.ResourceHealth/availabilityStatuses"; 9392Requests[1052].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9393Requests[1052].Request.Path = "/subscriptions/aca08c7f-1898-/providers/Microsoft.Resources/links"; 9396Requests[1053].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9397Requests[1053].Request.Path = "/subscriptions/363b10b6-bbfb-/providers/Microsoft.Scheduler/jobCollections"; 9400Requests[1054].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9401Requests[1054].Request.Path = "/subscriptions/578b6017-3f04-/providers/Microsoft.Search/checkNameAvailability"; 9404Requests[1055].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9405Requests[1055].Request.Path = "/subscriptions/33467e7b-db71-/providers/Microsoft.Security/alerts"; 9408Requests[1056].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9409Requests[1056].Request.Path = "/subscriptions/6d986773-38ea-/providers/Microsoft.Security/autoProvisioningSettings"; 9412Requests[1057].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9413Requests[1057].Request.Path = "/subscriptions/9f0401ce-0d90-/providers/Microsoft.Security/discoveredSecuritySolutions"; 9416Requests[1058].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9417Requests[1058].Request.Path = "/subscriptions/90c3dc15-e5a0-/providers/Microsoft.Security/externalSecuritySolutions"; 9420Requests[1059].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9421Requests[1059].Request.Path = "/subscriptions/f819e04b-bcc6-/providers/Microsoft.Security/jitNetworkAccessPolicies"; 9424Requests[1060].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9425Requests[1060].Request.Path = "/subscriptions/3d25a6f3-7308-/providers/Microsoft.Security/locations"; 9428Requests[1061].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9429Requests[1061].Request.Path = "/subscriptions/550c9b3c-b7f8-/providers/Microsoft.Security/pricings"; 9432Requests[1062].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9433Requests[1062].Request.Path = "/subscriptions/2627c1ca-cbbd-/providers/Microsoft.Security/securityContacts"; 9436Requests[1063].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9437Requests[1063].Request.Path = "/subscriptions/80a73761-56af-/providers/Microsoft.Security/tasks"; 9440Requests[1064].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9441Requests[1064].Request.Path = "/subscriptions/a28076ef-1904-/providers/Microsoft.Security/workspaceSettings"; 9444Requests[1065].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9445Requests[1065].Request.Path = "/subscriptions/44df1197-51b0-/providers/Microsoft.ServerManagement/gateways"; 9448Requests[1066].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9449Requests[1066].Request.Path = "/subscriptions/81f9fd80-6072-/providers/Microsoft.ServerManagement/nodes"; 9452Requests[1067].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9453Requests[1067].Request.Path = "/subscriptions/563cebfe-7715-/providers/Microsoft.ServiceBus/CheckNameAvailability"; 9456Requests[1068].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9457Requests[1068].Request.Path = "/subscriptions/225f2890-62d2-/providers/Microsoft.ServiceBus/CheckNameSpaceAvailability"; 9460Requests[1069].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9461Requests[1069].Request.Path = "/subscriptions/58f5fca4-c1ba-/providers/Microsoft.ServiceBus/namespaces"; 9464Requests[1070].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9465Requests[1070].Request.Path = "/subscriptions/b014e3c8-6b2e-/providers/Microsoft.ServiceBus/premiumMessagingRegions"; 9468Requests[1071].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9469Requests[1071].Request.Path = "/subscriptions/1ada5511-02db-/providers/Microsoft.ServiceFabric/clusters"; 9472Requests[1072].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9473Requests[1072].Request.Path = "/subscriptions/178a5044-0490-/providers/Microsoft.SignalRService/SignalR"; 9476Requests[1073].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9477Requests[1073].Request.Path = "/subscriptions/d2ea0cea-0c68-/providers/Microsoft.Solutions/appliances"; 9480Requests[1074].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9481Requests[1074].Request.Path = "/subscriptions/d9ff1703-4af5-/providers/Microsoft.Solutions/applications"; 9484Requests[1075].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9485Requests[1075].Request.Path = "/subscriptions/489d24e2-fef1-/providers/Microsoft.Sql/checkNameAvailability"; 9488Requests[1076].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9489Requests[1076].Request.Path = "/subscriptions/7c102957-835d-/providers/Microsoft.Sql/managedInstances"; 9492Requests[1077].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9493Requests[1077].Request.Path = "/subscriptions/5aee771b-ae0a-/providers/Microsoft.Sql/servers"; 9496Requests[1078].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9497Requests[1078].Request.Path = "/subscriptions/40ba2598-1243-/providers/Microsoft.Storage/checkNameAvailability"; 9500Requests[1079].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9501Requests[1079].Request.Path = "/subscriptions/00299657-2efd-/providers/Microsoft.Storage/skus"; 9504Requests[1080].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9505Requests[1080].Request.Path = "/subscriptions/487bf093-35c4-/providers/Microsoft.Storage/storageAccounts"; 9508Requests[1081].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9509Requests[1081].Request.Path = "/subscriptions/fd9fe1e6-0491-/providers/Microsoft.Storage/usages"; 9512Requests[1082].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9513Requests[1082].Request.Path = "/subscriptions/132cf7a8-e639-/providers/Microsoft.StorSimple/managers"; 9516Requests[1083].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9517Requests[1083].Request.Path = "/subscriptions/40557ca5-3557-/providers/Microsoft.StreamAnalytics/streamingjobs"; 9520Requests[1084].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9521Requests[1084].Request.Path = "/subscriptions/58eb8c1a-41d7-/providers/Microsoft.Subscriptions.Admin/checkNameAvailability"; 9524Requests[1085].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9525Requests[1085].Request.Path = "/subscriptions/d00baaa0-0a1f-/providers/Microsoft.Subscriptions.Admin/delegatedProviders"; 9528Requests[1086].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9529Requests[1086].Request.Path = "/subscriptions/52cc570f-34af-/providers/Microsoft.Subscriptions.Admin/locations"; 9532Requests[1087].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9533Requests[1087].Request.Path = "/subscriptions/03375967-c9e3-/providers/Microsoft.Subscriptions.Admin/moveSubscriptions"; 9536Requests[1088].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9537Requests[1088].Request.Path = "/subscriptions/b6c779c3-5152-/providers/Microsoft.Subscriptions.Admin/offers"; 9540Requests[1089].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9541Requests[1089].Request.Path = "/subscriptions/d69e68ff-12ac-/providers/Microsoft.Subscriptions.Admin/plans"; 9544Requests[1090].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9545Requests[1090].Request.Path = "/subscriptions/6078dad4-200d-/providers/Microsoft.Subscriptions.Admin/restoreData"; 9548Requests[1091].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9549Requests[1091].Request.Path = "/subscriptions/8d36d204-2cb8-/providers/Microsoft.Subscriptions.Admin/subscriptions"; 9552Requests[1092].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9553Requests[1092].Request.Path = "/subscriptions/9de6f370-3bf4-/providers/Microsoft.Subscriptions.Admin/updateEncryption"; 9556Requests[1093].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9557Requests[1093].Request.Path = "/subscriptions/78f48558-740a-/providers/Microsoft.Subscriptions.Admin/validateMoveSubscriptions"; 9560Requests[1094].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9561Requests[1094].Request.Path = "/subscriptions/42438a11-50df-/providers/Microsoft.TimeSeriesInsights/environments"; 9564Requests[1095].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9565Requests[1095].Request.Path = "/subscriptions/73f1aeed-9af5-/providers/microsoft.visualstudio/checkNameAvailability"; 9568Requests[1096].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9569Requests[1096].Request.Path = "/subscriptions/0544cf4c-ff84-/providers/Microsoft.Web/availableStacks"; 9572Requests[1097].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9573Requests[1097].Request.Path = "/subscriptions/04605dc7-fcb9-/providers/Microsoft.Web/billingMeters"; 9576Requests[1098].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9577Requests[1098].Request.Path = "/subscriptions/a59dce8e-cbc1-/providers/Microsoft.Web/certificates"; 9580Requests[1099].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9581Requests[1099].Request.Path = "/subscriptions/44d03a09-6f1b-/providers/Microsoft.Web/checknameavailability"; 9584Requests[1100].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9585Requests[1100].Request.Path = "/subscriptions/574554f7-57ff-/providers/Microsoft.Web/classicMobileServices"; 9588Requests[1101].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9589Requests[1101].Request.Path = "/subscriptions/e44cd816-1d24-/providers/Microsoft.Web/connectionGateways"; 9592Requests[1102].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9593Requests[1102].Request.Path = "/subscriptions/b9ad6a66-c5fa-/providers/Microsoft.Web/customApis"; 9596Requests[1103].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9597Requests[1103].Request.Path = "/subscriptions/015bbd01-b7cc-/providers/Microsoft.Web/deletedSites"; 9600Requests[1104].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9601Requests[1104].Request.Path = "/subscriptions/7de8c312-a38f-/providers/Microsoft.Web/deploymentLocations"; 9604Requests[1105].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9605Requests[1105].Request.Path = "/subscriptions/80321295-d5ec-/providers/Microsoft.Web/geoRegions"; 9608Requests[1106].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9609Requests[1106].Request.Path = "/subscriptions/0b30fa81-9792-/providers/Microsoft.Web/hostingEnvironments"; 9612Requests[1107].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9613Requests[1107].Request.Path = "/subscriptions/3f6c8dc7-7fe7-/providers/Microsoft.Web/ishostingenvironmentnameavailable"; 9616Requests[1108].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9617Requests[1108].Request.Path = "/subscriptions/620d2dbe-be5a-/providers/Microsoft.Web/listSitesAssignedToHostName"; 9620Requests[1109].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9621Requests[1109].Request.Path = "/subscriptions/4e966d1e-8db6-/providers/Microsoft.Web/managedHostingEnvironments"; 9624Requests[1110].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9625Requests[1110].Request.Path = "/subscriptions/5811519a-7478-/providers/Microsoft.Web/premieraddonoffers"; 9628Requests[1111].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9629Requests[1111].Request.Path = "/subscriptions/b1a9cbd9-1628-/providers/Microsoft.Web/publishingCredentials"; 9632Requests[1112].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9633Requests[1112].Request.Path = "/subscriptions/d7ed5081-7a3f-/providers/Microsoft.Web/publishingCredentials"; 9636Requests[1113].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9637Requests[1113].Request.Path = "/subscriptions/3ba64e9e-44af-/providers/Microsoft.Web/recommendations"; 9640Requests[1114].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9641Requests[1114].Request.Path = "/subscriptions/012daf3c-e513-/providers/Microsoft.Web/resourceHealthMetadata"; 9644Requests[1115].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9645Requests[1115].Request.Path = "/subscriptions/0690ec47-f1f4-/providers/Microsoft.Web/serverfarms"; 9648Requests[1116].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9649Requests[1116].Request.Path = "/subscriptions/b394c8f5-8a8e-/providers/Microsoft.Web/sites"; 9652Requests[1117].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9653Requests[1117].Request.Path = "/subscriptions/0f5bd1e6-6d54-/providers/Microsoft.Web/skus"; 9656Requests[1118].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9657Requests[1118].Request.Path = "/subscriptions/d94b2663-3158-/providers/Microsoft.Web/verifyHostingEnvironmentVnet"; 9660Requests[1119].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9661Requests[1119].Request.Path = "/Applications/e880d90d-becf/$/GetServices/$/Create"; 9664Requests[1120].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9665Requests[1120].Request.Path = "/Applications/c8c7e77e-3db4/$/GetServices/$/CreateFromTemplate"; 9668Requests[1121].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9669Requests[1121].Request.Path = "/Applications/52cea4ab-4850-4/$/GetServiceGroups/$/CreateServiceGroupFromTemplate"; 9672Requests[1122].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9673Requests[1122].Request.Path = "/Applications/19392772-d74b-4/$/GetServices/$/CreateServiceGroup"; 9676Requests[1123].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9677Requests[1123].Request.Path = "/Names/51d253/$/GetProperties/$/SubmitBatch"; 9680Requests[1124].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9681Requests[1124].Request.Path = "/Services/c0b2d6f1-2d/$/GetPartitions/$/Recover"; 9684Requests[1125].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9685Requests[1125].Request.Path = "/subscriptions/12aaaec1-1396-/providers/Microsoft.Billing/invoices/latest"; 9688Requests[1126].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9689Requests[1126].Request.Path = "/subscriptions/d5972adf-758e-/providers/Microsoft.Consumption/pricesheets/default"; 9692Requests[1127].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9693Requests[1127].Request.Path = "/subscriptions/422cb620-6073-/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default"; 9696Requests[1128].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9697Requests[1128].Request.Path = "/subscriptions/b17910d7-68ad-/providers/Microsoft.Web/recommendations/reset"; 9700Requests[1129].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9701Requests[1129].Request.Path = "/subscriptions/8baf4f11-8d6d-/providers/Microsoft.Addons/supportProviders/canonical/listSupportPlanInfo"; 9704Requests[1130].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9705Requests[1130].Request.Path = "/subscriptions/840367a0-dc58-/providers/microsoft.insights/eventtypes/management/values"; 9708Requests[1131].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9709Requests[1131].Request.Path = "/subscriptions/a6994d5f-c459-/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies"; 9712Requests[1132].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9713Requests[1132].Request.Path = "/subscriptions/7e281b1b-4ec5-/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies/7be2d30c-a335-43b5-a"; 9716Requests[1133].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9717Requests[1133].Request.Path = "/subscriptions/ecabb61d-1cce-/providers/Microsoft.Advisor/generateRecommendations/9cd44b3f-6e"; 9720Requests[1134].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9721Requests[1134].Request.Path = "/subscriptions/b7636d16-7f6d-/providers/Microsoft.Authorization/locks/69106483"; 9724Requests[1135].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9725Requests[1135].Request.Path = "/subscriptions/917c7d55-eb3c-/providers/Microsoft.Authorization/locks/cb71102b"; 9728Requests[1136].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9729Requests[1136].Request.Path = "/subscriptions/15214889-f041-/providers/Microsoft.Authorization/locks/474498eb"; 9732Requests[1137].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9733Requests[1137].Request.Path = "/subscriptions/be14d324-16c4-/providers/Microsoft.Authorization/policydefinitions/cbe2dafc-1cba-44ce-b"; 9736Requests[1138].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9737Requests[1138].Request.Path = "/subscriptions/ab607ff8-8d0a-/providers/Microsoft.Authorization/policydefinitions/9742ec17-4385-456b-b"; 9740Requests[1139].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9741Requests[1139].Request.Path = "/subscriptions/9e36e7c1-5cd0-/providers/Microsoft.Authorization/policydefinitions/269260fe-b09d-43ca-a"; 9744Requests[1140].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9745Requests[1140].Request.Path = "/subscriptions/4c3b6b1c-ab01-/providers/Microsoft.Authorization/policySetDefinitions/c69c8156-dfea-4b45-89ba"; 9748Requests[1141].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9749Requests[1141].Request.Path = "/subscriptions/b4a3ccbd-932d-/providers/Microsoft.Authorization/policySetDefinitions/d1cb11eb-0759-4a62-ba3f"; 9752Requests[1142].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9753Requests[1142].Request.Path = "/subscriptions/aa6fbfec-8a82-/providers/Microsoft.Authorization/policySetDefinitions/927e9faa-a5a6-4386-b5b6"; 9756Requests[1143].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9757Requests[1143].Request.Path = "/subscriptions/1b088fdc-5ad9-/providers/Microsoft.Billing/billingPeriods/a35f7a7f-af53-4c4"; 9760Requests[1144].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9761Requests[1144].Request.Path = "/subscriptions/153412a8-761a-/providers/Microsoft.Billing/invoices/76dd5f65-31"; 9764Requests[1145].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9765Requests[1145].Request.Path = "/subscriptions/d0aa86a8-ea51-/providers/Microsoft.Consumption/budgets/607da031-b"; 9768Requests[1146].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9769Requests[1146].Request.Path = "/subscriptions/3a7ee920-15e7-/providers/Microsoft.Consumption/budgets/c76b8046-5"; 9772Requests[1147].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9773Requests[1147].Request.Path = "/subscriptions/0882a096-646f-/providers/Microsoft.Consumption/budgets/9fe83a9b-7"; 9776Requests[1148].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9777Requests[1148].Request.Path = "/subscriptions/6e6eecf8-89c7-/providers/Microsoft.DomainRegistration/topLevelDomains/93f74"; 9780Requests[1149].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9781Requests[1149].Request.Path = "/subscriptions/a13af210-d9d6-/providers/microsoft.gallery.admin/galleryItems/dcb199b0-d162-4"; 9784Requests[1150].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9785Requests[1150].Request.Path = "/subscriptions/e97cf79d-d9b3-/providers/microsoft.gallery.admin/galleryItems/1ab9d654-35ed-4"; 9788Requests[1151].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9789Requests[1151].Request.Path = "/subscriptions/f56f2515-1651-/providers/microsoft.insights/logprofiles/0779820c-a249-"; 9792Requests[1152].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9793Requests[1152].Request.Path = "/subscriptions/7341ee3c-2ff2-/providers/microsoft.insights/logprofiles/3c216b1b-b98a-"; 9796Requests[1153].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9797Requests[1153].Request.Path = "/subscriptions/a5a96ea3-4968-/providers/microsoft.insights/logprofiles/d55f94f9-cf49-"; 9800Requests[1154].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 9801Requests[1154].Request.Path = "/subscriptions/7deeaa88-8218-/providers/microsoft.insights/logprofiles/cd18706f-e1e0-"; 9804Requests[1155].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9805Requests[1155].Request.Path = "/subscriptions/593e6ab8-431e-/providers/Microsoft.Media/mediaservices/5ceb78a0-82"; 9808Requests[1156].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9809Requests[1156].Request.Path = "/subscriptions/85813494-a0c4-/providers/Microsoft.Security/autoProvisioningSettings/15fb92d4-bc"; 9812Requests[1157].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9813Requests[1157].Request.Path = "/subscriptions/6c14d1b2-9a4d-/providers/Microsoft.Security/autoProvisioningSettings/84f224eb-25"; 9816Requests[1158].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9817Requests[1158].Request.Path = "/subscriptions/88947aab-740e-/providers/Microsoft.Security/locations/515cde4a-fc"; 9820Requests[1159].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9821Requests[1159].Request.Path = "/subscriptions/9af58a17-db56-/providers/Microsoft.Security/pricings/b4f241d2-d4"; 9824Requests[1160].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9825Requests[1160].Request.Path = "/subscriptions/0f3f0fd9-4667-/providers/Microsoft.Security/pricings/acd33713-b3"; 9828Requests[1161].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 9829Requests[1161].Request.Path = "/subscriptions/5819e222-3408-/providers/Microsoft.Security/workspaceSettings/f0a65dfc-fdfb-4139-a"; 9832Requests[1162].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9833Requests[1162].Request.Path = "/subscriptions/f74e7547-2d9c-/providers/Microsoft.Security/workspaceSettings/b0486deb-d442-494d-b"; 9836Requests[1163].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9837Requests[1163].Request.Path = "/subscriptions/d23b1e3f-4878-/providers/Microsoft.Security/workspaceSettings/4bba79fd-c3b3-4313-9"; 9840Requests[1164].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9841Requests[1164].Request.Path = "/subscriptions/8942e98a-ec49-/providers/Microsoft.Subscriptions.Admin/delegatedProviders/78eb9d3d-09f7-436"; 9844Requests[1165].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9845Requests[1165].Request.Path = "/subscriptions/59f3201a-adf6-/providers/Microsoft.Subscriptions.Admin/locations/2c4f6681"; 9848Requests[1166].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9849Requests[1166].Request.Path = "/subscriptions/3be1f6c9-2488-/providers/Microsoft.Subscriptions.Admin/locations/463b7911"; 9852Requests[1167].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9853Requests[1167].Request.Path = "/subscriptions/476e2f21-9d89-/providers/Microsoft.Subscriptions.Admin/locations/882e1056"; 9856Requests[1168].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9857Requests[1168].Request.Path = "/subscriptions/7d990185-d6ff-/providers/Microsoft.Subscriptions.Admin/subscriptions/4c4e4da2-fd7"; 9860Requests[1169].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 9861Requests[1169].Request.Path = "/subscriptions/54b0f189-4e0d-/providers/Microsoft.Subscriptions.Admin/subscriptions/72befa9d-ee1"; 9864Requests[1170].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 9865Requests[1170].Request.Path = "/subscriptions/a6a3dc23-95f8-/providers/Microsoft.Subscriptions.Admin/subscriptions/63f90ac2-174"; 9868Requests[1171].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9869Requests[1171].Request.Path = "/subscriptions/ff246b1b-7762-/providers/Microsoft.Web/ishostingenvironmentnameavailable/8ce78"; 9872Requests[1172].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9873Requests[1172].Request.Path = "/subscriptions/82aaa395-fdb1-/providers/Microsoft.Addons/supportProviders/e1d5d9df-a99/supportPlanTypes"; 9876Requests[1173].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9877Requests[1173].Request.Path = "/subscriptions/23ca0b55-c790-/providers/Microsoft.AnalysisServices/locations/ad5065b1/checkNameAvailability"; 9880Requests[1174].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9881Requests[1174].Request.Path = "/subscriptions/f45188dc-3938-/providers/Microsoft.Batch/locations/13509369-959/checkNameAvailability"; 9884Requests[1175].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9885Requests[1175].Request.Path = "/subscriptions/52ae308d-c575-/providers/Microsoft.Batch/locations/69750529-bb9/quotas"; 9888Requests[1176].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9889Requests[1176].Request.Path = "/subscriptions/5b226997-5d68-/providers/Microsoft.BatchAI/locations/a1d0edac/usages"; 9892Requests[1177].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9893Requests[1177].Request.Path = "/subscriptions/e3a88556-c30e-/providers/Microsoft.CognitiveServices/locations/c89754d5/checkSkuAvailability"; 9896Requests[1178].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9897Requests[1178].Request.Path = "/subscriptions/c772a4a6-8103-/providers/Microsoft.Compute.Admin/locations/a29a5771/quotas"; 9900Requests[1179].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9901Requests[1179].Request.Path = "/subscriptions/6851776c-2195-/providers/Microsoft.Compute/locations/04d71dbe/publishers"; 9904Requests[1180].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9905Requests[1180].Request.Path = "/subscriptions/9804e971-c872-/providers/Microsoft.Compute/locations/55854cc0/runCommands"; 9908Requests[1181].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9909Requests[1181].Request.Path = "/subscriptions/173d7d9e-210a-/providers/Microsoft.Compute/locations/c59fdd8a/usages"; 9912Requests[1182].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9913Requests[1182].Request.Path = "/subscriptions/e5fd702c-4c01-/providers/Microsoft.Compute/locations/1c8eaea4/vmSizes"; 9916Requests[1183].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9917Requests[1183].Request.Path = "/subscriptions/29a60245-03ab-/providers/Microsoft.ContainerInstance/locations/19b3ae7b/usages"; 9920Requests[1184].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9921Requests[1184].Request.Path = "/subscriptions/c0dc7c96-7f8e-/providers/Microsoft.ContainerService/locations/c7f3cd0a/orchestrators"; 9924Requests[1185].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9925Requests[1185].Request.Path = "/subscriptions/5f5e97ba-f0aa-/providers/Microsoft.DataBox/locations/97996575/availableSkus"; 9928Requests[1186].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9929Requests[1186].Request.Path = "/subscriptions/681775c8-ad40-/providers/Microsoft.DataBox/locations/bfaa1b6e/validateAddress"; 9932Requests[1187].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9933Requests[1187].Request.Path = "/subscriptions/019f8ee8-cf83-/providers/Microsoft.DataFactory/locations/5ab27048-6/configureFactoryRepo"; 9936Requests[1188].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9937Requests[1188].Request.Path = "/subscriptions/72cbf6b2-e0df-/providers/Microsoft.DataLakeAnalytics/locations/54ea6da1/capability"; 9940Requests[1189].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9941Requests[1189].Request.Path = "/subscriptions/d0d3468f-afd5-/providers/Microsoft.DataLakeAnalytics/locations/7865f9a4/checkNameAvailability"; 9944Requests[1190].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9945Requests[1190].Request.Path = "/subscriptions/e426a2c0-56a0-/providers/Microsoft.DataLakeStore/locations/f13cefc5/capability"; 9948Requests[1191].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9949Requests[1191].Request.Path = "/subscriptions/0115253d-da3b-/providers/Microsoft.DataLakeStore/locations/5ae1bedd/checkNameAvailability"; 9952Requests[1192].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9953Requests[1192].Request.Path = "/subscriptions/69e40bdb-cbd4-/providers/Microsoft.DataMigration/locations/abce2769/checkNameAvailability"; 9956Requests[1193].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9957Requests[1193].Request.Path = "/subscriptions/f0648eeb-25d8-/providers/Microsoft.DataMigration/locations/98590540/usages"; 9960Requests[1194].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9961Requests[1194].Request.Path = "/subscriptions/6fff6958-c45c-/providers/Microsoft.DBforMySQL/locations/1b0ae5b2-0ee/performanceTiers"; 9964Requests[1195].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9965Requests[1195].Request.Path = "/subscriptions/41c9d9f8-0cfb-/providers/Microsoft.DBforPostgreSQL/locations/f820f83e-0ba/performanceTiers"; 9968Requests[1196].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9969Requests[1196].Request.Path = "/subscriptions/232da203-7149-/providers/Microsoft.DomainRegistration/topLevelDomains/b6fba/listAgreements"; 9972Requests[1197].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9973Requests[1197].Request.Path = "/subscriptions/7aeb7ef6-ec91-/providers/Microsoft.EventGrid/locations/d5c50d50/eventSubscriptions"; 9976Requests[1198].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9977Requests[1198].Request.Path = "/subscriptions/fa4a5b5e-6cb4-/providers/Microsoft.EventGrid/topicTypes/44bc3077-09c8/eventSubscriptions"; 9980Requests[1199].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9981Requests[1199].Request.Path = "/subscriptions/45a30f0f-2b6b-/providers/Microsoft.EventHub/sku/45da6/regions"; 9984Requests[1200].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9985Requests[1200].Request.Path = "/subscriptions/0e72bae4-f75a-/providers/Microsoft.Features/providers/e60b13f3-8a95-4e7f-a5a5-2/features"; 9988Requests[1201].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9989Requests[1201].Request.Path = "/subscriptions/9e1183c5-d083-/providers/Microsoft.HDInsight/locations/af5fa8f9/capabilities"; 9992Requests[1202].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 9993Requests[1202].Request.Path = "/subscriptions/9d93061f-3d4e-/providers/Microsoft.KeyVault.Admin/locations/7a766b1c/quotas"; 9996Requests[1203].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 9997Requests[1203].Request.Path = "/subscriptions/f5fcce58-c7fb-/providers/Microsoft.Media/locations/b936efb2-a94/checkNameAvailability"; 10000Requests[1204].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10001Requests[1204].Request.Path = "/subscriptions/5594ecd0-eea3-/providers/Microsoft.Network.Admin/locations/83cff230/quotas"; 10004Requests[1205].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10005Requests[1205].Request.Path = "/subscriptions/2c04b1ce-93c5-/providers/Microsoft.Network/locations/27f92f5c/CheckDnsNameAvailability"; 10008Requests[1206].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10009Requests[1206].Request.Path = "/subscriptions/ddd702a4-0aed-/providers/Microsoft.Network/locations/09d7dac3/usages"; 10012Requests[1207].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10013Requests[1207].Request.Path = "/subscriptions/483cd867-0ec9-/providers/Microsoft.Network/locations/23190e13/virtualNetworkAvailableEndpointServices"; 10016Requests[1208].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10017Requests[1208].Request.Path = "/subscriptions/aedb0408-da99-/providers/Microsoft.PolicyInsights/policyEvents/49d8718f-edd8-428b-8/queryResults"; 10020Requests[1209].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10021Requests[1209].Request.Path = "/subscriptions/0b6230ce-1342-/providers/Microsoft.PolicyInsights/policyStates/23dd4ef4-b14e-4aa1-a/queryResults"; 10024Requests[1210].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10025Requests[1210].Request.Path = "/subscriptions/7d049a48-8342-/providers/Microsoft.PolicyInsights/policyStates/74ffc020-743d-4e09-b26f-7a1/summarize"; 10028Requests[1211].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10029Requests[1211].Request.Path = "/subscriptions/cda8cf5f-f0f5-/providers/Microsoft.PowerBI/locations/007b8789/checkNameAvailability"; 10032Requests[1212].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10033Requests[1212].Request.Path = "/Subscriptions/eaa315a7-97ce-/providers/Microsoft.RecoveryServices/locations/aa115313-dd/backupPreValidateProtection"; 10036Requests[1213].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10037Requests[1213].Request.Path = "/Subscriptions/b1ca72f6-f840-/providers/Microsoft.RecoveryServices/locations/abe1861b-5e/backupStatus"; 10040Requests[1214].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10041Requests[1214].Request.Path = "/Subscriptions/40ae1876-d1bd-/providers/Microsoft.RecoveryServices/locations/e573b393-ef/backupValidateFeatures"; 10044Requests[1215].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10045Requests[1215].Request.Path = "/subscriptions/62cb44b1-cd6f-/providers/Microsoft.Security/locations/cbbd3b76-b6/alerts"; 10048Requests[1216].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10049Requests[1216].Request.Path = "/subscriptions/6c3d3067-db10-/providers/Microsoft.Security/locations/8533a047-40/discoveredSecuritySolutions"; 10052Requests[1217].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10053Requests[1217].Request.Path = "/subscriptions/fcbc5b49-e678-/providers/Microsoft.Security/locations/f7cc43d8-a0/ExternalSecuritySolutions"; 10056Requests[1218].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10057Requests[1218].Request.Path = "/subscriptions/dcdb4710-0fc3-/providers/Microsoft.Security/locations/36ee7a64-94/jitNetworkAccessPolicies"; 10060Requests[1219].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10061Requests[1219].Request.Path = "/subscriptions/2e25acd3-53b2-/providers/Microsoft.Security/locations/74f16873-1e/tasks"; 10064Requests[1220].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10065Requests[1220].Request.Path = "/subscriptions/1670c796-33ed-/providers/Microsoft.ServiceBus/sku/c33a9/regions"; 10068Requests[1221].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10069Requests[1221].Request.Path = "/subscriptions/7d84f0db-7b2a-/providers/Microsoft.ServiceFabric/locations/c7d55ff5/clusterVersions"; 10072Requests[1222].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10073Requests[1222].Request.Path = "/subscriptions/8e08dad0-bc74-/providers/Microsoft.SignalRService/locations/c602df23/checkNameAvailability"; 10076Requests[1223].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10077Requests[1223].Request.Path = "/subscriptions/38f8a807-ca80-/providers/Microsoft.Sql/locations/65797d40-85b/capabilities"; 10080Requests[1224].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10081Requests[1224].Request.Path = "/subscriptions/9e9475e3-17e1-/providers/Microsoft.Sql/locations/609e5648-188/longTermRetentionBackups"; 10084Requests[1225].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10085Requests[1225].Request.Path = "/subscriptions/e74a01ba-376c-/providers/Microsoft.Sql/locations/a46e9527-573/syncDatabaseIds"; 10088Requests[1226].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10089Requests[1226].Request.Path = "/subscriptions/f75e5089-75cd-/providers/Microsoft.Sql/locations/3fee117e-7b0/usages"; 10092Requests[1227].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10093Requests[1227].Request.Path = "/subscriptions/fce1d849-a467-/providers/Microsoft.Storage.Admin/locations/a138dd68/quotas"; 10096Requests[1228].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10097Requests[1228].Request.Path = "/subscriptions/ca438fae-ad10-/providers/Microsoft.Storage/locations/18cd438a/usages"; 10100Requests[1229].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10101Requests[1229].Request.Path = "/subscriptions/74876131-9b18-/providers/Microsoft.StreamAnalytics/locations/befa5d32/quotas"; 10104Requests[1230].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10105Requests[1230].Request.Path = "/subscriptions/34886381-538d-/providers/Microsoft.Subscriptions.Admin/delegatedProviders/10064dff-882b-4fa7-85c1-2305eec/offers"; 10108Requests[1231].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10109Requests[1231].Request.Path = "/subscriptions/25bdfb36-5305-/providers/Microsoft.Subscriptions.Admin/locations/2528e997/quotas"; 10112Requests[1232].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10113Requests[1232].Request.Path = "/subscriptions/7e593b0a-ba0d-/providers/Microsoft.Subscriptions.Admin/subscriptions/0cef82b8-1be7-4d8f-b/acquiredPlans"; 10116Requests[1233].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10117Requests[1233].Request.Path = "/subscriptions/f58b1c2c-19be-/providers/Microsoft.Web/locations/029e8d30/connectionGatewayInstallations"; 10120Requests[1234].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10121Requests[1234].Request.Path = "/subscriptions/3fc51542-3856-/providers/Microsoft.Web/locations/1dfd98d1/extractApiDefinitionFromWsdl"; 10124Requests[1235].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10125Requests[1235].Request.Path = "/subscriptions/3be79fbf-b3bf-/providers/Microsoft.Web/locations/3051d2ac/listWsdlInterfaces"; 10128Requests[1236].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10129Requests[1236].Request.Path = "/subscriptions/6d1ae875-475a-/providers/Microsoft.Web/locations/5c0cef32/managedApis"; 10132Requests[1237].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10133Requests[1237].Request.Path = "/subscriptions/fbd94678-93f4-/providers/Microsoft.Web/recommendations/ce13c/disable"; 10136Requests[1238].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10137Requests[1238].Request.Path = "/subscriptions/e31a83c1-9760-/providers/Microsoft.Compute.Admin/locations/0290db79/artifactTypes/platformImage"; 10140Requests[1239].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10141Requests[1239].Request.Path = "/subscriptions/bbb9277b-a596-/providers/Microsoft.Compute.Admin/locations/fd7908f6/artifactTypes/VMExtension"; 10144Requests[1240].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10145Requests[1240].Request.Path = "/subscriptions/9fc2a3c7-f3e7-/providers/Microsoft.Billing/billingPeriods/fe427fda-3f44-411/providers/Microsoft.Consumption/marketplaces"; 10148Requests[1241].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10149Requests[1241].Request.Path = "/subscriptions/6779a0c5-7ca2-/providers/Microsoft.Billing/billingPeriods/f3cba789-3706-436/providers/Microsoft.Consumption/usageDetails"; 10152Requests[1242].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10153Requests[1242].Request.Path = "/subscriptions/a7dee027-a75b-/providers/Microsoft.Compute/locations/51a00475/logAnalytics/apiAccess/getRequestRateByInterval"; 10156Requests[1243].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10157Requests[1243].Request.Path = "/subscriptions/7dcae95a-b1c0-/providers/Microsoft.Compute/locations/524d7f70/logAnalytics/apiAccess/getThrottledRequests"; 10160Requests[1244].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10161Requests[1244].Request.Path = "/subscriptions/a3e345aa-f69e-/providers/Microsoft.Billing/billingPeriods/87a38584-ce5e-42d/providers/Microsoft.Consumption/pricesheets/default"; 10164Requests[1245].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10165Requests[1245].Request.Path = "/subscriptions/ae603476-dea0-/providers/Microsoft.Compute.Admin/locations/a3fc2a4b/artifactTypes/VMExtension/publishers/47241dea-/types/7bce3/versions/f7b97e9"; 10168Requests[1246].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10169Requests[1246].Request.Path = "/subscriptions/847ff6c0-6986-/providers/Microsoft.Compute.Admin/locations/57974f77/artifactTypes/VMExtension/publishers/d1dfc936-/types/c0f29/versions/7ff6e6d"; 10172Requests[1247].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10173Requests[1247].Request.Path = "/subscriptions/8ad03701-6d49-/providers/Microsoft.Compute.Admin/locations/9dc15717/artifactTypes/VMExtension/publishers/d8663ec8-/types/62bbd/versions/e1c83ef"; 10176Requests[1248].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10177Requests[1248].Request.Path = "/subscriptions/fafa61c9-fa4e-/providers/Microsoft.Compute.Admin/locations/c6aab8bd/artifactTypes/platformImage/publishers/a5d3412e-/offers/f13ee/skus/392c1/versions/834015d"; 10180Requests[1249].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10181Requests[1249].Request.Path = "/subscriptions/27e3d72c-a258-/providers/Microsoft.Compute.Admin/locations/5a328caf/artifactTypes/platformImage/publishers/e352a859-/offers/791a1/skus/09781/versions/7784b1a"; 10184Requests[1250].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10185Requests[1250].Request.Path = "/subscriptions/800a928c-ed9d-/providers/Microsoft.Compute.Admin/locations/3387d58b/artifactTypes/platformImage/publishers/ffc1427b-/offers/2aad4/skus/1625c/versions/31ff0e5"; 10188Requests[1251].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10189Requests[1251].Request.Path = "/subscriptions/618a3755-be35-/providers/Microsoft.Addons/supportProviders/b86dd8f0-f55/supportPlanTypes/40990d2b-2be"; 10192Requests[1252].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10193Requests[1252].Request.Path = "/subscriptions/82d18335-e962-/providers/Microsoft.Addons/supportProviders/f099557e-1ce/supportPlanTypes/1bff69f5-acb"; 10196Requests[1253].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10197Requests[1253].Request.Path = "/subscriptions/e310500c-2fc5-/providers/Microsoft.Addons/supportProviders/1d65cca4-67b/supportPlanTypes/80a8fdfc-6a5"; 10200Requests[1254].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10201Requests[1254].Request.Path = "/subscriptions/8e53c8c3-df61-/providers/Microsoft.AnalysisServices/locations/cccf18bb/operationresults/34c5c5c9-1b"; 10204Requests[1255].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10205Requests[1255].Request.Path = "/subscriptions/cd310a06-04ce-/providers/Microsoft.AnalysisServices/locations/ed735194/operationstatuses/4fdd5326-ba"; 10208Requests[1256].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10209Requests[1256].Request.Path = "/subscriptions/2427095f-4c5a-/providers/Microsoft.Compute.Admin/locations/f100ce16/quotas/cbdf79ba-"; 10212Requests[1257].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10213Requests[1257].Request.Path = "/subscriptions/400b3846-23c3-/providers/Microsoft.Compute.Admin/locations/821c1095/quotas/4a3ea1ce-"; 10216Requests[1258].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10217Requests[1258].Request.Path = "/subscriptions/73032fec-5cac-/providers/Microsoft.Compute.Admin/locations/9a4a4000/quotas/6e564043-"; 10220Requests[1259].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10221Requests[1259].Request.Path = "/subscriptions/740effd5-12ce-/providers/Microsoft.Compute/locations/6c9beb72/runCommands/7fa1b14c-"; 10224Requests[1260].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10225Requests[1260].Request.Path = "/subscriptions/b4bef99b-4b7e-/providers/Microsoft.DevTestLab/locations/43cfb089-2cc/operations/5eb52"; 10228Requests[1261].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10229Requests[1261].Request.Path = "/subscriptions/e4e683a1-23bc-/providers/Microsoft.Features/providers/22fae324-c430-4ef1-8ef4-2/features/147124b9-12"; 10232Requests[1262].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10233Requests[1262].Request.Path = "/subscriptions/9460f76f-a798-/providers/Microsoft.KeyVault/locations/a56cca37/deletedVaults/4085e18f-"; 10236Requests[1263].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10237Requests[1263].Request.Path = "/subscriptions/621077fc-0787-/providers/Microsoft.Network.Admin/locations/261b5c6e/quotas/c88fe1f5-2a6"; 10240Requests[1264].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10241Requests[1264].Request.Path = "/subscriptions/e570c9eb-24e9-/providers/Microsoft.Network.Admin/locations/e7c26217/quotas/ca1152f5-b5f"; 10244Requests[1265].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10245Requests[1265].Request.Path = "/subscriptions/9467d9e6-cfec-/providers/Microsoft.Network.Admin/locations/79b5e320/quotas/ca8158a9-cbe"; 10248Requests[1266].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10249Requests[1266].Request.Path = "/subscriptions/ece6fbaf-a429-/providers/Microsoft.Security/locations/0ca497f9-34/alerts/1d19e947-"; 10252Requests[1267].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10253Requests[1267].Request.Path = "/subscriptions/6042b579-a059-/providers/Microsoft.Security/locations/861eaec5-98/tasks/db3ef89d"; 10256Requests[1268].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10257Requests[1268].Request.Path = "/subscriptions/1111c27a-e0d2-/providers/Microsoft.ServiceFabric/locations/a79b3aa2/clusterVersions/3d9a5d7f-4890-"; 10260Requests[1269].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10261Requests[1269].Request.Path = "/subscriptions/c415ba33-0245-/providers/Microsoft.Sql/locations/8976679b-061/usages/7e36fe5e-"; 10264Requests[1270].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10265Requests[1270].Request.Path = "/subscriptions/d10f8ac7-dd69-/providers/Microsoft.Storage.Admin/locations/d5d5aed9/quotas/7c806e9d-"; 10268Requests[1271].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10269Requests[1271].Request.Path = "/subscriptions/6df50e18-8b28-/providers/Microsoft.Storage.Admin/locations/d1ba55b6/quotas/810c6e91-"; 10272Requests[1272].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10273Requests[1272].Request.Path = "/subscriptions/2dff9e60-5c57-/providers/Microsoft.Storage.Admin/locations/d945e13a/quotas/aa757c51-"; 10276Requests[1273].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10277Requests[1273].Request.Path = "/subscriptions/78c8551b-345d-/providers/Microsoft.Subscriptions.Admin/delegatedProviders/a96fdb40-fbb5-46eb-b84d-221284e/offers/b51f6"; 10280Requests[1274].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10281Requests[1274].Request.Path = "/subscriptions/a0082974-aee0-/providers/Microsoft.Subscriptions.Admin/locations/65febca0/quotas/6e06b"; 10284Requests[1275].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10285Requests[1275].Request.Path = "/subscriptions/73e538cd-79f9-/providers/Microsoft.Subscriptions.Admin/subscriptions/da1ba285-f5fa-43e1-8/acquiredPlans/a922ba2b-d02d-404"; 10288Requests[1276].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10289Requests[1276].Request.Path = "/subscriptions/737e3704-2800-/providers/Microsoft.Subscriptions.Admin/subscriptions/42f16d26-425f-4cda-9/acquiredPlans/947e3223-87a1-447"; 10292Requests[1277].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10293Requests[1277].Request.Path = "/subscriptions/2c21f8ce-a002-/providers/Microsoft.Subscriptions.Admin/subscriptions/102e563d-9d43-4071-8/acquiredPlans/a8f52a19-f31d-402"; 10296Requests[1278].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10297Requests[1278].Request.Path = "/subscriptions/fa1cd062-a6f4-/providers/Microsoft.Web/locations/82aa7c72/connectionGatewayInstallations/274f1114-"; 10300Requests[1279].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10301Requests[1279].Request.Path = "/subscriptions/6d780efb-6f48-/providers/Microsoft.Web/locations/232d7dad/managedApis/8928d6b"; 10304Requests[1280].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10305Requests[1280].Request.Path = "/subscriptions/bf44e162-a8c5-/providers/Microsoft.EventGrid/locations/4115ac8f/topicTypes/e1691906-750f/eventSubscriptions"; 10308Requests[1281].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10309Requests[1281].Request.Path = "/subscriptions/7433fc16-3826-/providers/Microsoft.Features/providers/4100c1e6-2587-4035-a3b6-c/features/7fa2776a-cc/register"; 10312Requests[1282].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10313Requests[1282].Request.Path = "/subscriptions/240db3d2-4461-/providers/Microsoft.KeyVault/locations/db42eff9/deletedVaults/5576afe0-/purge"; 10316Requests[1283].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10317Requests[1283].Request.Path = "/subscriptions/4f7972b9-093a-/providers/Microsoft.ServiceFabric/locations/89d680e8/environments/82885d71-e2/clusterVersions"; 10320Requests[1284].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10321Requests[1284].Request.Path = "/subscriptions/b5cbefab-d37c-/providers/Microsoft.Sql/locations/cc585d41-2f9/longTermRetentionServers/e8d8cb85-9044-4273-827e-929/longTermRetentionBackups"; 10324Requests[1285].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10325Requests[1285].Request.Path = "/subscriptions/e99c0139-3f32-/providers/Microsoft.Sql/locations/bc670500-912/managedDatabaseRestoreAzureAsyncOperation/0871537b-29/completeRestore"; 10328Requests[1286].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10329Requests[1286].Request.Path = "/subscriptions/41726a57-e575-/providers/Microsoft.Compute/locations/3af588e2/publishers/0efe529d-c4d3/artifacttypes/vmextension/types"; 10332Requests[1287].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10333Requests[1287].Request.Path = "/subscriptions/ea8e8d47-56ca-/providers/Microsoft.Compute/locations/35bb3a82/publishers/7529e227-6d57/artifacttypes/vmimage/offers"; 10336Requests[1288].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10337Requests[1288].Request.Path = "/subscriptions/19a5adfe-ab65-/providers/Microsoft.Compute/locations/c990531e/publishers/a5b79c76-3d24/artifacttypes/vmextension/types/fc9df/versions"; 10340Requests[1289].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10341Requests[1289].Request.Path = "/subscriptions/887d3177-81e1-/providers/Microsoft.Compute/locations/7fa0ef95/publishers/d8b3c5f5-325c/artifacttypes/vmimage/offers/c6c33/skus"; 10344Requests[1290].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10345Requests[1290].Request.Path = "/subscriptions/0cef3769-3c9e-/providers/Microsoft.Compute/locations/d881fbe3/publishers/26c70639-92c0/artifacttypes/vmextension/types/df543/versions/3a45b0a"; 10348Requests[1291].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10349Requests[1291].Request.Path = "/subscriptions/adee9e3b-d0d1-/providers/Microsoft.Compute/locations/2eba8a9e/publishers/a32fa8ca-46c1/artifacttypes/vmimage/offers/1abaf/skus/ae9c8/versions"; 10352Requests[1292].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10353Requests[1292].Request.Path = "/subscriptions/8fe6e117-b734-/providers/Microsoft.Compute/locations/773c293f/publishers/30581879-914c/artifacttypes/vmimage/offers/06217/skus/0a4e1/versions/5dd8af2"; 10356Requests[1293].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10357Requests[1293].Request.Path = "/subscriptions/ac653c91-e804-/providers/Microsoft.ServiceFabric/locations/e9be59c0/environments/478a0b9d-6c/clusterVersions/4345a391-5b8d-"; 10360Requests[1294].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10361Requests[1294].Request.Path = "/subscriptions/fdac51a9-ebf7-/providers/Microsoft.Sql/locations/36355b70-fe7/longTermRetentionServers/9aad3d75-af79-4dc9-8432-dc2/longTermRetentionDatabases/ee445a27-d51e-42c9-8ff2-754b1/longTermRetentionBackups"; 10364Requests[1295].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10365Requests[1295].Request.Path = "/subscriptions/3b075d6f-c92a-/providers/Microsoft.Sql/locations/c1e05683-0b1/longTermRetentionServers/c6d429f5-c983-4dcf-a877-a9c/longTermRetentionDatabases/83381dc3-fd69-44e2-aaf5-12978/longTermRetentionBackups/31a5cedc-5"; 10368Requests[1296].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10369Requests[1296].Request.Path = "/subscriptions/3533ded4-e0a1-/providers/Microsoft.Sql/locations/49ea713b-249/longTermRetentionServers/194c0ebb-65a0-4686-9397-228/longTermRetentionDatabases/445fd336-d9ef-4d25-a81b-d5931/longTermRetentionBackups/cca11573-c"; 10372Requests[1297].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10373Requests[1297].Request.Path = "/subscriptions/db248ffb-0142-/providers/Microsoft.MarketplaceOrdering/offerTypes/48ce2c53-/publishers/640b9ed0-21/offers/b3f7c09/plans/0ce23d/agreements/current"; 10376Requests[1298].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10377Requests[1298].Request.Path = "/subscriptions/a6ace3df-05ab-/providers/Microsoft.MarketplaceOrdering/offerTypes/efb17a6d-/publishers/a33375d7-13/offers/11f1103/plans/9ee020/agreements/current"; 10380Requests[1299].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10381Requests[1299].Request.Path = "/subscriptions/f464e38e-3898-/providers/Microsoft.Security/locations/6799ad98-1c/alerts/2406a70e-/b4680df5-acab-4ea5-b5"; 10384Requests[1300].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10385Requests[1300].Request.Path = "/subscriptions/157317b7-31d2-/providers/Microsoft.Security/locations/324c7b61-89/tasks/f8e17844/2c920d64-ed85-497c-a"; 10388Requests[1301].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10389Requests[1301].Request.Path = "/Applications/ed70163f-f886/$/GetServices/f7176267-"; 10392Requests[1302].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10393Requests[1302].Request.Path = "/ApplicationTypes/7d0410bf-12af-4393-/$/GetServiceTypes/36bbb739-9f01-4"; 10396Requests[1303].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10397Requests[1303].Request.Path = "/Nodes/c46b55b8/$/GetApplications/12835253-d346"; 10400Requests[1304].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10401Requests[1304].Request.Path = "/Partitions/b36c29e6-61/$/GetReplicas/b972814d-"; 10404Requests[1305].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10405Requests[1305].Request.Path = "/Services/4e67d636-d9/$/GetPartitions/c2142d3a-fb"; 10408Requests[1306].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10409Requests[1306].Request.Path = "/Applications/f5b4fe26-35f3-4/$/GetServiceGroups/874e9054-09/$/Delete"; 10412Requests[1307].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10413Requests[1307].Request.Path = "/Applications/de7f11f0-46f4-4/$/GetServices/b6b22bef-e7/$/GetServiceGroupDescription"; 10416Requests[1308].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10417Requests[1308].Request.Path = "/Applications/642c4f21-656f-4/$/GetServices/09d5461d-97/$/GetServiceGroupMembers"; 10420Requests[1309].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10421Requests[1309].Request.Path = "/Applications/2d4ddc02-11f0-4/$/GetServices/74f6e040-a9/$/UpdateServiceGroup"; 10424Requests[1310].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10425Requests[1310].Request.Path = "/Nodes/345739d6/$/GetApplications/3a36c19e-dcd4/$/GetCodePackages"; 10428Requests[1311].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10429Requests[1311].Request.Path = "/Nodes/d21b4423/$/GetApplications/a2d0c987-c96a/$/GetHealth"; 10432Requests[1312].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10433Requests[1312].Request.Path = "/Nodes/28902ce3/$/GetApplications/960875f3-673f/$/GetHealth"; 10436Requests[1313].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10437Requests[1313].Request.Path = "/Nodes/b19c90c2/$/GetApplications/eb25509e-1f0f/$/GetReplicas"; 10440Requests[1314].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10441Requests[1314].Request.Path = "/Nodes/72907a77/$/GetApplications/92353823-f1bf/$/GetServicePackages"; 10444Requests[1315].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10445Requests[1315].Request.Path = "/Nodes/762f5953/$/GetApplications/cd7051b7-29ae/$/GetServiceTypes"; 10448Requests[1316].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10449Requests[1316].Request.Path = "/Nodes/f70232c3/$/GetApplications/a916cb37-f6ef/$/ReportHealth"; 10452Requests[1317].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10453Requests[1317].Request.Path = "/Nodes/ef5b5371/$/GetPartitions/28ce57ac-bd/$/GetReplicas"; 10456Requests[1318].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10457Requests[1318].Request.Path = "/Partitions/bf1e504f-b8/$/GetReplicas/87513de2-/$/GetHealth"; 10460Requests[1319].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10461Requests[1319].Request.Path = "/Partitions/d4c9f4ac-eb/$/GetReplicas/a8146dde-/$/GetHealth"; 10464Requests[1320].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10465Requests[1320].Request.Path = "/Partitions/d77a2929-e6/$/GetReplicas/ea1245b1-/$/GetLoadInformation"; 10468Requests[1321].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10469Requests[1321].Request.Path = "/Partitions/a17199a4-6b/$/GetReplicas/b5a3df2e-/$/ReportHealth"; 10472Requests[1322].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10473Requests[1322].Request.Path = "/Nodes/028bca86/$/GetApplications/94c4fcb7-484c/$/GetCodePackages/$/ContainerApi"; 10476Requests[1323].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10477Requests[1323].Request.Path = "/Nodes/cf8b94ca/$/GetApplications/74b2ce3b-e687/$/GetCodePackages/$/ContainerLogs"; 10480Requests[1324].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10481Requests[1324].Request.Path = "/Nodes/b612ca60/$/GetApplications/976b7eaa-f24d/$/GetCodePackages/$/Restart"; 10484Requests[1325].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10485Requests[1325].Request.Path = "/Nodes/29b98a7b/$/GetApplications/1c7060e6-f8cf/$/GetServicePackages/a19f61d5-8402-4eb2"; 10488Requests[1326].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10489Requests[1326].Request.Path = "/Nodes/6aa346f5/$/GetApplications/6513be00-97b7/$/GetServiceTypes/268e2f73-6aa3-4"; 10492Requests[1327].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10493Requests[1327].Request.Path = "/Nodes/9ae4054f/$/GetApplications/843f8441-8a59/$/GetServicePackages/013371c7-fe95-45b3/$/GetHealth"; 10496Requests[1328].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10497Requests[1328].Request.Path = "/Nodes/8bffb32e/$/GetApplications/5bed31a5-f9f9/$/GetServicePackages/02b41713-4d20-457a/$/GetHealth"; 10500Requests[1329].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10501Requests[1329].Request.Path = "/Nodes/0039743b/$/GetApplications/50789cfb-795d/$/GetServicePackages/05ede1e9-6ea1-4492/$/ReportHealth"; 10504Requests[1330].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10505Requests[1330].Request.Path = "/Nodes/0922065e/$/GetPartitions/07c1c584-1b/$/GetReplicas/d652aa5f-/$/Delete"; 10508Requests[1331].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10509Requests[1331].Request.Path = "/Nodes/e2afd9f0/$/GetPartitions/816555eb-4e/$/GetReplicas/5f6a5a2f-/$/GetDetail"; 10512Requests[1332].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10513Requests[1332].Request.Path = "/Nodes/0c179a33/$/GetPartitions/d1165342-b7/$/GetReplicas/2c4fdbd6-/$/Restart"; 10516Requests[1333].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10517Requests[1333].Request.Path = "/apis/f2c95/operations/17eaf31f-12"; 10520Requests[1334].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10521Requests[1334].Request.Path = "/apis/66f43/operations/00815541-88"; 10524Requests[1335].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 10525Requests[1335].Request.Path = "/apis/f45d7/operations/697af956-b9"; 10528Requests[1336].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10529Requests[1336].Request.Path = "/apis/b2bf5/operations/9b74f183-e4"; 10532Requests[1337].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10533Requests[1337].Request.Path = "/apis/581f7/policies/54f5d99f"; 10536Requests[1338].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10537Requests[1338].Request.Path = "/apis/163ec/policies/1dcd59be"; 10540Requests[1339].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10541Requests[1339].Request.Path = "/apis/8a89c/policies/3700c79f"; 10544Requests[1340].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10545Requests[1340].Request.Path = "/apis/ec08c/schemas/61e3a8f5"; 10548Requests[1341].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10549Requests[1341].Request.Path = "/apis/4e90b/schemas/bdec81c9"; 10552Requests[1342].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10553Requests[1342].Request.Path = "/apis/0a351/schemas/10a5bc54"; 10556Requests[1343].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10557Requests[1343].Request.Path = "/apps/63813/events/cbdb18bb-"; 10560Requests[1344].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10561Requests[1344].Request.Path = "/apps/1e10e/metrics/f50f9df2"; 10564Requests[1345].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10565Requests[1345].Request.Path = "/apps/4f105/versions/bbc71dda-"; 10568Requests[1346].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10569Requests[1346].Request.Path = "/apps/598b4/versions/18d34fe4-"; 10572Requests[1347].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10573Requests[1347].Request.Path = "/apps/1376d/versions/e8e4cafb-"; 10576Requests[1348].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10577Requests[1348].Request.Path = "/delegatedProviders/55ad106d-a4f6-40d1-/offers/cdda69b0-"; 10580Requests[1349].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10581Requests[1349].Request.Path = "/deletedstorage/351d3d69-0c43-49f8-b/sas/93d5537d-0a1c-4f5c-"; 10584Requests[1350].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10585Requests[1350].Request.Path = "/facelists/843eb893-9/persistedFaces/2373e0cd-330b-4"; 10588Requests[1351].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10589Requests[1351].Request.Path = "/groups/4e82b5d/users/85dd0"; 10592Requests[1352].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10593Requests[1352].Request.Path = "/groups/26e2722/users/81405"; 10596Requests[1353].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10597Requests[1353].Request.Path = "/jobs/87bef/tasks/d55658"; 10600Requests[1354].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10601Requests[1354].Request.Path = "/jobs/e7a5d/tasks/96f0d6"; 10604Requests[1355].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10605Requests[1355].Request.Path = "/jobs/533fe/tasks/65c5cb"; 10608Requests[1356].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10609Requests[1356].Request.Path = "/persongroups/b1b71c4a-4a33/persons/111fffa2"; 10612Requests[1357].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 10613Requests[1357].Request.Path = "/persongroups/51c96583-bbd3/persons/cafb8ee3"; 10616Requests[1358].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10617Requests[1358].Request.Path = "/persongroups/09cb77eb-a357/persons/6b475c68"; 10620Requests[1359].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10621Requests[1359].Request.Path = "/pools/351e51/nodes/8a86cb"; 10624Requests[1360].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10625Requests[1360].Request.Path = "/products/122d56fe-/apis/3f551"; 10628Requests[1361].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10629Requests[1361].Request.Path = "/products/155a381a-/apis/077e7"; 10632Requests[1362].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10633Requests[1362].Request.Path = "/products/1dc0446a-/groups/ae08e25"; 10636Requests[1363].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10637Requests[1363].Request.Path = "/products/6cf8dfef-/groups/689d271"; 10640Requests[1364].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10641Requests[1364].Request.Path = "/products/9aacee11-/policies/e1c02d0b"; 10644Requests[1365].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10645Requests[1365].Request.Path = "/products/341e764c-/policies/8c54cf47"; 10648Requests[1366].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10649Requests[1366].Request.Path = "/products/3b778fa1-/policies/d740c035"; 10652Requests[1367].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10653Requests[1367].Request.Path = "/projects/7bde34e5-/iterations/b8b1cfef-c2"; 10656Requests[1368].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 10657Requests[1368].Request.Path = "/projects/0dea1c1d-/iterations/ab59f5cc-4b"; 10660Requests[1369].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10661Requests[1369].Request.Path = "/projects/ee7a14bf-/iterations/42461e85-27"; 10664Requests[1370].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10665Requests[1370].Request.Path = "/projects/7ac42682-/tags/f8dce"; 10668Requests[1371].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 10669Requests[1371].Request.Path = "/projects/18347b5b-/tags/1b894"; 10672Requests[1372].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10673Requests[1372].Request.Path = "/projects/dfccf1e9-/tags/59527"; 10676Requests[1373].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 10677Requests[1373].Request.Path = "/storage/9cfd8322-ab57-4979-9/sas/3d259dd5-00ae-479a-"; 10680Requests[1374].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10681Requests[1374].Request.Path = "/storage/0d93fd72-6818-4d10-8/sas/0801985d-2de9-421c-"; 10684Requests[1375].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10685Requests[1375].Request.Path = "/storage/14a80398-0958-43b1-9/sas/466b9136-7a7b-4e22-"; 10688Requests[1376].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10689Requests[1376].Request.Path = "/storage/e99b0743-2f45-478e-9/sas/316980f2-15c1-4db9-"; 10692Requests[1377].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10693Requests[1377].Request.Path = "/subscriptions/70c5d444-0ea0-/providers/ca932bfb-c23b-48f0-8fac-e"; 10696Requests[1378].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 10697Requests[1378].Request.Path = "/subscriptions/33421b06-87ae-/resourcegroups/b65090e7-6dae-47e"; 10700Requests[1379].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 10701Requests[1379].Request.Path = "/subscriptions/b8ea6988-ba87-/resourcegroups/2e888959-3158-469"; 10704Requests[1380].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10705Requests[1380].Request.Path = "/subscriptions/b61598c2-31a1-/resourcegroups/275a9a69-c8bd-44f"; 10708Requests[1381].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10709Requests[1381].Request.Path = "/subscriptions/abe92b5f-45a8-/resourcegroups/2c8eb688-3e39-449"; 10712Requests[1382].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10713Requests[1382].Request.Path = "/subscriptions/0ee49827-fcca-/resourcegroups/cbb96ef9-5ef0-4aa"; 10716Requests[1383].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10717Requests[1383].Request.Path = "/subscriptions/4dd04a95-56ca-/tagNames/0b2f487"; 10720Requests[1384].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10721Requests[1384].Request.Path = "/subscriptions/fcb97e28-a5d2-/tagNames/9c10be2"; 10724Requests[1385].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10725Requests[1385].Request.Path = "/apis/dc327/operations/65ee625a-45/policies"; 10728Requests[1386].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10729Requests[1386].Request.Path = "/apps/fa9b1/versions/0668da6b-/clone"; 10732Requests[1387].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10733Requests[1387].Request.Path = "/apps/20ec6/versions/e8dcb709-/closedlists"; 10736Requests[1388].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10737Requests[1388].Request.Path = "/apps/9851a/versions/ff5a938a-/closedlists"; 10740Requests[1389].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10741Requests[1389].Request.Path = "/apps/3444a/versions/f91a0bbb-/compositeentities"; 10744Requests[1390].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10745Requests[1390].Request.Path = "/apps/cbeee/versions/6f0f4da4-/compositeentities"; 10748Requests[1391].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10749Requests[1391].Request.Path = "/apps/431f2/versions/89b20a24-/customprebuiltdomains"; 10752Requests[1392].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10753Requests[1392].Request.Path = "/apps/b2ea0/versions/30e949b9-/customprebuiltentities"; 10756Requests[1393].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10757Requests[1393].Request.Path = "/apps/078d8/versions/133cefd6-/customprebuiltentities"; 10760Requests[1394].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10761Requests[1394].Request.Path = "/apps/2ad28/versions/3789a8af-/customprebuiltintents"; 10764Requests[1395].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10765Requests[1395].Request.Path = "/apps/d75a7/versions/aa87cdf4-/customprebuiltintents"; 10768Requests[1396].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10769Requests[1396].Request.Path = "/apps/5b790/versions/78a6f8a9-/customprebuiltmodels"; 10772Requests[1397].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10773Requests[1397].Request.Path = "/apps/8a676/versions/e148980b-/entities"; 10776Requests[1398].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10777Requests[1398].Request.Path = "/apps/5bbd0/versions/b621c868-/entities"; 10780Requests[1399].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10781Requests[1399].Request.Path = "/apps/8b3fe/versions/463fa26a-/example"; 10784Requests[1400].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10785Requests[1400].Request.Path = "/apps/1663b/versions/e861ebcf-/examples"; 10788Requests[1401].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10789Requests[1401].Request.Path = "/apps/8a0fa/versions/886a81ef-/examples"; 10792Requests[1402].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10793Requests[1402].Request.Path = "/apps/021e5/versions/7c2324f6-/export"; 10796Requests[1403].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10797Requests[1403].Request.Path = "/apps/c056a/versions/e8c2d6fc-/features"; 10800Requests[1404].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10801Requests[1404].Request.Path = "/apps/6244b/versions/0aebb67a-/hierarchicalentities"; 10804Requests[1405].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10805Requests[1405].Request.Path = "/apps/a4b78/versions/ffd8902a-/hierarchicalentities"; 10808Requests[1406].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10809Requests[1406].Request.Path = "/apps/fbea2/versions/4ff0fbdb-/intents"; 10812Requests[1407].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10813Requests[1407].Request.Path = "/apps/4fe5f/versions/59f9efe4-/intents"; 10816Requests[1408].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10817Requests[1408].Request.Path = "/apps/42e84/versions/3c0b2fdc-/listprebuilts"; 10820Requests[1409].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10821Requests[1409].Request.Path = "/apps/1f2b8/versions/2108209c-/models"; 10824Requests[1410].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10825Requests[1410].Request.Path = "/apps/a874e/versions/ec638c39-/patternanyentities"; 10828Requests[1411].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10829Requests[1411].Request.Path = "/apps/f32d8/versions/610587f9-/patternanyentities"; 10832Requests[1412].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10833Requests[1412].Request.Path = "/apps/34d19/versions/45a12686-/patternrule"; 10836Requests[1413].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10837Requests[1413].Request.Path = "/apps/37040/versions/7a5039b1-/patternrules"; 10840Requests[1414].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10841Requests[1414].Request.Path = "/apps/a32e6/versions/4edcc313-/patternrules"; 10844Requests[1415].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 10845Requests[1415].Request.Path = "/apps/8790b/versions/ac7b92a0-/patternrules"; 10848Requests[1416].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10849Requests[1416].Request.Path = "/apps/1b994/versions/85343a91-/patternrules"; 10852Requests[1417].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10853Requests[1417].Request.Path = "/apps/04516/versions/8a2ab223-/patterns"; 10856Requests[1418].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10857Requests[1418].Request.Path = "/apps/03c60/versions/79d70224-/patterns"; 10860Requests[1419].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10861Requests[1419].Request.Path = "/apps/48989/versions/0f77df8e-/phraselists"; 10864Requests[1420].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10865Requests[1420].Request.Path = "/apps/0c73d/versions/a44e717d-/phraselists"; 10868Requests[1421].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10869Requests[1421].Request.Path = "/apps/a7c42/versions/b0a92db8-/prebuilts"; 10872Requests[1422].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10873Requests[1422].Request.Path = "/apps/fc4cc/versions/b7c0ccf5-/prebuilts"; 10876Requests[1423].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10877Requests[1423].Request.Path = "/apps/8fed9/versions/d8b10cb2-/regexentities"; 10880Requests[1424].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10881Requests[1424].Request.Path = "/apps/60385/versions/b2b2866d-/regexentities"; 10884Requests[1425].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 10885Requests[1425].Request.Path = "/apps/852ed/versions/87e20a25-/suggest"; 10888Requests[1426].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10889Requests[1426].Request.Path = "/apps/b0db2/versions/36b382bb-/train"; 10892Requests[1427].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10893Requests[1427].Request.Path = "/apps/713c0/versions/8669d433-/train"; 10896Requests[1428].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10897Requests[1428].Request.Path = "/deletedstorage/514e1d6b-1354-4e55-a/sas/5f58094a-f404-4335-/recover"; 10900Requests[1429].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10901Requests[1429].Request.Path = "/jobs/ed3e3/tasks/d301cc/files"; 10904Requests[1430].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10905Requests[1430].Request.Path = "/jobs/2d312/tasks/1e8971/reactivate"; 10908Requests[1431].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10909Requests[1431].Request.Path = "/jobs/c9086/tasks/b40b73/subtasksinfo"; 10912Requests[1432].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10913Requests[1432].Request.Path = "/jobs/71345/tasks/be3e26/terminate"; 10916Requests[1433].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10917Requests[1433].Request.Path = "/persongroups/56af3c32-9140/persons/e3f145d3/persistedFaces"; 10920Requests[1434].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10921Requests[1434].Request.Path = "/pools/d6d5a9/nodes/b12c1e/disablescheduling"; 10924Requests[1435].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10925Requests[1435].Request.Path = "/pools/81a790/nodes/d9db37/enablescheduling"; 10928Requests[1436].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10929Requests[1436].Request.Path = "/pools/73a821/nodes/96761c/files"; 10932Requests[1437].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10933Requests[1437].Request.Path = "/pools/a665c1/nodes/3317d9/rdp"; 10936Requests[1438].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10937Requests[1438].Request.Path = "/pools/f1105f/nodes/ecac92/reboot"; 10940Requests[1439].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10941Requests[1439].Request.Path = "/pools/447429/nodes/b63a7d/reimage"; 10944Requests[1440].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10945Requests[1440].Request.Path = "/pools/a03760/nodes/456845/remoteloginsettings"; 10948Requests[1441].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10949Requests[1441].Request.Path = "/pools/39e8af/nodes/3029df/uploadbatchservicelogs"; 10952Requests[1442].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10953Requests[1442].Request.Path = "/pools/dd5242/nodes/f89588/users"; 10956Requests[1443].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10957Requests[1443].Request.Path = "/projects/93f2776c-/iterations/4a1e0386-ec/export"; 10960Requests[1444].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10961Requests[1444].Request.Path = "/projects/cf3eba4c-/iterations/134ed682-87/export"; 10964Requests[1445].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10965Requests[1445].Request.Path = "/projects/265784d9-/iterations/893ef7ac-ea/performance"; 10968Requests[1446].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10969Requests[1446].Request.Path = "/subscriptions/2447212d-833a-/providers/eb74d7fb-804c-445c-8ac8-4/register"; 10972Requests[1447].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10973Requests[1447].Request.Path = "/subscriptions/79ce5de2-1d14-/providers/44c77116-eb7a-4a59-982f-6/unregister"; 10976Requests[1448].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10977Requests[1448].Request.Path = "/subscriptions/29591378-a024-/resourcegroups/8d83dae8-da4d-499/exportTemplate"; 10980Requests[1449].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10981Requests[1449].Request.Path = "/subscriptions/2a8e259e-0215-/resourceGroups/fbc9cae0-e64d-415/moveResources"; 10984Requests[1450].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10985Requests[1450].Request.Path = "/subscriptions/b71b1306-7f0d-/resourceGroups/02e9ae00-2d73-436/resources"; 10988Requests[1451].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 10989Requests[1451].Request.Path = "/subscriptions/a382d0c2-a395-/resourceGroups/d4783f31-e9c0-46d/validateMoveResources"; 10992Requests[1452].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10993Requests[1452].Request.Path = "/projects/d198d2fb-/iterations/0929539f-eb/performance/images"; 10996Requests[1453].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 10997Requests[1453].Request.Path = "/projects/08adcf85-/iterations/4301c8ab-c2/performance/images/count"; 11000Requests[1454].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11001Requests[1454].Request.Path = "/subscriptions/ca896ae5-9afe-/resourceGroup/60f7c494-7880-4be/providers/microsoft.insights/workbooks"; 11004Requests[1455].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11005Requests[1455].Request.Path = "/subscriptions/36f9d9b4-4f6e-/resourceGroups/a6c519dd-/providers/Microsoft.DataMigration/services"; 11008Requests[1456].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11009Requests[1456].Request.Path = "/subscriptions/b9930d38-e558-/resourceGroups/b022c26f-f726/providers/Microsoft.Advisor/configurations"; 11012Requests[1457].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11013Requests[1457].Request.Path = "/subscriptions/5fa5365d-21e4-/resourceGroups/2ebabd7d-ef9f/providers/Microsoft.Advisor/configurations"; 11016Requests[1458].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11017Requests[1458].Request.Path = "/subscriptions/ddf37c6e-1a33-/resourcegroups/4b96cea3-aab6/providers/Microsoft.AzureBridge.Admin/activations"; 11020Requests[1459].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11021Requests[1459].Request.Path = "/subscriptions/1414d91b-d65c-/resourceGroups/c87b7484-933b/providers/Microsoft.AzureStack/registrations"; 11024Requests[1460].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11025Requests[1460].Request.Path = "/subscriptions/b70e81d2-b250-/resourceGroups/56609c74-414c-418/providers/Microsoft.AAD/domainServices"; 11028Requests[1461].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11029Requests[1461].Request.Path = "/subscriptions/a5e07f32-7772-/resourceGroups/30ee9a63-5cc8-4d3/providers/Microsoft.AnalysisServices/servers"; 11032Requests[1462].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11033Requests[1462].Request.Path = "/subscriptions/6d45e1cd-a202-/resourceGroups/06531fb8-28dc-405/providers/Microsoft.ApiManagement/service"; 11036Requests[1463].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11037Requests[1463].Request.Path = "/subscriptions/10ee863f-3491-/resourceGroups/d2f95e9f-f138-471/providers/Microsoft.Authorization/locks"; 11040Requests[1464].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11041Requests[1464].Request.Path = "/subscriptions/a1976651-efdf-/resourcegroups/864193a9-3c8a-4e6/providers/Microsoft.Authorization/permissions"; 11044Requests[1465].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11045Requests[1465].Request.Path = "/subscriptions/dba10476-ba3c-/resourceGroups/d9127b89-1d0e-47b/providers/Microsoft.Authorization/policyAssignments"; 11048Requests[1466].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11049Requests[1466].Request.Path = "/subscriptions/eb131152-eb34-/resourceGroups/deb18fb7-3a02-406/providers/Microsoft.Authorization/roleAssignments"; 11052Requests[1467].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11053Requests[1467].Request.Path = "/subscriptions/452aafdf-0805-/resourceGroups/46a021ad-40f5-4ba/providers/Microsoft.Automation/automationAccounts"; 11056Requests[1468].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11057Requests[1468].Request.Path = "/subscriptions/e150e3db-3da4-/resourcegroups/db258bc6-f0ca-4c5/providers/Microsoft.Backup.Admin/backupLocations"; 11060Requests[1469].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11061Requests[1469].Request.Path = "/subscriptions/f543166d-e72e-/resourceGroups/d7c75b06-ed3c-4fa/providers/Microsoft.Batch/batchAccounts"; 11064Requests[1470].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11065Requests[1470].Request.Path = "/subscriptions/d11bee98-4f17-/resourceGroups/0fcc56ad-bcdf-4f7/providers/Microsoft.BatchAI/clusters"; 11068Requests[1471].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11069Requests[1471].Request.Path = "/subscriptions/f9411668-6ef4-/resourceGroups/b770b8b1-6d80-48d/providers/Microsoft.BatchAI/fileServers"; 11072Requests[1472].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11073Requests[1472].Request.Path = "/subscriptions/c5c2215f-5824-/resourceGroups/807d4df1-4435-4bc/providers/Microsoft.BatchAI/jobs"; 11076Requests[1473].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11077Requests[1473].Request.Path = "/subscriptions/e9b15b23-0a55-/resourceGroups/5887d7f7-aa54-4d1/providers/Microsoft.BatchAI/workspaces"; 11080Requests[1474].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11081Requests[1474].Request.Path = "/subscriptions/cb0a3a85-f8a4-/resourceGroups/cfb20eda-ff51-4f5/providers/Microsoft.BotService/botServices"; 11084Requests[1475].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11085Requests[1475].Request.Path = "/subscriptions/1660fbb0-bd45-/resourceGroups/aaf9ef07-1abc-4db/providers/Microsoft.Cache/Redis"; 11088Requests[1476].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11089Requests[1476].Request.Path = "/subscriptions/f1ea0ce5-19a9-/resourceGroups/19713d7b-7a73-4b6/providers/Microsoft.Cdn/profiles"; 11092Requests[1477].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11093Requests[1477].Request.Path = "/subscriptions/3562202c-6d42-/resourceGroups/44cc1253-d2ac-49f/providers/Microsoft.CertificateRegistration/certificateOrders"; 11096Requests[1478].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11097Requests[1478].Request.Path = "/subscriptions/73ff9c0a-28e1-/resourceGroups/4a881118-2642-449/providers/Microsoft.CognitiveServices/accounts"; 11100Requests[1479].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11101Requests[1479].Request.Path = "/subscriptions/0f672f1a-f45a-/resourceGroups/e62272d2-4d1c-4b0/providers/Microsoft.Compute/availabilitySets"; 11104Requests[1480].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11105Requests[1480].Request.Path = "/subscriptions/2936ed6a-9ec2-/resourceGroups/0303f9a1-7d12-426/providers/Microsoft.Compute/disks"; 11108Requests[1481].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11109Requests[1481].Request.Path = "/subscriptions/803da4b8-101a-/resourceGroups/eddca269-dbfb-4b1/providers/Microsoft.Compute/galleries"; 11112Requests[1482].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11113Requests[1482].Request.Path = "/subscriptions/e689e863-75b9-/resourceGroups/78475f9f-4982-478/providers/Microsoft.Compute/images"; 11116Requests[1483].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11117Requests[1483].Request.Path = "/subscriptions/d624e122-2b60-/resourceGroups/bbd8da32-9145-442/providers/Microsoft.Compute/snapshots"; 11120Requests[1484].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11121Requests[1484].Request.Path = "/subscriptions/b8d4c17b-481c-/resourceGroups/64b6d933-5fa6-415/providers/Microsoft.Compute/virtualMachines"; 11124Requests[1485].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11125Requests[1485].Request.Path = "/subscriptions/ece6a6fe-5a24-/resourceGroups/e90fc390-fa15-4ba/providers/Microsoft.Compute/virtualMachineScaleSets"; 11128Requests[1486].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11129Requests[1486].Request.Path = "/subscriptions/93cb9690-7acc-/resourceGroups/233bc4f2-cd35-4a7/providers/Microsoft.Consumption/budgets"; 11132Requests[1487].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11133Requests[1487].Request.Path = "/subscriptions/5ef0f220-6d7d-/resourceGroups/61b519d3-8b3f-4cb/providers/Microsoft.ContainerInstance/containerGroups"; 11136Requests[1488].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11137Requests[1488].Request.Path = "/subscriptions/48604ac9-d58c-/resourceGroups/3c46a09c-e54a-4fe/providers/Microsoft.ContainerRegistry/registries"; 11140Requests[1489].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11141Requests[1489].Request.Path = "/subscriptions/bbbf5e3c-6151-/resourceGroups/de2ddf95-a9be-45e/providers/Microsoft.ContainerService/containerServices"; 11144Requests[1490].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11145Requests[1490].Request.Path = "/subscriptions/0645fc66-c321-/resourceGroups/3b8ecf5e-99e6-4dc/providers/Microsoft.ContainerService/managedClusters"; 11148Requests[1491].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11149Requests[1491].Request.Path = "/subscriptions/2f555fae-2f4d-/resourceGroups/889ddb13-e0bd-410/providers/Microsoft.CustomerInsights/hubs"; 11152Requests[1492].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11153Requests[1492].Request.Path = "/subscriptions/4ffe29a9-2738-/resourceGroups/c372f835-0623-41f/providers/Microsoft.DataBox/jobs"; 11156Requests[1493].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11157Requests[1493].Request.Path = "/subscriptions/5177cef1-2982-/resourceGroups/960b2ba5-bdd8-41d/providers/Microsoft.Databricks/workspaces"; 11160Requests[1494].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11161Requests[1494].Request.Path = "/subscriptions/57fc4d63-096f-/resourceGroups/074163b0-27eb-421/providers/Microsoft.DataCatalog/catalogs"; 11164Requests[1495].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11165Requests[1495].Request.Path = "/subscriptions/c42b4e0a-55fb-/resourceGroups/9bdb8b26-104d-46a/providers/Microsoft.DataFactory/factories"; 11168Requests[1496].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11169Requests[1496].Request.Path = "/subscriptions/4854010c-558f-/resourceGroups/c0c8904c-5b2b-487/providers/Microsoft.DataLakeAnalytics/accounts"; 11172Requests[1497].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11173Requests[1497].Request.Path = "/subscriptions/5be220ed-49f4-/resourceGroups/52372424-c93e-427/providers/Microsoft.DataLakeStore/accounts"; 11176Requests[1498].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11177Requests[1498].Request.Path = "/subscriptions/a873a10b-7505-/resourceGroups/ffd02886-e494-4fa/providers/Microsoft.DBforMySQL/servers"; 11180Requests[1499].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11181Requests[1499].Request.Path = "/subscriptions/69cfcc19-2755-/resourceGroups/a25282cd-fba2-4b0/providers/Microsoft.DBforPostgreSQL/servers"; 11184Requests[1500].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11185Requests[1500].Request.Path = "/subscriptions/75be4bc0-921a-/resourceGroups/3c6fb51c-fd8e-418/providers/Microsoft.Devices/IotHubs"; 11188Requests[1501].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11189Requests[1501].Request.Path = "/subscriptions/204104fd-946b-/resourceGroups/17b4abd3-08eb-44d/providers/Microsoft.Devices/provisioningServices"; 11192Requests[1502].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11193Requests[1502].Request.Path = "/subscriptions/710dea1a-8861-/resourceGroups/68516efd-dee6-449/providers/Microsoft.DevTestLab/labs"; 11196Requests[1503].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11197Requests[1503].Request.Path = "/subscriptions/43bc0986-f03b-/resourceGroups/eb1c5a0a-86d5-404/providers/Microsoft.DevTestLab/schedules"; 11200Requests[1504].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11201Requests[1504].Request.Path = "/subscriptions/7a567f06-f05f-/resourceGroups/2d1597b5-7eb7-427/providers/Microsoft.DocumentDB/databaseAccounts"; 11204Requests[1505].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11205Requests[1505].Request.Path = "/subscriptions/c83de8e6-7d60-/resourceGroups/219dc1e4-9030-42a/providers/Microsoft.DomainRegistration/domains"; 11208Requests[1506].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11209Requests[1506].Request.Path = "/subscriptions/6593bb68-9b93-/resourceGroups/6acea5ff-e02c-419/providers/Microsoft.EventGrid/eventSubscriptions"; 11212Requests[1507].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11213Requests[1507].Request.Path = "/subscriptions/daf683a1-4081-/resourceGroups/b95fcd46-5eeb-43c/providers/Microsoft.EventGrid/topics"; 11216Requests[1508].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11217Requests[1508].Request.Path = "/subscriptions/da37b778-6e4c-/resourceGroups/369439d7-59d1-42c/providers/Microsoft.EventHub/clusters"; 11220Requests[1509].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11221Requests[1509].Request.Path = "/subscriptions/e5c1df9e-04f2-/resourceGroups/77f8eb85-46d1-405/providers/Microsoft.EventHub/namespaces"; 11224Requests[1510].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11225Requests[1510].Request.Path = "/subscriptions/b97098a9-3004-/resourceGroups/e2975862-b116-465/providers/Microsoft.Fabric.Admin/fabricLocations"; 11228Requests[1511].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11229Requests[1511].Request.Path = "/subscriptions/63b747f5-205b-/resourceGroups/9989eb9d-de23-4f5/providers/Microsoft.Fabric.Admin/fabricLocations"; 11232Requests[1512].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11233Requests[1512].Request.Path = "/subscriptions/acdd421b-054a-/resourceGroups/14d7a437-8470-426/providers/Microsoft.HanaOnAzure/hanaInstances"; 11236Requests[1513].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11237Requests[1513].Request.Path = "/subscriptions/f2ef579e-e548-/resourceGroups/814cf909-6570-446/providers/Microsoft.HDInsight/clusters"; 11240Requests[1514].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11241Requests[1514].Request.Path = "/subscriptions/5023a9fb-aa23-/resourceGroups/552051e0-2359-453/providers/Microsoft.ImportExport/jobs"; 11244Requests[1515].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11245Requests[1515].Request.Path = "/subscriptions/42712042-54a2-/resourceGroups/42fde4b0-3915-479/providers/Microsoft.InfrastructureInsights.Admin/regionHealths"; 11248Requests[1516].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11249Requests[1516].Request.Path = "/subscriptions/1243ac69-53b4-/resourceGroups/4997d9e2-ec8c-488/providers/microsoft.insights/actionGroups"; 11252Requests[1517].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11253Requests[1517].Request.Path = "/subscriptions/ac859b71-e405-/resourceGroups/863743f3-5e9f-4c7/providers/microsoft.insights/activityLogAlerts"; 11256Requests[1518].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11257Requests[1518].Request.Path = "/subscriptions/889d66ac-b2fe-/resourcegroups/23dad28d-6d61-4c2/providers/microsoft.insights/alertrules"; 11260Requests[1519].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11261Requests[1519].Request.Path = "/subscriptions/bebf5ab6-2a92-/resourcegroups/473a135a-ad59-4a5/providers/microsoft.insights/autoscalesettings"; 11264Requests[1520].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11265Requests[1520].Request.Path = "/subscriptions/b1dcfe80-981a-/resourceGroups/dd2fec86-4d64-485/providers/Microsoft.Insights/components"; 11268Requests[1521].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11269Requests[1521].Request.Path = "/subscriptions/99f6ff3b-d11b-/resourceGroups/5ead398c-9f74-462/providers/Microsoft.Insights/metricAlerts"; 11272Requests[1522].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11273Requests[1522].Request.Path = "/subscriptions/ca83b208-ccfb-/resourcegroups/7ebb10d3-4a0c-4de/providers/microsoft.insights/scheduledQueryRules"; 11276Requests[1523].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11277Requests[1523].Request.Path = "/subscriptions/ebb3888b-86c7-/resourceGroups/00fb4c47-5287-44c/providers/Microsoft.Insights/webtests"; 11280Requests[1524].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11281Requests[1524].Request.Path = "/subscriptions/f65ba0a6-dffb-/resourceGroups/3c17a865-3052-44b/providers/Microsoft.IoTCentral/IoTApps"; 11284Requests[1525].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11285Requests[1525].Request.Path = "/subscriptions/95c1e34a-129c-/resourceGroups/56315786-e4df-4aa/providers/Microsoft.IoTSpaces/Graph"; 11288Requests[1526].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11289Requests[1526].Request.Path = "/subscriptions/a10ac875-1c6f-/resourceGroups/b532912c-3e51-47e/providers/Microsoft.KeyVault/vaults"; 11292Requests[1527].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11293Requests[1527].Request.Path = "/subscriptions/af6a5397-8a11-/resourceGroups/0dd28fe4-fd30-4a0/providers/Microsoft.Logic/integrationAccounts"; 11296Requests[1528].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11297Requests[1528].Request.Path = "/subscriptions/bc26839c-6a9c-/resourceGroups/d6a48b79-52dc-4e5/providers/Microsoft.Logic/workflows"; 11300Requests[1529].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11301Requests[1529].Request.Path = "/subscriptions/d48ad9cc-3a01-/resourceGroups/76f4c672-a832-48f/providers/Microsoft.MachineLearning/commitmentPlans"; 11304Requests[1530].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11305Requests[1530].Request.Path = "/subscriptions/5d635537-b355-/resourceGroups/abae5d62-6261-406/providers/Microsoft.MachineLearning/webServices"; 11308Requests[1531].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11309Requests[1531].Request.Path = "/subscriptions/dcf3163f-7e7e-/resourceGroups/18bf2dd1-8744-460/providers/Microsoft.MachineLearning/workspaces"; 11312Requests[1532].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11313Requests[1532].Request.Path = "/subscriptions/2cdad276-02fb-/resourceGroups/0950dc5e-c86d-4c2/providers/Microsoft.MachineLearningCompute/operationalizationClusters"; 11316Requests[1533].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11317Requests[1533].Request.Path = "/subscriptions/e9ec81fc-0415-/resourceGroups/42b16c86-d937-4f9/providers/Microsoft.MachineLearningExperimentation/accounts"; 11320Requests[1534].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11321Requests[1534].Request.Path = "/subscriptions/272c49f0-f36c-/resourceGroups/499bfffd-95d0-468/providers/Microsoft.MachineLearningServices/workspaces"; 11324Requests[1535].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11325Requests[1535].Request.Path = "/subscriptions/c1d0d21a-6966-/resourceGroups/db9df978-ccc9-447/providers/Microsoft.ManagedIdentity/userAssignedIdentities"; 11328Requests[1536].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11329Requests[1536].Request.Path = "/subscriptions/5ded2669-f682-/resourceGroups/b4bb0087-a4fc-4d8/providers/Microsoft.Maps/accounts"; 11332Requests[1537].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11333Requests[1537].Request.Path = "/subscriptions/0c730f4e-ea09-/resourceGroups/25d269f0-395c-433/providers/Microsoft.Media/mediaservices"; 11336Requests[1538].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11337Requests[1538].Request.Path = "/subscriptions/4ec4ca84-963a-/resourcegroups/c435c6d5-de36-432/providers/Microsoft.Migrate/projects"; 11340Requests[1539].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11341Requests[1539].Request.Path = "/subscriptions/e615b34e-0ad3-/resourceGroups/5fc34e9b-772f-45e/providers/Microsoft.Network/applicationGateways"; 11344Requests[1540].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11345Requests[1540].Request.Path = "/subscriptions/67877486-f3be-/resourceGroups/f01932ca-9450-41e/providers/Microsoft.Network/applicationSecurityGroups"; 11348Requests[1541].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11349Requests[1541].Request.Path = "/subscriptions/fa273a93-4161-/resourceGroups/7290ced2-0136-44a/providers/Microsoft.Network/connections"; 11352Requests[1542].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11353Requests[1542].Request.Path = "/subscriptions/4eeaa29a-be01-/resourceGroups/cde68515-3b3f-44b/providers/Microsoft.Network/ddosProtectionPlans"; 11356Requests[1543].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11357Requests[1543].Request.Path = "/subscriptions/45d8b903-bc98-/resourceGroups/fd253bfb-8783-4cb/providers/Microsoft.Network/dnsZones"; 11360Requests[1544].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11361Requests[1544].Request.Path = "/subscriptions/686d6217-ba39-/resourceGroups/acf943f4-c0f1-4b9/providers/Microsoft.Network/expressRouteCircuits"; 11364Requests[1545].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11365Requests[1545].Request.Path = "/subscriptions/61bcffaa-0cad-/resourceGroups/455e7c1f-1df6-464/providers/Microsoft.Network/expressRouteCrossConnections"; 11368Requests[1546].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11369Requests[1546].Request.Path = "/subscriptions/1af89f8c-2da1-/resourceGroups/3e36110b-afc2-4d5/providers/Microsoft.Network/loadBalancers"; 11372Requests[1547].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11373Requests[1547].Request.Path = "/subscriptions/4839c8ab-e9b1-/resourceGroups/fcd04f30-85f0-464/providers/Microsoft.Network/localNetworkGateways"; 11376Requests[1548].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11377Requests[1548].Request.Path = "/subscriptions/58697374-dd2b-/resourceGroups/cafd3de5-53be-4a3/providers/Microsoft.Network/networkInterfaces"; 11380Requests[1549].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11381Requests[1549].Request.Path = "/subscriptions/2e60881b-ac06-/resourceGroups/62c1333d-6928-4b1/providers/Microsoft.Network/networkSecurityGroups"; 11384Requests[1550].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11385Requests[1550].Request.Path = "/subscriptions/723bf7b0-6b01-/resourceGroups/1c7ddccf-c859-419/providers/Microsoft.Network/networkWatchers"; 11388Requests[1551].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11389Requests[1551].Request.Path = "/subscriptions/7715623c-d025-/resourceGroups/cd0d9da4-9bfe-479/providers/Microsoft.Network/publicIPAddresses"; 11392Requests[1552].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11393Requests[1552].Request.Path = "/subscriptions/bf2d4abe-1c75-/resourceGroups/f3430594-3c89-4f3/providers/Microsoft.Network/routeFilters"; 11396Requests[1553].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11397Requests[1553].Request.Path = "/subscriptions/1f8d4667-4721-/resourceGroups/b5e237dd-ccb9-493/providers/Microsoft.Network/routeTables"; 11400Requests[1554].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11401Requests[1554].Request.Path = "/subscriptions/219a1312-bcd5-/resourceGroups/f5c4eab9-137a-42b/providers/Microsoft.Network/trafficmanagerprofiles"; 11404Requests[1555].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11405Requests[1555].Request.Path = "/subscriptions/cfe3339c-4765-/resourceGroups/e51ea90a-df53-46c/providers/Microsoft.Network/virtualNetworkGateways"; 11408Requests[1556].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11409Requests[1556].Request.Path = "/subscriptions/97fdc8ef-4e17-/resourceGroups/708b3185-7fd3-419/providers/Microsoft.Network/virtualNetworks"; 11412Requests[1557].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11413Requests[1557].Request.Path = "/subscriptions/171d338e-9608-/resourceGroups/c84d7cdc-c737-4fe/providers/Microsoft.NotificationHubs/namespaces"; 11416Requests[1558].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11417Requests[1558].Request.Path = "/subscriptions/c65ffcb3-a02c-/resourcegroups/51710203-d0e6-4cf/providers/Microsoft.OperationalInsights/workspaces"; 11420Requests[1559].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11421Requests[1559].Request.Path = "/subscriptions/f0735178-8008-/resourcegroups/0c0eed3c-8567-4aa/providers/Microsoft.OperationsManagement/solutions"; 11424Requests[1560].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11425Requests[1560].Request.Path = "/subscriptions/547ec924-8ad4-/resourceGroups/0b4c51b7-48e9-491/providers/Microsoft.PowerBI/workspaceCollections"; 11428Requests[1561].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11429Requests[1561].Request.Path = "/subscriptions/c0ef984a-f9b2-/resourceGroups/9f23efe7-93a3-4dd/providers/Microsoft.PowerBIDedicated/capacities"; 11432Requests[1562].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11433Requests[1562].Request.Path = "/Subscriptions/a44ad087-bc42-/resourceGroups/d0a0c4a3-901b-44b/providers/Microsoft.RecoveryServices/operations"; 11436Requests[1563].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11437Requests[1563].Request.Path = "/subscriptions/ec326793-62ba-/resourceGroups/ebfb21a4-7bcf-46b/providers/Microsoft.RecoveryServices/vaults"; 11440Requests[1564].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11441Requests[1564].Request.Path = "/subscriptions/251e7e35-1b87-/resourceGroups/2c3c46a5-3e0f-4b9/providers/Microsoft.Relay/namespaces"; 11444Requests[1565].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11445Requests[1565].Request.Path = "/subscriptions/5b479e17-8972-/resourceGroups/eff8d38c-0dcc-476/providers/Microsoft.ResourceHealth/availabilityStatuses"; 11448Requests[1566].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11449Requests[1566].Request.Path = "/subscriptions/f2dc73b3-cdae-/resourcegroups/e86e942d-9bf0-4f6/providers/Microsoft.Resources/deployments"; 11452Requests[1567].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11453Requests[1567].Request.Path = "/subscriptions/a2dbb983-f426-/resourceGroups/db2015c0-aab5-491/providers/Microsoft.Scheduler/jobCollections"; 11456Requests[1568].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11457Requests[1568].Request.Path = "/subscriptions/9b0ab9ec-cab6-/resourceGroups/2d3a74b5-3221-465/providers/Microsoft.Search/searchServices"; 11460Requests[1569].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11461Requests[1569].Request.Path = "/subscriptions/0097835e-249e-/resourceGroups/56e77e0b-ca6e-483/providers/Microsoft.Security/alerts"; 11464Requests[1570].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11465Requests[1570].Request.Path = "/subscriptions/9a62a5fa-38f0-/resourceGroups/e4e9f6a8-f222-406/providers/Microsoft.Security/jitNetworkAccessPolicies"; 11468Requests[1571].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11469Requests[1571].Request.Path = "/subscriptions/b17f9b0a-f2b3-/resourceGroups/fb225c51-8520-4f0/providers/Microsoft.Security/pricings"; 11472Requests[1572].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11473Requests[1572].Request.Path = "/subscriptions/ae6ebaec-f915-/resourceGroups/0b535fad-d94a-48a/providers/Microsoft.Security/securityContacts"; 11476Requests[1573].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11477Requests[1573].Request.Path = "/subscriptions/b16c3149-6ca4-/resourceGroups/546e2a8b-14bb-484/providers/Microsoft.Security/workspaceSettings"; 11480Requests[1574].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11481Requests[1574].Request.Path = "/subscriptions/fdaf80da-493a-/resourceGroups/104cc66b-cedd-49b/providers/Microsoft.ServerManagement/gateways"; 11484Requests[1575].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11485Requests[1575].Request.Path = "/subscriptions/e9c7be7f-7efb-/resourceGroups/41ea267d-2fe4-4e7/providers/Microsoft.ServerManagement/nodes"; 11488Requests[1576].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11489Requests[1576].Request.Path = "/subscriptions/ede84756-c6c0-/resourceGroups/9d0ea04e-7d8e-4e2/providers/Microsoft.ServiceBus/namespaces"; 11492Requests[1577].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11493Requests[1577].Request.Path = "/subscriptions/74e84c5d-c75f-/resourcegroups/d83e8717-bf49-4ea/providers/Microsoft.ServiceFabric/clusters"; 11496Requests[1578].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11497Requests[1578].Request.Path = "/subscriptions/4b6deb32-5556-/resourceGroups/53c5cfe2-5d32-4ad/providers/Microsoft.SignalRService/SignalR"; 11500Requests[1579].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11501Requests[1579].Request.Path = "/subscriptions/d6a6065c-3487-/resourceGroups/108309d1-6d49-4ce/providers/Microsoft.Solutions/applianceDefinitions"; 11504Requests[1580].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11505Requests[1580].Request.Path = "/subscriptions/e8be7ddb-bc5d-/resourceGroups/75ff2a4e-e0eb-411/providers/Microsoft.Solutions/appliances"; 11508Requests[1581].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11509Requests[1581].Request.Path = "/subscriptions/8de42fbe-e740-/resourceGroups/69d61a1f-5fba-42b/providers/Microsoft.Solutions/applicationDefinitions"; 11512Requests[1582].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11513Requests[1582].Request.Path = "/subscriptions/db9dd93f-5c97-/resourceGroups/42dfb105-cfaf-409/providers/Microsoft.Solutions/applications"; 11516Requests[1583].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11517Requests[1583].Request.Path = "/subscriptions/fae6e5a4-5f68-/resourceGroups/fff214f2-a760-475/providers/Microsoft.Sql/managedInstances"; 11520Requests[1584].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11521Requests[1584].Request.Path = "/subscriptions/0705a2a5-8f69-/resourceGroups/29c28a7a-1dc5-49c/providers/Microsoft.Sql/servers"; 11524Requests[1585].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11525Requests[1585].Request.Path = "/subscriptions/bdc973b2-edbf-/resourcegroups/1f038142-9e4d-450/providers/Microsoft.Storage.Admin/farms"; 11528Requests[1586].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11529Requests[1586].Request.Path = "/subscriptions/dda8855b-2201-/resourceGroups/843e9887-8532-4be/providers/Microsoft.Storage/storageAccounts"; 11532Requests[1587].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11533Requests[1587].Request.Path = "/subscriptions/9f6c5173-2a5f-/resourceGroups/a033e3ff-c590-40c/providers/Microsoft.StorSimple/managers"; 11536Requests[1588].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11537Requests[1588].Request.Path = "/subscriptions/debbf2ce-efa4-/resourcegroups/563e6462-c718-450/providers/Microsoft.StreamAnalytics/streamingjobs"; 11540Requests[1589].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11541Requests[1589].Request.Path = "/subscriptions/f6e4aa98-50a5-/resourcegroups/eea041ce-142f-425/providers/Microsoft.Subscriptions.Admin/directoryTenants"; 11544Requests[1590].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11545Requests[1590].Request.Path = "/subscriptions/7ec4d770-4afc-/resourcegroups/b6b555e3-f623-430/providers/Microsoft.Subscriptions.Admin/offers"; 11548Requests[1591].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11549Requests[1591].Request.Path = "/subscriptions/64e36198-69da-/resourcegroups/c03d9ce5-e066-465/providers/Microsoft.Subscriptions.Admin/plans"; 11552Requests[1592].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11553Requests[1592].Request.Path = "/subscriptions/7c7dc83c-b08b-/resourceGroups/30ba68d6-e622-4de/providers/Microsoft.TimeSeriesInsights/environments"; 11556Requests[1593].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11557Requests[1593].Request.Path = "/subscriptions/dfedebe9-156e-/resourcegroups/2d0cf7b1-34a5-475/providers/Microsoft.Update.Admin/updateLocations"; 11560Requests[1594].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11561Requests[1594].Request.Path = "/subscriptions/0bce5ffe-e354-/resourcegroups/22b23488-1bf9-4e6/providers/microsoft.visualstudio/account"; 11564Requests[1595].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11565Requests[1595].Request.Path = "/subscriptions/78856167-af72-/resourceGroups/3351e217-ce48-4f8/providers/Microsoft.Web/certificates"; 11568Requests[1596].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11569Requests[1596].Request.Path = "/subscriptions/a4d37d0d-eac9-/resourceGroups/433563f2-93d1-4ee/providers/Microsoft.Web/classicMobileServices"; 11572Requests[1597].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11573Requests[1597].Request.Path = "/subscriptions/2cea1ffb-6f01-/resourceGroups/08c88c58-86e3-4b0/providers/Microsoft.Web/connectionGateways"; 11576Requests[1598].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11577Requests[1598].Request.Path = "/subscriptions/d48e0806-d084-/resourceGroups/d2c0f363-21be-47d/providers/Microsoft.Web/connections"; 11580Requests[1599].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11581Requests[1599].Request.Path = "/subscriptions/8e018553-5173-/resourceGroups/f2fbe2d2-a66d-4ff/providers/Microsoft.Web/csrs"; 11584Requests[1600].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11585Requests[1600].Request.Path = "/subscriptions/9d1e8fb3-e49f-/resourceGroups/58de4675-f375-431/providers/Microsoft.Web/customApis"; 11588Requests[1601].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11589Requests[1601].Request.Path = "/subscriptions/124d5bec-b77b-/resourceGroups/51f83ce6-3511-4ca/providers/Microsoft.Web/deletedSites"; 11592Requests[1602].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11593Requests[1602].Request.Path = "/subscriptions/b551f947-59b7-/resourceGroups/5715bd5f-40f1-476/providers/Microsoft.Web/hostingEnvironments"; 11596Requests[1603].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11597Requests[1603].Request.Path = "/subscriptions/487971d6-d7e0-/resourceGroups/2355e951-f9ed-421/providers/Microsoft.Web/managedHostingEnvironments"; 11600Requests[1604].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11601Requests[1604].Request.Path = "/subscriptions/10744996-3c6a-/resourceGroups/a06798d7-ef66-44e/providers/Microsoft.Web/resourceHealthMetadata"; 11604Requests[1605].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11605Requests[1605].Request.Path = "/subscriptions/e66ceec8-1274-/resourceGroups/14a2c8e6-e870-4da/providers/Microsoft.Web/serverfarms"; 11608Requests[1606].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11609Requests[1606].Request.Path = "/subscriptions/77035e7b-0314-/resourceGroups/baca9973-a4b4-4c8/providers/Microsoft.Web/sites"; 11612Requests[1607].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 11613Requests[1607].Request.Path = "/subscriptions/b6c8e7a3-939e-/resourceGroups/5cef05af-33d4-4bb/providers/Microsoft.Web/validate"; 11616Requests[1608].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 11617Requests[1608].Request.Path = "/subscriptions/1f094eb5-c3dc-/resourceGroups/c3346282-cd51-4d0/providers/Microsoft.BotService/BotServices/listServiceProviders"; 11620Requests[1609].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11621Requests[1609].Request.Path = "/subscriptions/4b8b9e6d-4318-/resourceGroup/e26ecef4-77ba-436/providers/microsoft.insights/workbooks/54d25265-ac7"; 11624Requests[1610].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11625Requests[1610].Request.Path = "/subscriptions/1513079a-2c6e-/resourceGroup/b6a36f67-7a8d-481/providers/microsoft.insights/workbooks/b9c3a82f-726"; 11628Requests[1611].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11629Requests[1611].Request.Path = "/subscriptions/2136ba1f-ecb2-/resourceGroup/1752c125-ae42-42c/providers/microsoft.insights/workbooks/86be8e34-51a"; 11632Requests[1612].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11633Requests[1612].Request.Path = "/subscriptions/07d24592-b948-/resourceGroup/a1525bd4-c59a-47e/providers/microsoft.insights/workbooks/a30b56ec-94c"; 11636Requests[1613].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11637Requests[1613].Request.Path = "/subscriptions/c0438103-8def-/resourceGroups/f81645f4-/providers/Microsoft.DataMigration/services/f638cb66-fa"; 11640Requests[1614].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11641Requests[1614].Request.Path = "/subscriptions/a2f69d0f-0651-/resourceGroups/465051f5-/providers/Microsoft.DataMigration/services/f86abbce-33"; 11644Requests[1615].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 11645Requests[1615].Request.Path = "/subscriptions/fb9e8eb6-d685-/resourceGroups/9f33ab4a-/providers/Microsoft.DataMigration/services/c38a87a6-dc"; 11648Requests[1616].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11649Requests[1616].Request.Path = "/subscriptions/5975963c-0d8f-/resourceGroups/66e22422-/providers/Microsoft.DataMigration/services/a48948ff-65"; 11652Requests[1617].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11653Requests[1617].Request.Path = "/subscriptions/bd88980a-24f0-/resourceGroups/e8337dd3-/providers/Microsoft.DataMigration/services/902ee760-3f"; 11656Requests[1618].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11657Requests[1618].Request.Path = "/subscriptions/525131d7-412a-/resourcegroups/99cbb863-30aa/providers/Microsoft.AzureBridge.Admin/activations/16c77a77-d415-"; 11660Requests[1619].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11661Requests[1619].Request.Path = "/subscriptions/918b3cf2-ecc9-/resourcegroups/ddc4b3fc-c4ac/providers/Microsoft.AzureBridge.Admin/activations/46b1f43c-4ba5-"; 11664Requests[1620].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11665Requests[1620].Request.Path = "/subscriptions/53e257c4-e4d5-/resourcegroups/e8464792-679d/providers/Microsoft.AzureBridge.Admin/activations/4a4b8a2e-5a5b-"; 11668Requests[1621].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11669Requests[1621].Request.Path = "/subscriptions/ddf153b6-21d8-/resourceGroups/7bcb20af-a29c/providers/Microsoft.AzureStack/registrations/c6d97589-5967-46"; 11672Requests[1622].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11673Requests[1622].Request.Path = "/subscriptions/5f024aa8-d4d0-/resourceGroups/2738fa35-3ec7/providers/Microsoft.AzureStack/registrations/042fc9b1-bafa-4a"; 11676Requests[1623].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11677Requests[1623].Request.Path = "/subscriptions/652ef246-e4fc-/resourceGroups/4ffb67ec-7a44/providers/Microsoft.AzureStack/registrations/7f6adb3e-9132-44"; 11680Requests[1624].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11681Requests[1624].Request.Path = "/subscriptions/77cdcb9c-b55b-/resourceGroups/f52efbb4-c522-461/providers/Microsoft.AAD/domainServices/9c9c9bf1-5688-432"; 11684Requests[1625].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11685Requests[1625].Request.Path = "/subscriptions/97fd7a4e-543c-/resourceGroups/ffc73553-e034-4ef/providers/Microsoft.AAD/domainServices/69a649b2-4bea-47a"; 11688Requests[1626].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11689Requests[1626].Request.Path = "/subscriptions/1e6f1f31-38a3-/resourceGroups/9c51f9a8-2330-4b9/providers/Microsoft.AAD/domainServices/dada6c93-a43c-440"; 11692Requests[1627].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11693Requests[1627].Request.Path = "/subscriptions/6d886c8e-67fa-/resourceGroups/5d987fef-e9a7-4ae/providers/Microsoft.AAD/domainServices/b862c69c-dea1-479"; 11696Requests[1628].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11697Requests[1628].Request.Path = "/subscriptions/0f751038-e6c4-/resourceGroups/263f10b1-0e1f-40b/providers/Microsoft.AnalysisServices/servers/5c018859-1"; 11700Requests[1629].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11701Requests[1629].Request.Path = "/subscriptions/9a1bc6a4-9f57-/resourceGroups/96d39e2b-16e4-449/providers/Microsoft.AnalysisServices/servers/9b0bfe66-a"; 11704Requests[1630].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11705Requests[1630].Request.Path = "/subscriptions/79c6a952-2739-/resourceGroups/493fc708-d030-4bd/providers/Microsoft.AnalysisServices/servers/1974974c-0"; 11708Requests[1631].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11709Requests[1631].Request.Path = "/subscriptions/67b47baa-ba22-/resourceGroups/288f2b62-9a31-407/providers/Microsoft.AnalysisServices/servers/6a849f9b-b"; 11712Requests[1632].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11713Requests[1632].Request.Path = "/subscriptions/5c068d2f-11f4-/resourceGroups/8e1cec09-e013-470/providers/Microsoft.ApiManagement/service/307e4dc3-0d"; 11716Requests[1633].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11717Requests[1633].Request.Path = "/subscriptions/1365c5df-502b-/resourceGroups/9de630f1-74c1-425/providers/Microsoft.ApiManagement/service/35f91633-15"; 11720Requests[1634].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11721Requests[1634].Request.Path = "/subscriptions/d4f6fffb-4478-/resourceGroups/2725ef7b-eac3-4a5/providers/Microsoft.ApiManagement/service/bfe1b7cd-ce"; 11724Requests[1635].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11725Requests[1635].Request.Path = "/subscriptions/17fd808c-b3f8-/resourceGroups/2d64d740-4f55-436/providers/Microsoft.ApiManagement/service/17a946b1-5e"; 11728Requests[1636].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11729Requests[1636].Request.Path = "/subscriptions/e75f3c4a-cb81-/resourceGroups/9cbcb723-e514-40f/providers/Microsoft.Authorization/locks/0cabca14"; 11732Requests[1637].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11733Requests[1637].Request.Path = "/subscriptions/d6aa4a8d-e2a7-/resourceGroups/c6017516-744c-4bd/providers/Microsoft.Authorization/locks/91705f6f"; 11736Requests[1638].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11737Requests[1638].Request.Path = "/subscriptions/b4d3b475-45b2-/resourceGroups/27adbcdf-e5c2-4cb/providers/Microsoft.Authorization/locks/5b07d7ca"; 11740Requests[1639].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11741Requests[1639].Request.Path = "/subscriptions/2a3369fb-6892-/resourceGroups/23a0b5e5-57b4-4cf/providers/Microsoft.Automation/automationAccounts/6bf5df96-1156-442f-8a"; 11744Requests[1640].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11745Requests[1640].Request.Path = "/subscriptions/662578bf-21c1-/resourceGroups/c52c1d60-ec35-42e/providers/Microsoft.Automation/automationAccounts/a7de95db-bb3d-467e-a3"; 11748Requests[1641].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11749Requests[1641].Request.Path = "/subscriptions/b9017c52-ece6-/resourceGroups/8be5476e-4fe3-410/providers/Microsoft.Automation/automationAccounts/758082db-5f93-40fe-bc"; 11752Requests[1642].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11753Requests[1642].Request.Path = "/subscriptions/815138d1-8494-/resourceGroups/8727f78b-f13f-4f5/providers/Microsoft.Automation/automationAccounts/285f248a-eb21-425d-ae"; 11756Requests[1643].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11757Requests[1643].Request.Path = "/subscriptions/03cd7d8a-b7c5-/resourcegroups/60b56dda-05b4-492/providers/Microsoft.Backup.Admin/backupLocations/c45cf348"; 11760Requests[1644].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11761Requests[1644].Request.Path = "/subscriptions/e3ca4d15-1a39-/resourcegroups/18676138-86bc-4c4/providers/Microsoft.Backup.Admin/backupLocations/cf6ac117"; 11764Requests[1645].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11765Requests[1645].Request.Path = "/subscriptions/c9980d47-3ad2-/resourceGroups/f594e330-ae0b-48e/providers/Microsoft.Batch/batchAccounts/7662ac8a-2e"; 11768Requests[1646].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11769Requests[1646].Request.Path = "/subscriptions/b77e470f-e85d-/resourceGroups/0c1d07c9-f7d5-46e/providers/Microsoft.Batch/batchAccounts/b60631fb-1e"; 11772Requests[1647].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11773Requests[1647].Request.Path = "/subscriptions/64e1d3df-dab0-/resourceGroups/834abfe0-508b-4c2/providers/Microsoft.Batch/batchAccounts/75d402fc-c0"; 11776Requests[1648].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11777Requests[1648].Request.Path = "/subscriptions/343042b1-16c6-/resourceGroups/30e6a30c-b1bb-49e/providers/Microsoft.Batch/batchAccounts/6033cc45-3b"; 11780Requests[1649].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11781Requests[1649].Request.Path = "/subscriptions/775b5a1a-83f9-/resourceGroups/af5ffaf5-e205-468/providers/Microsoft.BatchAI/clusters/a2637acd-30"; 11784Requests[1650].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11785Requests[1650].Request.Path = "/subscriptions/78d38c71-9454-/resourceGroups/f6d2ccfa-641f-42a/providers/Microsoft.BatchAI/clusters/bb3cccc7-ec"; 11788Requests[1651].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11789Requests[1651].Request.Path = "/subscriptions/b5f66fe7-a566-/resourceGroups/2fcb7202-26e0-4b7/providers/Microsoft.BatchAI/clusters/b95bf499-76"; 11792Requests[1652].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11793Requests[1652].Request.Path = "/subscriptions/cab1aa90-2129-/resourceGroups/7a02c732-03d2-4fe/providers/Microsoft.BatchAI/clusters/92178e36-77"; 11796Requests[1653].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11797Requests[1653].Request.Path = "/subscriptions/ba59d468-d36d-/resourceGroups/e2c829a6-59c3-4da/providers/Microsoft.BatchAI/fileServers/01e0b0e5-9b90-"; 11800Requests[1654].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11801Requests[1654].Request.Path = "/subscriptions/72c65b8a-1860-/resourceGroups/70d5d2a1-a5be-485/providers/Microsoft.BatchAI/fileServers/97f6a9c2-c08c-"; 11804Requests[1655].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11805Requests[1655].Request.Path = "/subscriptions/3cb8bf7b-467f-/resourceGroups/bd47aa4f-8aee-4db/providers/Microsoft.BatchAI/fileServers/5ec0383d-8b68-"; 11808Requests[1656].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11809Requests[1656].Request.Path = "/subscriptions/d95dd609-8107-/resourceGroups/59580c87-0849-47e/providers/Microsoft.BatchAI/jobs/4c7b7a0"; 11812Requests[1657].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11813Requests[1657].Request.Path = "/subscriptions/e39388f3-6afc-/resourceGroups/9a7dea1d-35f4-4f1/providers/Microsoft.BatchAI/jobs/9ee9b59"; 11816Requests[1658].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11817Requests[1658].Request.Path = "/subscriptions/92aeea79-fc2a-/resourceGroups/fb8ef72b-184b-461/providers/Microsoft.BatchAI/jobs/369ff3b"; 11820Requests[1659].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11821Requests[1659].Request.Path = "/subscriptions/5619fe60-fac1-/resourceGroups/6e5b440b-d8c8-4f5/providers/Microsoft.BatchAI/workspaces/a0505aa6-38da"; 11824Requests[1660].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11825Requests[1660].Request.Path = "/subscriptions/0268124a-6f89-/resourceGroups/7237baf4-0ffe-494/providers/Microsoft.BatchAI/workspaces/b07b6892-67cc"; 11828Requests[1661].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11829Requests[1661].Request.Path = "/subscriptions/74e3a974-93e4-/resourceGroups/553efe18-8452-4de/providers/Microsoft.BatchAI/workspaces/846231d8-d3f1"; 11832Requests[1662].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11833Requests[1662].Request.Path = "/subscriptions/4fc64262-560b-/resourceGroups/c16132f3-f755-41f/providers/Microsoft.BotService/botServices/1f660153-60b"; 11836Requests[1663].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11837Requests[1663].Request.Path = "/subscriptions/2e4d2c33-b56a-/resourceGroups/0a726dc0-dcb1-45b/providers/Microsoft.BotService/botServices/c8d5b20f-9c8"; 11840Requests[1664].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11841Requests[1664].Request.Path = "/subscriptions/9df22d6b-aab7-/resourceGroups/d158726c-7649-487/providers/Microsoft.BotService/botServices/354d29a6-0fc"; 11844Requests[1665].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11845Requests[1665].Request.Path = "/subscriptions/f1e48552-7895-/resourceGroups/cfc6d8fe-6f14-4ae/providers/Microsoft.BotService/botServices/591a0496-4c6"; 11848Requests[1666].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11849Requests[1666].Request.Path = "/subscriptions/730cd998-79d5-/resourceGroups/d4f2bf79-8658-482/providers/Microsoft.Cache/Redis/77c23"; 11852Requests[1667].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11853Requests[1667].Request.Path = "/subscriptions/790af2b1-71f9-/resourceGroups/7c9c2732-edd8-435/providers/Microsoft.Cache/Redis/61563"; 11856Requests[1668].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11857Requests[1668].Request.Path = "/subscriptions/0514a590-368e-/resourceGroups/70a61d39-77b8-475/providers/Microsoft.Cache/Redis/469de"; 11860Requests[1669].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11861Requests[1669].Request.Path = "/subscriptions/bb3784c7-e29d-/resourceGroups/120072a5-2f2d-426/providers/Microsoft.Cache/Redis/b7fd7"; 11864Requests[1670].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11865Requests[1670].Request.Path = "/subscriptions/15532207-41cc-/resourceGroups/ee1b3d2b-817d-401/providers/Microsoft.Cdn/profiles/66cdcea4-e1"; 11868Requests[1671].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11869Requests[1671].Request.Path = "/subscriptions/1c4a28da-d61a-/resourceGroups/4530e416-1652-45a/providers/Microsoft.Cdn/profiles/c0fcc08d-da"; 11872Requests[1672].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11873Requests[1672].Request.Path = "/subscriptions/3dce4ef0-1800-/resourceGroups/dbebde40-3060-419/providers/Microsoft.Cdn/profiles/dd326e16-92"; 11876Requests[1673].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11877Requests[1673].Request.Path = "/subscriptions/eb8ef451-2b6e-/resourceGroups/85f358b1-d544-4e9/providers/Microsoft.Cdn/profiles/30f037e5-d3"; 11880Requests[1674].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11881Requests[1674].Request.Path = "/subscriptions/e5fe7b42-bab1-/resourceGroups/902c9e24-e42a-438/providers/Microsoft.CertificateRegistration/certificateOrders/270a9"; 11884Requests[1675].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11885Requests[1675].Request.Path = "/subscriptions/2e84b0cc-6180-/resourceGroups/c1e05012-717e-407/providers/Microsoft.CertificateRegistration/certificateOrders/a11de"; 11888Requests[1676].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11889Requests[1676].Request.Path = "/subscriptions/e4f6d028-d834-/resourceGroups/dce178b3-f51d-44a/providers/Microsoft.CertificateRegistration/certificateOrders/910b8"; 11892Requests[1677].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11893Requests[1677].Request.Path = "/subscriptions/3a2bf3e2-a011-/resourceGroups/8048a26a-64c6-477/providers/Microsoft.CertificateRegistration/certificateOrders/ab1cf"; 11896Requests[1678].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11897Requests[1678].Request.Path = "/subscriptions/9f975f2e-596b-/resourceGroups/1cf5fefb-1b53-442/providers/Microsoft.CognitiveServices/accounts/23641a9c-77"; 11900Requests[1679].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11901Requests[1679].Request.Path = "/subscriptions/e800deab-2de9-/resourceGroups/ca9f12fd-54ba-4a3/providers/Microsoft.CognitiveServices/accounts/da17b26b-4a"; 11904Requests[1680].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11905Requests[1680].Request.Path = "/subscriptions/612aaa14-f8ae-/resourceGroups/92e68889-a9a8-4a8/providers/Microsoft.CognitiveServices/accounts/f84cd86b-38"; 11908Requests[1681].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11909Requests[1681].Request.Path = "/subscriptions/99abb6b1-9937-/resourceGroups/53d0feaf-40f8-479/providers/Microsoft.CognitiveServices/accounts/3c8f8ac7-c3"; 11912Requests[1682].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11913Requests[1682].Request.Path = "/subscriptions/4a30477d-cd91-/resourceGroups/2af95ebf-6a4b-4c0/providers/Microsoft.Compute/availabilitySets/afbe41a4-0da6-4b01-"; 11916Requests[1683].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11917Requests[1683].Request.Path = "/subscriptions/97d848e3-c17f-/resourceGroups/ccdde0ae-37c0-416/providers/Microsoft.Compute/availabilitySets/dbfea11c-1316-46cc-"; 11920Requests[1684].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11921Requests[1684].Request.Path = "/subscriptions/4efa00db-a2cc-/resourceGroups/5512dd4e-ee65-45d/providers/Microsoft.Compute/availabilitySets/0e1c7360-e327-489c-"; 11924Requests[1685].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11925Requests[1685].Request.Path = "/subscriptions/fe211480-1077-/resourceGroups/ff01653b-7d03-43c/providers/Microsoft.Compute/availabilitySets/56d41060-4f3e-499f-"; 11928Requests[1686].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11929Requests[1686].Request.Path = "/subscriptions/7353c807-ca48-/resourceGroups/3e1a94e7-bcea-4c0/providers/Microsoft.Compute/disks/9fda87e3"; 11932Requests[1687].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11933Requests[1687].Request.Path = "/subscriptions/7a14e085-428f-/resourceGroups/db7d7ffb-08ee-417/providers/Microsoft.Compute/disks/2607a1ed"; 11936Requests[1688].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11937Requests[1688].Request.Path = "/subscriptions/810b94cb-3a98-/resourceGroups/f3bc2a8c-46a1-45e/providers/Microsoft.Compute/disks/64a8cf99"; 11940Requests[1689].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11941Requests[1689].Request.Path = "/subscriptions/ab032534-284b-/resourceGroups/1acc2204-ddae-409/providers/Microsoft.Compute/disks/3141b7d5"; 11944Requests[1690].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11945Requests[1690].Request.Path = "/subscriptions/07e3e67c-8ce3-/resourceGroups/41456f1a-39fa-494/providers/Microsoft.Compute/galleries/e9c500d8-fd"; 11948Requests[1691].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11949Requests[1691].Request.Path = "/subscriptions/7b568caa-7ae7-/resourceGroups/f1f8b86c-dcec-49d/providers/Microsoft.Compute/galleries/31244bb7-87"; 11952Requests[1692].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11953Requests[1692].Request.Path = "/subscriptions/c6541397-1721-/resourceGroups/cebfbb56-08c4-4dc/providers/Microsoft.Compute/galleries/31036bd0-1d"; 11956Requests[1693].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11957Requests[1693].Request.Path = "/subscriptions/5220fbba-3e14-/resourceGroups/890ac566-837d-4ab/providers/Microsoft.Compute/images/b2108c53-"; 11960Requests[1694].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11961Requests[1694].Request.Path = "/subscriptions/a6dd4555-0869-/resourceGroups/9637cee1-82b2-40a/providers/Microsoft.Compute/images/1a89dcce-"; 11964Requests[1695].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11965Requests[1695].Request.Path = "/subscriptions/5f434148-d24e-/resourceGroups/d2761cb5-422c-4f3/providers/Microsoft.Compute/images/0322e735-"; 11968Requests[1696].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11969Requests[1696].Request.Path = "/subscriptions/c20cfd39-4478-/resourceGroups/42b04578-d155-4dd/providers/Microsoft.Compute/images/adfc0558-"; 11972Requests[1697].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11973Requests[1697].Request.Path = "/subscriptions/3f45d9ec-80c8-/resourceGroups/a5b09ff6-8a65-445/providers/Microsoft.Compute/snapshots/7f7c5986-7c0"; 11976Requests[1698].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11977Requests[1698].Request.Path = "/subscriptions/3b831e2a-d3b5-/resourceGroups/ed63ecba-d3c5-431/providers/Microsoft.Compute/snapshots/5b96760c-f27"; 11980Requests[1699].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 11981Requests[1699].Request.Path = "/subscriptions/d531718c-ff17-/resourceGroups/974c050f-640b-40f/providers/Microsoft.Compute/snapshots/7acc98ba-b80"; 11984Requests[1700].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11985Requests[1700].Request.Path = "/subscriptions/1d55c3c7-8dc3-/resourceGroups/75ed1cbd-f901-4a8/providers/Microsoft.Compute/snapshots/95ddfbd7-68a"; 11988Requests[1701].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 11989Requests[1701].Request.Path = "/subscriptions/d6d77d47-8b3a-/resourceGroups/77463ab4-badc-42b/providers/Microsoft.Compute/virtualMachines/3c970a"; 11992Requests[1702].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 11993Requests[1702].Request.Path = "/subscriptions/a2312905-bc30-/resourceGroups/0ac03595-24d0-4e9/providers/Microsoft.Compute/virtualMachines/649d14"; 11996Requests[1703].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 11997Requests[1703].Request.Path = "/subscriptions/a082d597-99e9-/resourceGroups/1b527007-2a13-48b/providers/Microsoft.Compute/virtualMachines/f24d06"; 12000Requests[1704].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12001Requests[1704].Request.Path = "/subscriptions/e3c39007-54fd-/resourceGroups/f562f762-9b5f-495/providers/Microsoft.Compute/virtualMachines/a0c7f9"; 12004Requests[1705].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12005Requests[1705].Request.Path = "/subscriptions/15f66daa-975e-/resourceGroups/299d586e-6315-417/providers/Microsoft.Compute/virtualMachineScaleSets/97ec0acc-8b44-"; 12008Requests[1706].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12009Requests[1706].Request.Path = "/subscriptions/c65ade01-547a-/resourceGroups/1f79653a-94e3-4a3/providers/Microsoft.Compute/virtualMachineScaleSets/cd12af52-669d-"; 12012Requests[1707].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12013Requests[1707].Request.Path = "/subscriptions/e2c09aca-214b-/resourceGroups/8c01542b-a60a-48f/providers/Microsoft.Compute/virtualMachineScaleSets/7f3612f9-cbe7-"; 12016Requests[1708].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12017Requests[1708].Request.Path = "/subscriptions/c8fd8d3b-98e8-/resourceGroups/0ac7203a-d09d-4f7/providers/Microsoft.Compute/virtualMachineScaleSets/8edf627f-f1d0-"; 12020Requests[1709].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12021Requests[1709].Request.Path = "/subscriptions/ebaf3afe-5fcf-/resourceGroups/006d1127-24d6-45d/providers/Microsoft.Consumption/budgets/806cc08f-3"; 12024Requests[1710].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12025Requests[1710].Request.Path = "/subscriptions/a1529182-de98-/resourceGroups/4eac0029-bc74-436/providers/Microsoft.Consumption/budgets/0f67ee47-a"; 12028Requests[1711].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12029Requests[1711].Request.Path = "/subscriptions/7d08618c-9a84-/resourceGroups/923f220e-1091-491/providers/Microsoft.Consumption/budgets/18f044f5-0"; 12032Requests[1712].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12033Requests[1712].Request.Path = "/subscriptions/0fe0f9c6-39a1-/resourceGroups/aeef3cb7-e2e7-4c2/providers/Microsoft.ContainerInstance/containerGroups/17132870-c9e7-41f6"; 12036Requests[1713].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12037Requests[1713].Request.Path = "/subscriptions/3f2a3b64-5909-/resourceGroups/fb1a5615-b465-4f5/providers/Microsoft.ContainerInstance/containerGroups/f434a539-acf9-47f2"; 12040Requests[1714].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12041Requests[1714].Request.Path = "/subscriptions/276cee16-ee73-/resourceGroups/461e055f-22d6-486/providers/Microsoft.ContainerInstance/containerGroups/dba5cfa0-ce15-4992"; 12044Requests[1715].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12045Requests[1715].Request.Path = "/subscriptions/b3078119-2bb7-/resourceGroups/65c4a4db-3287-475/providers/Microsoft.ContainerInstance/containerGroups/961eb516-5ed8-47cf"; 12048Requests[1716].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12049Requests[1716].Request.Path = "/subscriptions/29b302fe-44be-/resourceGroups/ae67b92b-2e88-4fa/providers/Microsoft.ContainerRegistry/registries/47e9e603-ca9"; 12052Requests[1717].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12053Requests[1717].Request.Path = "/subscriptions/3e3d6c0d-36b5-/resourceGroups/db820d7e-417f-486/providers/Microsoft.ContainerRegistry/registries/035e1b5d-7bd"; 12056Requests[1718].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12057Requests[1718].Request.Path = "/subscriptions/19fc3c30-8f49-/resourceGroups/ff15cc45-d632-41b/providers/Microsoft.ContainerRegistry/registries/04902d20-89e"; 12060Requests[1719].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12061Requests[1719].Request.Path = "/subscriptions/63729c3c-03b2-/resourceGroups/d14213d5-2734-428/providers/Microsoft.ContainerRegistry/registries/29d9efb3-433"; 12064Requests[1720].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12065Requests[1720].Request.Path = "/subscriptions/f6009dd4-39d5-/resourceGroups/297c4d86-cc76-4ef/providers/Microsoft.ContainerService/containerServices/356813d1-4a4a-461e-9"; 12068Requests[1721].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12069Requests[1721].Request.Path = "/subscriptions/5fe88dc8-37ee-/resourceGroups/baca8aac-9216-4ea/providers/Microsoft.ContainerService/containerServices/d66f1b35-13a6-49b7-8"; 12072Requests[1722].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12073Requests[1722].Request.Path = "/subscriptions/ec1f7bce-6472-/resourceGroups/f7c75401-7fe2-4c6/providers/Microsoft.ContainerService/containerServices/c6087710-03ee-429a-8"; 12076Requests[1723].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12077Requests[1723].Request.Path = "/subscriptions/f214a4cc-8e74-/resourceGroups/6df91c59-97df-499/providers/Microsoft.ContainerService/managedClusters/ba42d48e-a16"; 12080Requests[1724].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12081Requests[1724].Request.Path = "/subscriptions/bd913960-4a67-/resourceGroups/8b3dbbf6-6684-44c/providers/Microsoft.ContainerService/managedClusters/4af851c8-9f5"; 12084Requests[1725].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12085Requests[1725].Request.Path = "/subscriptions/d9969749-1077-/resourceGroups/f17163db-05c1-439/providers/Microsoft.ContainerService/managedClusters/2aadb044-6dc"; 12088Requests[1726].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12089Requests[1726].Request.Path = "/subscriptions/d5ec7fd0-6f38-/resourceGroups/fc27a45a-ed84-433/providers/Microsoft.CustomerInsights/hubs/af57c0b"; 12092Requests[1727].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12093Requests[1727].Request.Path = "/subscriptions/c58aea0f-bf66-/resourceGroups/fb6495d3-df78-4d6/providers/Microsoft.CustomerInsights/hubs/80cf81f"; 12096Requests[1728].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12097Requests[1728].Request.Path = "/subscriptions/d49fb4a1-6dae-/resourceGroups/36f8c0c7-5663-424/providers/Microsoft.CustomerInsights/hubs/e9ba970"; 12100Requests[1729].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12101Requests[1729].Request.Path = "/subscriptions/ab8052cb-fb0c-/resourceGroups/cba5eb08-f6ca-43a/providers/Microsoft.CustomerInsights/hubs/b875850"; 12104Requests[1730].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12105Requests[1730].Request.Path = "/subscriptions/093fa5df-9752-/resourceGroups/d7fe99c4-7b1e-474/providers/Microsoft.DataBox/jobs/31b1ddb"; 12108Requests[1731].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12109Requests[1731].Request.Path = "/subscriptions/bd1ec873-1c92-/resourceGroups/8a0681bf-bd45-473/providers/Microsoft.DataBox/jobs/8be4599"; 12112Requests[1732].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12113Requests[1732].Request.Path = "/subscriptions/a6c92778-08aa-/resourceGroups/70654c1c-0b25-4b5/providers/Microsoft.DataBox/jobs/6764093"; 12116Requests[1733].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12117Requests[1733].Request.Path = "/subscriptions/b60274d5-99b9-/resourceGroups/4bc3404c-f853-44e/providers/Microsoft.DataBox/jobs/902260f"; 12120Requests[1734].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12121Requests[1734].Request.Path = "/subscriptions/8ed377f0-f22f-/resourceGroups/27a9ff75-8dae-413/providers/Microsoft.Databricks/workspaces/fa39b66b-4a75"; 12124Requests[1735].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12125Requests[1735].Request.Path = "/subscriptions/b2a617ca-cb87-/resourceGroups/20748f86-da19-422/providers/Microsoft.Databricks/workspaces/1c02f89c-ed08"; 12128Requests[1736].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12129Requests[1736].Request.Path = "/subscriptions/b48912fa-928f-/resourceGroups/8ae72d75-5779-41f/providers/Microsoft.Databricks/workspaces/7f4cd71a-14ba"; 12132Requests[1737].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12133Requests[1737].Request.Path = "/subscriptions/f0d153ab-a714-/resourceGroups/ce308dff-cb2f-4c2/providers/Microsoft.Databricks/workspaces/28270bc3-b446"; 12136Requests[1738].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12137Requests[1738].Request.Path = "/subscriptions/04f2703b-10bd-/resourceGroups/9fb342ec-7505-468/providers/Microsoft.DataCatalog/catalogs/4916593e-ed"; 12140Requests[1739].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12141Requests[1739].Request.Path = "/subscriptions/e8b0b205-4a9d-/resourceGroups/6de4edc5-6d60-4f5/providers/Microsoft.DataCatalog/catalogs/7d507e15-f0"; 12144Requests[1740].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12145Requests[1740].Request.Path = "/subscriptions/ba63f917-c76b-/resourceGroups/c98cdebf-279d-403/providers/Microsoft.DataCatalog/catalogs/161ced14-1a"; 12148Requests[1741].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12149Requests[1741].Request.Path = "/subscriptions/b25e34ad-9369-/resourceGroups/1aeca860-03cc-403/providers/Microsoft.DataCatalog/catalogs/90fca8b8-e2"; 12152Requests[1742].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12153Requests[1742].Request.Path = "/subscriptions/aa5c986d-0b96-/resourceGroups/21eaed12-55b4-4ba/providers/Microsoft.DataFactory/factories/eaed2015-71"; 12156Requests[1743].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12157Requests[1743].Request.Path = "/subscriptions/133939d1-caf6-/resourceGroups/8f52da6b-19a0-4f5/providers/Microsoft.DataFactory/factories/f52cfaf2-61"; 12160Requests[1744].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12161Requests[1744].Request.Path = "/subscriptions/96fb5cc2-39a8-/resourceGroups/d219eede-eaa0-446/providers/Microsoft.DataFactory/factories/3c2e49dd-b3"; 12164Requests[1745].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12165Requests[1745].Request.Path = "/subscriptions/c7104675-453a-/resourceGroups/d40004b5-0eaa-46f/providers/Microsoft.DataFactory/factories/ac7a86fe-00"; 12168Requests[1746].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12169Requests[1746].Request.Path = "/subscriptions/8450ea94-505d-/resourceGroups/e6d9c3a8-37d4-45f/providers/Microsoft.DataLakeAnalytics/accounts/6f2f50fa-28"; 12172Requests[1747].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12173Requests[1747].Request.Path = "/subscriptions/9dbb5d47-fb2c-/resourceGroups/bb54224a-4566-4c2/providers/Microsoft.DataLakeAnalytics/accounts/fb3e690a-2a"; 12176Requests[1748].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12177Requests[1748].Request.Path = "/subscriptions/8336b7d2-f15a-/resourceGroups/2d972790-e542-44d/providers/Microsoft.DataLakeAnalytics/accounts/464e0ad4-58"; 12180Requests[1749].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12181Requests[1749].Request.Path = "/subscriptions/89a4f731-9a29-/resourceGroups/4f11965d-5bc9-490/providers/Microsoft.DataLakeAnalytics/accounts/b27e54b9-4f"; 12184Requests[1750].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12185Requests[1750].Request.Path = "/subscriptions/b12c1704-a462-/resourceGroups/6a128853-c287-43e/providers/Microsoft.DataLakeStore/accounts/bc949fa9-3d"; 12188Requests[1751].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12189Requests[1751].Request.Path = "/subscriptions/dae3c3d4-abaa-/resourceGroups/26a20579-5f69-46b/providers/Microsoft.DataLakeStore/accounts/4700f8ef-fe"; 12192Requests[1752].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12193Requests[1752].Request.Path = "/subscriptions/7e03161a-8148-/resourceGroups/b1e80edd-2caa-421/providers/Microsoft.DataLakeStore/accounts/20bb8049-7f"; 12196Requests[1753].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12197Requests[1753].Request.Path = "/subscriptions/80f7f011-8688-/resourceGroups/f9cfffc3-e5e3-424/providers/Microsoft.DataLakeStore/accounts/cbd4eb23-2a"; 12200Requests[1754].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12201Requests[1754].Request.Path = "/subscriptions/3337585c-87ed-/resourceGroups/5e758cce-fc64-4c4/providers/Microsoft.DBforMySQL/servers/66a6d45a-2"; 12204Requests[1755].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12205Requests[1755].Request.Path = "/subscriptions/820367fe-2a37-/resourceGroups/ac4941b7-5a3c-453/providers/Microsoft.DBforMySQL/servers/82d25bc1-5"; 12208Requests[1756].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12209Requests[1756].Request.Path = "/subscriptions/53e141ac-27ac-/resourceGroups/53b1b797-c204-4a5/providers/Microsoft.DBforMySQL/servers/235cc04c-f"; 12212Requests[1757].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12213Requests[1757].Request.Path = "/subscriptions/83a1e00c-7f02-/resourceGroups/19e945c5-8c08-4db/providers/Microsoft.DBforMySQL/servers/a33c6a28-9"; 12216Requests[1758].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12217Requests[1758].Request.Path = "/subscriptions/7752a955-137f-/resourceGroups/accf0ba9-0349-45a/providers/Microsoft.DBforPostgreSQL/servers/1d460f55-8"; 12220Requests[1759].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12221Requests[1759].Request.Path = "/subscriptions/343fef7b-4245-/resourceGroups/d9b03f7d-2319-44e/providers/Microsoft.DBforPostgreSQL/servers/4ea6cf54-8"; 12224Requests[1760].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12225Requests[1760].Request.Path = "/subscriptions/661720d3-ae8b-/resourceGroups/f0ca75f7-448c-46b/providers/Microsoft.DBforPostgreSQL/servers/32e628f6-e"; 12228Requests[1761].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12229Requests[1761].Request.Path = "/subscriptions/70c649af-cf0a-/resourceGroups/8b491f88-5bf2-413/providers/Microsoft.DBforPostgreSQL/servers/dc47134b-8"; 12232Requests[1762].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12233Requests[1762].Request.Path = "/subscriptions/aea3f6e9-d392-/resourceGroups/5ed0efb8-2e30-47c/providers/Microsoft.Devices/IotHubs/b4523302-1b6"; 12236Requests[1763].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12237Requests[1763].Request.Path = "/subscriptions/e5beb814-ff8a-/resourceGroups/642c3fb2-b123-469/providers/Microsoft.Devices/IotHubs/6e230169-143"; 12240Requests[1764].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12241Requests[1764].Request.Path = "/subscriptions/0cdcf03c-21ff-/resourceGroups/61ba86a7-dd35-455/providers/Microsoft.Devices/IotHubs/75dcf13d-9ca"; 12244Requests[1765].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12245Requests[1765].Request.Path = "/subscriptions/cded5771-887b-/resourceGroups/da93cf0e-bb5a-4ca/providers/Microsoft.Devices/IotHubs/8ee04b42-3ed"; 12248Requests[1766].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12249Requests[1766].Request.Path = "/subscriptions/75a79ef9-1b2a-/resourceGroups/fcbcaf03-9b48-4da/providers/Microsoft.Devices/provisioningServices/cf124693-7618-46a7-b270"; 12252Requests[1767].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12253Requests[1767].Request.Path = "/subscriptions/99405958-e824-/resourceGroups/aad73d1a-f837-45a/providers/Microsoft.Devices/provisioningServices/84a77473-72d2-472a-9432"; 12256Requests[1768].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12257Requests[1768].Request.Path = "/subscriptions/b30ac093-6734-/resourceGroups/d6f5b2f3-6070-43a/providers/Microsoft.Devices/provisioningServices/7687ab96-dc17-478d-8e18"; 12260Requests[1769].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12261Requests[1769].Request.Path = "/subscriptions/43036939-9619-/resourceGroups/1847e713-3f37-4ae/providers/Microsoft.Devices/provisioningServices/6271e574-8bd3-48c0-af67"; 12264Requests[1770].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12265Requests[1770].Request.Path = "/subscriptions/b916691f-da32-/resourceGroups/882898f3-86dd-4fc/providers/Microsoft.DevTestLab/labs/45669"; 12268Requests[1771].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12269Requests[1771].Request.Path = "/subscriptions/7125c561-d4f9-/resourceGroups/b061a7b7-1d57-457/providers/Microsoft.DevTestLab/labs/79e6b"; 12272Requests[1772].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12273Requests[1772].Request.Path = "/subscriptions/5e858e57-d409-/resourceGroups/fef351c3-7801-4cf/providers/Microsoft.DevTestLab/labs/d257a"; 12276Requests[1773].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12277Requests[1773].Request.Path = "/subscriptions/e7a2001d-7f85-/resourceGroups/b216b915-243e-4c2/providers/Microsoft.DevTestLab/labs/2bf85"; 12280Requests[1774].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12281Requests[1774].Request.Path = "/subscriptions/4b3c38d8-8c69-/resourceGroups/e2ff1d29-ea0a-4e1/providers/Microsoft.DevTestLab/schedules/a3102"; 12284Requests[1775].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12285Requests[1775].Request.Path = "/subscriptions/13dc42f0-8bb3-/resourceGroups/b2d30731-7813-40b/providers/Microsoft.DevTestLab/schedules/c1a6a"; 12288Requests[1776].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12289Requests[1776].Request.Path = "/subscriptions/d15b198c-11de-/resourceGroups/cc9511d5-e6e7-4cf/providers/Microsoft.DevTestLab/schedules/65962"; 12292Requests[1777].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12293Requests[1777].Request.Path = "/subscriptions/36a42dc2-fedd-/resourceGroups/eb2cdc9b-6e87-424/providers/Microsoft.DevTestLab/schedules/519e0"; 12296Requests[1778].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12297Requests[1778].Request.Path = "/subscriptions/0e5cfcde-490e-/resourceGroups/1da638ff-db9c-41c/providers/Microsoft.DocumentDB/databaseAccounts/8ce0da57-82"; 12300Requests[1779].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12301Requests[1779].Request.Path = "/subscriptions/ae0e30b2-c668-/resourceGroups/3fd1099a-47ea-40e/providers/Microsoft.DocumentDB/databaseAccounts/3d489471-93"; 12304Requests[1780].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12305Requests[1780].Request.Path = "/subscriptions/9e926b0e-0236-/resourceGroups/d349b8a7-457b-4e9/providers/Microsoft.DocumentDB/databaseAccounts/f43557b8-26"; 12308Requests[1781].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12309Requests[1781].Request.Path = "/subscriptions/5dcd39c0-0740-/resourceGroups/eb8a3c97-8050-40d/providers/Microsoft.DocumentDB/databaseAccounts/cad642a9-24"; 12312Requests[1782].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12313Requests[1782].Request.Path = "/subscriptions/434c1164-e8a7-/resourceGroups/05c60298-c975-455/providers/Microsoft.DomainRegistration/domains/b83962e9-9"; 12316Requests[1783].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12317Requests[1783].Request.Path = "/subscriptions/3b9fe4b9-633f-/resourceGroups/c5791472-ae83-494/providers/Microsoft.DomainRegistration/domains/a1b3220e-3"; 12320Requests[1784].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12321Requests[1784].Request.Path = "/subscriptions/58862bde-4901-/resourceGroups/93caffe4-b606-496/providers/Microsoft.DomainRegistration/domains/7f8d0da5-b"; 12324Requests[1785].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12325Requests[1785].Request.Path = "/subscriptions/f5f6cd21-b1cd-/resourceGroups/5b984ba6-8db4-4bb/providers/Microsoft.DomainRegistration/domains/471d5efd-b"; 12328Requests[1786].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12329Requests[1786].Request.Path = "/subscriptions/6a927521-d351-/resourceGroups/3435b7fa-b99f-4cd/providers/Microsoft.EventGrid/topics/32407e65-"; 12332Requests[1787].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12333Requests[1787].Request.Path = "/subscriptions/d35da684-759e-/resourceGroups/f49b9e25-0100-41e/providers/Microsoft.EventGrid/topics/bd55ef23-"; 12336Requests[1788].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12337Requests[1788].Request.Path = "/subscriptions/8c0c64c7-c679-/resourceGroups/0926b111-cff7-42c/providers/Microsoft.EventGrid/topics/ef9138c0-"; 12340Requests[1789].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12341Requests[1789].Request.Path = "/subscriptions/61ec79a6-8634-/resourceGroups/5f6586d7-db96-4e1/providers/Microsoft.EventGrid/topics/223001df-"; 12344Requests[1790].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12345Requests[1790].Request.Path = "/subscriptions/5c525398-96d0-/resourceGroups/7d374f4b-b35f-4f5/providers/Microsoft.EventHub/clusters/499e543d-8d"; 12348Requests[1791].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12349Requests[1791].Request.Path = "/subscriptions/c9ae5065-5f71-/resourceGroups/6cd18e1c-a613-40e/providers/Microsoft.EventHub/clusters/001b2bc7-87"; 12352Requests[1792].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12353Requests[1792].Request.Path = "/subscriptions/4a3f8e7e-22e5-/resourceGroups/3bca5d0f-b584-488/providers/Microsoft.EventHub/namespaces/e5beb57a-88b6"; 12356Requests[1793].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12357Requests[1793].Request.Path = "/subscriptions/a074d51d-23dd-/resourceGroups/01d37c08-b15c-4e9/providers/Microsoft.EventHub/namespaces/8a86ecb2-f135"; 12360Requests[1794].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12361Requests[1794].Request.Path = "/subscriptions/3f916ef6-bb32-/resourceGroups/a709e25c-148e-43f/providers/Microsoft.EventHub/namespaces/cba61978-f9f4"; 12364Requests[1795].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12365Requests[1795].Request.Path = "/subscriptions/b2ea2b90-3c3d-/resourceGroups/31486b52-c0f9-44a/providers/Microsoft.EventHub/namespaces/04c724e0-89b8"; 12368Requests[1796].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12369Requests[1796].Request.Path = "/subscriptions/4a735fa0-bcd7-/resourceGroups/652f4546-3495-4a2/providers/Microsoft.Fabric.Admin/fabricLocations/a1e70557-e82c-"; 12372Requests[1797].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12373Requests[1797].Request.Path = "/subscriptions/8193b116-9ff5-/resourceGroups/9fa84b6d-4e80-495/providers/Microsoft.HanaOnAzure/hanaInstances/b86195ce-b7b5-42"; 12376Requests[1798].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12377Requests[1798].Request.Path = "/subscriptions/08ef48bd-8533-/resourceGroups/7e8428f7-0e84-4ec/providers/Microsoft.HDInsight/clusters/46a8e62d-87"; 12380Requests[1799].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12381Requests[1799].Request.Path = "/subscriptions/d97aede8-c7e4-/resourceGroups/5c3d2ffc-920a-444/providers/Microsoft.HDInsight/clusters/0f0ef0cf-cd"; 12384Requests[1800].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12385Requests[1800].Request.Path = "/subscriptions/3a7edce3-8daa-/resourceGroups/4a235172-1396-468/providers/Microsoft.HDInsight/clusters/5cfdcb6b-f8"; 12388Requests[1801].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12389Requests[1801].Request.Path = "/subscriptions/31bcad8e-6861-/resourceGroups/d0db5122-d8a0-405/providers/Microsoft.HDInsight/clusters/0288498b-f5"; 12392Requests[1802].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12393Requests[1802].Request.Path = "/subscriptions/96bcf7bd-fc64-/resourceGroups/398de39c-df84-460/providers/Microsoft.ImportExport/jobs/6a6ea6e"; 12396Requests[1803].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12397Requests[1803].Request.Path = "/subscriptions/35f690f7-720e-/resourceGroups/9c19037f-bddf-473/providers/Microsoft.ImportExport/jobs/ca64379"; 12400Requests[1804].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12401Requests[1804].Request.Path = "/subscriptions/da936dfd-7bb7-/resourceGroups/dae98d94-50b0-4c7/providers/Microsoft.ImportExport/jobs/6f1238a"; 12404Requests[1805].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12405Requests[1805].Request.Path = "/subscriptions/bc31b194-3f40-/resourceGroups/d280a25a-4c5f-459/providers/Microsoft.ImportExport/jobs/2571fd8"; 12408Requests[1806].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12409Requests[1806].Request.Path = "/subscriptions/91531137-c56f-/resourceGroups/3c458f30-43de-48d/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/0fbf673a"; 12412Requests[1807].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12413Requests[1807].Request.Path = "/subscriptions/f1029b03-5a26-/resourceGroups/f32c9e1f-f7fe-41e/providers/microsoft.insights/actionGroups/aea34e70-933e-4"; 12416Requests[1808].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12417Requests[1808].Request.Path = "/subscriptions/aa3531d5-e684-/resourceGroups/70493648-1e9e-4b8/providers/microsoft.insights/actionGroups/addf972a-56a3-4"; 12420Requests[1809].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12421Requests[1809].Request.Path = "/subscriptions/c441f71d-6aa1-/resourceGroups/f9b30b1d-9746-4ec/providers/microsoft.insights/actionGroups/08834446-4fbf-4"; 12424Requests[1810].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12425Requests[1810].Request.Path = "/subscriptions/b16ee007-ef25-/resourceGroups/33d2fb0b-638b-4ed/providers/microsoft.insights/actionGroups/a28d8e1b-29c0-4"; 12428Requests[1811].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12429Requests[1811].Request.Path = "/subscriptions/2d9a0dbf-7f1b-/resourceGroups/d6caa543-ced4-46f/providers/microsoft.insights/activityLogAlerts/7a7fd221-c55d-4d78-a"; 12432Requests[1812].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12433Requests[1812].Request.Path = "/subscriptions/3d25535e-6e51-/resourceGroups/4fa7ac0e-c3ef-46c/providers/microsoft.insights/activityLogAlerts/2c811b82-c6b7-4ae8-9"; 12436Requests[1813].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12437Requests[1813].Request.Path = "/subscriptions/a3815793-04d1-/resourceGroups/06e2b406-d3ee-4c9/providers/microsoft.insights/activityLogAlerts/5bbbef5d-c9cf-44c5-9"; 12440Requests[1814].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12441Requests[1814].Request.Path = "/subscriptions/aaf7c0a1-cd22-/resourceGroups/fb8c9881-5dd3-4a4/providers/microsoft.insights/activityLogAlerts/c9aa1ed8-25aa-4279-9"; 12444Requests[1815].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12445Requests[1815].Request.Path = "/subscriptions/d7bde63a-966e-/resourcegroups/8611b0df-09e6-40c/providers/microsoft.insights/alertrules/fed75d3e"; 12448Requests[1816].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12449Requests[1816].Request.Path = "/subscriptions/42ba8568-b5c1-/resourcegroups/06f05dd0-2684-486/providers/microsoft.insights/alertrules/c302d62d"; 12452Requests[1817].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12453Requests[1817].Request.Path = "/subscriptions/ddf10b29-8f93-/resourcegroups/16cff7f3-cabe-49d/providers/microsoft.insights/alertrules/776e8b6e"; 12456Requests[1818].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12457Requests[1818].Request.Path = "/subscriptions/46aa3350-129f-/resourcegroups/c750cead-82c9-423/providers/microsoft.insights/alertrules/9d3cea6d"; 12460Requests[1819].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12461Requests[1819].Request.Path = "/subscriptions/8e768deb-d050-/resourcegroups/e659e9be-b5a0-410/providers/microsoft.insights/autoscalesettings/c16da62e-bef8-4300-b"; 12464Requests[1820].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12465Requests[1820].Request.Path = "/subscriptions/e7f172a1-766d-/resourcegroups/959bdf96-7f65-49a/providers/microsoft.insights/autoscalesettings/3247f670-980b-48c7-a"; 12468Requests[1821].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12469Requests[1821].Request.Path = "/subscriptions/1f17d081-c911-/resourcegroups/36313d71-1aea-4ba/providers/microsoft.insights/autoscalesettings/159f8ba5-8994-4a81-a"; 12472Requests[1822].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12473Requests[1822].Request.Path = "/subscriptions/341b325d-c492-/resourcegroups/1a9389d1-b071-425/providers/microsoft.insights/autoscalesettings/123c17f9-18f3-4f00-b"; 12476Requests[1823].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12477Requests[1823].Request.Path = "/subscriptions/b3124308-94f5-/resourceGroups/3b10bef0-2569-4f5/providers/Microsoft.Insights/components/0901c338-0bc"; 12480Requests[1824].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12481Requests[1824].Request.Path = "/subscriptions/58ca0758-4d27-/resourceGroups/d0288377-2146-479/providers/Microsoft.Insights/components/a6dbb475-c19"; 12484Requests[1825].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12485Requests[1825].Request.Path = "/subscriptions/de7e9bad-d205-/resourceGroups/cd5615a2-6146-407/providers/Microsoft.Insights/components/367699e2-324"; 12488Requests[1826].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12489Requests[1826].Request.Path = "/subscriptions/132cff00-e0df-/resourceGroups/34e44c5d-c957-458/providers/Microsoft.Insights/components/b70ae269-d35"; 12492Requests[1827].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12493Requests[1827].Request.Path = "/subscriptions/82760a05-db4b-/resourceGroups/2ae3a9b2-9b51-437/providers/Microsoft.Insights/metricAlerts/3b71250d"; 12496Requests[1828].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12497Requests[1828].Request.Path = "/subscriptions/a5f15a0f-f26f-/resourceGroups/0fa3e8a2-6ebd-49d/providers/Microsoft.Insights/metricAlerts/f3383a14"; 12500Requests[1829].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12501Requests[1829].Request.Path = "/subscriptions/72d075ef-fd66-/resourceGroups/28b4c57e-c566-420/providers/Microsoft.Insights/metricAlerts/8e5b6c4f"; 12504Requests[1830].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12505Requests[1830].Request.Path = "/subscriptions/99c81ea6-3bcc-/resourceGroups/2abd9c2f-e04c-499/providers/Microsoft.Insights/metricAlerts/7fc26965"; 12508Requests[1831].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12509Requests[1831].Request.Path = "/subscriptions/a4abaa62-329a-/resourcegroups/5c3dc41e-09f4-4a4/providers/microsoft.insights/scheduledQueryRules/1bccf45c"; 12512Requests[1832].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12513Requests[1832].Request.Path = "/subscriptions/fdaff9cc-87a7-/resourcegroups/fd656fea-dbac-4b0/providers/microsoft.insights/scheduledQueryRules/f59b0a63"; 12516Requests[1833].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12517Requests[1833].Request.Path = "/subscriptions/d8013326-9d49-/resourcegroups/4d3dcb5e-4f01-440/providers/microsoft.insights/scheduledQueryRules/380ba354"; 12520Requests[1834].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12521Requests[1834].Request.Path = "/subscriptions/bb730c0e-538a-/resourceGroups/36aa5e9b-19dd-421/providers/Microsoft.Insights/webtests/775b6e25-08"; 12524Requests[1835].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12525Requests[1835].Request.Path = "/subscriptions/af4188dc-f8c8-/resourceGroups/c74b31c1-c027-473/providers/Microsoft.Insights/webtests/966a1543-7c"; 12528Requests[1836].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12529Requests[1836].Request.Path = "/subscriptions/1fb65b1f-9f84-/resourceGroups/2fe38b49-053c-495/providers/Microsoft.Insights/webtests/d7b8a58a-dc"; 12532Requests[1837].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12533Requests[1837].Request.Path = "/subscriptions/ee2d878d-ab85-/resourceGroups/044642e0-931d-410/providers/Microsoft.Insights/webtests/43dfc02b-9c"; 12536Requests[1838].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12537Requests[1838].Request.Path = "/subscriptions/94033102-29e3-/resourceGroups/ca09cff7-02e2-47f/providers/Microsoft.IoTCentral/IoTApps/d619b3f6-b39"; 12540Requests[1839].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12541Requests[1839].Request.Path = "/subscriptions/c142300d-f5a9-/resourceGroups/8477f636-87ed-4ca/providers/Microsoft.IoTCentral/IoTApps/c745e0c2-7cf"; 12544Requests[1840].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12545Requests[1840].Request.Path = "/subscriptions/93aab1a0-8bd0-/resourceGroups/d0439a22-6ac0-4c6/providers/Microsoft.IoTCentral/IoTApps/c794c300-8cb"; 12548Requests[1841].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12549Requests[1841].Request.Path = "/subscriptions/b29ae34c-0834-/resourceGroups/f1ad08e3-a8cf-4f3/providers/Microsoft.IoTCentral/IoTApps/f6f78d0d-55d"; 12552Requests[1842].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12553Requests[1842].Request.Path = "/subscriptions/adc14e3f-8394-/resourceGroups/0efe0585-539c-4d0/providers/Microsoft.IoTSpaces/Graph/473f1d75-e50"; 12556Requests[1843].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12557Requests[1843].Request.Path = "/subscriptions/48d7430e-9b8a-/resourceGroups/88ed91ea-a908-464/providers/Microsoft.IoTSpaces/Graph/82ccf77e-c99"; 12560Requests[1844].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12561Requests[1844].Request.Path = "/subscriptions/000669bf-3cf7-/resourceGroups/a3f0474f-842d-43e/providers/Microsoft.IoTSpaces/Graph/8e850114-34b"; 12564Requests[1845].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12565Requests[1845].Request.Path = "/subscriptions/5ac5b1a9-331e-/resourceGroups/08bfbcfe-d632-460/providers/Microsoft.IoTSpaces/Graph/8dc7aca0-c5d"; 12568Requests[1846].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12569Requests[1846].Request.Path = "/subscriptions/f3234676-1126-/resourceGroups/da3473b5-7913-48d/providers/Microsoft.KeyVault/vaults/68342c53-"; 12572Requests[1847].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12573Requests[1847].Request.Path = "/subscriptions/51eb9e9f-4472-/resourceGroups/8bd08ead-8dd1-4f0/providers/Microsoft.KeyVault/vaults/56b55376-"; 12576Requests[1848].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12577Requests[1848].Request.Path = "/subscriptions/4144bfd6-6c7a-/resourceGroups/1fb94ffc-c462-461/providers/Microsoft.KeyVault/vaults/6df79bd7-"; 12580Requests[1849].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12581Requests[1849].Request.Path = "/subscriptions/a9b5b875-bfad-/resourceGroups/50b82933-3ba5-441/providers/Microsoft.KeyVault/vaults/a3ee1a83-"; 12584Requests[1850].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12585Requests[1850].Request.Path = "/subscriptions/9d4fffab-59c8-/resourceGroups/b44a2b24-d913-49d/providers/Microsoft.Logic/integrationAccounts/bd14612b-2662-4ac9-8dc"; 12588Requests[1851].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12589Requests[1851].Request.Path = "/subscriptions/1916dab4-8f8a-/resourceGroups/f9f55860-9944-475/providers/Microsoft.Logic/integrationAccounts/2c8a1e94-fd7e-40de-84c"; 12592Requests[1852].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12593Requests[1852].Request.Path = "/subscriptions/c15b858c-3a7e-/resourceGroups/2cfb53b7-b0ff-473/providers/Microsoft.Logic/integrationAccounts/24b5a0c7-b702-4307-a1d"; 12596Requests[1853].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12597Requests[1853].Request.Path = "/subscriptions/978912de-9bd6-/resourceGroups/d95bb339-ec77-4be/providers/Microsoft.Logic/integrationAccounts/7919bcef-8b8d-4d5b-870"; 12600Requests[1854].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12601Requests[1854].Request.Path = "/subscriptions/79e477ee-b92a-/resourceGroups/1d1691c9-4212-4ac/providers/Microsoft.Logic/workflows/27f7ff37-7c5"; 12604Requests[1855].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12605Requests[1855].Request.Path = "/subscriptions/f058748b-53eb-/resourceGroups/4e43c546-e721-459/providers/Microsoft.Logic/workflows/92d4916a-324"; 12608Requests[1856].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12609Requests[1856].Request.Path = "/subscriptions/550958ab-6596-/resourceGroups/e3035fd2-d54f-4ef/providers/Microsoft.Logic/workflows/ef5c5d81-2b0"; 12612Requests[1857].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12613Requests[1857].Request.Path = "/subscriptions/13c7c3b0-f2db-/resourceGroups/564252ff-2ea1-426/providers/Microsoft.Logic/workflows/41f99e22-86a"; 12616Requests[1858].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12617Requests[1858].Request.Path = "/subscriptions/ca8e0793-ec38-/resourceGroups/5ddd0852-189a-40b/providers/Microsoft.MachineLearning/commitmentPlans/5f1e82e2-412c-4c06"; 12620Requests[1859].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12621Requests[1859].Request.Path = "/subscriptions/9c93cdf5-521b-/resourceGroups/51e9750f-a03c-4cd/providers/Microsoft.MachineLearning/commitmentPlans/4478b4e2-0336-412e"; 12624Requests[1860].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12625Requests[1860].Request.Path = "/subscriptions/26779511-6cbf-/resourceGroups/93df6f2e-4f42-4db/providers/Microsoft.MachineLearning/commitmentPlans/117accda-14f2-42c5"; 12628Requests[1861].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 12629Requests[1861].Request.Path = "/subscriptions/6e650afb-768d-/resourceGroups/d9dfb743-fd3b-430/providers/Microsoft.MachineLearning/commitmentPlans/5be01ffb-5fa4-4224"; 12632Requests[1862].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12633Requests[1862].Request.Path = "/subscriptions/1b56ca80-1037-/resourceGroups/4cb96a15-e119-483/providers/Microsoft.MachineLearning/commitmentPlans/e834b83a-cde3-4db4"; 12636Requests[1863].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12637Requests[1863].Request.Path = "/subscriptions/ef32fa7d-0198-/resourceGroups/2173d64f-33d8-41b/providers/Microsoft.MachineLearning/webServices/701ac7a8-3c18-"; 12640Requests[1864].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12641Requests[1864].Request.Path = "/subscriptions/4b5de478-293c-/resourceGroups/71044bce-dd49-43e/providers/Microsoft.MachineLearning/webServices/31ce93d3-22d1-"; 12644Requests[1865].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12645Requests[1865].Request.Path = "/subscriptions/a5f7bee7-49f1-/resourceGroups/94c44342-7ae9-498/providers/Microsoft.MachineLearning/webServices/d2e61971-19b4-"; 12648Requests[1866].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12649Requests[1866].Request.Path = "/subscriptions/16a2b8d7-7ae1-/resourceGroups/4a365a5e-06a3-49a/providers/Microsoft.MachineLearning/webServices/58379bcc-3171-"; 12652Requests[1867].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12653Requests[1867].Request.Path = "/subscriptions/8350703e-efe9-/resourceGroups/89c3d38c-236f-40c/providers/Microsoft.MachineLearning/workspaces/14fe7a5d-b376"; 12656Requests[1868].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12657Requests[1868].Request.Path = "/subscriptions/3b4ea66a-dd1c-/resourceGroups/1f77672e-4e96-419/providers/Microsoft.MachineLearning/workspaces/d0b1df3a-35a5"; 12660Requests[1869].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12661Requests[1869].Request.Path = "/subscriptions/b67d21ec-1cb3-/resourceGroups/9fee758a-a28e-461/providers/Microsoft.MachineLearning/workspaces/e1dbcef8-c1d9"; 12664Requests[1870].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12665Requests[1870].Request.Path = "/subscriptions/542d24bb-27e7-/resourceGroups/fc7eda38-3b7c-486/providers/Microsoft.MachineLearning/workspaces/86dbdce8-9401"; 12668Requests[1871].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12669Requests[1871].Request.Path = "/subscriptions/74d57c9f-7564-/resourceGroups/bbb4d03b-cae6-47e/providers/Microsoft.MachineLearningCompute/operationalizationClusters/a8d6b65d-d7"; 12672Requests[1872].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12673Requests[1872].Request.Path = "/subscriptions/175324d9-6b73-/resourceGroups/5503bb06-90b6-4a4/providers/Microsoft.MachineLearningCompute/operationalizationClusters/36e108cb-73"; 12676Requests[1873].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12677Requests[1873].Request.Path = "/subscriptions/3ab6f4b7-7ab8-/resourceGroups/f0048f8f-46ee-499/providers/Microsoft.MachineLearningCompute/operationalizationClusters/d50aef8d-cd"; 12680Requests[1874].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12681Requests[1874].Request.Path = "/subscriptions/e3644c42-6d40-/resourceGroups/3a173178-f8b5-420/providers/Microsoft.MachineLearningCompute/operationalizationClusters/8d974423-73"; 12684Requests[1875].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12685Requests[1875].Request.Path = "/subscriptions/3cc41c39-ec75-/resourceGroups/7a1be289-1b2b-439/providers/Microsoft.MachineLearningExperimentation/accounts/fbb3395d-23"; 12688Requests[1876].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12689Requests[1876].Request.Path = "/subscriptions/6d35677b-4169-/resourceGroups/10f29c59-0c10-40f/providers/Microsoft.MachineLearningExperimentation/accounts/e76143f4-6c"; 12692Requests[1877].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12693Requests[1877].Request.Path = "/subscriptions/b3e11619-8d4d-/resourceGroups/204cd1d9-7f03-460/providers/Microsoft.MachineLearningExperimentation/accounts/cb8a2bc4-c1"; 12696Requests[1878].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12697Requests[1878].Request.Path = "/subscriptions/e6e3adb2-c054-/resourceGroups/02dae6c4-e2a2-460/providers/Microsoft.MachineLearningExperimentation/accounts/020ab555-bf"; 12700Requests[1879].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12701Requests[1879].Request.Path = "/subscriptions/f25a3b93-199f-/resourceGroups/5e390c75-f56c-4a5/providers/Microsoft.MachineLearningServices/workspaces/57f2dd72-e581"; 12704Requests[1880].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12705Requests[1880].Request.Path = "/subscriptions/ff73dc2f-bdc0-/resourceGroups/14835cc0-8bae-400/providers/Microsoft.MachineLearningServices/workspaces/1787187a-adfe"; 12708Requests[1881].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12709Requests[1881].Request.Path = "/subscriptions/54dbb607-48a2-/resourceGroups/6b4923cc-4725-432/providers/Microsoft.MachineLearningServices/workspaces/fd4a0d78-3192"; 12712Requests[1882].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12713Requests[1882].Request.Path = "/subscriptions/391aef1d-2c65-/resourceGroups/6a2cd6eb-1ab4-4e9/providers/Microsoft.MachineLearningServices/workspaces/e2e20a67-bfbe"; 12716Requests[1883].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12717Requests[1883].Request.Path = "/subscriptions/6f9da87d-2a6c-/resourceGroups/a1b69de0-06d3-494/providers/Microsoft.ManagedIdentity/userAssignedIdentities/501bccc9-bf5"; 12720Requests[1884].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12721Requests[1884].Request.Path = "/subscriptions/7ef223e7-aba6-/resourceGroups/456c65c8-c62b-483/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bbcb922c-1b1"; 12724Requests[1885].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12725Requests[1885].Request.Path = "/subscriptions/15ee8074-7bc9-/resourceGroups/4f3f0897-39e0-40b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/6eeff5ba-6bd"; 12728Requests[1886].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12729Requests[1886].Request.Path = "/subscriptions/3ec6bc3e-d5d8-/resourceGroups/e78ace92-bcec-4d5/providers/Microsoft.ManagedIdentity/userAssignedIdentities/db104b75-6f2"; 12732Requests[1887].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12733Requests[1887].Request.Path = "/subscriptions/d137fd0f-00b4-/resourceGroups/7d3db48e-8366-45d/providers/Microsoft.Maps/accounts/b536e664-fc"; 12736Requests[1888].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12737Requests[1888].Request.Path = "/subscriptions/12ed85e9-e5c0-/resourceGroups/daa2e896-bb91-49e/providers/Microsoft.Maps/accounts/2a927513-c1"; 12740Requests[1889].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12741Requests[1889].Request.Path = "/subscriptions/33899bdf-7e92-/resourceGroups/c98a67f8-e05f-459/providers/Microsoft.Maps/accounts/a7b0e8a4-55"; 12744Requests[1890].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12745Requests[1890].Request.Path = "/subscriptions/c0a8a961-c0ea-/resourceGroups/70e33331-d283-425/providers/Microsoft.Maps/accounts/765a05c5-ff"; 12748Requests[1891].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12749Requests[1891].Request.Path = "/subscriptions/6bd63e66-4e92-/resourceGroups/3c034b88-d151-42a/providers/Microsoft.Media/mediaservices/a24c6a63-53d6-4d"; 12752Requests[1892].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12753Requests[1892].Request.Path = "/subscriptions/9651e2a3-4514-/resourceGroups/43ad7a6e-bd87-48d/providers/Microsoft.Media/mediaservices/451bd0ef-539e-42"; 12756Requests[1893].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12757Requests[1893].Request.Path = "/subscriptions/ce5926eb-2bf5-/resourceGroups/371e4cba-0226-4c8/providers/Microsoft.Media/mediaservices/d9e7eafc-c0d2-44"; 12760Requests[1894].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12761Requests[1894].Request.Path = "/subscriptions/d2fd42ee-b4f7-/resourceGroups/730f543e-54cf-471/providers/Microsoft.Media/mediaservices/865cf746-4f43-4c"; 12764Requests[1895].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12765Requests[1895].Request.Path = "/subscriptions/183eaa88-406f-/resourcegroups/afe91e21-36b4-48c/providers/Microsoft.Migrate/projects/6a8ba536-80"; 12768Requests[1896].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12769Requests[1896].Request.Path = "/subscriptions/62078425-f40c-/resourcegroups/c678113f-a1d9-492/providers/Microsoft.Migrate/projects/43d099bb-4e"; 12772Requests[1897].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12773Requests[1897].Request.Path = "/subscriptions/c62d912c-38a5-/resourcegroups/cc05392f-5d75-415/providers/Microsoft.Migrate/projects/4a6a63fe-a7"; 12776Requests[1898].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12777Requests[1898].Request.Path = "/subscriptions/d3db15fe-da52-/resourcegroups/39bcff6d-3814-40e/providers/Microsoft.Migrate/projects/6885d00f-e5"; 12780Requests[1899].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12781Requests[1899].Request.Path = "/subscriptions/a7e0c81d-2d92-/resourceGroups/c912437c-dc32-4bb/providers/Microsoft.Network/applicationGateways/9261b2cc-f647-434c-a9f"; 12784Requests[1900].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12785Requests[1900].Request.Path = "/subscriptions/173ea361-ec30-/resourceGroups/c2192136-90f1-415/providers/Microsoft.Network/applicationGateways/f15cb121-ec18-4960-bc2"; 12788Requests[1901].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12789Requests[1901].Request.Path = "/subscriptions/79c4a3c9-9420-/resourceGroups/d5102af7-c52c-44a/providers/Microsoft.Network/applicationGateways/048f3ae4-e442-4efb-93e"; 12792Requests[1902].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12793Requests[1902].Request.Path = "/subscriptions/889b1311-f4e2-/resourceGroups/529d4e47-deb6-4a4/providers/Microsoft.Network/applicationGateways/f2fe74e1-79a8-4328-9ed"; 12796Requests[1903].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12797Requests[1903].Request.Path = "/subscriptions/f84f34aa-adf4-/resourceGroups/615b8c0c-dca1-4c3/providers/Microsoft.Network/applicationSecurityGroups/3db7d4f1-d555-47f5-8be7-c96c"; 12800Requests[1904].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12801Requests[1904].Request.Path = "/subscriptions/9ffb31a8-0f5f-/resourceGroups/0264f279-7df9-439/providers/Microsoft.Network/applicationSecurityGroups/a9ed9df3-aad4-4ca7-9312-7e45"; 12804Requests[1905].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12805Requests[1905].Request.Path = "/subscriptions/3de5f7f9-e19d-/resourceGroups/2627956d-3c9b-4c3/providers/Microsoft.Network/applicationSecurityGroups/c0281374-ac3c-4071-b9d9-a4b3"; 12808Requests[1906].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12809Requests[1906].Request.Path = "/subscriptions/7b762d3c-94a0-/resourceGroups/bce962c8-1367-4af/providers/Microsoft.Network/connections/287d0f92-9295-4420-99da-b22263c959a"; 12812Requests[1907].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12813Requests[1907].Request.Path = "/subscriptions/03c123c5-650b-/resourceGroups/0b1ac77f-faa2-44e/providers/Microsoft.Network/connections/f3ed5366-f8bc-4c81-a1af-b0ae0e89b8b"; 12816Requests[1908].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12817Requests[1908].Request.Path = "/subscriptions/f792c4f8-b975-/resourceGroups/2166bc7d-88b2-459/providers/Microsoft.Network/connections/e8bbbb37-9db6-48d4-9488-d9699c0ce4a"; 12820Requests[1909].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12821Requests[1909].Request.Path = "/subscriptions/818e7d06-cfad-/resourceGroups/49dce8c3-9dd2-4e8/providers/Microsoft.Network/connections/9237a19b-5224-48b9-a4b9-077420500b3"; 12824Requests[1910].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12825Requests[1910].Request.Path = "/subscriptions/cdd330f2-943d-/resourceGroups/64e1bba2-373a-4e4/providers/Microsoft.Network/ddosProtectionPlans/2ade81fa-f160-4cd2-9be"; 12828Requests[1911].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12829Requests[1911].Request.Path = "/subscriptions/060ee9e6-7b6b-/resourceGroups/1efedda3-525f-481/providers/Microsoft.Network/ddosProtectionPlans/87e000ca-d27b-4a3b-8fe"; 12832Requests[1912].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12833Requests[1912].Request.Path = "/subscriptions/764d20aa-909e-/resourceGroups/88dfa6a7-6dfb-4d8/providers/Microsoft.Network/ddosProtectionPlans/eb04ec41-52a6-4187-854"; 12836Requests[1913].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12837Requests[1913].Request.Path = "/subscriptions/c125d13b-2d03-/resourceGroups/cf05cbed-bd9f-4c4/providers/Microsoft.Network/dnsZones/8e537701"; 12840Requests[1914].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12841Requests[1914].Request.Path = "/subscriptions/6f4f1b70-9b99-/resourceGroups/dcccf13e-2dd0-4ce/providers/Microsoft.Network/dnsZones/7bf6b585"; 12844Requests[1915].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12845Requests[1915].Request.Path = "/subscriptions/3a9b588a-2cd4-/resourceGroups/c2e758a7-72ad-465/providers/Microsoft.Network/dnsZones/1861a5f0"; 12848Requests[1916].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12849Requests[1916].Request.Path = "/subscriptions/671f13a3-4e69-/resourceGroups/d615e986-6d8a-4e2/providers/Microsoft.Network/dnsZones/6d182df3"; 12852Requests[1917].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12853Requests[1917].Request.Path = "/subscriptions/2b193ebf-502f-/resourceGroups/34902ad1-f4e3-412/providers/Microsoft.Network/expressRouteCircuits/29b5daae-9a"; 12856Requests[1918].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12857Requests[1918].Request.Path = "/subscriptions/99955395-e29a-/resourceGroups/a6efc313-bc7f-4d7/providers/Microsoft.Network/expressRouteCircuits/9bce4078-ab"; 12860Requests[1919].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12861Requests[1919].Request.Path = "/subscriptions/7a585e32-2a07-/resourceGroups/ac7341fe-1429-426/providers/Microsoft.Network/expressRouteCircuits/2729c9e2-bd"; 12864Requests[1920].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12865Requests[1920].Request.Path = "/subscriptions/3fd5b7b5-919a-/resourceGroups/144232b0-cb69-4ac/providers/Microsoft.Network/expressRouteCircuits/7d11735a-af"; 12868Requests[1921].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12869Requests[1921].Request.Path = "/subscriptions/228ce523-b15c-/resourceGroups/750314c4-69bb-4bf/providers/Microsoft.Network/expressRouteCrossConnections/bf98c3ea-ff82-4fcb-"; 12872Requests[1922].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12873Requests[1922].Request.Path = "/subscriptions/11c6c6b2-fc67-/resourceGroups/4c463508-2f4f-4da/providers/Microsoft.Network/expressRouteCrossConnections/9ad06999-3c5d-4f36-"; 12876Requests[1923].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12877Requests[1923].Request.Path = "/subscriptions/b64ed8c5-d085-/resourceGroups/cd2e6950-afe9-4a2/providers/Microsoft.Network/expressRouteCrossConnections/31cf2464-3d1f-49fc-"; 12880Requests[1924].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12881Requests[1924].Request.Path = "/subscriptions/4706d4d3-e285-/resourceGroups/94e4bff4-55bd-4bd/providers/Microsoft.Network/loadBalancers/70f39331-672e-4a"; 12884Requests[1925].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12885Requests[1925].Request.Path = "/subscriptions/d91db965-f9d4-/resourceGroups/2a0f7e92-9c51-49d/providers/Microsoft.Network/loadBalancers/c3aa2710-b9e7-44"; 12888Requests[1926].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12889Requests[1926].Request.Path = "/subscriptions/91732768-133b-/resourceGroups/c082b3e9-ef17-46a/providers/Microsoft.Network/loadBalancers/52c54050-626a-48"; 12892Requests[1927].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12893Requests[1927].Request.Path = "/subscriptions/3c9c30d4-abf8-/resourceGroups/6af6f535-d1db-4e4/providers/Microsoft.Network/loadBalancers/eaef669d-3e69-4d"; 12896Requests[1928].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12897Requests[1928].Request.Path = "/subscriptions/fb207000-acec-/resourceGroups/6c3d7f6a-f16b-4b4/providers/Microsoft.Network/localNetworkGateways/198dfeb0-6ed4-4b88-96a4"; 12900Requests[1929].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12901Requests[1929].Request.Path = "/subscriptions/8664588a-f134-/resourceGroups/26395c60-75e4-4ff/providers/Microsoft.Network/localNetworkGateways/66f5978f-a1e7-4ddd-90dc"; 12904Requests[1930].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12905Requests[1930].Request.Path = "/subscriptions/59c03305-c55f-/resourceGroups/56c43da5-6305-45c/providers/Microsoft.Network/localNetworkGateways/0a594a93-06a6-4734-876b"; 12908Requests[1931].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12909Requests[1931].Request.Path = "/subscriptions/2ca1257f-a807-/resourceGroups/65fa1988-fdd8-4fe/providers/Microsoft.Network/localNetworkGateways/12aeaeed-3540-465c-87a3"; 12912Requests[1932].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12913Requests[1932].Request.Path = "/subscriptions/0bf46c50-7e52-/resourceGroups/7cb79305-87dd-4fd/providers/Microsoft.Network/networkInterfaces/03afeecf-6c2e-404b-9"; 12916Requests[1933].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12917Requests[1933].Request.Path = "/subscriptions/c5899a05-980c-/resourceGroups/02baa16d-9580-455/providers/Microsoft.Network/networkInterfaces/703fb4df-d376-4d2d-a"; 12920Requests[1934].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12921Requests[1934].Request.Path = "/subscriptions/87c5d5a8-88a3-/resourceGroups/b2df96b4-07e7-492/providers/Microsoft.Network/networkInterfaces/e65a1d38-a3f2-4a8e-b"; 12924Requests[1935].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12925Requests[1935].Request.Path = "/subscriptions/277c241e-03ed-/resourceGroups/d106608b-b5b0-43e/providers/Microsoft.Network/networkInterfaces/efe86d07-4eb3-49c4-9"; 12928Requests[1936].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12929Requests[1936].Request.Path = "/subscriptions/e6a36b5c-7173-/resourceGroups/33a33288-3d90-417/providers/Microsoft.Network/networkSecurityGroups/8c829d6f-d348-4ff5-9eeb-"; 12932Requests[1937].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12933Requests[1937].Request.Path = "/subscriptions/b4bd071b-9249-/resourceGroups/f55873a9-8af9-474/providers/Microsoft.Network/networkSecurityGroups/7625aff2-40b5-4dd7-8a71-"; 12936Requests[1938].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12937Requests[1938].Request.Path = "/subscriptions/2eab8dae-96cd-/resourceGroups/b42500ed-27b1-4e4/providers/Microsoft.Network/networkSecurityGroups/39e44317-8890-4de0-b1ef-"; 12940Requests[1939].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12941Requests[1939].Request.Path = "/subscriptions/45860b87-0189-/resourceGroups/a2229704-e017-493/providers/Microsoft.Network/networkSecurityGroups/ef6ed973-3a12-4cd8-b6f6-"; 12944Requests[1940].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12945Requests[1940].Request.Path = "/subscriptions/1e4b70aa-7b2c-/resourceGroups/b699657f-becf-4e7/providers/Microsoft.Network/networkWatchers/b45e5775-4252-46d4"; 12948Requests[1941].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12949Requests[1941].Request.Path = "/subscriptions/d64d669e-23f6-/resourceGroups/c1b32251-d2b1-4e8/providers/Microsoft.Network/networkWatchers/5046140c-6ee5-4e12"; 12952Requests[1942].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12953Requests[1942].Request.Path = "/subscriptions/cc02c52d-5f96-/resourceGroups/1197ee2b-33fb-4df/providers/Microsoft.Network/networkWatchers/0053e47c-894a-42a0"; 12956Requests[1943].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12957Requests[1943].Request.Path = "/subscriptions/f8651eec-0878-/resourceGroups/fa5a82bd-8a2c-482/providers/Microsoft.Network/networkWatchers/2aa0d789-974f-4f1c"; 12960Requests[1944].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12961Requests[1944].Request.Path = "/subscriptions/3cf4b7a0-8c72-/resourceGroups/3ebe4702-5972-42d/providers/Microsoft.Network/publicIPAddresses/4249e982-7154-4c39-"; 12964Requests[1945].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12965Requests[1945].Request.Path = "/subscriptions/6f14ddf8-3743-/resourceGroups/a5693494-39ab-427/providers/Microsoft.Network/publicIPAddresses/c59bdbd7-8d46-4cbc-"; 12968Requests[1946].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12969Requests[1946].Request.Path = "/subscriptions/eaa20683-1069-/resourceGroups/c7089a52-dd6d-418/providers/Microsoft.Network/publicIPAddresses/90c0481e-d576-4b5a-"; 12972Requests[1947].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12973Requests[1947].Request.Path = "/subscriptions/8eacfb8c-fd45-/resourceGroups/34473f90-41ec-48e/providers/Microsoft.Network/publicIPAddresses/e86feaf3-030e-4ae9-"; 12976Requests[1948].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 12977Requests[1948].Request.Path = "/subscriptions/a13af044-603d-/resourceGroups/b14756e3-c086-475/providers/Microsoft.Network/routeFilters/a30da555-a9b5-4"; 12980Requests[1949].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12981Requests[1949].Request.Path = "/subscriptions/59e16c97-2251-/resourceGroups/5c069ce5-071c-458/providers/Microsoft.Network/routeFilters/ef1d2863-10cf-4"; 12984Requests[1950].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 12985Requests[1950].Request.Path = "/subscriptions/3813164c-2384-/resourceGroups/4991b272-587b-4a8/providers/Microsoft.Network/routeFilters/4b4981c4-505b-4"; 12988Requests[1951].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12989Requests[1951].Request.Path = "/subscriptions/54d25dcf-ae36-/resourceGroups/e153c7ec-ee7d-465/providers/Microsoft.Network/routeFilters/def4cf83-cbf6-4"; 12992Requests[1952].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 12993Requests[1952].Request.Path = "/subscriptions/0655a9b6-5c53-/resourceGroups/820b50bc-4952-45a/providers/Microsoft.Network/routeTables/ac5e698f-ee3c-"; 12996Requests[1953].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 12997Requests[1953].Request.Path = "/subscriptions/7496f1b5-ac2a-/resourceGroups/544a843a-8439-43c/providers/Microsoft.Network/routeTables/b704c5c1-acfd-"; 13000Requests[1954].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13001Requests[1954].Request.Path = "/subscriptions/3b3f5bfd-f45e-/resourceGroups/0e9c6208-8916-465/providers/Microsoft.Network/routeTables/5f10e748-8019-"; 13004Requests[1955].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13005Requests[1955].Request.Path = "/subscriptions/4b700c2d-dd24-/resourceGroups/7e464650-acf3-4e1/providers/Microsoft.Network/routeTables/64e3b3f0-b2d0-"; 13008Requests[1956].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13009Requests[1956].Request.Path = "/subscriptions/b8e9def3-e1cf-/resourceGroups/b9cadab1-ab2b-41e/providers/Microsoft.Network/trafficmanagerprofiles/329fc071-1b"; 13012Requests[1957].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13013Requests[1957].Request.Path = "/subscriptions/a92d1906-b696-/resourceGroups/2b67be3f-327a-408/providers/Microsoft.Network/trafficmanagerprofiles/a64a91c5-28"; 13016Requests[1958].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13017Requests[1958].Request.Path = "/subscriptions/eb8d8828-efce-/resourceGroups/650b5649-8464-405/providers/Microsoft.Network/trafficmanagerprofiles/93b73c84-58"; 13020Requests[1959].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13021Requests[1959].Request.Path = "/subscriptions/4cb67681-48db-/resourceGroups/26bc5256-e9f1-42d/providers/Microsoft.Network/trafficmanagerprofiles/7a508b53-9a"; 13024Requests[1960].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13025Requests[1960].Request.Path = "/subscriptions/6383d55f-9922-/resourceGroups/e3e352f4-5bc7-4e1/providers/Microsoft.Network/virtualNetworkGateways/20bc64ed-42de-4eea-9c59-1"; 13028Requests[1961].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13029Requests[1961].Request.Path = "/subscriptions/df16d9c9-09e3-/resourceGroups/806d012e-7ba2-46c/providers/Microsoft.Network/virtualNetworkGateways/cf77cae6-2e64-49fa-b1ba-a"; 13032Requests[1962].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13033Requests[1962].Request.Path = "/subscriptions/49b4ddf4-b491-/resourceGroups/bb1efbf6-23dc-420/providers/Microsoft.Network/virtualNetworkGateways/b54270e2-8957-4cf7-8065-e"; 13036Requests[1963].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13037Requests[1963].Request.Path = "/subscriptions/be51c0db-a5e6-/resourceGroups/a6f989de-3e43-47a/providers/Microsoft.Network/virtualNetworkGateways/cbbcfc12-ddf3-4f7e-a85c-2"; 13040Requests[1964].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13041Requests[1964].Request.Path = "/subscriptions/f6d4e972-382d-/resourceGroups/bdc5ded2-a3d5-4fc/providers/Microsoft.Network/virtualNetworks/611f0284-cd3e-40fb"; 13044Requests[1965].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13045Requests[1965].Request.Path = "/subscriptions/f39d3d84-9725-/resourceGroups/949b28e8-5824-4d1/providers/Microsoft.Network/virtualNetworks/48ab6786-b39e-4e4b"; 13048Requests[1966].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13049Requests[1966].Request.Path = "/subscriptions/f9325519-e1c7-/resourceGroups/d07b0901-953d-43e/providers/Microsoft.Network/virtualNetworks/c9c9fbb8-6a0f-484e"; 13052Requests[1967].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13053Requests[1967].Request.Path = "/subscriptions/5f1d0b6a-115a-/resourceGroups/473ddb3e-f447-462/providers/Microsoft.Network/virtualNetworks/5cacd8a8-a1d2-4816"; 13056Requests[1968].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13057Requests[1968].Request.Path = "/subscriptions/409949be-e5bd-/resourceGroups/736c28fc-347a-4bf/providers/Microsoft.NotificationHubs/namespaces/79a0e290-6d33"; 13060Requests[1969].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13061Requests[1969].Request.Path = "/subscriptions/8f22350f-7fb4-/resourceGroups/28736aad-fa13-439/providers/Microsoft.NotificationHubs/namespaces/52991758-7431"; 13064Requests[1970].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13065Requests[1970].Request.Path = "/subscriptions/fd8b3d2b-919b-/resourceGroups/275f8df2-34ec-4d5/providers/Microsoft.NotificationHubs/namespaces/819116a3-7c08"; 13068Requests[1971].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13069Requests[1971].Request.Path = "/subscriptions/78f6fc1f-120b-/resourceGroups/4b7b4d7d-c53c-468/providers/Microsoft.NotificationHubs/namespaces/d66c3573-ff07"; 13072Requests[1972].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13073Requests[1972].Request.Path = "/subscriptions/6b2a5b81-d5c4-/resourcegroups/f0e89bf5-6799-443/providers/Microsoft.OperationalInsights/workspaces/b6d4e978-fa73"; 13076Requests[1973].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13077Requests[1973].Request.Path = "/subscriptions/aa1de0a7-841b-/resourcegroups/6f75c0e0-c442-4b3/providers/Microsoft.OperationalInsights/workspaces/6ef14459-a504"; 13080Requests[1974].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13081Requests[1974].Request.Path = "/subscriptions/2e1f1968-dc10-/resourcegroups/bc353261-4e43-488/providers/Microsoft.OperationalInsights/workspaces/59e64e40-0b1d"; 13084Requests[1975].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13085Requests[1975].Request.Path = "/subscriptions/6249faa8-6d9b-/resourcegroups/19f447b8-3a9f-4d2/providers/Microsoft.OperationalInsights/workspaces/f04638cc-bac6"; 13088Requests[1976].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13089Requests[1976].Request.Path = "/subscriptions/d93133e3-4b20-/resourcegroups/c2fc7b0a-95f8-4e8/providers/Microsoft.OperationsManagement/ManagementConfigurations/2ff1da94-21ec-4bdb-ac03-5ba"; 13092Requests[1977].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13093Requests[1977].Request.Path = "/subscriptions/ea13cd7d-41e8-/resourcegroups/79dd368e-544b-4e2/providers/Microsoft.OperationsManagement/ManagementConfigurations/f7de18c9-b7d6-402d-9dff-193"; 13096Requests[1978].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13097Requests[1978].Request.Path = "/subscriptions/60a89460-3347-/resourcegroups/a459ab9e-1f1d-474/providers/Microsoft.OperationsManagement/ManagementConfigurations/ca6c5b25-c319-442f-84ea-183"; 13100Requests[1979].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13101Requests[1979].Request.Path = "/subscriptions/0e39c320-32dc-/resourcegroups/1e70f84c-6cb5-4b0/providers/Microsoft.OperationsManagement/solutions/806df256-1d1"; 13104Requests[1980].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13105Requests[1980].Request.Path = "/subscriptions/fa922ff2-a268-/resourcegroups/c4533909-0643-469/providers/Microsoft.OperationsManagement/solutions/ff26e9a6-e20"; 13108Requests[1981].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13109Requests[1981].Request.Path = "/subscriptions/8dff6690-e0a2-/resourcegroups/d8a38f3f-3cfd-48c/providers/Microsoft.OperationsManagement/solutions/531ac004-da3"; 13112Requests[1982].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13113Requests[1982].Request.Path = "/subscriptions/197735d5-a90b-/resourceGroups/d1d5b132-06a7-4e9/providers/Microsoft.PowerBI/workspaceCollections/2d5d7902-e7b6-4b8d-9b54"; 13116Requests[1983].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13117Requests[1983].Request.Path = "/subscriptions/bfd4b246-3a98-/resourceGroups/b55f164c-49cf-47f/providers/Microsoft.PowerBI/workspaceCollections/fd2c44e0-d773-4429-aba7"; 13120Requests[1984].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13121Requests[1984].Request.Path = "/subscriptions/8b65e4f2-c31d-/resourceGroups/d86bfc96-2811-433/providers/Microsoft.PowerBI/workspaceCollections/b4655f32-03af-4107-b7e7"; 13124Requests[1985].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13125Requests[1985].Request.Path = "/subscriptions/6857ab20-e29b-/resourceGroups/3d1a2d33-0288-46f/providers/Microsoft.PowerBI/workspaceCollections/7166e6fc-a085-4313-8867"; 13128Requests[1986].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13129Requests[1986].Request.Path = "/subscriptions/6e4cf06b-09b9-/resourceGroups/d82433fc-2a56-42c/providers/Microsoft.PowerBIDedicated/capacities/19240a18-29eb-4a94-8a"; 13132Requests[1987].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13133Requests[1987].Request.Path = "/subscriptions/ddf53898-3f43-/resourceGroups/0c8dd3f8-7b18-489/providers/Microsoft.PowerBIDedicated/capacities/a371a177-fad6-4d14-b7"; 13136Requests[1988].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13137Requests[1988].Request.Path = "/subscriptions/902fc80c-6d36-/resourceGroups/db3770db-c043-496/providers/Microsoft.PowerBIDedicated/capacities/82d71d6a-59e1-4256-84"; 13140Requests[1989].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13141Requests[1989].Request.Path = "/subscriptions/3944d884-f353-/resourceGroups/67e0090b-ddb6-4e6/providers/Microsoft.PowerBIDedicated/capacities/886b6e0e-4085-4e7e-b6"; 13144Requests[1990].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13145Requests[1990].Request.Path = "/subscriptions/d51d208c-fa82-/resourceGroups/0c568d88-c17e-4a5/providers/Microsoft.RecoveryServices/vaults/9cc4e1fd-"; 13148Requests[1991].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13149Requests[1991].Request.Path = "/subscriptions/1d531928-ece6-/resourceGroups/5a6a5397-3853-4d1/providers/Microsoft.RecoveryServices/vaults/d48bc77d-"; 13152Requests[1992].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13153Requests[1992].Request.Path = "/subscriptions/c47bc38a-ce44-/resourceGroups/a849e892-e8b6-4f9/providers/Microsoft.RecoveryServices/vaults/5aad4c22-"; 13156Requests[1993].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13157Requests[1993].Request.Path = "/subscriptions/32045718-7d4f-/resourceGroups/6e0b7207-e34b-488/providers/Microsoft.RecoveryServices/vaults/286b4d5b-"; 13160Requests[1994].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13161Requests[1994].Request.Path = "/subscriptions/ba166f56-6561-/resourceGroups/656777f6-9295-499/providers/Microsoft.Relay/namespaces/d9bf5af8-a89d"; 13164Requests[1995].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13165Requests[1995].Request.Path = "/subscriptions/23149fe1-344b-/resourceGroups/b8c49b35-0eb9-46d/providers/Microsoft.Relay/namespaces/071d9cba-ea8e"; 13168Requests[1996].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13169Requests[1996].Request.Path = "/subscriptions/94437b82-2e1e-/resourceGroups/0e190bc1-c343-4f2/providers/Microsoft.Relay/namespaces/0eee9116-c106"; 13172Requests[1997].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13173Requests[1997].Request.Path = "/subscriptions/0dbf31d4-fad7-/resourceGroups/e9c182a3-dcaf-424/providers/Microsoft.Relay/namespaces/2ff06923-ae21"; 13176Requests[1998].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13177Requests[1998].Request.Path = "/subscriptions/6511f3a8-266f-/resourcegroups/a0141aac-07a4-49b/providers/Microsoft.Resources/deployments/af6fc6f2-77a4-"; 13180Requests[1999].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13181Requests[1999].Request.Path = "/subscriptions/1497feab-0582-/resourcegroups/e7a89360-8e35-422/providers/Microsoft.Resources/deployments/a2a9b8bf-401e-"; 13184Requests[2000].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 13185Requests[2000].Request.Path = "/subscriptions/5f01bfda-796a-/resourcegroups/4b7a1646-0756-411/providers/Microsoft.Resources/deployments/4d81ba21-a9d7-"; 13188Requests[2001].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13189Requests[2001].Request.Path = "/subscriptions/5f7065b1-3aab-/resourcegroups/c92c1726-255f-442/providers/Microsoft.Resources/deployments/67bfd9e9-b771-"; 13192Requests[2002].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13193Requests[2002].Request.Path = "/subscriptions/4ab61edd-cd1f-/resourceGroups/9abba5c9-835f-463/providers/Microsoft.Scheduler/jobCollections/ffc888da-4b76-47e"; 13196Requests[2003].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13197Requests[2003].Request.Path = "/subscriptions/1fd2cfd3-c0d4-/resourceGroups/af101566-a591-43a/providers/Microsoft.Scheduler/jobCollections/fb0c0454-e049-472"; 13200Requests[2004].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13201Requests[2004].Request.Path = "/subscriptions/8de0a675-04f5-/resourceGroups/212d6c96-2576-4a7/providers/Microsoft.Scheduler/jobCollections/53ce2ebd-55bc-406"; 13204Requests[2005].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13205Requests[2005].Request.Path = "/subscriptions/ed39843b-3e26-/resourceGroups/b522093e-6017-438/providers/Microsoft.Scheduler/jobCollections/3d9d82c9-5fc2-478"; 13208Requests[2006].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13209Requests[2006].Request.Path = "/subscriptions/b44bbcf9-ba2a-/resourceGroups/d307694f-c2ed-4ab/providers/Microsoft.Search/searchServices/13868f75-e25a-47f"; 13212Requests[2007].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13213Requests[2007].Request.Path = "/subscriptions/b3560027-06ba-/resourceGroups/958ebcbb-f66d-447/providers/Microsoft.Search/searchServices/d1a6dcd2-196a-43d"; 13216Requests[2008].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13217Requests[2008].Request.Path = "/subscriptions/4ffe6292-e13e-/resourceGroups/9c8df437-2d3f-40b/providers/Microsoft.Search/searchServices/6fa17de0-1bdf-4d9"; 13220Requests[2009].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13221Requests[2009].Request.Path = "/subscriptions/2b00a308-e8e0-/resourceGroups/31bc06c9-7bcb-443/providers/Microsoft.Search/searchServices/da00c837-8f37-443"; 13224Requests[2010].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13225Requests[2010].Request.Path = "/subscriptions/242a4f3e-24f3-/resourceGroups/7d5b1265-0af9-418/providers/Microsoft.Security/pricings/6fc86d3f-a3"; 13228Requests[2011].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13229Requests[2011].Request.Path = "/subscriptions/79019eac-7496-/resourceGroups/8e1e0c40-cab4-493/providers/Microsoft.Security/pricings/6a19ee8b-63"; 13232Requests[2012].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13233Requests[2012].Request.Path = "/subscriptions/c437150a-1f85-/resourceGroups/a413a5c5-a8c7-46a/providers/Microsoft.Security/securityContacts/37da8ff8-14cd-4cc2-"; 13236Requests[2013].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13237Requests[2013].Request.Path = "/subscriptions/863afbda-f6a7-/resourceGroups/3c65c1ea-2e28-4b0/providers/Microsoft.Security/securityContacts/0569ec5b-9223-4a61-"; 13240Requests[2014].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13241Requests[2014].Request.Path = "/subscriptions/c23db0e6-dfa2-/resourceGroups/b761a9e8-6f57-4ac/providers/Microsoft.Security/securityContacts/bf49f0b2-9614-421b-"; 13244Requests[2015].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13245Requests[2015].Request.Path = "/subscriptions/cc80f623-578c-/resourceGroups/c948e54c-46d3-4fa/providers/Microsoft.Security/securityContacts/b5d2064e-239e-4af0-"; 13248Requests[2016].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13249Requests[2016].Request.Path = "/subscriptions/9a40fd2a-0712-/resourceGroups/995099da-8ae6-4db/providers/Microsoft.Security/workspaceSettings/a2b70179-a09d-4971-b"; 13252Requests[2017].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13253Requests[2017].Request.Path = "/subscriptions/39b45107-95eb-/resourceGroups/67cad791-b953-46b/providers/Microsoft.Security/workspaceSettings/60cf117d-e7f4-4c62-a"; 13256Requests[2018].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13257Requests[2018].Request.Path = "/subscriptions/d9c479c1-c6b0-/resourceGroups/94c9c7f5-8401-4af/providers/Microsoft.Security/workspaceSettings/6b3508c4-cdd1-4878-8"; 13260Requests[2019].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13261Requests[2019].Request.Path = "/subscriptions/c18da117-d154-/resourceGroups/f30142a3-325c-4bb/providers/Microsoft.Security/workspaceSettings/b057a8da-e2ef-41f6-b"; 13264Requests[2020].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13265Requests[2020].Request.Path = "/subscriptions/4b2f09ea-345c-/resourceGroups/76349785-11ea-490/providers/Microsoft.ServerManagement/gateways/a00b7c6a-b4"; 13268Requests[2021].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13269Requests[2021].Request.Path = "/subscriptions/879885c4-4ea7-/resourceGroups/dfad94e7-b309-4e8/providers/Microsoft.ServerManagement/gateways/ee22ea2a-3e"; 13272Requests[2022].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13273Requests[2022].Request.Path = "/subscriptions/38e0c221-d3a7-/resourceGroups/81f61ced-6885-424/providers/Microsoft.ServerManagement/gateways/79485f12-78"; 13276Requests[2023].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13277Requests[2023].Request.Path = "/subscriptions/25e3d007-5220-/resourceGroups/c2d4b3c5-c558-49a/providers/Microsoft.ServerManagement/gateways/007a4707-f7"; 13280Requests[2024].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13281Requests[2024].Request.Path = "/subscriptions/ffff3277-b938-/resourceGroups/06bf28b2-5e5e-4b1/providers/Microsoft.ServerManagement/nodes/f8056437"; 13284Requests[2025].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13285Requests[2025].Request.Path = "/subscriptions/0697e2f6-5852-/resourceGroups/5fa5104a-3262-4f7/providers/Microsoft.ServerManagement/nodes/3169ee75"; 13288Requests[2026].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13289Requests[2026].Request.Path = "/subscriptions/4ffe06df-2276-/resourceGroups/127a4974-9c90-4b0/providers/Microsoft.ServerManagement/nodes/2cac9df8"; 13292Requests[2027].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13293Requests[2027].Request.Path = "/subscriptions/3bad3658-e666-/resourceGroups/ddb1b744-4f85-43a/providers/Microsoft.ServerManagement/nodes/963869ad"; 13296Requests[2028].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13297Requests[2028].Request.Path = "/subscriptions/b0dec3dc-61af-/resourceGroups/c5a73f9e-3293-4d2/providers/Microsoft.ServiceBus/namespaces/42655d0d-ffd5"; 13300Requests[2029].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13301Requests[2029].Request.Path = "/subscriptions/67dbc166-992c-/resourceGroups/d5f7b27b-4163-437/providers/Microsoft.ServiceBus/namespaces/9391ab43-d784"; 13304Requests[2030].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13305Requests[2030].Request.Path = "/subscriptions/cba25675-10a0-/resourceGroups/3ca280d6-17b4-4c9/providers/Microsoft.ServiceBus/namespaces/65fc24cb-614b"; 13308Requests[2031].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13309Requests[2031].Request.Path = "/subscriptions/6e5d2bcd-a04b-/resourceGroups/dabbc2bc-c68c-4ba/providers/Microsoft.ServiceBus/namespaces/ea1bca61-d10e"; 13312Requests[2032].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13313Requests[2032].Request.Path = "/subscriptions/d06c24b7-42c3-/resourceGroups/6fb6cfc2-a6de-4c3/providers/Microsoft.ServiceFabric/clusters/bba6c2d9-10"; 13316Requests[2033].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13317Requests[2033].Request.Path = "/subscriptions/cf937a52-5c5a-/resourceGroups/0cb906b4-3557-4be/providers/Microsoft.ServiceFabric/clusters/dadf8bbb-7c"; 13320Requests[2034].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13321Requests[2034].Request.Path = "/subscriptions/1730cffe-3a11-/resourceGroups/f37aa272-2a84-4b9/providers/Microsoft.ServiceFabric/clusters/f2d31038-01"; 13324Requests[2035].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13325Requests[2035].Request.Path = "/subscriptions/44922943-a8be-/resourceGroups/38aa2791-ccde-42e/providers/Microsoft.ServiceFabric/clusters/43770a60-5e"; 13328Requests[2036].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13329Requests[2036].Request.Path = "/subscriptions/1364b1e5-6f8d-/resourceGroups/834551d8-2484-47a/providers/Microsoft.SignalRService/SignalR/c5669837-100"; 13332Requests[2037].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13333Requests[2037].Request.Path = "/subscriptions/d9016470-9636-/resourceGroups/3302f7bc-b81c-428/providers/Microsoft.SignalRService/SignalR/2dd1daf6-423"; 13336Requests[2038].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13337Requests[2038].Request.Path = "/subscriptions/0b86a429-6a9d-/resourceGroups/9c491a06-0c64-485/providers/Microsoft.SignalRService/SignalR/46e1a575-f03"; 13340Requests[2039].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13341Requests[2039].Request.Path = "/subscriptions/41b3f639-efac-/resourceGroups/c5cd53d3-03bd-4da/providers/Microsoft.SignalRService/SignalR/e9087412-d29"; 13344Requests[2040].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13345Requests[2040].Request.Path = "/subscriptions/4c45aecc-33d1-/resourceGroups/33b1a8d4-57e8-4c4/providers/Microsoft.Solutions/applianceDefinitions/b4c795d6-7e33-431d-b7f6"; 13348Requests[2041].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13349Requests[2041].Request.Path = "/subscriptions/4b121f1f-ca72-/resourceGroups/2dc01bc7-e21c-4a1/providers/Microsoft.Solutions/applianceDefinitions/3a001df0-0568-4a90-9a54"; 13352Requests[2042].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13353Requests[2042].Request.Path = "/subscriptions/83058176-11ab-/resourceGroups/da33279a-468b-4f2/providers/Microsoft.Solutions/applianceDefinitions/7761610c-246d-45e2-bb45"; 13356Requests[2043].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13357Requests[2043].Request.Path = "/subscriptions/0e14e1d6-957c-/resourceGroups/eefad31c-c015-4d1/providers/Microsoft.Solutions/appliances/dbd007ee-97fe"; 13360Requests[2044].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13361Requests[2044].Request.Path = "/subscriptions/fca003da-e79e-/resourceGroups/2335edca-243d-4e1/providers/Microsoft.Solutions/appliances/09c4609e-a939"; 13364Requests[2045].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13365Requests[2045].Request.Path = "/subscriptions/e2af7d07-d2d0-/resourceGroups/75e61821-4203-42a/providers/Microsoft.Solutions/appliances/89a08c2b-2ecd"; 13368Requests[2046].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13369Requests[2046].Request.Path = "/subscriptions/96a83b21-290a-/resourceGroups/05967149-0cae-43d/providers/Microsoft.Solutions/appliances/fab35892-683b"; 13372Requests[2047].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13373Requests[2047].Request.Path = "/subscriptions/ad1e5496-046a-/resourceGroups/be1587c4-aded-4ed/providers/Microsoft.Solutions/applicationDefinitions/f720f2f0-9207-42bb-980d-0"; 13376Requests[2048].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13377Requests[2048].Request.Path = "/subscriptions/31f91337-25a2-/resourceGroups/21246306-e66d-47e/providers/Microsoft.Solutions/applicationDefinitions/020c466d-2382-4557-93c2-4"; 13380Requests[2049].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13381Requests[2049].Request.Path = "/subscriptions/54c77dfa-f835-/resourceGroups/b9352952-bd42-49e/providers/Microsoft.Solutions/applicationDefinitions/6c7d2a06-8c98-4c7b-bfa2-0"; 13384Requests[2050].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13385Requests[2050].Request.Path = "/subscriptions/05bd42ce-2c33-/resourceGroups/27a1399a-d735-4ed/providers/Microsoft.Solutions/applications/a156d465-ae0a-4"; 13388Requests[2051].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13389Requests[2051].Request.Path = "/subscriptions/1614ba8a-40d3-/resourceGroups/79ef1486-9b2d-479/providers/Microsoft.Solutions/applications/83159f61-306f-4"; 13392Requests[2052].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13393Requests[2052].Request.Path = "/subscriptions/79c2c79a-c0dd-/resourceGroups/11ebd1b6-f9d8-46f/providers/Microsoft.Solutions/applications/9ca84424-1271-4"; 13396Requests[2053].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13397Requests[2053].Request.Path = "/subscriptions/a722d493-f2c5-/resourceGroups/2cd9bb3b-829c-4de/providers/Microsoft.Solutions/applications/731cb629-26e4-4"; 13400Requests[2054].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13401Requests[2054].Request.Path = "/subscriptions/7a8af202-5bca-/resourceGroups/32025c0d-0ee7-49c/providers/Microsoft.Sql/managedInstances/a565453f-04f4-4b11-"; 13404Requests[2055].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13405Requests[2055].Request.Path = "/subscriptions/156ac608-7ea6-/resourceGroups/414ac0aa-b5f2-4dc/providers/Microsoft.Sql/managedInstances/9c29c600-bd2a-47e8-"; 13408Requests[2056].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13409Requests[2056].Request.Path = "/subscriptions/a302adfc-30c5-/resourceGroups/aad4fdcf-196e-4f0/providers/Microsoft.Sql/managedInstances/a340cd74-9dbc-46f3-"; 13412Requests[2057].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13413Requests[2057].Request.Path = "/subscriptions/37b784bd-3655-/resourceGroups/34c1c90a-aee6-4c4/providers/Microsoft.Sql/managedInstances/48ae47b8-1baa-40f4-"; 13416Requests[2058].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13417Requests[2058].Request.Path = "/subscriptions/a8d96c88-8bcd-/resourceGroups/3ce7f5ee-7d3b-4d8/providers/Microsoft.Sql/servers/e10f4f93-2"; 13420Requests[2059].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13421Requests[2059].Request.Path = "/subscriptions/a63c0dcc-5a6a-/resourceGroups/84633148-388b-499/providers/Microsoft.Sql/servers/6e81e60f-e"; 13424Requests[2060].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13425Requests[2060].Request.Path = "/subscriptions/67bda5b4-2f87-/resourceGroups/43b5fd40-8a57-4ba/providers/Microsoft.Sql/servers/80ce7297-4"; 13428Requests[2061].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13429Requests[2061].Request.Path = "/subscriptions/f563a202-65d5-/resourceGroups/62406687-a1c8-48f/providers/Microsoft.Sql/servers/163bf16a-8"; 13432Requests[2062].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13433Requests[2062].Request.Path = "/subscriptions/b7dd3f11-21ef-/resourcegroups/e679a48d-b428-403/providers/Microsoft.Storage.Admin/farms/63e860"; 13436Requests[2063].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13437Requests[2063].Request.Path = "/subscriptions/494eacd0-2418-/resourcegroups/63784d16-100c-437/providers/Microsoft.Storage.Admin/farms/34f8fb"; 13440Requests[2064].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13441Requests[2064].Request.Path = "/subscriptions/32af1e23-84a0-/resourcegroups/9ee2f5a9-6a04-49c/providers/Microsoft.Storage.Admin/farms/c4230e"; 13444Requests[2065].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13445Requests[2065].Request.Path = "/subscriptions/ebabc381-bb7d-/resourceGroups/946b9e72-3409-488/providers/Microsoft.Storage/storageAccounts/13d7cbad-e2"; 13448Requests[2066].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13449Requests[2066].Request.Path = "/subscriptions/18dd0552-be1d-/resourceGroups/a9e757db-4c11-4c5/providers/Microsoft.Storage/storageAccounts/7b10549b-f4"; 13452Requests[2067].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13453Requests[2067].Request.Path = "/subscriptions/baaeea4b-9d24-/resourceGroups/49f86f22-981a-47c/providers/Microsoft.Storage/storageAccounts/2725ae38-0b"; 13456Requests[2068].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13457Requests[2068].Request.Path = "/subscriptions/df0cdddf-5388-/resourceGroups/7f04988d-abb9-44b/providers/Microsoft.Storage/storageAccounts/18ec846d-03"; 13460Requests[2069].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13461Requests[2069].Request.Path = "/subscriptions/ae3eca24-4634-/resourceGroups/c5b084cf-f097-479/providers/Microsoft.StorSimple/managers/86f47ea3-a8"; 13464Requests[2070].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13465Requests[2070].Request.Path = "/subscriptions/7d4230cc-83ac-/resourceGroups/3748cff0-c6cd-4a1/providers/Microsoft.StorSimple/managers/822c6131-70"; 13468Requests[2071].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13469Requests[2071].Request.Path = "/subscriptions/0f9e4375-8f2d-/resourceGroups/2f7f2bfb-2c03-4db/providers/Microsoft.StorSimple/managers/07b017d8-fe"; 13472Requests[2072].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13473Requests[2072].Request.Path = "/subscriptions/0a70a95a-7f22-/resourceGroups/c8317499-3e95-437/providers/Microsoft.StorSimple/managers/e6191ed7-4a"; 13476Requests[2073].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13477Requests[2073].Request.Path = "/subscriptions/538a3106-660b-/resourcegroups/25cd3385-ef20-41b/providers/Microsoft.StreamAnalytics/streamingjobs/96518d4"; 13480Requests[2074].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13481Requests[2074].Request.Path = "/subscriptions/34956032-44cb-/resourcegroups/470c32b1-e43c-4ba/providers/Microsoft.StreamAnalytics/streamingjobs/8ef7f19"; 13484Requests[2075].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13485Requests[2075].Request.Path = "/subscriptions/6eaff587-960c-/resourcegroups/be8622f9-d625-471/providers/Microsoft.StreamAnalytics/streamingjobs/7b5624c"; 13488Requests[2076].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13489Requests[2076].Request.Path = "/subscriptions/ddb5cffe-a391-/resourcegroups/c2174ef8-cd8b-442/providers/Microsoft.StreamAnalytics/streamingjobs/0549041"; 13492Requests[2077].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13493Requests[2077].Request.Path = "/subscriptions/c95d57b4-090c-/resourcegroups/c004a371-4a34-41e/providers/Microsoft.Subscriptions.Admin/directoryTenants/e4b2dd"; 13496Requests[2078].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13497Requests[2078].Request.Path = "/subscriptions/3280388a-453a-/resourcegroups/a6c32482-9d95-464/providers/Microsoft.Subscriptions.Admin/directoryTenants/d8b3c4"; 13500Requests[2079].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13501Requests[2079].Request.Path = "/subscriptions/ed82d120-3aed-/resourcegroups/85062cfe-e4fb-410/providers/Microsoft.Subscriptions.Admin/directoryTenants/17313c"; 13504Requests[2080].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13505Requests[2080].Request.Path = "/subscriptions/3a505cc5-e48f-/resourcegroups/3d64ca76-9a36-466/providers/Microsoft.Subscriptions.Admin/offers/40b66"; 13508Requests[2081].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13509Requests[2081].Request.Path = "/subscriptions/74281e28-f82e-/resourcegroups/2061a3bc-e2f9-42b/providers/Microsoft.Subscriptions.Admin/offers/f21ba"; 13512Requests[2082].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13513Requests[2082].Request.Path = "/subscriptions/a890a721-fb35-/resourcegroups/6848f337-21db-4f5/providers/Microsoft.Subscriptions.Admin/offers/de9f7"; 13516Requests[2083].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13517Requests[2083].Request.Path = "/subscriptions/5f33a9cd-e7c6-/resourcegroups/26e29525-aac1-4ae/providers/Microsoft.Subscriptions.Admin/plans/26125"; 13520Requests[2084].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13521Requests[2084].Request.Path = "/subscriptions/79a27865-b6fa-/resourcegroups/0d19d87c-0016-4d7/providers/Microsoft.Subscriptions.Admin/plans/a8add"; 13524Requests[2085].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13525Requests[2085].Request.Path = "/subscriptions/ef369630-e308-/resourcegroups/12cdcdf1-65af-4d1/providers/Microsoft.Subscriptions.Admin/plans/04e85"; 13528Requests[2086].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13529Requests[2086].Request.Path = "/subscriptions/452a6792-dabe-/resourceGroups/f265bb8e-73c1-41b/providers/Microsoft.TimeSeriesInsights/environments/7db98a1a-d0ac-4"; 13532Requests[2087].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13533Requests[2087].Request.Path = "/subscriptions/1ec13664-07ec-/resourceGroups/610e69a6-6c5f-477/providers/Microsoft.TimeSeriesInsights/environments/06caecf4-ecc2-4"; 13536Requests[2088].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13537Requests[2088].Request.Path = "/subscriptions/394044d3-4901-/resourceGroups/630c0ffb-4b8d-436/providers/Microsoft.TimeSeriesInsights/environments/0b687740-f687-4"; 13540Requests[2089].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13541Requests[2089].Request.Path = "/subscriptions/f14edb5d-138e-/resourceGroups/df89dfd1-b545-448/providers/Microsoft.TimeSeriesInsights/environments/9959f1df-8c8d-4"; 13544Requests[2090].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13545Requests[2090].Request.Path = "/subscriptions/7a2cafe7-db80-/resourcegroups/f48aa181-db38-421/providers/Microsoft.Update.Admin/updateLocations/63241c8f-82e8-"; 13548Requests[2091].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13549Requests[2091].Request.Path = "/subscriptions/f2ecc803-0695-/resourcegroups/5dd7bfe7-f6ca-47e/providers/microsoft.visualstudio/account/24ceab5d-a94"; 13552Requests[2092].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13553Requests[2092].Request.Path = "/subscriptions/acda2408-3669-/resourcegroups/5c424abd-b0bf-4a9/providers/microsoft.visualstudio/account/d3db6f90-fc5"; 13556Requests[2093].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13557Requests[2093].Request.Path = "/subscriptions/36111485-bc7a-/resourcegroups/3d70ce0a-0f18-4d0/providers/microsoft.visualstudio/account/4c84e41a-319"; 13560Requests[2094].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13561Requests[2094].Request.Path = "/subscriptions/282c27f4-2dbd-/resourceGroups/de60ab31-5f27-483/providers/Microsoft.Web/certificates/39c0d"; 13564Requests[2095].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13565Requests[2095].Request.Path = "/subscriptions/70946b2d-cf82-/resourceGroups/34e7fdfd-ba3b-4be/providers/Microsoft.Web/certificates/ee5d7"; 13568Requests[2096].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13569Requests[2096].Request.Path = "/subscriptions/4a34323a-163e-/resourceGroups/4754f8e6-6ed1-47f/providers/Microsoft.Web/certificates/0d490"; 13572Requests[2097].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13573Requests[2097].Request.Path = "/subscriptions/4a12a56f-d664-/resourceGroups/f11985de-bd6b-4d4/providers/Microsoft.Web/certificates/ce5b4"; 13576Requests[2098].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13577Requests[2098].Request.Path = "/subscriptions/cfefd79e-3c65-/resourceGroups/3e3077b3-0eaf-413/providers/Microsoft.Web/classicMobileServices/2513e"; 13580Requests[2099].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13581Requests[2099].Request.Path = "/subscriptions/20e1b9cb-bf32-/resourceGroups/388786fe-96fd-488/providers/Microsoft.Web/classicMobileServices/81015"; 13584Requests[2100].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13585Requests[2100].Request.Path = "/subscriptions/61c889c3-0388-/resourceGroups/eb0f32b9-d89c-423/providers/Microsoft.Web/connectionGateways/6e40bd3f-02bb-4420-93"; 13588Requests[2101].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13589Requests[2101].Request.Path = "/subscriptions/9880b942-7c49-/resourceGroups/956bcd5f-3983-45f/providers/Microsoft.Web/connectionGateways/e91a2b73-82f4-4363-a5"; 13592Requests[2102].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13593Requests[2102].Request.Path = "/subscriptions/c4e7642b-8521-/resourceGroups/fe4c6a56-de57-436/providers/Microsoft.Web/connectionGateways/0f354ea4-a673-4da1-a5"; 13596Requests[2103].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13597Requests[2103].Request.Path = "/subscriptions/423fd8f4-62cc-/resourceGroups/7b4d5b81-f255-406/providers/Microsoft.Web/connectionGateways/79a41ec5-4f3f-4771-b5"; 13600Requests[2104].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13601Requests[2104].Request.Path = "/subscriptions/61d5e19e-c9fb-/resourceGroups/312773e7-d9c6-4b9/providers/Microsoft.Web/connections/aad4751d-15ca-"; 13604Requests[2105].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13605Requests[2105].Request.Path = "/subscriptions/6ef70cb7-7b6b-/resourceGroups/b56a675e-fa58-469/providers/Microsoft.Web/connections/3aa0b6cf-b508-"; 13608Requests[2106].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13609Requests[2106].Request.Path = "/subscriptions/73184159-1a6c-/resourceGroups/799783b2-e40e-4fd/providers/Microsoft.Web/connections/e5b4151b-6bc3-"; 13612Requests[2107].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13613Requests[2107].Request.Path = "/subscriptions/02d3cf8f-9d51-/resourceGroups/0c8edcbf-efb6-499/providers/Microsoft.Web/connections/f08c1df1-3ea2-"; 13616Requests[2108].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13617Requests[2108].Request.Path = "/subscriptions/df71b071-d9c2-/resourceGroups/9127343c-a8aa-48d/providers/Microsoft.Web/csrs/61962"; 13620Requests[2109].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13621Requests[2109].Request.Path = "/subscriptions/32f57d57-15e1-/resourceGroups/ca03c2ec-cbd7-412/providers/Microsoft.Web/csrs/5d3e4"; 13624Requests[2110].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13625Requests[2110].Request.Path = "/subscriptions/e0f5ff82-2e57-/resourceGroups/f88277a8-b3b8-4d6/providers/Microsoft.Web/csrs/ae7e6"; 13628Requests[2111].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13629Requests[2111].Request.Path = "/subscriptions/e647156b-6fbf-/resourceGroups/283bc9ce-c39b-4cb/providers/Microsoft.Web/csrs/0456b"; 13632Requests[2112].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13633Requests[2112].Request.Path = "/subscriptions/60cfb2f4-154a-/resourceGroups/90078f5f-d38f-454/providers/Microsoft.Web/customApis/b0e0a75"; 13636Requests[2113].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13637Requests[2113].Request.Path = "/subscriptions/f157f08d-a749-/resourceGroups/12fd2382-debe-46e/providers/Microsoft.Web/customApis/ddf97ff"; 13640Requests[2114].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13641Requests[2114].Request.Path = "/subscriptions/9640a146-5d06-/resourceGroups/971542d7-cfff-4df/providers/Microsoft.Web/customApis/557c398"; 13644Requests[2115].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13645Requests[2115].Request.Path = "/subscriptions/a6f1893c-d898-/resourceGroups/316e4191-06f5-42c/providers/Microsoft.Web/customApis/8b10da4"; 13648Requests[2116].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13649Requests[2116].Request.Path = "/subscriptions/0749e5ae-4729-/resourceGroups/207563ac-a4cc-4c1/providers/Microsoft.Web/hostingEnvironments/a3007"; 13652Requests[2117].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13653Requests[2117].Request.Path = "/subscriptions/588d2720-08f3-/resourceGroups/e7dcea5f-e680-43d/providers/Microsoft.Web/hostingEnvironments/11628"; 13656Requests[2118].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13657Requests[2118].Request.Path = "/subscriptions/9577002a-2f94-/resourceGroups/aba6b12f-18f4-4af/providers/Microsoft.Web/hostingEnvironments/47965"; 13660Requests[2119].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13661Requests[2119].Request.Path = "/subscriptions/bf759da2-0835-/resourceGroups/84f04cb7-277d-479/providers/Microsoft.Web/hostingEnvironments/2b1f7"; 13664Requests[2120].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13665Requests[2120].Request.Path = "/subscriptions/de5f8919-764e-/resourceGroups/0ea84275-47f9-495/providers/Microsoft.Web/managedHostingEnvironments/82577"; 13668Requests[2121].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13669Requests[2121].Request.Path = "/subscriptions/85e06114-0642-/resourceGroups/c54d3265-92a7-47d/providers/Microsoft.Web/managedHostingEnvironments/a7920"; 13672Requests[2122].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13673Requests[2122].Request.Path = "/subscriptions/af1e3dde-1b74-/resourceGroups/a89b2e91-1610-42d/providers/Microsoft.Web/managedHostingEnvironments/b0f54"; 13676Requests[2123].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13677Requests[2123].Request.Path = "/subscriptions/680f97f7-76f0-/resourceGroups/a4986a47-9058-4d0/providers/Microsoft.Web/serverfarms/93d28"; 13680Requests[2124].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13681Requests[2124].Request.Path = "/subscriptions/dbe7d5aa-1320-/resourceGroups/26bfeac1-3f93-44f/providers/Microsoft.Web/serverfarms/9f2b7"; 13684Requests[2125].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13685Requests[2125].Request.Path = "/subscriptions/23296a6e-906c-/resourceGroups/e7f9a2ae-9081-41f/providers/Microsoft.Web/serverfarms/1ab13"; 13688Requests[2126].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13689Requests[2126].Request.Path = "/subscriptions/145a18e0-1e70-/resourceGroups/dcc0f15e-c2aa-46b/providers/Microsoft.Web/serverfarms/39b91"; 13692Requests[2127].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 13693Requests[2127].Request.Path = "/subscriptions/228778f3-1939-/resourceGroups/c1b991d4-5e98-4ca/providers/Microsoft.Web/sites/de1c2"; 13696Requests[2128].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13697Requests[2128].Request.Path = "/subscriptions/3c5f1a56-940d-/resourceGroups/8664f154-3f60-495/providers/Microsoft.Web/sites/933d9"; 13700Requests[2129].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 13701Requests[2129].Request.Path = "/subscriptions/ef063102-6f9e-/resourceGroups/62c27145-37da-4a9/providers/Microsoft.Web/sites/d12ad"; 13704Requests[2130].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 13705Requests[2130].Request.Path = "/subscriptions/aa9f1169-5f1f-/resourceGroups/2a7beb7d-b62c-458/providers/Microsoft.Web/sites/cc474"; 13708Requests[2131].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13709Requests[2131].Request.Path = "/providers/786036e1-90ac-421e-a6f7-4/managementGroups/ebdf33c9-4d81-4255-/providers/Microsoft.PolicyInsights/policyEvents/86fbbc36-78f1-48a7-8/queryResults"; 13712Requests[2132].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13713Requests[2132].Request.Path = "/providers/50f5e2b6-d36e-4018-b1e6-b/managementGroups/174a0483-44f8-4136-/providers/Microsoft.PolicyInsights/policyStates/e1280a8f-4a43-4ffb-b/queryResults"; 13716Requests[2133].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13717Requests[2133].Request.Path = "/providers/9c6da069-9de9-407f-9fce-8/managementGroups/aff76148-9110-4af8-/providers/Microsoft.PolicyInsights/policyStates/68e723a7-2d7a-47b2-a4a6-7be/summarize"; 13720Requests[2134].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13721Requests[2134].Request.Path = "/subscriptions/546eeb6d-d44a-/resourceGroup/d64cfaa0-5211-48d/providers/Microsoft.MachineLearningServices/workspaces/f9b47726-965a/computes"; 13724Requests[2135].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13725Requests[2135].Request.Path = "/subscriptions/c2f5829b-db49-/resourceGroups/0ebab4a3-/providers/Microsoft.DataMigration/services/69ce9b9d-1f/checkNameAvailability"; 13728Requests[2136].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13729Requests[2136].Request.Path = "/subscriptions/ee1cfeb5-2ec9-/resourceGroups/1e0bed52-/providers/Microsoft.DataMigration/services/d2bfd51e-6a/checkStatus"; 13732Requests[2137].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13733Requests[2137].Request.Path = "/subscriptions/3e5bb21c-a68d-/resourceGroups/1a39618d-/providers/Microsoft.DataMigration/services/26153172-57/projects"; 13736Requests[2138].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13737Requests[2138].Request.Path = "/subscriptions/bfb7845b-2fc8-/resourceGroups/62fc002a-/providers/Microsoft.DataMigration/services/54a61426-5e/skus"; 13740Requests[2139].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13741Requests[2139].Request.Path = "/subscriptions/f6003a14-088b-/resourceGroups/55434389-/providers/Microsoft.DataMigration/services/da79695f-cf/start"; 13744Requests[2140].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13745Requests[2140].Request.Path = "/subscriptions/5c7d59bc-78b2-/resourceGroups/2998c8f1-/providers/Microsoft.DataMigration/services/55bb0aad-77/stop"; 13748Requests[2141].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13749Requests[2141].Request.Path = "/subscriptions/e0be029d-4b8a-/resourcegroups/24e37403-e898/providers/Microsoft.AzureBridge.Admin/activations/89589257-218a-/downloadedProducts"; 13752Requests[2142].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13753Requests[2142].Request.Path = "/subscriptions/8b506644-cd45-/resourcegroups/985f22a1-4843/providers/Microsoft.AzureBridge.Admin/activations/f9d8a661-79b3-/products"; 13756Requests[2143].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13757Requests[2143].Request.Path = "/subscriptions/bf91b3d0-8b84-/resourceGroups/a4e66f9b-d990/providers/Microsoft.AzureStack/registrations/c2b1ab1d-66da-42/customerSubscriptions"; 13760Requests[2144].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13761Requests[2144].Request.Path = "/subscriptions/6755e322-b656-/resourceGroups/4e19fc4b-30f9/providers/Microsoft.AzureStack/registrations/34acbe36-01ba-48/getactivationkey"; 13764Requests[2145].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13765Requests[2145].Request.Path = "/subscriptions/7712f678-cf27-/resourceGroups/c76e2be9-c93d/providers/Microsoft.AzureStack/registrations/3955d2e8-9e9e-4a/products"; 13768Requests[2146].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13769Requests[2146].Request.Path = "/subscriptions/6c66ac24-04ba-/resourceGroups/481f403d-3136-40c/providers/Microsoft.AnalysisServices/servers/8685762c-7/dissociateGateway"; 13772Requests[2147].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13773Requests[2147].Request.Path = "/subscriptions/f7723d61-cc13-/resourceGroups/e511c4a0-f1f2-42a/providers/Microsoft.AnalysisServices/servers/ddf4d577-1/listGatewayStatus"; 13776Requests[2148].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13777Requests[2148].Request.Path = "/subscriptions/082d98f4-7da7-/resourceGroups/73f39f47-a32a-49b/providers/Microsoft.AnalysisServices/servers/e3699d76-1/resume"; 13780Requests[2149].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13781Requests[2149].Request.Path = "/subscriptions/548ece3b-281c-/resourceGroups/5b7fa050-39e7-4ee/providers/Microsoft.AnalysisServices/servers/0cbf63b1-7/skus"; 13784Requests[2150].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13785Requests[2150].Request.Path = "/subscriptions/bbaa6dc3-3817-/resourceGroups/c2318e92-3df1-478/providers/Microsoft.AnalysisServices/servers/312e248b-5/suspend"; 13788Requests[2151].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13789Requests[2151].Request.Path = "/subscriptions/79e9b621-47a8-/resourceGroups/da3a4733-203b-463/providers/Microsoft.ApiManagement/service/92f0dba6-d0/apis"; 13792Requests[2152].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13793Requests[2152].Request.Path = "/subscriptions/5fd87b27-dcd8-/resourceGroups/c790c7fa-85d5-456/providers/Microsoft.ApiManagement/service/82de9bae-43/apisByTags"; 13796Requests[2153].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13797Requests[2153].Request.Path = "/subscriptions/074df882-5c47-/resourceGroups/68fa5436-b61b-45d/providers/Microsoft.ApiManagement/service/25d7d7ce-ec/api-version-sets"; 13800Requests[2154].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 13801Requests[2154].Request.Path = "/subscriptions/e58bf9ef-17ae-/resourceGroups/2a945e6b-99b6-42a/providers/Microsoft.ApiManagement/service/33412b10-1a/api-version-sets"; 13804Requests[2155].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13805Requests[2155].Request.Path = "/subscriptions/c6a4affb-51ca-/resourceGroups/a672b2a7-a34c-45a/providers/Microsoft.ApiManagement/service/24f5f8db-9f/applynetworkconfigurationupdates"; 13808Requests[2156].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13809Requests[2156].Request.Path = "/subscriptions/fff476a7-7927-/resourceGroups/5c9b542c-2759-4d9/providers/Microsoft.ApiManagement/service/74926315-4e/authorizationServers"; 13812Requests[2157].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13813Requests[2157].Request.Path = "/subscriptions/3307efb4-d50f-/resourceGroups/8b2183d0-9234-470/providers/Microsoft.ApiManagement/service/c389a637-e1/backends"; 13816Requests[2158].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13817Requests[2158].Request.Path = "/subscriptions/5c590551-8f9e-/resourceGroups/e0f349a4-7caa-402/providers/Microsoft.ApiManagement/service/13a6553d-9d/backup"; 13820Requests[2159].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13821Requests[2159].Request.Path = "/subscriptions/a7182f44-8c6e-/resourceGroups/d44c665b-9aa7-407/providers/Microsoft.ApiManagement/service/b2935979-c9/certificates"; 13824Requests[2160].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13825Requests[2160].Request.Path = "/subscriptions/cf7dee6c-7123-/resourceGroups/509b1fae-ceac-4f2/providers/Microsoft.ApiManagement/service/45090693-b6/diagnostics"; 13828Requests[2161].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13829Requests[2161].Request.Path = "/subscriptions/11d399bd-7405-/resourceGroups/f2ceb036-75e8-41f/providers/Microsoft.ApiManagement/service/905a3208-15/getssotoken"; 13832Requests[2162].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13833Requests[2162].Request.Path = "/subscriptions/8b3e54cc-70c7-/resourceGroups/953eaeb0-4f9d-4e6/providers/Microsoft.ApiManagement/service/d053fc29-69/getssotoken"; 13836Requests[2163].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13837Requests[2163].Request.Path = "/subscriptions/6efec029-8e85-/resourceGroups/33623941-905e-4e8/providers/Microsoft.ApiManagement/service/9c37b84b-73/groups"; 13840Requests[2164].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13841Requests[2164].Request.Path = "/subscriptions/5d88ccd5-4675-/resourceGroups/e425d834-aa3a-453/providers/Microsoft.ApiManagement/service/135b47bf-4d/identityProviders"; 13844Requests[2165].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13845Requests[2165].Request.Path = "/subscriptions/3a742a08-e4d2-/resourceGroups/fcfd37dd-2dd1-4fd/providers/Microsoft.ApiManagement/service/be80c1b8-c6/issues"; 13848Requests[2166].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13849Requests[2166].Request.Path = "/subscriptions/3ba82b05-e0fd-/resourceGroups/5143189f-45cf-447/providers/Microsoft.ApiManagement/service/3a86d814-a0/loggers"; 13852Requests[2167].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13853Requests[2167].Request.Path = "/subscriptions/7d3eac0c-692e-/resourceGroups/c1fa55f5-5569-431/providers/Microsoft.ApiManagement/service/66722130-63/managedeployments"; 13856Requests[2168].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13857Requests[2168].Request.Path = "/subscriptions/c0d7d417-36cb-/resourceGroups/d946078c-ea21-45a/providers/Microsoft.ApiManagement/service/b810f00e-70/networkstatus"; 13860Requests[2169].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13861Requests[2169].Request.Path = "/subscriptions/45819142-2d37-/resourceGroups/60d24ee6-36e1-42e/providers/Microsoft.ApiManagement/service/03a425f3-1c/notifications"; 13864Requests[2170].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13865Requests[2170].Request.Path = "/subscriptions/e9ebfd3e-927b-/resourceGroups/a7cd55a9-f9cf-464/providers/Microsoft.ApiManagement/service/922c12c3-cf/openidConnectProviders"; 13868Requests[2171].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13869Requests[2171].Request.Path = "/subscriptions/5cb8becc-3bdb-/resourceGroups/118579e3-406f-4ee/providers/Microsoft.ApiManagement/service/25f48878-69/policies"; 13872Requests[2172].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13873Requests[2172].Request.Path = "/subscriptions/aa033de5-d7fd-/resourceGroups/fcc25f11-b244-443/providers/Microsoft.ApiManagement/service/1e97d779-22/policySnippets"; 13876Requests[2173].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13877Requests[2173].Request.Path = "/subscriptions/3f617d01-4553-/resourceGroups/e03f9103-5b94-477/providers/Microsoft.ApiManagement/service/e25d6db8-6f/products"; 13880Requests[2174].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13881Requests[2174].Request.Path = "/subscriptions/0d1ab4cb-cd3f-/resourceGroups/f05c3c8b-82a7-408/providers/Microsoft.ApiManagement/service/1fcdf6f9-5a/properties"; 13884Requests[2175].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13885Requests[2175].Request.Path = "/subscriptions/acaf2919-93af-/resourceGroups/e02e11e4-d7eb-49c/providers/Microsoft.ApiManagement/service/6ad0942d-52/regions"; 13888Requests[2176].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13889Requests[2176].Request.Path = "/subscriptions/c184bf7b-0770-/resourceGroups/26417432-555e-4ec/providers/Microsoft.ApiManagement/service/8da1df4e-b0/restore"; 13892Requests[2177].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13893Requests[2177].Request.Path = "/subscriptions/1da43ca2-a4b2-/resourceGroups/3a29b888-a2a2-451/providers/Microsoft.ApiManagement/service/d8641e4b-67/subscriptions"; 13896Requests[2178].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13897Requests[2178].Request.Path = "/subscriptions/1303946a-9127-/resourceGroups/917471f5-5f4c-4a8/providers/Microsoft.ApiManagement/service/4c5c9f04-28/tagResources"; 13900Requests[2179].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13901Requests[2179].Request.Path = "/subscriptions/3aa4c386-930e-/resourceGroups/cbb5685e-d1df-4b6/providers/Microsoft.ApiManagement/service/2e197987-b9/tags"; 13904Requests[2180].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13905Requests[2180].Request.Path = "/subscriptions/cfb0e867-97e8-/resourceGroups/08c0fccc-e2bd-490/providers/Microsoft.ApiManagement/service/222b4270-ba/templates"; 13908Requests[2181].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13909Requests[2181].Request.Path = "/subscriptions/bc963bf2-1824-/resourceGroups/61512d3f-853f-4fe/providers/Microsoft.ApiManagement/service/b96162a2-0c/updatecertificate"; 13912Requests[2182].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13913Requests[2182].Request.Path = "/subscriptions/773ec69e-0cbb-/resourceGroups/158be695-6f3d-4db/providers/Microsoft.ApiManagement/service/828784d6-dc/updatehostname"; 13916Requests[2183].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13917Requests[2183].Request.Path = "/subscriptions/d2149b59-7da3-/resourceGroups/ba998004-b11b-495/providers/Microsoft.ApiManagement/service/65d1c42b-55/uploadcertificate"; 13920Requests[2184].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13921Requests[2184].Request.Path = "/subscriptions/82f7afe1-e5dc-/resourceGroups/569643a7-90b5-4f9/providers/Microsoft.ApiManagement/service/dd931498-db/users"; 13924Requests[2185].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13925Requests[2185].Request.Path = "/subscriptions/394aefbb-d491-/resourceGroups/000e8582-1341-4c2/providers/Microsoft.Automation/automationAccounts/22b3ccdf-17d5-4c33-88/agentRegistrationInformation"; 13928Requests[2186].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13929Requests[2186].Request.Path = "/subscriptions/a717b598-c399-/resourceGroups/0bd5def5-4c02-44a/providers/Microsoft.Automation/automationAccounts/b67a6ce6-bed2-43f3-b3/certificates"; 13932Requests[2187].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13933Requests[2187].Request.Path = "/subscriptions/d5b66373-ddb9-/resourceGroups/bec50b00-601f-428/providers/Microsoft.Automation/automationAccounts/979717f7-b8bf-4014-95/compilationjobs"; 13936Requests[2188].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13937Requests[2188].Request.Path = "/subscriptions/ae303810-0b73-/resourceGroups/8f698b51-ccdd-4b6/providers/Microsoft.Automation/automationAccounts/2acccea8-6a7f-4669-a4/configurations"; 13940Requests[2189].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13941Requests[2189].Request.Path = "/subscriptions/4ec55c26-b1d6-/resourceGroups/49faff59-417f-417/providers/Microsoft.Automation/automationAccounts/6ccd8b32-96c9-4361-a6/connections"; 13944Requests[2190].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13945Requests[2190].Request.Path = "/subscriptions/b654e077-f048-/resourceGroups/056739ac-f3a2-4ac/providers/Microsoft.Automation/automationAccounts/1938b071-feef-4fe7-ba/connectionTypes"; 13948Requests[2191].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13949Requests[2191].Request.Path = "/subscriptions/6b359fca-2fdf-/resourceGroups/f1912940-7b62-447/providers/Microsoft.Automation/automationAccounts/c80f4530-1d25-4e80-ac/credentials"; 13952Requests[2192].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13953Requests[2192].Request.Path = "/subscriptions/f16d7c7b-e994-/resourceGroups/81838a8e-5a04-489/providers/Microsoft.Automation/automationAccounts/eed38165-0cb8-44a8-90/hybridRunbookWorkerGroups"; 13956Requests[2193].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13957Requests[2193].Request.Path = "/subscriptions/51cdec3d-4b83-/resourceGroups/ef8d3a00-5d17-4c5/providers/Microsoft.Automation/automationAccounts/e014bc15-c899-4c18-9d/jobs"; 13960Requests[2194].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13961Requests[2194].Request.Path = "/subscriptions/45144aef-62b0-/resourceGroups/ea0e1438-d1ad-415/providers/Microsoft.Automation/automationAccounts/39ee5f61-aa3c-49ba-9c/jobSchedules"; 13964Requests[2195].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13965Requests[2195].Request.Path = "/subscriptions/f9afdebb-cc29-/resourceGroups/fed46d0e-2749-4ff/providers/Microsoft.Automation/automationAccounts/29211d86-a44f-4e98-b7/linkedWorkspace"; 13968Requests[2196].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 13969Requests[2196].Request.Path = "/subscriptions/2da7829f-7daa-/resourceGroups/88d60987-2e10-482/providers/Microsoft.Automation/automationAccounts/2843b12d-9054-4757-b8/listKeys"; 13972Requests[2197].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13973Requests[2197].Request.Path = "/subscriptions/ddb854dc-2a3e-/resourceGroups/a477270f-a5ce-45b/providers/Microsoft.Automation/automationAccounts/5b9daac3-6e4e-4fa6-87/modules"; 13976Requests[2198].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13977Requests[2198].Request.Path = "/subscriptions/7fe0912a-1d07-/resourceGroups/36a01180-eb95-455/providers/Microsoft.Automation/automationAccounts/dacc0a13-cad8-4bd7-aa/nodeConfigurations"; 13980Requests[2199].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13981Requests[2199].Request.Path = "/subscriptions/3bf58515-713b-/resourceGroups/6cfb6a35-d079-478/providers/Microsoft.Automation/automationAccounts/bc6913c7-60fe-43a0-8f/nodes"; 13984Requests[2200].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13985Requests[2200].Request.Path = "/subscriptions/aa10e874-1e71-/resourceGroups/1e12fbdf-9adf-40f/providers/Microsoft.Automation/automationAccounts/a217f667-916b-4f7d-b4/runbooks"; 13988Requests[2201].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13989Requests[2201].Request.Path = "/subscriptions/4a6187d7-8801-/resourceGroups/9197cd87-4269-41f/providers/Microsoft.Automation/automationAccounts/a5bb823f-f0af-4d1b-af/schedules"; 13992Requests[2202].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13993Requests[2202].Request.Path = "/subscriptions/a1607dc9-86c1-/resourceGroups/5358d542-3748-4dc/providers/Microsoft.Automation/automationAccounts/eb504eaa-8627-49ed-96/softwareUpdateConfigurationMachineRuns"; 13996Requests[2203].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 13997Requests[2203].Request.Path = "/subscriptions/13b3e3e5-896d-/resourceGroups/a0c7a981-7728-49a/providers/Microsoft.Automation/automationAccounts/5d71876b-b3c9-47e9-b8/softwareUpdateConfigurationRuns"; 14000Requests[2204].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14001Requests[2204].Request.Path = "/subscriptions/0e4d8c3f-b199-/resourceGroups/d1d0d5d6-673f-45f/providers/Microsoft.Automation/automationAccounts/055c75fb-38f6-47cc-91/softwareUpdateConfigurations"; 14004Requests[2205].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14005Requests[2205].Request.Path = "/subscriptions/0d888cdb-845a-/resourceGroups/21db1d7e-7680-42d/providers/Microsoft.Automation/automationAccounts/fedbb029-3f3c-4aee-b5/sourceControls"; 14008Requests[2206].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14009Requests[2206].Request.Path = "/subscriptions/2936046c-f686-/resourceGroups/7b28e9e3-435f-43b/providers/Microsoft.Automation/automationAccounts/03e0ce39-7d1e-4d05-a2/statistics"; 14012Requests[2207].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14013Requests[2207].Request.Path = "/subscriptions/438bfcf7-cc55-/resourceGroups/89c83ecc-dbd5-4c1/providers/Microsoft.Automation/automationAccounts/1ebc71ff-b330-4c42-ae/usages"; 14016Requests[2208].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14017Requests[2208].Request.Path = "/subscriptions/4bbc3111-dc7a-/resourceGroups/26495b06-708f-4c3/providers/Microsoft.Automation/automationAccounts/435059bf-d730-4c3e-9c/variables"; 14020Requests[2209].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14021Requests[2209].Request.Path = "/subscriptions/13021b83-9d5f-/resourceGroups/6fb15784-c821-439/providers/Microsoft.Automation/automationAccounts/d0054398-a695-4953-85/watchers"; 14024Requests[2210].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14025Requests[2210].Request.Path = "/subscriptions/0f3ffe7d-cd46-/resourceGroups/58465396-4dea-40d/providers/Microsoft.Automation/automationAccounts/bc1ba2ac-196b-4aac-b1/webhooks"; 14028Requests[2211].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14029Requests[2211].Request.Path = "/subscriptions/63e5c196-f383-/resourcegroups/2ce2de13-5644-4ba/providers/Microsoft.Backup.Admin/backupLocations/ef528a89/backups"; 14032Requests[2212].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14033Requests[2212].Request.Path = "/subscriptions/78a1996d-14eb-/resourcegroups/ebe6d87e-6000-442/providers/Microsoft.Backup.Admin/backupLocations/5ac52176/createBackup"; 14036Requests[2213].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14037Requests[2213].Request.Path = "/subscriptions/e6267cb2-3a55-/resourceGroups/dc217f7e-898a-4f7/providers/Microsoft.Batch/batchAccounts/513fcb36-1d/applications"; 14040Requests[2214].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14041Requests[2214].Request.Path = "/subscriptions/8340a5ed-02fc-/resourceGroups/2aebc416-06eb-425/providers/Microsoft.Batch/batchAccounts/0424c298-ae/certificates"; 14044Requests[2215].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14045Requests[2215].Request.Path = "/subscriptions/91084fac-d984-/resourceGroups/3a48a108-6f00-453/providers/Microsoft.Batch/batchAccounts/abc67f64-e9/listKeys"; 14048Requests[2216].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14049Requests[2216].Request.Path = "/subscriptions/60389a1d-8aff-/resourceGroups/2f5b3871-39af-4cc/providers/Microsoft.Batch/batchAccounts/1504287d-54/pools"; 14052Requests[2217].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14053Requests[2217].Request.Path = "/subscriptions/d19a439c-8039-/resourceGroups/19952a5e-a87d-4d0/providers/Microsoft.Batch/batchAccounts/1101e27f-43/regenerateKeys"; 14056Requests[2218].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14057Requests[2218].Request.Path = "/subscriptions/ee08241d-72dd-/resourceGroups/64f536c4-879b-4a5/providers/Microsoft.Batch/batchAccounts/ed811bb2-7d/syncAutoStorageKeys"; 14060Requests[2219].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14061Requests[2219].Request.Path = "/subscriptions/49423daf-179e-/resourceGroups/15347ec8-ad6c-4ad/providers/Microsoft.BatchAI/clusters/1ac7cc82-bd/listRemoteLoginInformation"; 14064Requests[2220].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14065Requests[2220].Request.Path = "/subscriptions/17050bf9-d89c-/resourceGroups/ad4f8f95-27eb-45f/providers/Microsoft.BatchAI/jobs/5f170da/listOutputFiles"; 14068Requests[2221].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14069Requests[2221].Request.Path = "/subscriptions/e6a75c43-9bc6-/resourceGroups/b0b297e7-7d78-45c/providers/Microsoft.BatchAI/jobs/4bde8b6/listRemoteLoginInformation"; 14072Requests[2222].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14073Requests[2222].Request.Path = "/subscriptions/fbbb9ebb-4b12-/resourceGroups/eb27335a-c390-466/providers/Microsoft.BatchAI/jobs/2a88ac1/terminate"; 14076Requests[2223].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14077Requests[2223].Request.Path = "/subscriptions/16c2a984-830c-/resourceGroups/fdad9084-83ed-453/providers/Microsoft.BatchAI/workspaces/1822f731-e7cf/clusters"; 14080Requests[2224].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14081Requests[2224].Request.Path = "/subscriptions/36a64da8-d744-/resourceGroups/d7ae7e5c-966d-4c4/providers/Microsoft.BatchAI/workspaces/e12bbad6-90c2/experiments"; 14084Requests[2225].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14085Requests[2225].Request.Path = "/subscriptions/f3b98f91-4ca7-/resourceGroups/88b03890-f32f-480/providers/Microsoft.BatchAI/workspaces/9a011806-78d0/fileServers"; 14088Requests[2226].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14089Requests[2226].Request.Path = "/subscriptions/ad6e74c3-b178-/resourceGroups/46f9e40e-2f8c-489/providers/Microsoft.BotService/botServices/9d587268-ce0/channels"; 14092Requests[2227].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14093Requests[2227].Request.Path = "/subscriptions/6b622300-7c5d-/resourceGroups/b64fbfa4-4081-48e/providers/Microsoft.BotService/botServices/afaabe80-735/connections"; 14096Requests[2228].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14097Requests[2228].Request.Path = "/subscriptions/b94e156a-6746-/resourceGroups/f45f1ae3-2282-442/providers/Microsoft.Cache/Redis/2df3a04e-/firewallRules"; 14100Requests[2229].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14101Requests[2229].Request.Path = "/subscriptions/b712b380-9c58-/resourceGroups/b280c298-051d-4cf/providers/Microsoft.Cache/Redis/16a4b28a-/patchSchedules"; 14104Requests[2230].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14105Requests[2230].Request.Path = "/subscriptions/5a881e1a-c694-/resourceGroups/fc3188dc-0820-411/providers/Microsoft.Cache/Redis/01d1e/export"; 14108Requests[2231].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14109Requests[2231].Request.Path = "/subscriptions/eee1a5be-c93f-/resourceGroups/ed7a99fa-19a5-47d/providers/Microsoft.Cache/Redis/5b041/forceReboot"; 14112Requests[2232].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14113Requests[2232].Request.Path = "/subscriptions/abe20ab4-d774-/resourceGroups/67797aee-d64f-4a7/providers/Microsoft.Cache/Redis/093d8/import"; 14116Requests[2233].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14117Requests[2233].Request.Path = "/subscriptions/390fb5e5-7fed-/resourceGroups/04ce0cd9-9d6c-429/providers/Microsoft.Cache/Redis/e46fa/linkedServers"; 14120Requests[2234].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14121Requests[2234].Request.Path = "/subscriptions/217f6aeb-9bd2-/resourceGroups/f8aef0d7-f37e-499/providers/Microsoft.Cache/Redis/3cb97/listKeys"; 14124Requests[2235].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14125Requests[2235].Request.Path = "/subscriptions/2e65e68d-c680-/resourceGroups/31347f34-5aa3-49d/providers/Microsoft.Cache/Redis/d132d/listUpgradeNotifications"; 14128Requests[2236].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14129Requests[2236].Request.Path = "/subscriptions/9e6be479-d889-/resourceGroups/3c535eb1-3ebe-439/providers/Microsoft.Cache/Redis/c3f18/regenerateKey"; 14132Requests[2237].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14133Requests[2237].Request.Path = "/subscriptions/5fa01642-23d9-/resourceGroups/3a895869-2ba2-4cc/providers/Microsoft.Cdn/profiles/ab8ee22c-63/checkResourceUsage"; 14136Requests[2238].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14137Requests[2238].Request.Path = "/subscriptions/a495ff12-f94a-/resourceGroups/c113a8fc-b334-443/providers/Microsoft.Cdn/profiles/738daa54-69/endpoints"; 14140Requests[2239].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14141Requests[2239].Request.Path = "/subscriptions/1912a2d8-0618-/resourceGroups/6b10c5f2-e963-4cf/providers/Microsoft.Cdn/profiles/2a86360b-9f/generateSsoUri"; 14144Requests[2240].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14145Requests[2240].Request.Path = "/subscriptions/60b7e6f7-8acc-/resourceGroups/70e4ea6f-0216-45b/providers/Microsoft.Cdn/profiles/c5db81ea-61/getSupportedOptimizationTypes"; 14148Requests[2241].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14149Requests[2241].Request.Path = "/subscriptions/c0d1e1cc-51e5-/resourceGroups/fe1bbdb1-cb95-474/providers/Microsoft.CertificateRegistration/certificateOrders/0d513212-ccd1-4543-b/certificates"; 14152Requests[2242].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14153Requests[2242].Request.Path = "/subscriptions/dc29c298-5447-/resourceGroups/e1c07c7d-4aee-43c/providers/Microsoft.CertificateRegistration/certificateOrders/5eb4395b-ae3c-47ac-a/resendRequestEmails"; 14156Requests[2243].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14157Requests[2243].Request.Path = "/subscriptions/52f23ec1-9ae3-/resourceGroups/1788e95f-42dc-469/providers/Microsoft.CertificateRegistration/certificateOrders/ad445b1d-b130-4953-9/retrieveSiteSeal"; 14160Requests[2244].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14161Requests[2244].Request.Path = "/subscriptions/47b76afa-577c-/resourceGroups/dc6e59e3-9925-484/providers/Microsoft.CertificateRegistration/certificateOrders/a964f/reissue"; 14164Requests[2245].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14165Requests[2245].Request.Path = "/subscriptions/0250815e-9b09-/resourceGroups/e384d013-b0f6-40e/providers/Microsoft.CertificateRegistration/certificateOrders/50d1d/renew"; 14168Requests[2246].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14169Requests[2246].Request.Path = "/subscriptions/7b54e51d-9598-/resourceGroups/6101f996-eafa-496/providers/Microsoft.CertificateRegistration/certificateOrders/6ffef/resendEmail"; 14172Requests[2247].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14173Requests[2247].Request.Path = "/subscriptions/a256cc03-f6cc-/resourceGroups/e8bc3a7c-3a97-446/providers/Microsoft.CertificateRegistration/certificateOrders/1967b/retrieveCertificateActions"; 14176Requests[2248].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14177Requests[2248].Request.Path = "/subscriptions/ab46c145-a34b-/resourceGroups/4c50f104-6f6d-4bc/providers/Microsoft.CertificateRegistration/certificateOrders/67986/retrieveEmailHistory"; 14180Requests[2249].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14181Requests[2249].Request.Path = "/subscriptions/8340c487-2b8d-/resourceGroups/323af0b7-54a9-47d/providers/Microsoft.CertificateRegistration/certificateOrders/1803c/verifyDomainOwnership"; 14184Requests[2250].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14185Requests[2250].Request.Path = "/subscriptions/7afd53ad-d963-/resourceGroups/dc9a25f7-e969-4ab/providers/Microsoft.CognitiveServices/accounts/2093692e-c5/listKeys"; 14188Requests[2251].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14189Requests[2251].Request.Path = "/subscriptions/f29774bb-51bd-/resourceGroups/3cc0340c-252e-456/providers/Microsoft.CognitiveServices/accounts/7d3d63ba-b7/regenerateKey"; 14192Requests[2252].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14193Requests[2252].Request.Path = "/subscriptions/ad1d23fb-fe40-/resourceGroups/95a8cbf6-ac10-412/providers/Microsoft.CognitiveServices/accounts/a69cc772-46/skus"; 14196Requests[2253].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14197Requests[2253].Request.Path = "/subscriptions/9df59ccc-a83c-/resourceGroups/e10ba979-d53d-438/providers/Microsoft.CognitiveServices/accounts/c53be067-a4/usages"; 14200Requests[2254].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14201Requests[2254].Request.Path = "/subscriptions/35b2bb7e-296a-/resourceGroups/15aa435a-c1f6-4ca/providers/Microsoft.Compute/availabilitySets/fbeea17d-460e-4ef9-/vmSizes"; 14204Requests[2255].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14205Requests[2255].Request.Path = "/subscriptions/4cf6ee30-aadf-/resourceGroups/b8dd7f53-30a1-469/providers/Microsoft.Compute/disks/c220fbb9/beginGetAccess"; 14208Requests[2256].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14209Requests[2256].Request.Path = "/subscriptions/ddaea11c-f3a5-/resourceGroups/b45739ea-ee02-461/providers/Microsoft.Compute/disks/a46abfac/endGetAccess"; 14212Requests[2257].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14213Requests[2257].Request.Path = "/subscriptions/49876f36-7793-/resourceGroups/ee797f9f-d7c6-475/providers/Microsoft.Compute/galleries/16f5d14c-5e/images"; 14216Requests[2258].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14217Requests[2258].Request.Path = "/subscriptions/c87f6846-6154-/resourceGroups/395d4902-e7d3-472/providers/Microsoft.Compute/snapshots/6ab1c6a8-154/beginGetAccess"; 14220Requests[2259].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14221Requests[2259].Request.Path = "/subscriptions/beb77651-3e99-/resourceGroups/6a36c529-7df2-48f/providers/Microsoft.Compute/snapshots/8c980a87-92e/endGetAccess"; 14224Requests[2260].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14225Requests[2260].Request.Path = "/subscriptions/7870dd1d-1c33-/resourceGroups/2c8dcddd-0587-4de/providers/Microsoft.Compute/virtualMachines/7be249/capture"; 14228Requests[2261].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14229Requests[2261].Request.Path = "/subscriptions/4e736896-ba38-/resourceGroups/08333a47-220d-41b/providers/Microsoft.Compute/virtualMachines/028407/convertToManagedDisks"; 14232Requests[2262].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14233Requests[2262].Request.Path = "/subscriptions/17cc6564-1ccb-/resourceGroups/a258b186-1c06-4a0/providers/Microsoft.Compute/virtualMachines/57d25d/deallocate"; 14236Requests[2263].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14237Requests[2263].Request.Path = "/subscriptions/f8920025-fd43-/resourceGroups/c02e814a-737f-4a9/providers/Microsoft.Compute/virtualMachines/a77120/extensions"; 14240Requests[2264].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14241Requests[2264].Request.Path = "/subscriptions/5b6db96b-b6e8-/resourceGroups/22463c90-b813-44b/providers/Microsoft.Compute/virtualMachines/594e8b/generalize"; 14244Requests[2265].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14245Requests[2265].Request.Path = "/subscriptions/69c7321a-3df4-/resourceGroups/5624340b-c82d-4ad/providers/Microsoft.Compute/virtualMachines/1c7a8d/instanceView"; 14248Requests[2266].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14249Requests[2266].Request.Path = "/subscriptions/5c89fc42-ce6f-/resourceGroups/23af0800-dd54-470/providers/Microsoft.Compute/virtualMachines/e13171/performMaintenance"; 14252Requests[2267].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14253Requests[2267].Request.Path = "/subscriptions/dc096743-4aa1-/resourceGroups/89782e4d-f524-433/providers/Microsoft.Compute/virtualMachines/ff3893/powerOff"; 14256Requests[2268].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14257Requests[2268].Request.Path = "/subscriptions/cbcb0bd3-244b-/resourceGroups/5311f155-c9d1-457/providers/Microsoft.Compute/virtualMachines/ad1b5e/redeploy"; 14260Requests[2269].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14261Requests[2269].Request.Path = "/subscriptions/0c29c960-c78c-/resourceGroups/e83eb409-3fc4-4bd/providers/Microsoft.Compute/virtualMachines/0b83ef/restart"; 14264Requests[2270].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14265Requests[2270].Request.Path = "/subscriptions/bb105cf4-d6ae-/resourceGroups/a230ca6b-97d1-401/providers/Microsoft.Compute/virtualMachines/7fd390/runCommand"; 14268Requests[2271].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14269Requests[2271].Request.Path = "/subscriptions/52bd5d45-68ce-/resourceGroups/526a3f5e-1a6c-4a1/providers/Microsoft.Compute/virtualMachines/a58099/start"; 14272Requests[2272].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14273Requests[2272].Request.Path = "/subscriptions/acd869fc-35e8-/resourceGroups/661d83c6-0507-4fa/providers/Microsoft.Compute/virtualMachines/ee205a/vmSizes"; 14276Requests[2273].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14277Requests[2273].Request.Path = "/subscriptions/6ffd4d3c-2dba-/resourceGroups/1538d273-d383-4a2/providers/microsoft.Compute/virtualMachineScaleSets/f63552a0-d341-4635-a36a-4b/networkInterfaces"; 14280Requests[2274].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14281Requests[2274].Request.Path = "/subscriptions/a7b63f7f-0bcf-/resourceGroups/839be712-c759-43c/providers/Microsoft.Compute/virtualMachineScaleSets/1c063be0-b6f4-4bfd-a32a-fb/publicipaddresses"; 14284Requests[2275].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14285Requests[2275].Request.Path = "/subscriptions/76aa5d94-7f34-/resourceGroups/d268b2d2-c72d-45e/providers/Microsoft.Compute/virtualMachineScaleSets/3b3a01b6-83e4-45bb-a160-31/virtualMachines"; 14288Requests[2276].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14289Requests[2276].Request.Path = "/subscriptions/7b949e29-b541-/resourceGroups/03c3c645-f726-441/providers/Microsoft.Compute/virtualMachineScaleSets/a5704769-f3c1-/deallocate"; 14292Requests[2277].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14293Requests[2277].Request.Path = "/subscriptions/a7ac795f-5eb1-/resourceGroups/49bd9598-969a-46f/providers/Microsoft.Compute/virtualMachineScaleSets/5d004392-ded1-/delete"; 14296Requests[2278].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14297Requests[2278].Request.Path = "/subscriptions/03215647-da6e-/resourceGroups/63a4e837-995b-45f/providers/Microsoft.Compute/virtualMachineScaleSets/2d2e00b4-93be-/extensions"; 14300Requests[2279].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14301Requests[2279].Request.Path = "/subscriptions/0ec61cbe-cd7a-/resourceGroups/7c35efd4-2c2e-47c/providers/Microsoft.Compute/virtualMachineScaleSets/b01c9a10-a550-/forceRecoveryServiceFabricPlatformUpdateDomainWalk"; 14304Requests[2280].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14305Requests[2280].Request.Path = "/subscriptions/99b143b6-41b0-/resourceGroups/2dfdba87-d0b3-42b/providers/Microsoft.Compute/virtualMachineScaleSets/7144390c-2ba1-/instanceView"; 14308Requests[2281].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14309Requests[2281].Request.Path = "/subscriptions/f3fc91f5-d61e-/resourceGroups/4a718210-73a2-4ef/providers/Microsoft.Compute/virtualMachineScaleSets/67735dc8-129c-/manualupgrade"; 14312Requests[2282].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14313Requests[2282].Request.Path = "/subscriptions/74a1f438-7657-/resourceGroups/b4d91349-cade-43d/providers/Microsoft.Compute/virtualMachineScaleSets/8958823d-6a19-/osRollingUpgrade"; 14316Requests[2283].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14317Requests[2283].Request.Path = "/subscriptions/f0cba052-c914-/resourceGroups/347461e9-f7ec-4b8/providers/Microsoft.Compute/virtualMachineScaleSets/5519ac32-ec48-/osUpgradeHistory"; 14320Requests[2284].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14321Requests[2284].Request.Path = "/subscriptions/d9a268f1-708a-/resourceGroups/40110d17-91df-417/providers/Microsoft.Compute/virtualMachineScaleSets/7c5f70a4-e3fa-/performMaintenance"; 14324Requests[2285].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14325Requests[2285].Request.Path = "/subscriptions/5f5fbfc3-df27-/resourceGroups/2494774a-17c2-460/providers/Microsoft.Compute/virtualMachineScaleSets/32a65e4c-348d-/poweroff"; 14328Requests[2286].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14329Requests[2286].Request.Path = "/subscriptions/5d0036e8-703b-/resourceGroups/52b3a983-e70f-40c/providers/Microsoft.Compute/virtualMachineScaleSets/74c6ac94-ff63-/redeploy"; 14332Requests[2287].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14333Requests[2287].Request.Path = "/subscriptions/baa79c0f-539a-/resourceGroups/0a7e573c-f10c-4cf/providers/Microsoft.Compute/virtualMachineScaleSets/a13c6943-6bf1-/reimage"; 14336Requests[2288].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14337Requests[2288].Request.Path = "/subscriptions/40fed805-a17c-/resourceGroups/c30f423e-7769-438/providers/Microsoft.Compute/virtualMachineScaleSets/1d03d066-04b8-/reimageall"; 14340Requests[2289].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14341Requests[2289].Request.Path = "/subscriptions/a1e53ed4-ad1c-/resourceGroups/60adb5ae-eb2f-4e1/providers/Microsoft.Compute/virtualMachineScaleSets/563f8506-d97c-/restart"; 14344Requests[2290].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14345Requests[2290].Request.Path = "/subscriptions/a2813359-796c-/resourceGroups/66c88277-22e2-494/providers/Microsoft.Compute/virtualMachineScaleSets/3f466327-0d20-/skus"; 14348Requests[2291].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14349Requests[2291].Request.Path = "/subscriptions/bec6e0b4-916b-/resourceGroups/0216af91-e7dd-41a/providers/Microsoft.Compute/virtualMachineScaleSets/f9edabc1-ae2f-/start"; 14352Requests[2292].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14353Requests[2292].Request.Path = "/subscriptions/e1789964-09a5-/resourceGroups/73a44b2c-f73d-4b1/providers/Microsoft.ContainerRegistry/registries/b7a2ad63-bdd/builds"; 14356Requests[2293].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14357Requests[2293].Request.Path = "/subscriptions/2f5b985b-4efa-/resourceGroups/bfb56992-7e24-4a7/providers/Microsoft.ContainerRegistry/registries/2f2b9821-edc/buildTasks"; 14360Requests[2294].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14361Requests[2294].Request.Path = "/subscriptions/a81f5589-7112-/resourceGroups/1f011536-004f-46e/providers/Microsoft.ContainerRegistry/registries/ebf59d4b-34a/getBuildSourceUploadUrl"; 14364Requests[2295].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14365Requests[2295].Request.Path = "/subscriptions/bf5060ac-5de8-/resourceGroups/2543029f-8c23-4e5/providers/Microsoft.ContainerRegistry/registries/6c64eca3-159/getCredentials"; 14368Requests[2296].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14369Requests[2296].Request.Path = "/subscriptions/e2ecc0cc-23aa-/resourceGroups/af7163af-2274-402/providers/Microsoft.ContainerRegistry/registries/71d66c33-4fb/importImage"; 14372Requests[2297].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14373Requests[2297].Request.Path = "/subscriptions/89c3dafe-9482-/resourceGroups/5d6a3012-b21c-46a/providers/Microsoft.ContainerRegistry/registries/a9e68d3f-07d/listCredentials"; 14376Requests[2298].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14377Requests[2298].Request.Path = "/subscriptions/a3a8e889-ea51-/resourceGroups/d6004cb2-49c6-4b3/providers/Microsoft.ContainerRegistry/registries/5093f501-fbd/listUsages"; 14380Requests[2299].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14381Requests[2299].Request.Path = "/subscriptions/98aafb1e-6384-/resourceGroups/5497aa49-528d-439/providers/Microsoft.ContainerRegistry/registries/c4472d8c-eec/queueBuild"; 14384Requests[2300].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14385Requests[2300].Request.Path = "/subscriptions/1f801e50-508b-/resourceGroups/c171c1d9-bfc1-456/providers/Microsoft.ContainerRegistry/registries/a29460a3-69d/regenerateCredential"; 14388Requests[2301].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14389Requests[2301].Request.Path = "/subscriptions/8ae606b1-cc2d-/resourceGroups/92357605-9d33-462/providers/Microsoft.ContainerRegistry/registries/d7c22a81-1ed/regenerateCredentials"; 14392Requests[2302].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14393Requests[2302].Request.Path = "/subscriptions/50b755da-ddbf-/resourceGroups/06862527-c9b3-40c/providers/Microsoft.ContainerRegistry/registries/bf0908e2-469/replications"; 14396Requests[2303].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14397Requests[2303].Request.Path = "/subscriptions/162cae3b-a9b1-/resourceGroups/c48a5c83-8fb3-4de/providers/Microsoft.ContainerRegistry/registries/ffe1ef73-3d4/webhooks"; 14400Requests[2304].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14401Requests[2304].Request.Path = "/subscriptions/22f292cd-43a3-/resourceGroups/29e280f8-57cf-491/providers/Microsoft.CustomerInsights/hubs/80c75e4/authorizationPolicies"; 14404Requests[2305].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14405Requests[2305].Request.Path = "/subscriptions/c8c0f271-9046-/resourceGroups/411ed39a-9230-47f/providers/Microsoft.CustomerInsights/hubs/5d64cd3/connectors"; 14408Requests[2306].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14409Requests[2306].Request.Path = "/subscriptions/bf02a15e-44f6-/resourceGroups/6fc87d45-e773-48b/providers/Microsoft.CustomerInsights/hubs/45474fb/interactions"; 14412Requests[2307].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14413Requests[2307].Request.Path = "/subscriptions/639b36e3-97ad-/resourceGroups/4e8fd109-3f8a-46a/providers/Microsoft.CustomerInsights/hubs/1beb7ec/kpi"; 14416Requests[2308].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14417Requests[2308].Request.Path = "/subscriptions/dc626650-ad72-/resourceGroups/fd37e727-dba7-418/providers/Microsoft.CustomerInsights/hubs/7d762d0/links"; 14420Requests[2309].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14421Requests[2309].Request.Path = "/subscriptions/fb0c0cb2-016b-/resourceGroups/18ae8806-4324-476/providers/Microsoft.CustomerInsights/hubs/a49a346/predictions"; 14424Requests[2310].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14425Requests[2310].Request.Path = "/subscriptions/0c6b15a6-ae23-/resourceGroups/54be881f-4073-4ce/providers/Microsoft.CustomerInsights/hubs/878bab7/profiles"; 14428Requests[2311].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14429Requests[2311].Request.Path = "/subscriptions/e05aad97-c3d7-/resourceGroups/c0629cfd-6f8f-4bd/providers/Microsoft.CustomerInsights/hubs/e14abe7/relationshipLinks"; 14432Requests[2312].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14433Requests[2312].Request.Path = "/subscriptions/3daccfed-c9ec-/resourceGroups/5a130ce4-0365-429/providers/Microsoft.CustomerInsights/hubs/07628d3/relationships"; 14436Requests[2313].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14437Requests[2313].Request.Path = "/subscriptions/b4da7d2e-71bc-/resourceGroups/5bc496fa-d144-474/providers/Microsoft.CustomerInsights/hubs/629dcbd/roleAssignments"; 14440Requests[2314].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14441Requests[2314].Request.Path = "/subscriptions/dff6a7dd-cc56-/resourceGroups/c86f3e84-9308-4c9/providers/Microsoft.CustomerInsights/hubs/ffa13c9/roles"; 14444Requests[2315].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14445Requests[2315].Request.Path = "/subscriptions/79febd02-f673-/resourceGroups/ddb28fff-ded3-491/providers/Microsoft.CustomerInsights/hubs/72a845e/views"; 14448Requests[2316].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14449Requests[2316].Request.Path = "/subscriptions/8d8c1bf4-0955-/resourceGroups/fc84e6ca-529e-49d/providers/Microsoft.CustomerInsights/hubs/622260a/widgetTypes"; 14452Requests[2317].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14453Requests[2317].Request.Path = "/subscriptions/5743d4e0-cf99-/resourceGroups/d2f59cfd-88f0-40e/providers/Microsoft.DataBox/jobs/5cb7b2e/bookShipmentPickUp"; 14456Requests[2318].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14457Requests[2318].Request.Path = "/subscriptions/96db5dd5-bc1f-/resourceGroups/e5a1b597-4a70-465/providers/Microsoft.DataBox/jobs/e493258/cancel"; 14460Requests[2319].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14461Requests[2319].Request.Path = "/subscriptions/d60b6a25-2133-/resourceGroups/637d7267-0eb4-4c0/providers/Microsoft.DataBox/jobs/f15b217/copyLogsUri"; 14464Requests[2320].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14465Requests[2320].Request.Path = "/subscriptions/9bf16963-e294-/resourceGroups/899f53ad-013c-464/providers/Microsoft.DataBox/jobs/a759409/downloadShippingLabel"; 14468Requests[2321].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14469Requests[2321].Request.Path = "/subscriptions/eda098c1-bf26-/resourceGroups/96ee29b4-12bb-47b/providers/Microsoft.DataBox/jobs/591917c/listSecrets"; 14472Requests[2322].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14473Requests[2322].Request.Path = "/subscriptions/18c1b8f7-444c-/resourceGroups/a8fe9026-bc56-48a/providers/Microsoft.DataBox/jobs/11dbc30/reportIssue"; 14476Requests[2323].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14477Requests[2323].Request.Path = "/subscriptions/2c87e594-6545-/resourceGroups/084b1c9b-bc56-495/providers/Microsoft.DataFactory/factories/c4ae6d94-11/datasets"; 14480Requests[2324].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14481Requests[2324].Request.Path = "/subscriptions/f096ef21-f7c2-/resourceGroups/90cbe96e-32af-4d6/providers/Microsoft.DataFactory/factories/b9412733-fe/integrationRuntimes"; 14484Requests[2325].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14485Requests[2325].Request.Path = "/subscriptions/0ed7fe4e-2766-/resourceGroups/e907c634-93c7-436/providers/Microsoft.DataFactory/factories/44f82a59-66/linkedservices"; 14488Requests[2326].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14489Requests[2326].Request.Path = "/subscriptions/c98159aa-ef6c-/resourceGroups/78f88ec2-0684-49d/providers/Microsoft.DataFactory/factories/392c0aa6-4f/pipelineruns"; 14492Requests[2327].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14493Requests[2327].Request.Path = "/subscriptions/ddf4d891-69f3-/resourceGroups/9a3630bf-0890-449/providers/Microsoft.DataFactory/factories/7a17060c-4f/pipelines"; 14496Requests[2328].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14497Requests[2328].Request.Path = "/subscriptions/c0251601-1880-/resourceGroups/05786b23-5c84-487/providers/Microsoft.DataFactory/factories/d67b55e6-0a/triggers"; 14500Requests[2329].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14501Requests[2329].Request.Path = "/subscriptions/90846ab6-109d-/resourceGroups/3fa7fdef-61f9-4b7/providers/Microsoft.DataLakeAnalytics/accounts/d531b2ed-42/computePolicies"; 14504Requests[2330].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14505Requests[2330].Request.Path = "/subscriptions/f2f22d12-545a-/resourceGroups/bd0f0e64-54b2-4d5/providers/Microsoft.DataLakeAnalytics/accounts/9a63b7c1-17/dataLakeStoreAccounts"; 14508Requests[2331].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14509Requests[2331].Request.Path = "/subscriptions/c1a4d77f-3391-/resourceGroups/7919538c-1e19-4fa/providers/Microsoft.DataLakeAnalytics/accounts/1bd919e4-e5/firewallRules"; 14512Requests[2332].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14513Requests[2332].Request.Path = "/subscriptions/63d68b26-0859-/resourceGroups/3133a6b9-80b0-458/providers/Microsoft.DataLakeAnalytics/accounts/d9f8e155-1b/storageAccounts"; 14516Requests[2333].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14517Requests[2333].Request.Path = "/subscriptions/404be707-98b1-/resourceGroups/f21b3d81-5c97-4b7/providers/Microsoft.DataLakeStore/accounts/4e7aba44-e8/enableKeyVault"; 14520Requests[2334].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14521Requests[2334].Request.Path = "/subscriptions/0417496d-b4b5-/resourceGroups/5c609994-f48b-4eb/providers/Microsoft.DataLakeStore/accounts/23d0e618-3e/firewallRules"; 14524Requests[2335].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14525Requests[2335].Request.Path = "/subscriptions/24b2946b-84d3-/resourceGroups/9369c3ab-1ffe-448/providers/Microsoft.DataLakeStore/accounts/233673c9-32/trustedIdProviders"; 14528Requests[2336].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14529Requests[2336].Request.Path = "/subscriptions/74b6b081-315c-/resourceGroups/e02f6e83-393d-421/providers/Microsoft.DataLakeStore/accounts/7bd89db6-a7/virtualNetworkRules"; 14532Requests[2337].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14533Requests[2337].Request.Path = "/subscriptions/93f6179e-7d35-/resourceGroups/d43c4d93-f0a0-4f9/providers/Microsoft.DBforMySQL/servers/bd66af5b-c/configurations"; 14536Requests[2338].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14537Requests[2338].Request.Path = "/subscriptions/e77794b9-9417-/resourceGroups/6ab12c8d-94c3-45b/providers/Microsoft.DBforMySQL/servers/1d6fe07c-b/databases"; 14540Requests[2339].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14541Requests[2339].Request.Path = "/subscriptions/9bc5854f-6896-/resourceGroups/d36dd9da-7661-460/providers/Microsoft.DBforMySQL/servers/e36d0e3b-a/firewallRules"; 14544Requests[2340].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14545Requests[2340].Request.Path = "/subscriptions/02294f48-08fb-/resourceGroups/1c47c8d6-94ac-49c/providers/Microsoft.DBforMySQL/servers/c2b6397e-2/logFiles"; 14548Requests[2341].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14549Requests[2341].Request.Path = "/subscriptions/cf12a138-978a-/resourceGroups/24f88c1b-58fd-40a/providers/Microsoft.DBforMySQL/servers/3b780ff1-d/virtualNetworkRules"; 14552Requests[2342].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14553Requests[2342].Request.Path = "/subscriptions/fe674c3c-25a1-/resourceGroups/be838f01-e985-47b/providers/Microsoft.DBforPostgreSQL/servers/6a03dc65-f/configurations"; 14556Requests[2343].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14557Requests[2343].Request.Path = "/subscriptions/95c8b391-4c06-/resourceGroups/05fbce2f-342a-42a/providers/Microsoft.DBforPostgreSQL/servers/0c1be135-d/databases"; 14560Requests[2344].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14561Requests[2344].Request.Path = "/subscriptions/a5d2a72d-2be7-/resourceGroups/31e4e843-c8a8-40d/providers/Microsoft.DBforPostgreSQL/servers/091d7ba3-0/firewallRules"; 14564Requests[2345].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14565Requests[2345].Request.Path = "/subscriptions/454bbac8-573a-/resourceGroups/60cf34c6-7187-4cc/providers/Microsoft.DBforPostgreSQL/servers/29260ff8-b/logFiles"; 14568Requests[2346].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14569Requests[2346].Request.Path = "/subscriptions/77ef79ab-7ff9-/resourceGroups/1dcaee4b-0631-41f/providers/Microsoft.DBforPostgreSQL/servers/cbb66656-9/virtualNetworkRules"; 14572Requests[2347].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14573Requests[2347].Request.Path = "/subscriptions/61aa057d-16a4-/resourceGroups/b57b5634-7d63-498/providers/Microsoft.Devices/IotHubs/72f12a8a-c/routingEndpointsHealth"; 14576Requests[2348].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14577Requests[2348].Request.Path = "/subscriptions/9258e0d2-66d1-/resourceGroups/76f6562d-2a67-436/providers/Microsoft.Devices/IotHubs/c997636d-5e7/certificates"; 14580Requests[2349].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14581Requests[2349].Request.Path = "/subscriptions/55eae448-b471-/resourceGroups/24297b62-cf9d-42f/providers/Microsoft.Devices/IotHubs/4bdacaab-534/exportDevices"; 14584Requests[2350].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14585Requests[2350].Request.Path = "/subscriptions/7ea62829-09cd-/resourceGroups/8c426e1e-cb74-427/providers/Microsoft.Devices/IotHubs/8fec5c9a-883/importDevices"; 14588Requests[2351].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14589Requests[2351].Request.Path = "/subscriptions/45906e53-044f-/resourceGroups/461023f2-c7d0-4d4/providers/Microsoft.Devices/IotHubs/bfc612b3-9e1/IotHubStats"; 14592Requests[2352].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14593Requests[2352].Request.Path = "/subscriptions/4f299567-9bed-/resourceGroups/26abdd9f-8563-438/providers/Microsoft.Devices/IotHubs/95702ee8-6d5/jobs"; 14596Requests[2353].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14597Requests[2353].Request.Path = "/subscriptions/7a963a44-33c8-/resourceGroups/272b9327-91d9-4cc/providers/Microsoft.Devices/IotHubs/741f1ce3-e02/listkeys"; 14600Requests[2354].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14601Requests[2354].Request.Path = "/subscriptions/365aa7c0-dd73-/resourceGroups/e5453639-9d32-49c/providers/Microsoft.Devices/IotHubs/af923135-30c/quotaMetrics"; 14604Requests[2355].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14605Requests[2355].Request.Path = "/subscriptions/27b6e3ff-9469-/resourceGroups/d57aa509-01c3-45e/providers/Microsoft.Devices/IotHubs/d303c69c-b8e/skus"; 14608Requests[2356].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14609Requests[2356].Request.Path = "/subscriptions/52ae4d8d-3757-/resourceGroups/496a528b-b885-46d/providers/Microsoft.Devices/provisioningServices/605bf1a0-7227-475f-9963/certificates"; 14612Requests[2357].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14613Requests[2357].Request.Path = "/subscriptions/07c093ba-fac6-/resourceGroups/4582d808-25f6-41c/providers/Microsoft.Devices/provisioningServices/373dae6f-ed86-407f-8858/listkeys"; 14616Requests[2358].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14617Requests[2358].Request.Path = "/subscriptions/bd41ef95-e3b0-/resourceGroups/72e4c032-0b0c-400/providers/Microsoft.Devices/provisioningServices/ed423f0c-24b2-45cc-8859/skus"; 14620Requests[2359].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14621Requests[2359].Request.Path = "/subscriptions/164bcf67-6fd1-/resourceGroups/88490251-ebde-48b/providers/Microsoft.DevTestLab/labs/9e3099f/artifactsources"; 14624Requests[2360].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14625Requests[2360].Request.Path = "/subscriptions/2f72209d-3420-/resourceGroups/0d90afea-3d5d-45c/providers/Microsoft.DevTestLab/labs/3dc3417/costinsights"; 14628Requests[2361].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14629Requests[2361].Request.Path = "/subscriptions/a13c1f33-f31b-/resourceGroups/beee4ae7-ffd0-429/providers/Microsoft.DevTestLab/labs/be7e92f/costs"; 14632Requests[2362].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14633Requests[2362].Request.Path = "/subscriptions/0416bdb0-20fe-/resourceGroups/4e101de7-82e0-434/providers/Microsoft.DevTestLab/labs/b14f9dc/customimages"; 14636Requests[2363].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14637Requests[2363].Request.Path = "/subscriptions/c507ff08-8630-/resourceGroups/b4189490-3804-4fd/providers/Microsoft.DevTestLab/labs/ea0e810/formulas"; 14640Requests[2364].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14641Requests[2364].Request.Path = "/subscriptions/d0ebab98-eb07-/resourceGroups/9ad8f24d-1f04-4fd/providers/Microsoft.DevTestLab/labs/532c972/galleryimages"; 14644Requests[2365].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14645Requests[2365].Request.Path = "/subscriptions/13d3ee50-9fe1-/resourceGroups/4bbdd6fe-e545-4bc/providers/Microsoft.DevTestLab/labs/7b038ec/notificationchannels"; 14648Requests[2366].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14649Requests[2366].Request.Path = "/subscriptions/b8465bef-c3bb-/resourceGroups/29b68972-de56-459/providers/Microsoft.DevTestLab/labs/16d4dc8/schedules"; 14652Requests[2367].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14653Requests[2367].Request.Path = "/subscriptions/d73a36d5-80df-/resourceGroups/65581861-953d-407/providers/Microsoft.DevTestLab/labs/f6ec44d/servicerunners"; 14656Requests[2368].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14657Requests[2368].Request.Path = "/subscriptions/237d7d24-5f65-/resourceGroups/1a7a6090-5812-45a/providers/Microsoft.DevTestLab/labs/ddf24e5/users"; 14660Requests[2369].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14661Requests[2369].Request.Path = "/subscriptions/ba0a0530-4eba-/resourceGroups/9db5d3e3-899d-487/providers/Microsoft.DevTestLab/labs/061f9b6/virtualmachines"; 14664Requests[2370].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14665Requests[2370].Request.Path = "/subscriptions/92ff9fcb-28fb-/resourceGroups/712b8b26-e17f-4fa/providers/Microsoft.DevTestLab/labs/deb7d1e/virtualnetworks"; 14668Requests[2371].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14669Requests[2371].Request.Path = "/subscriptions/93fb7aa0-d6af-/resourceGroups/a773acc6-b590-4e6/providers/Microsoft.DevTestLab/labs/1a342/claimAnyVm"; 14672Requests[2372].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14673Requests[2372].Request.Path = "/subscriptions/0425c12b-9083-/resourceGroups/cb9a2774-d4cd-4bd/providers/Microsoft.DevTestLab/labs/6bf8c/createEnvironment"; 14676Requests[2373].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14677Requests[2373].Request.Path = "/subscriptions/c8788197-a4e6-/resourceGroups/d8e0af9d-df15-480/providers/Microsoft.DevTestLab/labs/a03f6/exportResourceUsage"; 14680Requests[2374].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14681Requests[2374].Request.Path = "/subscriptions/775d7a21-c60f-/resourceGroups/9d8a5376-d301-407/providers/Microsoft.DevTestLab/labs/9d644/generateUploadUri"; 14684Requests[2375].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14685Requests[2375].Request.Path = "/subscriptions/6281961f-6808-/resourceGroups/1022c290-0822-419/providers/Microsoft.DevTestLab/labs/7b737/listVhds"; 14688Requests[2376].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14689Requests[2376].Request.Path = "/subscriptions/215afc2e-266a-/resourceGroups/b1110cdf-83ed-474/providers/Microsoft.DevTestLab/schedules/69b23/execute"; 14692Requests[2377].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14693Requests[2377].Request.Path = "/subscriptions/1fed1957-39f7-/resourceGroups/44e05af9-64da-4dd/providers/Microsoft.DevTestLab/schedules/e58c2/retarget"; 14696Requests[2378].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14697Requests[2378].Request.Path = "/subscriptions/9113a290-fb08-/resourceGroups/18636feb-9bf4-4ea/providers/Microsoft.DocumentDB/databaseAccounts/cc087092-12/failoverPriorityChange"; 14700Requests[2379].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14701Requests[2379].Request.Path = "/subscriptions/12eb7b34-4b75-/resourceGroups/9ebfc4ef-ddee-4c9/providers/Microsoft.DocumentDB/databaseAccounts/2254ff8d-bb/listConnectionStrings"; 14704Requests[2380].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14705Requests[2380].Request.Path = "/subscriptions/741599a2-b3ba-/resourceGroups/cb5ae435-659a-400/providers/Microsoft.DocumentDB/databaseAccounts/0cbb9a5a-9e/listKeys"; 14708Requests[2381].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14709Requests[2381].Request.Path = "/subscriptions/2b4d0069-204c-/resourceGroups/e7370607-8b6e-40d/providers/Microsoft.DocumentDB/databaseAccounts/9d90a3e0-17/metricDefinitions"; 14712Requests[2382].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14713Requests[2382].Request.Path = "/subscriptions/a103bed0-e379-/resourceGroups/488d5a08-75fa-447/providers/Microsoft.DocumentDB/databaseAccounts/8664d213-4c/metrics"; 14716Requests[2383].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14717Requests[2383].Request.Path = "/subscriptions/a1376f80-398b-/resourceGroups/5c530738-9bdb-4af/providers/Microsoft.DocumentDB/databaseAccounts/662e0ff1-f3/offlineRegion"; 14720Requests[2384].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14721Requests[2384].Request.Path = "/subscriptions/832899e8-b826-/resourceGroups/b049ad9e-0d36-400/providers/Microsoft.DocumentDB/databaseAccounts/54da2e7e-ff/onlineRegion"; 14724Requests[2385].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14725Requests[2385].Request.Path = "/subscriptions/f91ef0f1-b358-/resourceGroups/65cb22f6-9aa3-4fb/providers/Microsoft.DocumentDB/databaseAccounts/98719802-1a/readonlykeys"; 14728Requests[2386].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14729Requests[2386].Request.Path = "/subscriptions/2b2ae487-67d4-/resourceGroups/67285803-dd50-4c8/providers/Microsoft.DocumentDB/databaseAccounts/476d8789-f2/regenerateKey"; 14732Requests[2387].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14733Requests[2387].Request.Path = "/subscriptions/63fc87ee-f13b-/resourceGroups/068d32fd-ae46-45b/providers/Microsoft.DocumentDB/databaseAccounts/84d19579-d6/usages"; 14736Requests[2388].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14737Requests[2388].Request.Path = "/subscriptions/da04cb18-7b0c-/resourceGroups/11064f0a-0c02-4db/providers/Microsoft.DomainRegistration/domains/b57eefc1-7/domainOwnershipIdentifiers"; 14740Requests[2389].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14741Requests[2389].Request.Path = "/subscriptions/b0afacb5-379a-/resourceGroups/b42cb630-938c-4bb/providers/Microsoft.DomainRegistration/domains/b8fd0a90-6/renew"; 14744Requests[2390].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14745Requests[2390].Request.Path = "/subscriptions/3daabbf0-3fa6-/resourceGroups/72525e02-b11f-49c/providers/Microsoft.EventGrid/locations/00c3d84f/eventSubscriptions"; 14748Requests[2391].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14749Requests[2391].Request.Path = "/subscriptions/3f4afd71-0725-/resourceGroups/f4eca3a2-4766-4a9/providers/Microsoft.EventGrid/topics/4b092c32-/listKeys"; 14752Requests[2392].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14753Requests[2392].Request.Path = "/subscriptions/73a20738-f036-/resourceGroups/79a3b705-5a56-479/providers/Microsoft.EventGrid/topics/7f4dd137-/regenerateKey"; 14756Requests[2393].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14757Requests[2393].Request.Path = "/subscriptions/2b5be291-7f6f-/resourceGroups/0b0d83c6-e29f-4b3/providers/Microsoft.EventGrid/topicTypes/ec7ca112-e00a/eventSubscriptions"; 14760Requests[2394].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14761Requests[2394].Request.Path = "/subscriptions/f2ad7b75-f010-/resourceGroups/d9bed0a9-4566-432/providers/Microsoft.EventHub/namespaces/129ee83c-7af6/AuthorizationRules"; 14764Requests[2395].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14765Requests[2395].Request.Path = "/subscriptions/3d39d85b-e926-/resourceGroups/2b360384-3229-4c8/providers/Microsoft.EventHub/namespaces/b2a6a6b6-955d/AuthorizationRules"; 14768Requests[2396].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14769Requests[2396].Request.Path = "/subscriptions/6d142232-bd52-/resourceGroups/7943304f-d364-43e/providers/Microsoft.EventHub/namespaces/9ce0676a-4eb9/disasterRecoveryConfigs"; 14772Requests[2397].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14773Requests[2397].Request.Path = "/subscriptions/3cbf6b9a-0a68-/resourceGroups/b2076a95-e483-43c/providers/Microsoft.EventHub/namespaces/e6a7dd25-9cf9/eventhubs"; 14776Requests[2398].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14777Requests[2398].Request.Path = "/subscriptions/8ccd4f0f-c859-/resourceGroups/e58d9131-51a1-4fc/providers/Microsoft.EventHub/namespaces/610d2991-d2c5/messagingplan"; 14780Requests[2399].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14781Requests[2399].Request.Path = "/subscriptions/392f50fc-8ccb-/resourceGroups/155cd4e4-71ad-4a7/providers/Microsoft.Fabric.Admin/fabricLocations/6028f335/edgeGatewayPools"; 14784Requests[2400].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14785Requests[2400].Request.Path = "/subscriptions/1f883658-d94c-/resourceGroups/fe8b3382-0575-499/providers/Microsoft.Fabric.Admin/fabricLocations/61b336b3/edgeGateways"; 14788Requests[2401].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14789Requests[2401].Request.Path = "/subscriptions/12781d36-3f1c-/resourceGroups/55000685-4937-476/providers/Microsoft.Fabric.Admin/fabricLocations/f871b07b/fileShares"; 14792Requests[2402].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14793Requests[2402].Request.Path = "/subscriptions/91c773c7-83a9-/resourceGroups/958b16c3-971f-4bc/providers/Microsoft.Fabric.Admin/fabricLocations/d798dd04/infraRoleInstances"; 14796Requests[2403].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14797Requests[2403].Request.Path = "/subscriptions/77dcc0cb-917a-/resourceGroups/fbfec1d6-2e3b-499/providers/Microsoft.Fabric.Admin/fabricLocations/c2b383c7/infraRoles"; 14800Requests[2404].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14801Requests[2404].Request.Path = "/subscriptions/e9889d94-a4bd-/resourceGroups/0b02a36b-f88b-451/providers/Microsoft.Fabric.Admin/fabricLocations/fe876785/ipPools"; 14804Requests[2405].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14805Requests[2405].Request.Path = "/subscriptions/8b46d9a0-83c2-/resourceGroups/ca618674-cc6d-4e5/providers/Microsoft.Fabric.Admin/fabricLocations/bae94e27/logicalNetworks"; 14808Requests[2406].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14809Requests[2406].Request.Path = "/subscriptions/f06fd3b8-7609-/resourceGroups/8dfde893-c77e-4e0/providers/Microsoft.Fabric.Admin/fabricLocations/492ce36e/macAddressPools"; 14812Requests[2407].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14813Requests[2407].Request.Path = "/subscriptions/f8708a2a-bbed-/resourceGroups/0155d07b-7049-425/providers/Microsoft.Fabric.Admin/fabricLocations/babdfa15/scaleUnitNodes"; 14816Requests[2408].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14817Requests[2408].Request.Path = "/subscriptions/8b1cd55e-cab8-/resourceGroups/f570f3c4-a64d-4bd/providers/Microsoft.Fabric.Admin/fabricLocations/2d873c62/scaleUnits"; 14820Requests[2409].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14821Requests[2409].Request.Path = "/subscriptions/833a2ed3-b181-/resourceGroups/e8c9e308-c345-47f/providers/Microsoft.Fabric.Admin/fabricLocations/3f57c767/slbMuxInstances"; 14824Requests[2410].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14825Requests[2410].Request.Path = "/subscriptions/2a23a705-c889-/resourceGroups/c40833b2-e43a-45c/providers/Microsoft.Fabric.Admin/fabricLocations/6d027a1b/storageSubSystems"; 14828Requests[2411].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14829Requests[2411].Request.Path = "/subscriptions/6f782003-89e8-/resourceGroups/95200c2f-d7f2-478/providers/Microsoft.HDInsight/clusters/7fe5ae9c-03/applications"; 14832Requests[2412].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14833Requests[2412].Request.Path = "/subscriptions/d6f5c3e5-869f-/resourceGroups/741b23fd-a9e6-40a/providers/Microsoft.HDInsight/clusters/52ff7ece-32/executeScriptActions"; 14836Requests[2413].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14837Requests[2413].Request.Path = "/subscriptions/44f85668-d80a-/resourceGroups/082a6457-9738-485/providers/Microsoft.HDInsight/clusters/82dedf91-ff/scriptActions"; 14840Requests[2414].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14841Requests[2414].Request.Path = "/subscriptions/120db55e-2967-/resourceGroups/31ce5be0-100b-424/providers/Microsoft.HDInsight/clusters/afbd9bc3-12/scriptExecutionHistory"; 14844Requests[2415].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14845Requests[2415].Request.Path = "/subscriptions/6edcda91-76a9-/resourceGroups/78c554bb-b985-425/providers/Microsoft.ImportExport/jobs/8d06b23/listBitLockerKeys"; 14848Requests[2416].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14849Requests[2416].Request.Path = "/subscriptions/36621aae-6baa-/resourceGroups/fbee9e40-64a2-4bc/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/48a55622/alerts"; 14852Requests[2417].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14853Requests[2417].Request.Path = "/subscriptions/426311ba-914b-/resourceGroups/4c220240-449b-4f3/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/1f8a7d92/serviceHealths"; 14856Requests[2418].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14857Requests[2418].Request.Path = "/subscriptions/d9009777-f6e4-/resourceGroups/81605d0c-5348-409/providers/microsoft.insights/actionGroups/bc59baed-1fb3-4/subscribe"; 14860Requests[2419].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14861Requests[2419].Request.Path = "/subscriptions/3f3288b5-bc14-/resourcegroups/daaeaeb2-0396-44f/providers/microsoft.insights/alertrules/c07f67af/incidents"; 14864Requests[2420].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14865Requests[2420].Request.Path = "/subscriptions/3b6e5052-0ca5-/resourceGroups/0d2cda6f-5139-421/providers/Microsoft.Insights/components/0cebe3c4-a326/webtests"; 14868Requests[2421].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 14869Requests[2421].Request.Path = "/subscriptions/02169175-6bc8-/resourceGroups/d4ae599b-223c-46f/providers/Microsoft.Insights/components/fd311d09-2c5/Annotations"; 14872Requests[2422].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14873Requests[2422].Request.Path = "/subscriptions/ca0ea866-2542-/resourceGroups/7399622e-81e2-47c/providers/Microsoft.Insights/components/0cdc335c-519/Annotations"; 14876Requests[2423].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14877Requests[2423].Request.Path = "/subscriptions/6b1486e6-525a-/resourceGroups/528df4e2-39b4-473/providers/Microsoft.Insights/components/93079dc7-f20/ApiKeys"; 14880Requests[2424].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14881Requests[2424].Request.Path = "/subscriptions/5ce6f766-b661-/resourceGroups/03095bf0-15e0-47f/providers/Microsoft.Insights/components/8ece28c7-c73/ApiKeys"; 14884Requests[2425].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 14885Requests[2425].Request.Path = "/subscriptions/b68d7b37-3bb9-/resourceGroups/8f2c9140-4863-473/providers/Microsoft.Insights/components/81b185c0-114/currentbillingfeatures"; 14888Requests[2426].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14889Requests[2426].Request.Path = "/subscriptions/d2ff1134-5583-/resourceGroups/ad87d64c-503e-4f6/providers/Microsoft.Insights/components/3d6299bc-90a/currentbillingfeatures"; 14892Requests[2427].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14893Requests[2427].Request.Path = "/subscriptions/5b603267-9167-/resourceGroups/1bcf371f-7887-45c/providers/Microsoft.Insights/components/d0057ccd-7a5/DefaultWorkItemConfig"; 14896Requests[2428].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14897Requests[2428].Request.Path = "/subscriptions/76ed07d7-a36e-/resourceGroups/6095f8fe-7da2-4bc/providers/Microsoft.Insights/components/62528b6f-45a/exportconfiguration"; 14900Requests[2429].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14901Requests[2429].Request.Path = "/subscriptions/70789e34-8a3d-/resourceGroups/1cd4b96e-5a8c-482/providers/Microsoft.Insights/components/aec8b67b-5f7/exportconfiguration"; 14904Requests[2430].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14905Requests[2430].Request.Path = "/subscriptions/1f5640a1-a1b2-/resourceGroups/5af995c3-b3a2-415/providers/Microsoft.Insights/components/abc57574-475/favorites"; 14908Requests[2431].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14909Requests[2431].Request.Path = "/subscriptions/7b44cc5a-ea3c-/resourceGroups/871924ce-3fed-468/providers/Microsoft.Insights/components/6dd11bc3-306/featurecapabilities"; 14912Requests[2432].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14913Requests[2432].Request.Path = "/subscriptions/02b4ef49-d4b3-/resourceGroups/1bab2cad-ba16-4c6/providers/Microsoft.Insights/components/c44ca8c5-3b4/getavailablebillingfeatures"; 14916Requests[2433].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14917Requests[2433].Request.Path = "/subscriptions/8347daba-3447-/resourceGroups/71e6d8de-7b79-49f/providers/Microsoft.Insights/components/3846c1e7-788/ProactiveDetectionConfigs"; 14920Requests[2434].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14921Requests[2434].Request.Path = "/subscriptions/9674bb72-0606-/resourceGroups/a954179b-41ef-4c9/providers/Microsoft.Insights/components/e48ed1b0-ad0/purge"; 14924Requests[2435].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14925Requests[2435].Request.Path = "/subscriptions/fcd1bb21-7747-/resourceGroups/b159f2e3-1bc5-41e/providers/Microsoft.Insights/components/cd31ed42-673/quotastatus"; 14928Requests[2436].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14929Requests[2436].Request.Path = "/subscriptions/12d1122c-6b64-/resourceGroups/34666675-a751-40b/providers/Microsoft.Insights/components/93a63655-9d3/syntheticmonitorlocations"; 14932Requests[2437].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14933Requests[2437].Request.Path = "/subscriptions/5d11ff98-778d-/resourceGroups/626c0991-4343-45b/providers/Microsoft.Insights/components/eac801f1-fab/WorkItemConfigs"; 14936Requests[2438].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14937Requests[2438].Request.Path = "/subscriptions/fbad2c35-7ee9-/resourceGroups/3af28f67-0272-4e7/providers/Microsoft.Insights/components/e0ef114e-bbe/WorkItemConfigs"; 14940Requests[2439].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14941Requests[2439].Request.Path = "/subscriptions/83fa995e-53f0-/resourceGroups/e233caa1-a230-43a/providers/Microsoft.Insights/metricAlerts/f420e3f2/status"; 14944Requests[2440].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14945Requests[2440].Request.Path = "/subscriptions/59960f61-a719-/resourceGroups/5405a2e9-b3cf-4d6/providers/Microsoft.KeyVault/vaults/24b1c79b-/secrets"; 14948Requests[2441].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14949Requests[2441].Request.Path = "/subscriptions/0d6d1ef6-abd5-/resourceGroups/fb8bdcbe-5cd8-43e/providers/Microsoft.Logic/integrationAccounts/43136dc1-6a1e-41eb-87c/agreements"; 14952Requests[2442].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14953Requests[2442].Request.Path = "/subscriptions/9dd209a3-3f6e-/resourceGroups/a5e34aaf-56aa-464/providers/Microsoft.Logic/integrationAccounts/e842b239-1c02-4508-8cc/assemblies"; 14956Requests[2443].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14957Requests[2443].Request.Path = "/subscriptions/430254b2-159f-/resourceGroups/0c1efcfc-9aaa-4f9/providers/Microsoft.Logic/integrationAccounts/6ff327c1-1008-45f0-9ad/batchConfigurations"; 14960Requests[2444].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14961Requests[2444].Request.Path = "/subscriptions/eed709a5-ce5b-/resourceGroups/b33f9643-a223-45d/providers/Microsoft.Logic/integrationAccounts/5bff32b5-c342-4bb6-ae9/certificates"; 14964Requests[2445].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14965Requests[2445].Request.Path = "/subscriptions/22d36142-e207-/resourceGroups/a95f462b-4724-482/providers/Microsoft.Logic/integrationAccounts/2fbae2b4-71b7-431c-986/listCallbackUrl"; 14968Requests[2446].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14969Requests[2446].Request.Path = "/subscriptions/a925e4f7-86fd-/resourceGroups/441a770e-a534-49f/providers/Microsoft.Logic/integrationAccounts/6e233e25-4f2e-4655-975/listKeyVaultKeys"; 14972Requests[2447].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14973Requests[2447].Request.Path = "/subscriptions/3d197d87-3dad-/resourceGroups/82cc607c-2b40-4a3/providers/Microsoft.Logic/integrationAccounts/db1f2bed-479e-4876-9d0/logTrackingEvents"; 14976Requests[2448].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14977Requests[2448].Request.Path = "/subscriptions/d4ae2de4-552c-/resourceGroups/2b8baf8d-a5e6-4f1/providers/Microsoft.Logic/integrationAccounts/ef0e4cfc-fe51-4fde-972/maps"; 14980Requests[2449].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14981Requests[2449].Request.Path = "/subscriptions/ce8640e5-8dcd-/resourceGroups/e6b587dc-4d20-436/providers/Microsoft.Logic/integrationAccounts/ce91ea4c-4a50-4c51-89a/partners"; 14984Requests[2450].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 14985Requests[2450].Request.Path = "/subscriptions/c95e4875-9391-/resourceGroups/342473bd-403b-461/providers/Microsoft.Logic/integrationAccounts/512d79c7-6bc2-4f50-9ae/regenerateAccessKey"; 14988Requests[2451].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14989Requests[2451].Request.Path = "/subscriptions/622dc1b4-f9cc-/resourceGroups/1ee72e25-73fa-475/providers/Microsoft.Logic/integrationAccounts/84005798-52ac-4c50-827/schemas"; 14992Requests[2452].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14993Requests[2452].Request.Path = "/subscriptions/39152a41-c5a4-/resourceGroups/7c192b1d-41b2-4b0/providers/Microsoft.Logic/integrationAccounts/c2be329d-8094-4500-84d/sessions"; 14996Requests[2453].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 14997Requests[2453].Request.Path = "/subscriptions/7fa871b9-0d77-/resourceGroups/b7e9655f-8033-422/providers/Microsoft.Logic/workflows/2fece0c5-102/accessKeys"; 15000Requests[2454].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15001Requests[2454].Request.Path = "/subscriptions/b18ad83f-3139-/resourceGroups/fdbca50a-af58-474/providers/Microsoft.Logic/workflows/14262dcb-b25/disable"; 15004Requests[2455].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15005Requests[2455].Request.Path = "/subscriptions/25b6b1d7-4586-/resourceGroups/896eefbd-22a2-495/providers/Microsoft.Logic/workflows/01318ecf-8f6/enable"; 15008Requests[2456].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15009Requests[2456].Request.Path = "/subscriptions/82c7aa6e-9bef-/resourceGroups/da499722-2456-42d/providers/Microsoft.Logic/workflows/d4bc5d05-421/generateUpgradedDefinition"; 15012Requests[2457].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15013Requests[2457].Request.Path = "/subscriptions/81cffe24-bd07-/resourceGroups/f50cc3b5-da2f-46b/providers/Microsoft.Logic/workflows/e50f0aee-d7a/listCallbackUrl"; 15016Requests[2458].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15017Requests[2458].Request.Path = "/subscriptions/2e758515-82f2-/resourceGroups/7ef90a3b-9c97-42f/providers/Microsoft.Logic/workflows/24dfbe98-780/listSwagger"; 15020Requests[2459].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15021Requests[2459].Request.Path = "/subscriptions/70504882-1100-/resourceGroups/174200c1-ff2b-443/providers/Microsoft.Logic/workflows/211e6328-0c3/move"; 15024Requests[2460].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15025Requests[2460].Request.Path = "/subscriptions/da0226c0-753a-/resourceGroups/9f034559-29b8-488/providers/Microsoft.Logic/workflows/4c1c986a-61d/regenerateAccessKey"; 15028Requests[2461].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15029Requests[2461].Request.Path = "/subscriptions/ab2aa36c-b4f8-/resourceGroups/2d630230-c02a-4cd/providers/Microsoft.Logic/workflows/d7acdcf6-003/run"; 15032Requests[2462].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15033Requests[2462].Request.Path = "/subscriptions/9f242de0-0ce6-/resourceGroups/765a4cfa-602b-470/providers/Microsoft.Logic/workflows/6dc2a4a5-07c/runs"; 15036Requests[2463].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15037Requests[2463].Request.Path = "/subscriptions/fb2b0ef0-b3ae-/resourceGroups/537056af-1c03-450/providers/Microsoft.Logic/workflows/c69df099-503/triggers"; 15040Requests[2464].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15041Requests[2464].Request.Path = "/subscriptions/4f0a70dd-c942-/resourceGroups/5f0e7aea-d1a0-4b0/providers/Microsoft.Logic/workflows/a1f4cc1d-e44/validate"; 15044Requests[2465].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15045Requests[2465].Request.Path = "/subscriptions/a784c792-16f1-/resourceGroups/788be499-5c26-45f/providers/Microsoft.Logic/workflows/4b0c6783-1e6/versions"; 15048Requests[2466].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15049Requests[2466].Request.Path = "/subscriptions/687006eb-3942-/resourceGroups/de05b370-096f-476/providers/Microsoft.MachineLearning/commitmentPlans/8a281bb6-d0e3-4f1d/commitmentAssociations"; 15052Requests[2467].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15053Requests[2467].Request.Path = "/subscriptions/6676e290-39e9-/resourceGroups/35fded2e-7a87-4f9/providers/Microsoft.MachineLearning/commitmentPlans/e0b72c32-18b9-47fc/usageHistory"; 15056Requests[2468].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15057Requests[2468].Request.Path = "/subscriptions/1fb0005c-57ea-/resourceGroups/d86037b8-6377-447/providers/Microsoft.MachineLearning/webServices/30b17d6c-1202-/CreateRegionalBlob"; 15060Requests[2469].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15061Requests[2469].Request.Path = "/subscriptions/7add62db-4a58-/resourceGroups/4569970c-8d3e-428/providers/Microsoft.MachineLearning/webServices/7dd5bea2-7e39-/listKeys"; 15064Requests[2470].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15065Requests[2470].Request.Path = "/subscriptions/5b87bc69-7eda-/resourceGroups/e4ce4933-6aa4-40d/providers/Microsoft.MachineLearning/workspaces/200597cd-0731/listWorkspaceKeys"; 15068Requests[2471].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15069Requests[2471].Request.Path = "/subscriptions/9b736de6-ddee-/resourceGroups/c9009192-cdae-410/providers/Microsoft.MachineLearning/workspaces/e9d828a9-5122/resyncStorageKeys"; 15072Requests[2472].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15073Requests[2472].Request.Path = "/subscriptions/ed4ab297-45c0-/resourceGroups/369bcd04-6b13-44a/providers/Microsoft.MachineLearningCompute/operationalizationClusters/45274610-4e/checkSystemServicesUpdatesAvailable"; 15076Requests[2473].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15077Requests[2473].Request.Path = "/subscriptions/007f74f6-8803-/resourceGroups/58a4917a-c1c3-4a7/providers/Microsoft.MachineLearningCompute/operationalizationClusters/dcba7da8-17/checkUpdate"; 15080Requests[2474].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15081Requests[2474].Request.Path = "/subscriptions/2ce62f6e-b444-/resourceGroups/0705efd7-e10b-480/providers/Microsoft.MachineLearningCompute/operationalizationClusters/806c483b-89/listKeys"; 15084Requests[2475].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15085Requests[2475].Request.Path = "/subscriptions/381967f8-b0c8-/resourceGroups/b7ea4fca-ff22-4fc/providers/Microsoft.MachineLearningCompute/operationalizationClusters/e871889b-67/updateSystem"; 15088Requests[2476].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15089Requests[2476].Request.Path = "/subscriptions/6aee2c0f-f391-/resourceGroups/9d0b298f-eac3-453/providers/Microsoft.MachineLearningCompute/operationalizationClusters/a6897f89-c4/updateSystemServices"; 15092Requests[2477].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15093Requests[2477].Request.Path = "/subscriptions/1572af86-5885-/resourceGroups/4a3976ce-a217-48b/providers/Microsoft.MachineLearningExperimentation/accounts/81a20d99-1c/workspaces"; 15096Requests[2478].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15097Requests[2478].Request.Path = "/subscriptions/f3c04d31-4f19-/resourceGroups/32406294-fd5b-4e8/providers/Microsoft.MachineLearningServices/workspaces/779ed6cf-a34f/listKeys"; 15100Requests[2479].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15101Requests[2479].Request.Path = "/subscriptions/7caad3ef-ece3-/resourceGroups/6f20152c-21e8-4fd/providers/Microsoft.MachineLearningServices/workspaces/a6343a66-19e7/resyncKeys"; 15104Requests[2480].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15105Requests[2480].Request.Path = "/subscriptions/fec878ef-7ad5-/resourceGroups/0f1db200-73a6-416/providers/Microsoft.Maps/accounts/98b6794e-2e/listKeys"; 15108Requests[2481].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15109Requests[2481].Request.Path = "/subscriptions/e983b564-6a12-/resourceGroups/28ce4e2b-f17e-4ca/providers/Microsoft.Maps/accounts/10a16b33-f4/regenerateKey"; 15112Requests[2482].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15113Requests[2482].Request.Path = "/subscriptions/650fea78-31d7-/resourceGroups/0a5868d1-9950-45f/providers/Microsoft.Media/mediaServices/3ec27ab8-79/assets"; 15116Requests[2483].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15117Requests[2483].Request.Path = "/subscriptions/e4f6399c-914b-/resourceGroups/90e0d438-446c-49e/providers/Microsoft.Media/mediaServices/fd910963-fb/contentKeyPolicies"; 15120Requests[2484].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15121Requests[2484].Request.Path = "/subscriptions/3a915b85-9855-/resourceGroups/f95f118a-dc19-4c6/providers/Microsoft.Media/mediaservices/4dd6f81a-9b/liveEvents"; 15124Requests[2485].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15125Requests[2485].Request.Path = "/subscriptions/33bfed9f-4837-/resourceGroups/7678b3f8-26cb-431/providers/Microsoft.Media/mediaservices/bf5fdbe6-9a/streamingEndpoints"; 15128Requests[2486].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15129Requests[2486].Request.Path = "/subscriptions/3897a437-ab22-/resourceGroups/e739d84f-481b-47a/providers/Microsoft.Media/mediaServices/ba8ee4fd-5a/streamingLocators"; 15132Requests[2487].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15133Requests[2487].Request.Path = "/subscriptions/34a86834-d078-/resourceGroups/7a66d981-b0a1-4a2/providers/Microsoft.Media/mediaServices/81443267-d2/streamingPolicies"; 15136Requests[2488].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15137Requests[2488].Request.Path = "/subscriptions/bcca70ae-b45a-/resourceGroups/84991711-41c7-464/providers/Microsoft.Media/mediaServices/a419ef57-8c/transforms"; 15140Requests[2489].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15141Requests[2489].Request.Path = "/subscriptions/d0b4bb30-4fdc-/resourceGroups/b5278abe-f0e9-434/providers/Microsoft.Media/mediaservices/4ec5f31e-8a10-43/listKeys"; 15144Requests[2490].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15145Requests[2490].Request.Path = "/subscriptions/a62fbd69-af9a-/resourceGroups/20a8eb9a-5ba4-40e/providers/Microsoft.Media/mediaservices/d5573144-2014-4d/regenerateKey"; 15148Requests[2491].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15149Requests[2491].Request.Path = "/subscriptions/2864ac80-3cd1-/resourceGroups/a5a9cdcb-f96f-4d5/providers/Microsoft.Media/mediaservices/45b1b7c4-8563-4a/syncStorageKeys"; 15152Requests[2492].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15153Requests[2492].Request.Path = "/subscriptions/e8d2da40-67da-/resourceGroups/c9621aac-20cf-4fe/providers/Microsoft.Migrate/projects/214674fb-f5/assessments"; 15156Requests[2493].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15157Requests[2493].Request.Path = "/subscriptions/b9beb251-c62d-/resourceGroups/e34c664d-6a1b-4a9/providers/Microsoft.Migrate/projects/00aa9fbd-16/groups"; 15160Requests[2494].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15161Requests[2494].Request.Path = "/subscriptions/cc535e66-c44c-/resourcegroups/100169f6-65f4-4c0/providers/Microsoft.Migrate/projects/01014f95-34/keys"; 15164Requests[2495].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15165Requests[2495].Request.Path = "/subscriptions/d944dad3-b8ab-/resourceGroups/625ec46d-12fc-402/providers/Microsoft.Migrate/projects/6099e05c-21/machines"; 15168Requests[2496].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15169Requests[2496].Request.Path = "/subscriptions/61a26768-f11a-/resourceGroups/7d86f419-6a03-4fc/providers/Microsoft.Network/applicationGateways/39f94cba-3521-4f80-b9d/backendhealth"; 15172Requests[2497].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15173Requests[2497].Request.Path = "/subscriptions/0a056503-cd0c-/resourceGroups/16ac728d-2df0-43b/providers/Microsoft.Network/applicationGateways/f4b79f27-e424-4fcc-ba2/start"; 15176Requests[2498].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15177Requests[2498].Request.Path = "/subscriptions/974b224b-dfdd-/resourceGroups/8608466c-874e-49e/providers/Microsoft.Network/applicationGateways/ff7ee07e-d2a2-4ff3-be2/stop"; 15180Requests[2499].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15181Requests[2499].Request.Path = "/subscriptions/5acc9efd-fdb7-/resourceGroups/03fa8363-04c7-48a/providers/Microsoft.Network/connections/03256960-f6c8-423b-8cc8-5aa05901925/sharedkey"; 15184Requests[2500].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 15185Requests[2500].Request.Path = "/subscriptions/4c13b784-52a0-/resourceGroups/d50796a7-ea1d-44f/providers/Microsoft.Network/connections/75175933-803e-4033-bbb0-85ed1312909/sharedkey"; 15188Requests[2501].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15189Requests[2501].Request.Path = "/subscriptions/c02b18f5-9c9a-/resourceGroups/00d74d07-08a7-400/providers/Microsoft.Network/connections/0537e116-b3b9-47b0-84da-67a010e879a/vpndeviceconfigurationscript"; 15192Requests[2502].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15193Requests[2502].Request.Path = "/subscriptions/5f59a0ed-aee1-/resourceGroups/55c49bc3-4729-42f/providers/Microsoft.Network/dnsZones/c82d7285/all"; 15196Requests[2503].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15197Requests[2503].Request.Path = "/subscriptions/cb932a3d-a02f-/resourceGroups/3d026708-e6a9-41e/providers/Microsoft.Network/dnsZones/69d44dbe/recordsets"; 15200Requests[2504].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15201Requests[2504].Request.Path = "/subscriptions/02f36d73-f34e-/resourceGroups/07b4df3e-fda7-4c8/providers/Microsoft.Network/expressRouteCircuits/02de2791-c2/arpTable"; 15204Requests[2505].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15205Requests[2505].Request.Path = "/subscriptions/6f2bad0b-2e11-/resourceGroups/7e84ce27-7cc7-4b4/providers/Microsoft.Network/expressRouteCircuits/80f7ddb3-93/authorizations"; 15208Requests[2506].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15209Requests[2506].Request.Path = "/subscriptions/875800cc-deaf-/resourceGroups/2b0236cd-5bd6-4d2/providers/Microsoft.Network/expressRouteCircuits/bce17d92-31/peerings"; 15212Requests[2507].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15213Requests[2507].Request.Path = "/subscriptions/317d9db9-f3df-/resourceGroups/83b605a9-c99f-48c/providers/Microsoft.Network/expressRouteCircuits/1c4966fe-88/routesTable"; 15216Requests[2508].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15217Requests[2508].Request.Path = "/subscriptions/c4447820-e2ae-/resourceGroups/9df5df3b-93c9-436/providers/Microsoft.Network/expressRouteCircuits/619cd66a-4d/stats"; 15220Requests[2509].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15221Requests[2509].Request.Path = "/subscriptions/cd2aa2ca-01fb-/resourceGroups/814ccb5c-72f0-403/providers/Microsoft.Network/expressRouteCrossConnections/a2b28e8a-9b7a-4bff-/peerings"; 15224Requests[2510].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15225Requests[2510].Request.Path = "/subscriptions/e1a66519-c4ed-/resourceGroups/e0c5775a-5a4c-45b/providers/Microsoft.Network/loadBalancers/78f08e8e-71d1-4f/backendAddressPools"; 15228Requests[2511].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15229Requests[2511].Request.Path = "/subscriptions/7d4f6624-6d82-/resourceGroups/2239a9ae-43cd-401/providers/Microsoft.Network/loadBalancers/f2c2a276-4e02-48/frontendIPConfigurations"; 15232Requests[2512].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15233Requests[2512].Request.Path = "/subscriptions/c3c9ddfd-7fa4-/resourceGroups/3f1f6ad1-b00d-4b1/providers/Microsoft.Network/loadBalancers/5d290c90-5864-4f/inboundNatRules"; 15236Requests[2513].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15237Requests[2513].Request.Path = "/subscriptions/c010c490-bfbc-/resourceGroups/03920f5c-defa-407/providers/Microsoft.Network/loadBalancers/e936598c-6a13-47/loadBalancingRules"; 15240Requests[2514].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15241Requests[2514].Request.Path = "/subscriptions/2c524a16-8a0a-/resourceGroups/15fe80c5-0b67-4ca/providers/Microsoft.Network/loadBalancers/157dfbcb-447f-42/networkInterfaces"; 15244Requests[2515].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15245Requests[2515].Request.Path = "/subscriptions/a3986d8d-c58b-/resourceGroups/72f65c60-92e7-4cf/providers/Microsoft.Network/loadBalancers/92aa1b53-01fe-4c/probes"; 15248Requests[2516].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15249Requests[2516].Request.Path = "/subscriptions/f166fcc7-b76e-/resourceGroups/3a587762-20b0-445/providers/Microsoft.Network/networkInterfaces/5621db23-3874-41af-a/effectiveNetworkSecurityGroups"; 15252Requests[2517].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15253Requests[2517].Request.Path = "/subscriptions/3c82d018-7643-/resourceGroups/5abd7738-5a8f-478/providers/Microsoft.Network/networkInterfaces/245fc307-83c5-4d1c-9/effectiveRouteTable"; 15256Requests[2518].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15257Requests[2518].Request.Path = "/subscriptions/7ed359a2-d070-/resourceGroups/3cc3a18f-1c7e-4ab/providers/Microsoft.Network/networkInterfaces/3b954f91-fe99-4440-b/ipConfigurations"; 15260Requests[2519].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15261Requests[2519].Request.Path = "/subscriptions/f9ebf061-379b-/resourceGroups/d85c573f-988b-40c/providers/Microsoft.Network/networkInterfaces/f322d9b5-f5c0-46fd-b/loadBalancers"; 15264Requests[2520].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15265Requests[2520].Request.Path = "/subscriptions/c746f5f1-93a2-/resourceGroups/75a8eb1a-f352-413/providers/Microsoft.Network/networkSecurityGroups/27dc2a07-67f7-43a9-8c94-/defaultSecurityRules"; 15268Requests[2521].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15269Requests[2521].Request.Path = "/subscriptions/fd9693dd-71c5-/resourceGroups/8e157748-e0d8-488/providers/Microsoft.Network/networkSecurityGroups/e87fd5f6-b709-4f79-a2f3-/securityRules"; 15272Requests[2522].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15273Requests[2522].Request.Path = "/subscriptions/e94f4cc3-b47c-/resourceGroups/6cfe26db-6276-435/providers/Microsoft.Network/networkWatchers/e7d5b948-1b3b-477c/availableProvidersList"; 15276Requests[2523].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15277Requests[2523].Request.Path = "/subscriptions/6e0acf34-2e78-/resourceGroups/8133c95f-f9ba-4ba/providers/Microsoft.Network/networkWatchers/a6bb422c-a79c-4533/azureReachabilityReport"; 15280Requests[2524].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15281Requests[2524].Request.Path = "/subscriptions/d5a3a73f-dce5-/resourceGroups/87be2abd-a864-4bc/providers/Microsoft.Network/networkWatchers/d478f11b-2065-4637/configureFlowLog"; 15284Requests[2525].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15285Requests[2525].Request.Path = "/subscriptions/2b40d75c-ffe2-/resourceGroups/706c9e18-1cf1-4c0/providers/Microsoft.Network/networkWatchers/268d0b84-7c55-40bd/connectionMonitors"; 15288Requests[2526].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15289Requests[2526].Request.Path = "/subscriptions/aa2f10ac-db03-/resourceGroups/c5c829c2-c4f3-431/providers/Microsoft.Network/networkWatchers/664e3cab-25c0-478c/connectivityCheck"; 15292Requests[2527].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15293Requests[2527].Request.Path = "/subscriptions/42c68cba-0578-/resourceGroups/d784a0ae-4cb1-4d2/providers/Microsoft.Network/networkWatchers/3e53388a-e173-49a5/ipFlowVerify"; 15296Requests[2528].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15297Requests[2528].Request.Path = "/subscriptions/42ede897-4f1c-/resourceGroups/d0074ae9-3ce7-4ef/providers/Microsoft.Network/networkWatchers/68f10327-63bb-45ec/nextHop"; 15300Requests[2529].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15301Requests[2529].Request.Path = "/subscriptions/1fcc94c9-0436-/resourceGroups/933260d7-d9f6-4e7/providers/Microsoft.Network/networkWatchers/91607772-0d1c-4fd8/packetCaptures"; 15304Requests[2530].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15305Requests[2530].Request.Path = "/subscriptions/9b1aa376-3adc-/resourceGroups/ea5ef52f-d94f-44c/providers/Microsoft.Network/networkWatchers/acd94b3e-323d-41f3/queryFlowLogStatus"; 15308Requests[2531].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15309Requests[2531].Request.Path = "/subscriptions/938ae6fd-7d53-/resourceGroups/d1463303-4ea9-412/providers/Microsoft.Network/networkWatchers/6dee5924-3dac-4feb/queryTroubleshootResult"; 15312Requests[2532].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15313Requests[2532].Request.Path = "/subscriptions/5ccdb802-93c5-/resourceGroups/e3c4f928-ae6b-475/providers/Microsoft.Network/networkWatchers/c7bc8624-f2e1-4330/securityGroupView"; 15316Requests[2533].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15317Requests[2533].Request.Path = "/subscriptions/615aad33-27c8-/resourceGroups/a2123e16-7aeb-4fe/providers/Microsoft.Network/networkWatchers/54424ac5-4c38-4967/topology"; 15320Requests[2534].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15321Requests[2534].Request.Path = "/subscriptions/c9bd217d-aa1d-/resourceGroups/d11b3c78-a380-41b/providers/Microsoft.Network/networkWatchers/479f8529-5e41-4187/troubleshoot"; 15324Requests[2535].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15325Requests[2535].Request.Path = "/subscriptions/349ddc84-50bb-/resourceGroups/cbd4d755-9001-4c0/providers/Microsoft.Network/routeFilters/b8790b91-2ca8-4/routeFilterRules"; 15328Requests[2536].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15329Requests[2536].Request.Path = "/subscriptions/82263d5b-a05c-/resourceGroups/5089813f-ec0f-422/providers/Microsoft.Network/routeTables/d641b2fb-db55-/routes"; 15332Requests[2537].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15333Requests[2537].Request.Path = "/subscriptions/06ca919d-972f-/resourceGroups/f4ae6a85-92b6-4e9/providers/Microsoft.Network/virtualNetworkGateways/6fdce78d-443e-47ee-ae2c-f/connections"; 15336Requests[2538].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15337Requests[2538].Request.Path = "/subscriptions/afca0b21-7b04-/resourceGroups/3ff81554-de52-431/providers/Microsoft.Network/virtualNetworkGateways/0f8dcd55-0e19-4e65-a6b6-4/generatevpnclientpackage"; 15340Requests[2539].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15341Requests[2539].Request.Path = "/subscriptions/ed8b1141-bfe7-/resourceGroups/e2b57b80-47ac-467/providers/Microsoft.Network/virtualNetworkGateways/f29d1d28-75a1-4b38-bc04-6/generatevpnprofile"; 15344Requests[2540].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15345Requests[2540].Request.Path = "/subscriptions/93eac03b-9edd-/resourceGroups/3fd53200-7168-493/providers/Microsoft.Network/virtualNetworkGateways/09df8ad2-1c49-4e69-9816-e/getAdvertisedRoutes"; 15348Requests[2541].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15349Requests[2541].Request.Path = "/subscriptions/81638484-76f1-/resourceGroups/b4a77776-2984-4c4/providers/Microsoft.Network/virtualNetworkGateways/52138686-5ba2-4651-b385-7/getBgpPeerStatus"; 15352Requests[2542].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15353Requests[2542].Request.Path = "/subscriptions/ef19d246-234a-/resourceGroups/3a481677-1e51-471/providers/Microsoft.Network/virtualNetworkGateways/b1ed2406-1038-458a-b6c6-4/getLearnedRoutes"; 15356Requests[2543].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15357Requests[2543].Request.Path = "/subscriptions/454df7b5-f4c5-/resourceGroups/3928d3b2-6c1c-409/providers/Microsoft.Network/virtualNetworkGateways/bd1ccc6b-52b1-4a1e-a15a-8/getvpnclientipsecparameters"; 15360Requests[2544].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15361Requests[2544].Request.Path = "/subscriptions/e958472a-1130-/resourceGroups/ba801e73-4770-46d/providers/Microsoft.Network/virtualNetworkGateways/69903777-68b2-47c2-b9c8-a/getvpnprofilepackageurl"; 15364Requests[2545].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15365Requests[2545].Request.Path = "/subscriptions/fa70acad-db5c-/resourceGroups/7b71f4e7-e155-4c6/providers/Microsoft.Network/virtualNetworkGateways/253b3a69-f21f-4de9-9727-c/reset"; 15368Requests[2546].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15369Requests[2546].Request.Path = "/subscriptions/0e4e3294-e384-/resourceGroups/8c77af56-0136-489/providers/Microsoft.Network/virtualNetworkGateways/1dcdb5e3-a092-46ba-aef4-e/setvpnclientipsecparameters"; 15372Requests[2547].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15373Requests[2547].Request.Path = "/subscriptions/b94f7678-c5ab-/resourceGroups/d01bd974-0ca0-424/providers/Microsoft.Network/virtualNetworkGateways/5f333acf-f828-4a36-b335-e/supportedvpndevices"; 15376Requests[2548].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15377Requests[2548].Request.Path = "/subscriptions/2ce880be-c3a0-/resourceGroups/15e2cf07-c204-48c/providers/Microsoft.Network/virtualNetworks/990fe251-e54f-4372/CheckIPAddressAvailability"; 15380Requests[2549].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15381Requests[2549].Request.Path = "/subscriptions/880cb4c6-497c-/resourceGroups/55a13a18-9e70-472/providers/Microsoft.Network/virtualNetworks/d3368414-fe65-427b/subnets"; 15384Requests[2550].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15385Requests[2550].Request.Path = "/subscriptions/4b851da6-899f-/resourceGroups/77ee5314-110b-45c/providers/Microsoft.Network/virtualNetworks/431008f4-b70d-4614/usages"; 15388Requests[2551].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15389Requests[2551].Request.Path = "/subscriptions/531d27d7-f8c1-/resourceGroups/4358bd59-e0fa-499/providers/Microsoft.Network/virtualNetworks/6ec18e91-d960-4a4f/virtualNetworkPeerings"; 15392Requests[2552].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15393Requests[2552].Request.Path = "/subscriptions/e5d8c57d-6ce3-/resourceGroups/c9118105-2154-4a1/providers/Microsoft.NotificationHubs/namespaces/c4d4c514-fd7e/AuthorizationRules"; 15396Requests[2553].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15397Requests[2553].Request.Path = "/subscriptions/46bd6d3e-46d7-/resourceGroups/69443073-b3e1-413/providers/Microsoft.NotificationHubs/namespaces/57102c51-6b3c/AuthorizationRules"; 15400Requests[2554].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15401Requests[2554].Request.Path = "/subscriptions/b23109c1-6837-/resourceGroups/45efc86d-d5cf-4f4/providers/Microsoft.NotificationHubs/namespaces/24b5d6e3-b94b/checkNotificationHubAvailability"; 15404Requests[2555].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15405Requests[2555].Request.Path = "/subscriptions/6b43fab2-5c5e-/resourceGroups/586ca1c2-de0a-471/providers/Microsoft.NotificationHubs/namespaces/726070a1-44b5/notificationHubs"; 15408Requests[2556].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15409Requests[2556].Request.Path = "/subscriptions/21e6cdd0-6129-/resourcegroups/71cc1a43-c39c-485/providers/Microsoft.OperationalInsights/workspaces/cec5556a-50bc/dataSources"; 15412Requests[2557].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15413Requests[2557].Request.Path = "/subscriptions/95b1eca5-0d4e-/resourcegroups/b0cd8958-96e7-4ea/providers/Microsoft.OperationalInsights/workspaces/d64be9d9-df83/intelligencePacks"; 15416Requests[2558].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15417Requests[2558].Request.Path = "/subscriptions/b35e50a2-d15f-/resourcegroups/ea55e903-9667-4a0/providers/Microsoft.OperationalInsights/workspaces/7a28a24c-2c3f/linkedServices"; 15420Requests[2559].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15421Requests[2559].Request.Path = "/subscriptions/d76b0dab-9b3b-/resourcegroups/6c1e0731-95b9-43d/providers/Microsoft.OperationalInsights/workspaces/0585c769-280a/managementGroups"; 15424Requests[2560].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15425Requests[2560].Request.Path = "/subscriptions/4c041ea5-d7cd-/resourceGroups/969715e9-e32a-4ed/providers/Microsoft.OperationalInsights/workspaces/f6d62394-f5ef/purge"; 15428Requests[2561].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15429Requests[2561].Request.Path = "/subscriptions/09bf0c65-e5a8-/resourcegroups/a0f9d6b9-6773-4db/providers/Microsoft.OperationalInsights/workspaces/9d96c88e-a3c9/savedSearches"; 15432Requests[2562].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15433Requests[2562].Request.Path = "/subscriptions/c7d87617-333a-/resourcegroups/a769cecc-b490-46b/providers/Microsoft.OperationalInsights/workspaces/63d9ce22-09b3/schema"; 15436Requests[2563].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15437Requests[2563].Request.Path = "/subscriptions/b4a74b70-9dfe-/resourcegroups/72d8cbe6-6042-40a/providers/Microsoft.OperationalInsights/workspaces/5c269c04-6ba7/search"; 15440Requests[2564].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15441Requests[2564].Request.Path = "/subscriptions/366916c5-4d7a-/resourcegroups/30067995-ad2a-4c1/providers/Microsoft.OperationalInsights/workspaces/8982bb77-c973/sharedKeys"; 15444Requests[2565].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15445Requests[2565].Request.Path = "/subscriptions/8b2a3926-7265-/resourcegroups/52048063-57f7-42c/providers/Microsoft.OperationalInsights/workspaces/8cafb879-9527/storageInsightConfigs"; 15448Requests[2566].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15449Requests[2566].Request.Path = "/subscriptions/cf0c6598-8a09-/resourcegroups/6fb45bda-ef44-467/providers/Microsoft.OperationalInsights/workspaces/a36c6b43-f893/usages"; 15452Requests[2567].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15453Requests[2567].Request.Path = "/subscriptions/8aac6250-4aa8-/resourceGroups/95cb0632-da18-43a/providers/Microsoft.PolicyInsights/policyEvents/f92e3d08-e841-4a66-b/queryResults"; 15456Requests[2568].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15457Requests[2568].Request.Path = "/subscriptions/e38f256c-ab9d-/resourceGroups/f254e4c5-4bc7-484/providers/Microsoft.PolicyInsights/policyStates/28d98781-0338-46ba-b/queryResults"; 15460Requests[2569].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15461Requests[2569].Request.Path = "/subscriptions/d19961de-3088-/resourceGroups/aa67a4cc-235f-460/providers/Microsoft.PolicyInsights/policyStates/a3a9982a-23e1-439a-a1e8-d2e/summarize"; 15464Requests[2570].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15465Requests[2570].Request.Path = "/subscriptions/09b9649f-2ebc-/resourceGroups/7628cd97-1360-46d/providers/Microsoft.PowerBI/workspaceCollections/74746673-c00a-465f-ab0b/listKeys"; 15468Requests[2571].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15469Requests[2571].Request.Path = "/subscriptions/4a3f422c-f7a3-/resourceGroups/bbecc031-3680-4cd/providers/Microsoft.PowerBI/workspaceCollections/3daa9ca2-724c-4817-bf4d/regenerateKey"; 15472Requests[2572].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15473Requests[2572].Request.Path = "/subscriptions/16412f17-7060-/resourceGroups/c9a45c54-a781-4dc/providers/Microsoft.PowerBI/workspaceCollections/b51acf15-5f7a-4cfe-b076/workspaces"; 15476Requests[2573].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15477Requests[2573].Request.Path = "/subscriptions/8aa9331c-a073-/resourceGroups/ab542bc6-fc0b-408/providers/Microsoft.PowerBIDedicated/capacities/187d9c18-8545-4f6d-ba/resume"; 15480Requests[2574].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15481Requests[2574].Request.Path = "/subscriptions/72efe90d-62c6-/resourceGroups/7d993dc2-f017-4a8/providers/Microsoft.PowerBIDedicated/capacities/630734b2-be9a-4370-89/skus"; 15484Requests[2575].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15485Requests[2575].Request.Path = "/subscriptions/b164d1f5-d092-/resourceGroups/a20cf17e-757e-452/providers/Microsoft.PowerBIDedicated/capacities/2086492d-d045-49c7-87/suspend"; 15488Requests[2576].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15489Requests[2576].Request.Path = "/Subscriptions/34585ccf-ee57-/resourceGroups/bbf89515-6b55-43a/providers/Microsoft.RecoveryServices/vaults/7b8fe93b-3cf/replicationAlertSettings"; 15492Requests[2577].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15493Requests[2577].Request.Path = "/Subscriptions/50ecf6bd-bcb4-/resourceGroups/51c46f5a-697f-4ee/providers/Microsoft.RecoveryServices/vaults/0d64a92d-b31/replicationEvents"; 15496Requests[2578].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15497Requests[2578].Request.Path = "/Subscriptions/b601c990-50f8-/resourceGroups/5b75931f-5398-4dc/providers/Microsoft.RecoveryServices/vaults/e4aba4fa-2ed/replicationFabrics"; 15500Requests[2579].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15501Requests[2579].Request.Path = "/Subscriptions/165b7744-99d0-/resourceGroups/5e75fa27-6c04-458/providers/Microsoft.RecoveryServices/vaults/2da92e1f-c32/replicationJobs"; 15504Requests[2580].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15505Requests[2580].Request.Path = "/Subscriptions/d97dddc7-0fee-/resourceGroups/5247802a-ca45-4f5/providers/Microsoft.RecoveryServices/vaults/1614168d-8f1/replicationNetworkMappings"; 15508Requests[2581].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15509Requests[2581].Request.Path = "/Subscriptions/ddeb207e-9aeb-/resourceGroups/c41530db-f875-453/providers/Microsoft.RecoveryServices/vaults/eba9743a-568/replicationNetworks"; 15512Requests[2582].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15513Requests[2582].Request.Path = "/Subscriptions/c05905c3-1e92-/resourceGroups/0fa0278e-565a-498/providers/Microsoft.RecoveryServices/vaults/b1f4e251-ac2/replicationPolicies"; 15516Requests[2583].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15517Requests[2583].Request.Path = "/Subscriptions/94d40226-e0d0-/resourceGroups/b80a19e5-569c-476/providers/Microsoft.RecoveryServices/vaults/ed706c87-81d/replicationProtectedItems"; 15520Requests[2584].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15521Requests[2584].Request.Path = "/Subscriptions/c25a66ff-fe11-/resourceGroups/784190d8-7132-4da/providers/Microsoft.RecoveryServices/vaults/081e67d6-a74/replicationProtectionContainerMappings"; 15524Requests[2585].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15525Requests[2585].Request.Path = "/Subscriptions/fcd36a19-c3b2-/resourceGroups/e8970bb0-b7b1-4b7/providers/Microsoft.RecoveryServices/vaults/88f1d8bd-0f8/replicationProtectionContainers"; 15528Requests[2586].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15529Requests[2586].Request.Path = "/Subscriptions/95f06da5-6c02-/resourceGroups/5b3c25f6-a6e7-4b4/providers/Microsoft.RecoveryServices/vaults/c45f193c-4ca/replicationRecoveryPlans"; 15532Requests[2587].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15533Requests[2587].Request.Path = "/Subscriptions/34146c38-1654-/resourceGroups/6c656482-8a91-436/providers/Microsoft.RecoveryServices/vaults/8bd84331-d5d/replicationRecoveryServicesProviders"; 15536Requests[2588].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15537Requests[2588].Request.Path = "/Subscriptions/b7de2436-e684-/resourceGroups/8d97cfab-698f-42f/providers/Microsoft.RecoveryServices/vaults/86e2127f-d3a/replicationStorageClassificationMappings"; 15540Requests[2589].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15541Requests[2589].Request.Path = "/Subscriptions/825a3e4a-3c3c-/resourceGroups/eebbc25f-e482-405/providers/Microsoft.RecoveryServices/vaults/6d2f692f-224/replicationStorageClassifications"; 15544Requests[2590].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15545Requests[2590].Request.Path = "/Subscriptions/ae4847d2-e0b5-/resourceGroups/98e4879e-7af7-4a7/providers/Microsoft.RecoveryServices/vaults/d62370bc-988/replicationVaultHealth"; 15548Requests[2591].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15549Requests[2591].Request.Path = "/Subscriptions/07789cae-e55a-/resourceGroups/2a55b658-5921-44a/providers/Microsoft.RecoveryServices/vaults/bde762a9-f92/replicationvCenters"; 15552Requests[2592].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15553Requests[2592].Request.Path = "/Subscriptions/36f001c9-b95d-/resourceGroups/fe3eea16-af0c-4af/providers/Microsoft.RecoveryServices/vaults/65ede5f5-/backupEngines"; 15556Requests[2593].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15557Requests[2593].Request.Path = "/Subscriptions/a39ff8ec-47a8-/resourceGroups/36166faf-7dfe-40c/providers/Microsoft.RecoveryServices/vaults/b246cc8d-/backupJobs"; 15560Requests[2594].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15561Requests[2594].Request.Path = "/Subscriptions/e6447d30-d704-/resourceGroups/da5f68ab-ebb3-47e/providers/Microsoft.RecoveryServices/vaults/8b871257-/backupJobsExport"; 15564Requests[2595].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15565Requests[2595].Request.Path = "/Subscriptions/7e525877-14a3-/resourceGroups/f3bb08d9-8204-453/providers/Microsoft.RecoveryServices/vaults/88c0e3ae-/backupPolicies"; 15568Requests[2596].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15569Requests[2596].Request.Path = "/Subscriptions/2454bfd9-c359-/resourceGroups/09d396c6-6b54-429/providers/Microsoft.RecoveryServices/vaults/1defe14e-/backupProtectableItems"; 15572Requests[2597].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15573Requests[2597].Request.Path = "/Subscriptions/19ab92fc-af23-/resourceGroups/d636677f-3b89-420/providers/Microsoft.RecoveryServices/vaults/0f3e140f-/backupProtectedItems"; 15576Requests[2598].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15577Requests[2598].Request.Path = "/Subscriptions/abbc5c06-7656-/resourceGroups/0e8b940a-918a-4ef/providers/Microsoft.RecoveryServices/vaults/22fc8925-/backupProtectionContainers"; 15580Requests[2599].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15581Requests[2599].Request.Path = "/Subscriptions/ec034391-eef7-/resourceGroups/84cd3eee-cdd6-42b/providers/Microsoft.RecoveryServices/vaults/43f01b15-/backupSecurityPIN"; 15584Requests[2600].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15585Requests[2600].Request.Path = "/Subscriptions/89a11686-667b-/resourceGroups/3de2ffe1-b726-43c/providers/Microsoft.RecoveryServices/vaults/17099de0-/backupUsageSummaries"; 15588Requests[2601].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15589Requests[2601].Request.Path = "/Subscriptions/6f70f82c-5ebc-/resourceGroups/5d3e5d35-9dc6-4e9/providers/Microsoft.RecoveryServices/vaults/6dc9c271-/replicationUsages"; 15592Requests[2602].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15593Requests[2602].Request.Path = "/Subscriptions/a33c8489-aa56-/resourceGroups/62c565f6-9c5c-4c4/providers/Microsoft.RecoveryServices/vaults/6adb11c6-/usages"; 15596Requests[2603].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15597Requests[2603].Request.Path = "/subscriptions/e1170540-1361-/resourceGroups/b6da519f-8d1e-4f4/providers/Microsoft.Relay/namespaces/a652c985-b6f8/authorizationRules"; 15600Requests[2604].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15601Requests[2604].Request.Path = "/subscriptions/176fdff8-f6f9-/resourceGroups/9104d8ec-e912-4a6/providers/Microsoft.Relay/namespaces/08eb9b47-932d/AuthorizationRules"; 15604Requests[2605].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15605Requests[2605].Request.Path = "/subscriptions/459c2eff-80af-/resourceGroups/eb139283-d840-452/providers/Microsoft.Relay/namespaces/a6408a74-fae3/hybridConnections"; 15608Requests[2606].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15609Requests[2606].Request.Path = "/subscriptions/fce1e490-9a80-/resourceGroups/b7ee4f56-629f-422/providers/Microsoft.Relay/namespaces/013deb77-754c/wcfRelays"; 15612Requests[2607].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15613Requests[2607].Request.Path = "/subscriptions/39dd870b-8f0b-/resourcegroups/5d134258-21ac-47e/providers/Microsoft.Resources/deployments/fe102b00-af32-/cancel"; 15616Requests[2608].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15617Requests[2608].Request.Path = "/subscriptions/8cc582fe-a6a0-/resourcegroups/48ca9240-b5a1-485/providers/Microsoft.Resources/deployments/49b60014-239b-/exportTemplate"; 15620Requests[2609].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15621Requests[2609].Request.Path = "/subscriptions/5b8c6655-c8bc-/resourcegroups/75a0bae8-72c4-448/providers/Microsoft.Resources/deployments/5e481ab2-bcd8-/validate"; 15624Requests[2610].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15625Requests[2610].Request.Path = "/subscriptions/e813cd47-707b-/resourceGroups/02013ba4-0ad3-452/providers/Microsoft.Scheduler/jobCollections/6a7d2510-6a9e-4a4/disable"; 15628Requests[2611].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15629Requests[2611].Request.Path = "/subscriptions/3eb4179b-d495-/resourceGroups/1fbe716c-894f-45d/providers/Microsoft.Scheduler/jobCollections/a0a6582a-e5fc-4d5/enable"; 15632Requests[2612].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15633Requests[2612].Request.Path = "/subscriptions/9fc849b9-961e-/resourceGroups/50e3d124-d298-4e3/providers/Microsoft.Scheduler/jobCollections/c6909d19-1621-422/jobs"; 15636Requests[2613].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15637Requests[2613].Request.Path = "/subscriptions/fd01b761-08fb-/resourceGroups/0e2d0c5b-ebb5-4f8/providers/Microsoft.Search/searchServices/480af91f-fa19-4d0/listAdminKeys"; 15640Requests[2614].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15641Requests[2614].Request.Path = "/subscriptions/43cefd98-4448-/resourceGroups/1acbbc2c-ac8a-462/providers/Microsoft.Search/searchServices/51a24a7b-2a5b-471/listQueryKeys"; 15644Requests[2615].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15645Requests[2615].Request.Path = "/subscriptions/23251edf-8993-/resourceGroups/8a51f685-caf9-4f0/providers/Microsoft.Security/locations/77dcfa16-e3/alerts"; 15648Requests[2616].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15649Requests[2616].Request.Path = "/subscriptions/083665f2-0b8c-/resourceGroups/bb19726e-83bc-4cb/providers/Microsoft.Security/locations/cbdd176f-2c/jitNetworkAccessPolicies"; 15652Requests[2617].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15653Requests[2617].Request.Path = "/subscriptions/150f7b12-4eda-/resourceGroups/d4240df4-d6ff-473/providers/Microsoft.Security/locations/38c98d83-8b/tasks"; 15656Requests[2618].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15657Requests[2618].Request.Path = "/subscriptions/64b9c209-057b-/resourceGroups/13118bba-f411-42c/providers/Microsoft.ServerManagement/gateways/57398856-02/profile"; 15660Requests[2619].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15661Requests[2619].Request.Path = "/subscriptions/69aaa9c7-4bc4-/resourceGroups/da481315-3f26-460/providers/Microsoft.ServerManagement/gateways/902299ab-58/regenerateprofile"; 15664Requests[2620].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15665Requests[2620].Request.Path = "/subscriptions/128f7941-eb75-/resourceGroups/64cd31fa-7c96-443/providers/Microsoft.ServerManagement/gateways/dd606469-04/upgradetolatest"; 15668Requests[2621].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15669Requests[2621].Request.Path = "/subscriptions/8c547543-7d48-/resourceGroups/213a4a15-3c7d-4ed/providers/Microsoft.ServiceBus/namespaces/5238fef8-05d0/AuthorizationRules"; 15672Requests[2622].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15673Requests[2622].Request.Path = "/subscriptions/94d05e0d-07e6-/resourceGroups/eb73a9ba-2645-4e1/providers/Microsoft.ServiceBus/namespaces/19e7d2a5-2ef3/AuthorizationRules"; 15676Requests[2623].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15677Requests[2623].Request.Path = "/subscriptions/41b1d6bc-86e0-/resourceGroups/0f21e29c-d363-4e1/providers/Microsoft.ServiceBus/namespaces/7653bf41-8c34/disasterRecoveryConfigs"; 15680Requests[2624].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15681Requests[2624].Request.Path = "/subscriptions/a4433260-a942-/resourceGroups/684b9889-fbbc-4c2/providers/Microsoft.ServiceBus/namespaces/ba26e870-c8e0/eventhubs"; 15684Requests[2625].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15685Requests[2625].Request.Path = "/subscriptions/a4950609-7f75-/resourceGroups/8ab5c2e1-bc2b-48e/providers/Microsoft.ServiceBus/namespaces/af156b3c-de5d/messagingplan"; 15688Requests[2626].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 15689Requests[2626].Request.Path = "/subscriptions/65bae425-0272-/resourceGroups/4958d9c8-dd71-4d0/providers/Microsoft.ServiceBus/namespaces/613aa8f2-5a3e/messagingplan"; 15692Requests[2627].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15693Requests[2627].Request.Path = "/subscriptions/3e84e179-467e-/resourceGroups/356f79bb-d21e-4c9/providers/Microsoft.ServiceBus/namespaces/a9e051d3-1783/migrationConfigurations"; 15696Requests[2628].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15697Requests[2628].Request.Path = "/subscriptions/47a61493-5757-/resourceGroups/3e0e8d9d-06f0-4c9/providers/Microsoft.ServiceBus/namespaces/c689e601-2ef7/queues"; 15700Requests[2629].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15701Requests[2629].Request.Path = "/subscriptions/6203031c-5a5f-/resourceGroups/dd5f6142-b48f-4ac/providers/Microsoft.ServiceBus/namespaces/cc7b6790-68da/topics"; 15704Requests[2630].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15705Requests[2630].Request.Path = "/subscriptions/59aa1090-6474-/resourceGroups/e33fe5bf-d924-4fa/providers/Microsoft.ServiceFabric/clusters/fc1b2cf3-dc/applications"; 15708Requests[2631].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15709Requests[2631].Request.Path = "/subscriptions/1540fc1b-d942-/resourceGroups/c7388b4f-62fa-4ae/providers/Microsoft.ServiceFabric/clusters/f1bd97a4-19/applicationTypes"; 15712Requests[2632].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15713Requests[2632].Request.Path = "/subscriptions/2fceaa91-86f4-/resourceGroups/083cd55c-0788-468/providers/Microsoft.SignalRService/SignalR/5f3eb793-605/listKeys"; 15716Requests[2633].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15717Requests[2633].Request.Path = "/subscriptions/e0ed5a4f-4257-/resourceGroups/33200d1c-62c8-46e/providers/Microsoft.SignalRService/SignalR/873bc140-4f7/regenerateKey"; 15720Requests[2634].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15721Requests[2634].Request.Path = "/subscriptions/b9f31335-c1dd-/resourceGroups/bff2eff6-ceb7-482/providers/Microsoft.Sql/locations/fa0dedd5-ede/instanceFailoverGroups"; 15724Requests[2635].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15725Requests[2635].Request.Path = "/subscriptions/477f4a0a-5bc7-/resourceGroups/5ad754cb-dbb7-445/providers/Microsoft.Sql/managedInstances/ec4e2dd0-0765-422e-/databases"; 15728Requests[2636].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15729Requests[2636].Request.Path = "/subscriptions/863992f8-2a5e-/resourceGroups/4c46a2bb-14e6-4d4/providers/Microsoft.Sql/servers/0e69de27-a/administrators"; 15732Requests[2637].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15733Requests[2637].Request.Path = "/subscriptions/cf4f8dc8-5d6a-/resourceGroups/7eb0f545-78cf-45d/providers/Microsoft.Sql/servers/e0fef700-2/advisors"; 15736Requests[2638].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15737Requests[2638].Request.Path = "/subscriptions/8a72c1d3-df24-/resourceGroups/767ef99f-9704-439/providers/Microsoft.Sql/servers/a58cad5f-1/auditingPolicies"; 15740Requests[2639].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15741Requests[2639].Request.Path = "/subscriptions/32bfe811-6238-/resourceGroups/c1985d5e-0767-4c8/providers/Microsoft.Sql/servers/8d82421f-2/backupLongTermRetentionVaults"; 15744Requests[2640].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15745Requests[2640].Request.Path = "/subscriptions/9920e32d-4fed-/resourceGroups/75d22ef7-246a-4c0/providers/Microsoft.Sql/servers/ddf873a8-5/communicationLinks"; 15748Requests[2641].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15749Requests[2641].Request.Path = "/subscriptions/bd01c846-7365-/resourceGroups/a4b51e2f-9e5d-444/providers/Microsoft.Sql/servers/f1f51c5f-4/databases"; 15752Requests[2642].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15753Requests[2642].Request.Path = "/subscriptions/f91b1307-91ba-/resourceGroups/774410a2-d634-43c/providers/Microsoft.Sql/servers/7b6ef860-c/disasterRecoveryConfiguration"; 15756Requests[2643].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15757Requests[2643].Request.Path = "/subscriptions/3fcf1732-8fc7-/resourceGroups/c4a62167-30e0-471/providers/Microsoft.Sql/servers/c047c2ba-c/dnsAliases"; 15760Requests[2644].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15761Requests[2644].Request.Path = "/subscriptions/b31b1877-e2fd-/resourceGroups/4ac0c6a6-c66e-484/providers/Microsoft.Sql/servers/8ad2d088-8/elasticPools"; 15764Requests[2645].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15765Requests[2645].Request.Path = "/subscriptions/458d508c-4df9-/resourceGroups/d865b811-4f53-449/providers/Microsoft.Sql/servers/dfb59dd4-5/encryptionProtector"; 15768Requests[2646].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15769Requests[2646].Request.Path = "/subscriptions/a4a9c7cb-1198-/resourceGroups/ea34084c-7999-4f1/providers/Microsoft.Sql/servers/0353a455-9/failoverGroups"; 15772Requests[2647].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 15773Requests[2647].Request.Path = "/subscriptions/fbd5666a-07c6-/resourceGroups/73064926-fbc3-40c/providers/Microsoft.Sql/servers/f7eb9746-e/firewallRules"; 15776Requests[2648].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15777Requests[2648].Request.Path = "/subscriptions/f98534ec-541b-/resourceGroups/a30d18dd-7741-4d8/providers/Microsoft.Sql/servers/84226b59-5/firewallRules"; 15780Requests[2649].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15781Requests[2649].Request.Path = "/subscriptions/3026825f-5371-/resourceGroups/c5856315-52e7-4ce/providers/Microsoft.Sql/servers/dbfb8e3d-a/import"; 15784Requests[2650].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15785Requests[2650].Request.Path = "/subscriptions/efacabe1-d46d-/resourceGroups/d098e9a3-37b1-41d/providers/Microsoft.Sql/servers/005ad2ba-a/jobAgents"; 15788Requests[2651].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15789Requests[2651].Request.Path = "/subscriptions/a4efa562-3bfc-/resourceGroups/77402161-5ff8-4d0/providers/Microsoft.Sql/servers/7641de7c-c/keys"; 15792Requests[2652].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15793Requests[2652].Request.Path = "/subscriptions/6ae0e156-c656-/resourceGroups/67272c45-b3ed-41b/providers/Microsoft.Sql/servers/6a12a1f8-8/recommendedElasticPools"; 15796Requests[2653].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15797Requests[2653].Request.Path = "/subscriptions/d372d250-b86f-/resourceGroups/b4c4400a-b923-4a1/providers/Microsoft.Sql/servers/d9093807-c/recoverableDatabases"; 15800Requests[2654].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15801Requests[2654].Request.Path = "/subscriptions/3f71185a-d8f3-/resourceGroups/a6bff1a2-d69f-4b4/providers/Microsoft.Sql/servers/509a0da3-0/restorableDroppedDatabases"; 15804Requests[2655].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15805Requests[2655].Request.Path = "/subscriptions/20b708db-9214-/resourceGroups/66259f05-87b8-4f3/providers/Microsoft.Sql/servers/e9b46ead-1/serviceObjectives"; 15808Requests[2656].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15809Requests[2656].Request.Path = "/subscriptions/5145f2d0-fda6-/resourceGroups/c2b7a990-b12e-454/providers/Microsoft.Sql/servers/dcd0c8af-0/syncAgents"; 15812Requests[2657].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15813Requests[2657].Request.Path = "/subscriptions/4a1ed953-f4d1-/resourceGroups/932f5c92-f1fd-4b1/providers/Microsoft.Sql/servers/8a31564c-c/usages"; 15816Requests[2658].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15817Requests[2658].Request.Path = "/subscriptions/f3df457b-d30a-/resourceGroups/f176a5f9-31f8-446/providers/Microsoft.Sql/servers/f89ef74d-f/virtualNetworkRules"; 15820Requests[2659].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15821Requests[2659].Request.Path = "/subscriptions/eb6aa8ef-3821-/resourcegroups/3b5e60ec-86ee-4e3/providers/Microsoft.Storage.Admin/farms/589a4e/acquisitions"; 15824Requests[2660].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15825Requests[2660].Request.Path = "/subscriptions/57c4bd77-5313-/resourcegroups/1f38ad21-84e4-4e2/providers/Microsoft.Storage.Admin/farms/475ade/metricdefinitions"; 15828Requests[2661].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15829Requests[2661].Request.Path = "/subscriptions/3baaa167-3e9e-/resourcegroups/7f136b87-0364-430/providers/Microsoft.Storage.Admin/farms/3e1b3a/metrics"; 15832Requests[2662].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15833Requests[2662].Request.Path = "/subscriptions/b9f8d8f3-3bb4-/resourcegroups/19b6041a-2187-483/providers/Microsoft.Storage.Admin/farms/71a8aa/ondemandgc"; 15836Requests[2663].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15837Requests[2663].Request.Path = "/subscriptions/b3896dc8-8ee3-/resourcegroups/c0916483-59d7-42a/providers/Microsoft.Storage.Admin/farms/e73d8a/shares"; 15840Requests[2664].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15841Requests[2664].Request.Path = "/subscriptions/b6d5020e-b681-/resourcegroups/176d36f1-3976-444/providers/Microsoft.Storage.Admin/farms/da1758/storageaccounts"; 15844Requests[2665].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15845Requests[2665].Request.Path = "/subscriptions/6b69808c-583f-/resourceGroups/e3a74a9d-5d85-405/providers/Microsoft.Storage/storageAccounts/5c067843-29/ListAccountSas"; 15848Requests[2666].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15849Requests[2666].Request.Path = "/subscriptions/e85fc4b8-10fe-/resourceGroups/b7676416-39e6-41f/providers/Microsoft.Storage/storageAccounts/e5ef76bb-7a/listKeys"; 15852Requests[2667].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15853Requests[2667].Request.Path = "/subscriptions/4c6c5650-74d6-/resourceGroups/279dc70a-f9fe-415/providers/Microsoft.Storage/storageAccounts/c27ca217-92/ListServiceSas"; 15856Requests[2668].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15857Requests[2668].Request.Path = "/subscriptions/8f7c0b2a-196c-/resourceGroups/b5b7da1d-87d0-4d1/providers/Microsoft.Storage/storageAccounts/4ff0fc70-d8/regenerateKey"; 15860Requests[2669].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15861Requests[2669].Request.Path = "/subscriptions/410fba3d-2dc9-/resourceGroups/c9f489a8-14d5-413/providers/Microsoft.StorSimple/managers/1b49787f-7b/accessControlRecords"; 15864Requests[2670].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15865Requests[2670].Request.Path = "/subscriptions/2a0e3745-e28b-/resourceGroups/8cc992f0-9bfc-4fe/providers/Microsoft.StorSimple/managers/d4ddc9a7-bf/alerts"; 15868Requests[2671].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15869Requests[2671].Request.Path = "/subscriptions/7ffb4c67-0f8c-/resourceGroups/a678eea3-7437-44a/providers/Microsoft.StorSimple/managers/1f56ab39-5f/bandwidthSettings"; 15872Requests[2672].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15873Requests[2672].Request.Path = "/subscriptions/a04ccd3d-6d91-/resourceGroups/d3f3c7e9-fed4-445/providers/Microsoft.StorSimple/managers/aa625fe9-ef/clearAlerts"; 15876Requests[2673].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15877Requests[2673].Request.Path = "/subscriptions/e6a7d82b-0a33-/resourceGroups/109dc6c1-c872-4fd/providers/Microsoft.StorSimple/managers/996353b4-ba/cloudApplianceConfigurations"; 15880Requests[2674].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15881Requests[2674].Request.Path = "/subscriptions/5522e324-b278-/resourceGroups/1752288f-47af-49e/providers/Microsoft.StorSimple/managers/ad6a4cb7-90/configureDevice"; 15884Requests[2675].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15885Requests[2675].Request.Path = "/subscriptions/3b324e24-f112-/resourceGroups/59b806f4-3699-446/providers/Microsoft.StorSimple/managers/a63a09f8-5b/devices"; 15888Requests[2676].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15889Requests[2676].Request.Path = "/subscriptions/fc0a9220-d3fa-/resourceGroups/c7f37eea-f1cf-491/providers/Microsoft.StorSimple/managers/b78f676b-53/features"; 15892Requests[2677].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15893Requests[2677].Request.Path = "/subscriptions/8597d52a-72bb-/resourceGroups/81873300-4ef5-47c/providers/Microsoft.StorSimple/managers/be6c05d8-71/jobs"; 15896Requests[2678].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15897Requests[2678].Request.Path = "/subscriptions/10d335e2-d145-/resourceGroups/6141d8c4-fb8e-4de/providers/Microsoft.StorSimple/managers/26811a83-a8/listActivationKey"; 15900Requests[2679].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15901Requests[2679].Request.Path = "/subscriptions/17f91076-052c-/resourceGroups/459025b7-8d2c-44a/providers/Microsoft.StorSimple/managers/b8f37181-d6/listPublicEncryptionKey"; 15904Requests[2680].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15905Requests[2680].Request.Path = "/subscriptions/6bfe69b5-366a-/resourceGroups/9c263d4f-dbe9-4fb/providers/Microsoft.StorSimple/managers/9548a507-b4/metrics"; 15908Requests[2681].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15909Requests[2681].Request.Path = "/subscriptions/fd45b314-d178-/resourceGroups/1ce77fc4-e5dd-4ee/providers/Microsoft.StorSimple/managers/bbdce1b2-99/metricsDefinitions"; 15912Requests[2682].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15913Requests[2682].Request.Path = "/subscriptions/35e62cc7-97df-/resourceGroups/45e03b3a-9c47-451/providers/Microsoft.StorSimple/managers/cf397eec-e7/provisionCloudAppliance"; 15916Requests[2683].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15917Requests[2683].Request.Path = "/subscriptions/b61bac52-623f-/resourceGroups/ba19c43d-17a6-422/providers/Microsoft.StorSimple/managers/23ee2c30-bd/regenerateActivationKey"; 15920Requests[2684].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15921Requests[2684].Request.Path = "/subscriptions/da63bc14-b55a-/resourceGroups/ca2ef8fd-73a2-40f/providers/Microsoft.StorSimple/managers/6acc2bae-f4/storageAccountCredentials"; 15924Requests[2685].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15925Requests[2685].Request.Path = "/subscriptions/eaca811f-6530-/resourcegroups/a2580af8-2918-43b/providers/Microsoft.StreamAnalytics/streamingjobs/fe3c3d4/functions"; 15928Requests[2686].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15929Requests[2686].Request.Path = "/subscriptions/fed38ab8-63ac-/resourcegroups/036ba90a-f25c-4be/providers/Microsoft.StreamAnalytics/streamingjobs/f1e1a8b/inputs"; 15932Requests[2687].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15933Requests[2687].Request.Path = "/subscriptions/6d4f8478-8593-/resourcegroups/7536edef-8996-45d/providers/Microsoft.StreamAnalytics/streamingjobs/2fe1e8c/outputs"; 15936Requests[2688].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15937Requests[2688].Request.Path = "/subscriptions/4abf8303-4baa-/resourcegroups/feae29ec-7442-4af/providers/Microsoft.StreamAnalytics/streamingjobs/d1aff8c/start"; 15940Requests[2689].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15941Requests[2689].Request.Path = "/subscriptions/4176329f-beb9-/resourcegroups/3387cbf7-21d0-47b/providers/Microsoft.StreamAnalytics/streamingjobs/dbda36d/stop"; 15944Requests[2690].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15945Requests[2690].Request.Path = "/subscriptions/70d6193e-2f86-/resourcegroups/efba5d09-3ef7-4b5/providers/Microsoft.Subscriptions.Admin/offers/007ed/link"; 15948Requests[2691].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15949Requests[2691].Request.Path = "/subscriptions/2cfe1e0f-25c6-/resourcegroups/d5180e3b-ed9b-430/providers/Microsoft.Subscriptions.Admin/offers/d126a/MetricDefinitions"; 15952Requests[2692].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15953Requests[2692].Request.Path = "/subscriptions/772ecbae-8b81-/resourcegroups/b44e2b9b-0131-428/providers/Microsoft.Subscriptions.Admin/offers/20ef8/Metrics"; 15956Requests[2693].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15957Requests[2693].Request.Path = "/subscriptions/440e9476-b7ad-/resourcegroups/45bc3eb8-1799-478/providers/Microsoft.Subscriptions.Admin/offers/4984b/offerDelegations"; 15960Requests[2694].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 15961Requests[2694].Request.Path = "/subscriptions/767226dd-e627-/resourcegroups/a516ef66-0efc-4db/providers/Microsoft.Subscriptions.Admin/offers/e286c/unlink"; 15964Requests[2695].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15965Requests[2695].Request.Path = "/subscriptions/6bf35d4d-00bd-/resourcegroups/c6cc80d9-0ebb-42e/providers/Microsoft.Subscriptions.Admin/plans/74072/MetricDefinitions"; 15968Requests[2696].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15969Requests[2696].Request.Path = "/subscriptions/f6a56cfa-bd19-/resourcegroups/255261a3-7d27-45e/providers/Microsoft.Subscriptions.Admin/plans/b4003/Metrics"; 15972Requests[2697].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15973Requests[2697].Request.Path = "/subscriptions/c26082de-a95a-/resourceGroups/cc7675b8-dc89-42c/providers/Microsoft.TimeSeriesInsights/environments/52235db5-c35a-4/accessPolicies"; 15976Requests[2698].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15977Requests[2698].Request.Path = "/subscriptions/9cde9ea1-3ea5-/resourceGroups/44b0ce23-582a-428/providers/Microsoft.TimeSeriesInsights/environments/b8207dd9-f94d-4/eventSources"; 15980Requests[2699].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15981Requests[2699].Request.Path = "/subscriptions/95ac4520-c3b3-/resourceGroups/6d459466-27a5-46d/providers/Microsoft.TimeSeriesInsights/environments/eeddbe08-deae-4/referenceDataSets"; 15984Requests[2700].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15985Requests[2700].Request.Path = "/subscriptions/573541a2-aad9-/resourcegroups/84b72b69-2cfc-465/providers/Microsoft.Update.Admin/updateLocations/5303c90c-4c9f-/updates"; 15988Requests[2701].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15989Requests[2701].Request.Path = "/subscriptions/54cf945f-f532-/resourcegroups/44a6e073-cdda-450/providers/microsoft.visualstudio/account/c66db755-2902-47f9-/extension"; 15992Requests[2702].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15993Requests[2702].Request.Path = "/subscriptions/e44cdeeb-f25c-/resourceGroups/c167ac2b-fc7e-411/providers/microsoft.visualstudio/account/234e1070-588f-4d/project"; 15996Requests[2703].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 15997Requests[2703].Request.Path = "/subscriptions/afaa133c-6ea9-/resourceGroups/b7ef4c9e-71a6-4d7/providers/Microsoft.Web.Admin/environments/c0482972-e93b-4/usage"; 16000Requests[2704].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16001Requests[2704].Request.Path = "/subscriptions/6c7d9a59-42b6-/resourceGroups/025bd756-9582-40c/providers/Microsoft.Web/connections/38252347-7ad9-/confirmConsentCode"; 16004Requests[2705].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16005Requests[2705].Request.Path = "/subscriptions/420df0ec-caba-/resourceGroups/20204c67-6d83-467/providers/Microsoft.Web/connections/76aab7ff-0f5d-/listConnectionKeys"; 16008Requests[2706].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16009Requests[2706].Request.Path = "/subscriptions/61ab2537-10d5-/resourceGroups/3e7dfc9d-8271-452/providers/Microsoft.Web/connections/3ec2e022-3584-/listConsentLinks"; 16012Requests[2707].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16013Requests[2707].Request.Path = "/subscriptions/1d7e1bff-f0b0-/resourceGroups/2f59d253-786c-420/providers/Microsoft.Web/customApis/172344b/move"; 16016Requests[2708].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16017Requests[2708].Request.Path = "/subscriptions/aff61bec-d9d2-/resourceGroups/35fd1a45-f3ee-45e/providers/Microsoft.Web/hostingEnvironments/45da4/changeVirtualNetwork"; 16020Requests[2709].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16021Requests[2709].Request.Path = "/subscriptions/56412a76-686c-/resourceGroups/f89d6ff7-c19a-4c4/providers/Microsoft.Web/hostingEnvironments/adc0f/detectors"; 16024Requests[2710].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16025Requests[2710].Request.Path = "/subscriptions/6363a6a6-adb7-/resourceGroups/d0b78cb7-c9b8-41b/providers/Microsoft.Web/hostingEnvironments/347dd/diagnostics"; 16028Requests[2711].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16029Requests[2711].Request.Path = "/subscriptions/8744fa73-cbae-/resourceGroups/bb49e812-a2f2-410/providers/Microsoft.Web/hostingEnvironments/3e706/metricdefinitions"; 16032Requests[2712].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16033Requests[2712].Request.Path = "/subscriptions/3eb52e52-665a-/resourceGroups/3b9338c3-7434-422/providers/Microsoft.Web/hostingEnvironments/aeedd/metrics"; 16036Requests[2713].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16037Requests[2713].Request.Path = "/subscriptions/b648d495-7aa6-/resourceGroups/9472f6fc-e6a3-4e3/providers/Microsoft.Web/hostingEnvironments/81f1e/multiRolePools"; 16040Requests[2714].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16041Requests[2714].Request.Path = "/subscriptions/b3ba5dc3-65ca-/resourceGroups/9d6c098c-66a6-490/providers/Microsoft.Web/hostingEnvironments/dee98/operations"; 16044Requests[2715].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16045Requests[2715].Request.Path = "/subscriptions/f1e10d6b-55f0-/resourceGroups/fffd8316-cdee-476/providers/Microsoft.Web/hostingEnvironments/37f5f/reboot"; 16048Requests[2716].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16049Requests[2716].Request.Path = "/subscriptions/eab17dde-f986-/resourceGroups/614a3992-8e1d-4e4/providers/Microsoft.Web/hostingEnvironments/a925e/resume"; 16052Requests[2717].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16053Requests[2717].Request.Path = "/subscriptions/03189473-85db-/resourceGroups/3bf96faa-5f7c-4e2/providers/Microsoft.Web/hostingEnvironments/00c45/serverfarms"; 16056Requests[2718].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16057Requests[2718].Request.Path = "/subscriptions/2ec2a86c-0e84-/resourceGroups/0661b2f5-adbd-454/providers/Microsoft.Web/hostingEnvironments/18e1d/sites"; 16060Requests[2719].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16061Requests[2719].Request.Path = "/subscriptions/a3761c13-1c06-/resourceGroups/73b1e16d-1d08-44e/providers/Microsoft.Web/hostingEnvironments/e78fe/suspend"; 16064Requests[2720].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16065Requests[2720].Request.Path = "/subscriptions/0958a7e9-6924-/resourceGroups/36b6435f-7b8c-45a/providers/Microsoft.Web/hostingEnvironments/17dc1/syncVirtualNetwork"; 16068Requests[2721].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16069Requests[2721].Request.Path = "/subscriptions/c4a66bdb-61c6-/resourceGroups/fbefe7d4-f10f-459/providers/Microsoft.Web/hostingEnvironments/11109/usages"; 16072Requests[2722].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16073Requests[2722].Request.Path = "/subscriptions/49a29e33-3935-/resourceGroups/4a05439e-f9fd-431/providers/Microsoft.Web/hostingEnvironments/7cf7e/webhostingplans"; 16076Requests[2723].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16077Requests[2723].Request.Path = "/subscriptions/9bfe6895-b5d1-/resourceGroups/5f44db9f-0879-48f/providers/Microsoft.Web/hostingEnvironments/3b0dd/workerPools"; 16080Requests[2724].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16081Requests[2724].Request.Path = "/subscriptions/56b9b725-a28f-/resourceGroups/2d44ef23-a54f-4f6/providers/Microsoft.Web/managedHostingEnvironments/839f0/serverfarms"; 16084Requests[2725].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16085Requests[2725].Request.Path = "/subscriptions/803ab048-a985-/resourceGroups/bd75ad7c-7b8f-4aa/providers/Microsoft.Web/managedHostingEnvironments/1e99a/sites"; 16088Requests[2726].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16089Requests[2726].Request.Path = "/subscriptions/5a4b237e-f168-/resourceGroups/79c70805-78f8-4ea/providers/Microsoft.Web/managedHostingEnvironments/c7fbc/webhostingplans"; 16092Requests[2727].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16093Requests[2727].Request.Path = "/subscriptions/3e8c8b1a-d1bb-/resourceGroups/537df491-3841-4e4/providers/Microsoft.Web/serverfarms/dacef/capabilities"; 16096Requests[2728].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16097Requests[2728].Request.Path = "/subscriptions/43df7eba-c6c3-/resourceGroups/a9a43876-0d81-467/providers/Microsoft.Web/serverfarms/4be9f/hybridConnectionRelays"; 16100Requests[2729].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16101Requests[2729].Request.Path = "/subscriptions/ed503071-23a2-/resourceGroups/72fa4a75-e3fe-4cb/providers/Microsoft.Web/serverfarms/42313/metricdefinitions"; 16104Requests[2730].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16105Requests[2730].Request.Path = "/subscriptions/ecbf9627-d598-/resourceGroups/2da9b927-3bde-4eb/providers/Microsoft.Web/serverfarms/e093e/metrics"; 16108Requests[2731].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16109Requests[2731].Request.Path = "/subscriptions/dcf95135-591a-/resourceGroups/3abb7141-410d-449/providers/Microsoft.Web/serverfarms/0b1d4/restartSites"; 16112Requests[2732].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16113Requests[2732].Request.Path = "/subscriptions/3e48fcb3-76f4-/resourceGroups/32a2ab95-58be-409/providers/Microsoft.Web/serverfarms/6549b/sites"; 16116Requests[2733].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16117Requests[2733].Request.Path = "/subscriptions/2a25ed50-6f0a-/resourceGroups/cfaef9cb-7a8c-4de/providers/Microsoft.Web/serverfarms/91dc1/skus"; 16120Requests[2734].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16121Requests[2734].Request.Path = "/subscriptions/08fc63b0-64e4-/resourceGroups/07e1ef96-eedf-411/providers/Microsoft.Web/serverfarms/db8a1/usages"; 16124Requests[2735].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16125Requests[2735].Request.Path = "/subscriptions/7fac1ba7-a902-/resourceGroups/28983ad5-e65a-489/providers/Microsoft.Web/serverfarms/69bcf/virtualNetworkConnections"; 16128Requests[2736].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16129Requests[2736].Request.Path = "/subscriptions/35167dd1-5109-/resourceGroups/f3ada67f-ddff-4d1/providers/Microsoft.Web/sites/8f98d/analyzeCustomHostname"; 16132Requests[2737].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16133Requests[2737].Request.Path = "/subscriptions/e391f217-2634-/resourceGroups/3cbe288f-994f-490/providers/Microsoft.Web/sites/2aec4/applySlotConfig"; 16136Requests[2738].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16137Requests[2738].Request.Path = "/subscriptions/ad32687a-d4f8-/resourceGroups/6bddb917-47fb-406/providers/Microsoft.Web/sites/a6c83/backup"; 16140Requests[2739].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16141Requests[2739].Request.Path = "/subscriptions/eee93fd7-bd72-/resourceGroups/8c185b07-563c-4a7/providers/Microsoft.Web/sites/e6b10/backups"; 16144Requests[2740].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16145Requests[2740].Request.Path = "/subscriptions/a25fce38-09e2-/resourceGroups/07a20902-a2fb-428/providers/Microsoft.Web/sites/0c0bf/config"; 16148Requests[2741].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16149Requests[2741].Request.Path = "/subscriptions/dff0edfb-2096-/resourceGroups/f571d277-c24b-47c/providers/Microsoft.Web/sites/bf7dc/containerlogs"; 16152Requests[2742].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16153Requests[2742].Request.Path = "/subscriptions/96bd8ade-1f83-/resourceGroups/bba570a3-0652-469/providers/Microsoft.Web/sites/2e806/continuouswebjobs"; 16156Requests[2743].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16157Requests[2743].Request.Path = "/subscriptions/65af9f84-c5fb-/resourceGroups/73f4566a-4c99-428/providers/Microsoft.Web/sites/e7e80/deployments"; 16160Requests[2744].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16161Requests[2744].Request.Path = "/subscriptions/9ff7c052-280b-/resourceGroups/5c0b61a8-0511-441/providers/Microsoft.Web/sites/2a6d3/domainOwnershipIdentifiers"; 16164Requests[2745].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16165Requests[2745].Request.Path = "/subscriptions/8024b26b-06ec-/resourceGroups/adef00f9-6222-4ec/providers/Microsoft.Web/sites/348d2/functions"; 16168Requests[2746].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16169Requests[2746].Request.Path = "/subscriptions/46cdfaf5-440c-/resourceGroups/02b1e3e4-a8d0-401/providers/Microsoft.Web/sites/97b97/hostNameBindings"; 16172Requests[2747].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16173Requests[2747].Request.Path = "/subscriptions/57a79f4d-944b-/resourceGroups/a20763cf-2e9f-404/providers/Microsoft.Web/sites/06afa/hybridconnection"; 16176Requests[2748].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16177Requests[2748].Request.Path = "/subscriptions/1826e8b8-98fa-/resourceGroups/5de1f7d3-5a1e-439/providers/Microsoft.Web/sites/74976/hybridConnectionRelays"; 16180Requests[2749].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16181Requests[2749].Request.Path = "/subscriptions/21889818-96d6-/resourceGroups/efc8cedc-6d7a-4f2/providers/Microsoft.Web/sites/dfb27/instances"; 16184Requests[2750].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16185Requests[2750].Request.Path = "/subscriptions/981ef5cf-1648-/resourceGroups/26251c21-bf2c-464/providers/Microsoft.Web/sites/6ccbd/iscloneable"; 16188Requests[2751].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16189Requests[2751].Request.Path = "/subscriptions/8e09d18e-a0b2-/resourceGroups/a52f1f08-3666-4fa/providers/Microsoft.Web/sites/e51bc/listsyncfunctiontriggerstatus"; 16192Requests[2752].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16193Requests[2752].Request.Path = "/subscriptions/5859de04-868f-/resourceGroups/2622d29a-f174-45b/providers/Microsoft.Web/sites/10bb5/metricdefinitions"; 16196Requests[2753].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16197Requests[2753].Request.Path = "/subscriptions/322f680b-315e-/resourceGroups/9bfee610-307d-45b/providers/Microsoft.Web/sites/8f693/metrics"; 16200Requests[2754].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16201Requests[2754].Request.Path = "/subscriptions/8a070a0f-26e1-/resourceGroups/7e40e879-4cf8-42a/providers/Microsoft.Web/sites/4fdc3/migrate"; 16204Requests[2755].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16205Requests[2755].Request.Path = "/subscriptions/4a99eb29-2f87-/resourceGroups/cb5f2ff5-9fa3-4a0/providers/Microsoft.Web/sites/04832/migratemysql"; 16208Requests[2756].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16209Requests[2756].Request.Path = "/subscriptions/472c8dd2-66d8-/resourceGroups/874bc560-027a-464/providers/Microsoft.Web/sites/3de85/newpassword"; 16212Requests[2757].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16213Requests[2757].Request.Path = "/subscriptions/2404586a-f040-/resourceGroups/16894f25-af0c-457/providers/Microsoft.Web/sites/a8164/perfcounters"; 16216Requests[2758].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16217Requests[2758].Request.Path = "/subscriptions/e9db74ea-0af6-/resourceGroups/c147af92-3f64-4ff/providers/Microsoft.Web/sites/62c1c/phplogging"; 16220Requests[2759].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16221Requests[2759].Request.Path = "/subscriptions/a6f79100-2527-/resourceGroups/be81fdb3-0878-4f0/providers/Microsoft.Web/sites/5ceda/premieraddons"; 16224Requests[2760].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16225Requests[2760].Request.Path = "/subscriptions/1a2b7963-50b0-/resourceGroups/25268570-bc47-4b7/providers/Microsoft.Web/sites/ec009/processes"; 16228Requests[2761].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16229Requests[2761].Request.Path = "/subscriptions/669281d1-47a2-/resourceGroups/c0cd0d29-1c62-493/providers/Microsoft.Web/sites/35c6d/publicCertificates"; 16232Requests[2762].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16233Requests[2762].Request.Path = "/subscriptions/e65ec136-bd42-/resourceGroups/f14d50e1-e2d6-422/providers/Microsoft.Web/sites/521f0/publishxml"; 16236Requests[2763].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16237Requests[2763].Request.Path = "/subscriptions/55553798-add0-/resourceGroups/d372253f-5e47-42d/providers/Microsoft.Web/sites/e3f82/recover"; 16240Requests[2764].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16241Requests[2764].Request.Path = "/subscriptions/58f79f67-9ae3-/resourceGroups/000dfab8-12ff-446/providers/Microsoft.Web/sites/6a677/resetSlotConfig"; 16244Requests[2765].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16245Requests[2765].Request.Path = "/subscriptions/db5a3714-2a4e-/resourceGroups/634a6df2-d9aa-46f/providers/Microsoft.Web/sites/d9bad/resourceHealthMetadata"; 16248Requests[2766].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16249Requests[2766].Request.Path = "/subscriptions/4cbfb59b-e314-/resourceGroups/6bacc8d5-bf2d-4c2/providers/Microsoft.Web/sites/7f360/restart"; 16252Requests[2767].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16253Requests[2767].Request.Path = "/subscriptions/469bcec8-c9ef-/resourceGroups/88b7a2bd-96a2-40e/providers/Microsoft.Web/sites/5c497/restoreFromBackupBlob"; 16256Requests[2768].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16257Requests[2768].Request.Path = "/subscriptions/eabca370-3832-/resourceGroups/15c6e364-65e2-4a4/providers/Microsoft.Web/sites/9a623/restoreFromDeletedApp"; 16260Requests[2769].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16261Requests[2769].Request.Path = "/subscriptions/11b51cf7-8783-/resourceGroups/81915547-5a3e-449/providers/Microsoft.Web/sites/9710d/restoreSnapshot"; 16264Requests[2770].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16265Requests[2770].Request.Path = "/subscriptions/c532415c-54aa-/resourceGroups/a9e6508e-7147-42f/providers/Microsoft.Web/sites/8486e/siteextensions"; 16268Requests[2771].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16269Requests[2771].Request.Path = "/subscriptions/d4de8b4c-5685-/resourceGroups/2d97c2ed-2438-420/providers/Microsoft.Web/sites/40e26/slots"; 16272Requests[2772].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16273Requests[2772].Request.Path = "/subscriptions/76a9b79a-4d50-/resourceGroups/9777df9a-fc4a-470/providers/Microsoft.Web/sites/f5dbb/slotsdiffs"; 16276Requests[2773].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16277Requests[2773].Request.Path = "/subscriptions/9ab5ea58-afb7-/resourceGroups/8ac728b6-f27f-448/providers/Microsoft.Web/sites/8149a/slotsswap"; 16280Requests[2774].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16281Requests[2774].Request.Path = "/subscriptions/a4631c5c-5c08-/resourceGroups/fb3ad7dd-5c93-4aa/providers/Microsoft.Web/sites/bed03/snapshots"; 16284Requests[2775].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16285Requests[2775].Request.Path = "/subscriptions/be2e04af-5d2e-/resourceGroups/e7412e2f-7630-4d6/providers/Microsoft.Web/sites/b7c4b/snapshots"; 16288Requests[2776].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16289Requests[2776].Request.Path = "/subscriptions/28756880-6cf7-/resourceGroups/f9ae625b-960b-4db/providers/Microsoft.Web/sites/77c8b/start"; 16292Requests[2777].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16293Requests[2777].Request.Path = "/subscriptions/3ac6a310-ff06-/resourceGroups/2dd0f50f-0821-459/providers/Microsoft.Web/sites/39b0c/stop"; 16296Requests[2778].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16297Requests[2778].Request.Path = "/subscriptions/46048828-6dda-/resourceGroups/268c5ec1-cba9-416/providers/Microsoft.Web/sites/6214d/sync"; 16300Requests[2779].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16301Requests[2779].Request.Path = "/subscriptions/44063301-c131-/resourceGroups/947c30c6-8fd5-42e/providers/Microsoft.Web/sites/b4b40/syncfunctiontriggers"; 16304Requests[2780].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16305Requests[2780].Request.Path = "/subscriptions/5b82b3d0-e42e-/resourceGroups/fcd8d801-b67b-470/providers/Microsoft.Web/sites/0aba6/triggeredwebjobs"; 16308Requests[2781].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16309Requests[2781].Request.Path = "/subscriptions/83a6e736-28b0-/resourceGroups/a32fe97d-45a0-456/providers/Microsoft.Web/sites/0c6cb/usages"; 16312Requests[2782].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16313Requests[2782].Request.Path = "/subscriptions/13c8db45-1fa8-/resourceGroups/4dfaba38-8a15-416/providers/Microsoft.Web/sites/7d733/virtualNetworkConnections"; 16316Requests[2783].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16317Requests[2783].Request.Path = "/subscriptions/dc8553b1-8711-/resourceGroups/d909787d-d7be-4ac/providers/Microsoft.Web/sites/3d99d/webjobs"; 16320Requests[2784].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16321Requests[2784].Request.Path = "/subscriptions/6ef3ab07-d9c1-/resourceGroups/27beac56-f86f-41a/providers/Microsoft.Web/sites/63514852/detectors"; 16324Requests[2785].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16325Requests[2785].Request.Path = "/subscriptions/d9ae6fed-d128-/resourceGroups/108a0966-795a-4e1/providers/Microsoft.Web/sites/641464c0/diagnostics"; 16328Requests[2786].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16329Requests[2786].Request.Path = "/subscriptions/97421d93-14d3-/resourceGroups/dbe6bcea-d66a-4d6/providers/Microsoft.Web/sites/7e84ecd8/recommendationHistory"; 16332Requests[2787].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16333Requests[2787].Request.Path = "/subscriptions/4965937f-22c5-/resourceGroups/acdd1804-5eeb-41a/providers/Microsoft.Web/sites/a30ad79c/recommendations"; 16336Requests[2788].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16337Requests[2788].Request.Path = "/subscriptions/13b6ec0c-c271-/resourceGroups/b6984b5a-4529-4d0/providers/Microsoft.ApiManagement/service/5f7f4a48-b9/portalsettings/delegation"; 16340Requests[2789].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16341Requests[2789].Request.Path = "/subscriptions/fb400526-a6db-/resourceGroups/09d622bd-b743-425/providers/Microsoft.ApiManagement/service/b1bf3790-a8/portalsettings/delegation"; 16344Requests[2790].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 16345Requests[2790].Request.Path = "/subscriptions/94b3a1f1-68f0-/resourceGroups/cea1db38-5d19-4bf/providers/Microsoft.ApiManagement/service/ef383c16-53/portalsettings/delegation"; 16348Requests[2791].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16349Requests[2791].Request.Path = "/subscriptions/40595c97-a803-/resourceGroups/45c733eb-8bc7-439/providers/Microsoft.ApiManagement/service/9727e592-e0/portalsettings/delegation"; 16352Requests[2792].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16353Requests[2792].Request.Path = "/subscriptions/70a0f7a0-ac89-/resourceGroups/19dc104f-4641-4c8/providers/Microsoft.ApiManagement/service/adc1dab0-a6/portalsettings/signin"; 16356Requests[2793].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16357Requests[2793].Request.Path = "/subscriptions/cc06cfe0-82ab-/resourceGroups/425cbffe-0ae4-44d/providers/Microsoft.ApiManagement/service/95f67abf-4a/portalsettings/signin"; 16360Requests[2794].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16361Requests[2794].Request.Path = "/subscriptions/9cd89267-041d-/resourceGroups/56b26ebe-62ae-43e/providers/Microsoft.ApiManagement/service/ca7236d2-0f/portalsettings/signin"; 16364Requests[2795].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 16365Requests[2795].Request.Path = "/subscriptions/2166ecd0-9935-/resourceGroups/23dc1449-383f-418/providers/Microsoft.ApiManagement/service/4f0fde11-1d/portalsettings/signin"; 16368Requests[2796].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16369Requests[2796].Request.Path = "/subscriptions/e5e6680c-79eb-/resourceGroups/28f6c72a-7d74-44c/providers/Microsoft.ApiManagement/service/5a97e9e0-c6/portalsettings/signup"; 16372Requests[2797].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16373Requests[2797].Request.Path = "/subscriptions/367f266a-5bca-/resourceGroups/8ed335fa-a143-453/providers/Microsoft.ApiManagement/service/24e10fb4-a3/portalsettings/signup"; 16376Requests[2798].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 16377Requests[2798].Request.Path = "/subscriptions/a465d961-ccb0-/resourceGroups/fd151ed3-c7a5-469/providers/Microsoft.ApiManagement/service/57ac3e79-59/portalsettings/signup"; 16380Requests[2799].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16381Requests[2799].Request.Path = "/subscriptions/6211f726-2d6f-/resourceGroups/a7020935-2988-4f8/providers/Microsoft.ApiManagement/service/c8142093-aa/portalsettings/signup"; 16384Requests[2800].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16385Requests[2800].Request.Path = "/subscriptions/0e975e09-218e-/resourceGroups/1ce48ce9-ad05-471/providers/Microsoft.ApiManagement/service/daa33844-c0/reports/byApi"; 16388Requests[2801].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16389Requests[2801].Request.Path = "/subscriptions/2277180e-cb18-/resourceGroups/821465b0-7999-411/providers/Microsoft.ApiManagement/service/3ab09453-9f/reports/byGeo"; 16392Requests[2802].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16393Requests[2802].Request.Path = "/subscriptions/c4cc2cf2-f919-/resourceGroups/9f0e55c0-f9ca-476/providers/Microsoft.ApiManagement/service/e3669064-eb/reports/byOperation"; 16396Requests[2803].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16397Requests[2803].Request.Path = "/subscriptions/5be3d482-b800-/resourceGroups/cd1c9313-8c6b-481/providers/Microsoft.ApiManagement/service/5700941d-1c/reports/byProduct"; 16400Requests[2804].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16401Requests[2804].Request.Path = "/subscriptions/0dcc5201-fe99-/resourceGroups/f5527951-6d49-4c6/providers/Microsoft.ApiManagement/service/4a2ca6f5-49/reports/byRequest"; 16404Requests[2805].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16405Requests[2805].Request.Path = "/subscriptions/c5f19705-06d6-/resourceGroups/892cda56-6da5-45d/providers/Microsoft.ApiManagement/service/3081f7c0-60/reports/bySubscription"; 16408Requests[2806].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16409Requests[2806].Request.Path = "/subscriptions/aa5227b7-52ee-/resourceGroups/2604b62d-acd9-476/providers/Microsoft.ApiManagement/service/88ec6c5e-30/reports/byTime"; 16412Requests[2807].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16413Requests[2807].Request.Path = "/subscriptions/2ca21d70-e9a4-/resourceGroups/7267d790-ffb3-45b/providers/Microsoft.ApiManagement/service/6715303e-eb/reports/byUser"; 16416Requests[2808].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16417Requests[2808].Request.Path = "/subscriptions/b3370e27-c79c-/resourceGroups/9e4a7346-6c4f-4aa/providers/Microsoft.ApiManagement/service/90f1552b-d3/tenant/access"; 16420Requests[2809].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16421Requests[2809].Request.Path = "/subscriptions/fe4c5f16-8742-/resourceGroups/2b61d57f-88ed-4e0/providers/Microsoft.ApiManagement/service/561affcd-fb/tenant/access"; 16424Requests[2810].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16425Requests[2810].Request.Path = "/subscriptions/7414de47-6eec-/resourceGroups/c0db3bc8-3996-42f/providers/Microsoft.ApiManagement/service/a307e4ff-5f/tenant/policy"; 16428Requests[2811].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16429Requests[2811].Request.Path = "/subscriptions/5e96e893-4527-/resourceGroups/53084bf9-b651-4b7/providers/Microsoft.ApiManagement/service/8f95ee46-62/tenant/policy"; 16432Requests[2812].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16433Requests[2812].Request.Path = "/subscriptions/24425e06-472f-/resourceGroups/94585dec-8e70-4bd/providers/Microsoft.ApiManagement/service/10188f13-f7/tenant/policy"; 16436Requests[2813].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16437Requests[2813].Request.Path = "/subscriptions/2bd32e22-2dc6-/resourceGroups/4da4e25b-d774-473/providers/Microsoft.Automation/automationAccounts/69c87fe9-d91e-4fc3-83/agentRegistrationInformation/regenerateKey"; 16440Requests[2814].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16441Requests[2814].Request.Path = "/subscriptions/e9683898-7ec6-/resourceGroups/5234ece1-a534-441/providers/Microsoft.Automation/automationAccounts/7db27884-7081-4257-94/webhooks/generateUri"; 16444Requests[2815].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16445Requests[2815].Request.Path = "/subscriptions/ec4be1b0-1ce0-/resourceGroups/6d8a6073-e17f-446/providers/Microsoft.Cache/Redis/4d028/patchSchedules/default"; 16448Requests[2816].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16449Requests[2816].Request.Path = "/subscriptions/4aa4bb55-8eaf-/resourceGroups/43e33299-5946-40a/providers/Microsoft.Cache/Redis/1e972/patchSchedules/default"; 16452Requests[2817].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16453Requests[2817].Request.Path = "/subscriptions/095a6ecc-7077-/resourceGroups/e736b58c-fd6b-423/providers/Microsoft.Cache/Redis/1d716/patchSchedules/default"; 16456Requests[2818].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16457Requests[2818].Request.Path = "/subscriptions/decc0877-a4ea-/resourceGroups/8352b6a4-6cbb-42c/providers/Microsoft.Compute/virtualMachineScaleSets/94178a7c-e68f-/rollingUpgrades/cancel"; 16460Requests[2819].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16461Requests[2819].Request.Path = "/subscriptions/90a5ce03-a2fe-/resourceGroups/ae6e55df-f78e-426/providers/Microsoft.Compute/virtualMachineScaleSets/84bddec5-2743-/rollingUpgrades/latest"; 16464Requests[2820].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16465Requests[2820].Request.Path = "/subscriptions/94d84d4b-e337-/resourceGroups/e56778dd-fdff-447/providers/Microsoft.ContainerService/managedClusters/d6fe35c5-f55/upgradeProfiles/default"; 16468Requests[2821].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16469Requests[2821].Request.Path = "/subscriptions/d0a4e223-d279-/resourceGroups/38e92367-5a35-478/providers/Microsoft.CustomerInsights/hubs/fb0ba9b/images/getDataImageUploadUrl"; 16472Requests[2822].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16473Requests[2822].Request.Path = "/subscriptions/954730fd-3120-/resourceGroups/2ce1fbc4-5123-464/providers/Microsoft.CustomerInsights/hubs/94b8e9b/images/getEntityTypeImageUploadUrl"; 16476Requests[2823].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16477Requests[2823].Request.Path = "/subscriptions/41e85190-312f-/resourceGroups/9a982d9e-2e70-44e/providers/Microsoft.DocumentDB/databaseAccounts/74b29bd3-16/percentile/metrics"; 16480Requests[2824].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16481Requests[2824].Request.Path = "/subscriptions/c79028ee-d046-/resourceGroups/71bbce8a-24cb-4e2/providers/Microsoft.EventHub/clusters/6c9504d3-9d/quotaConfiguration/default"; 16484Requests[2825].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16485Requests[2825].Request.Path = "/subscriptions/56a26679-c6fa-/resourceGroups/1a57b509-ff3b-4cb/providers/Microsoft.EventHub/clusters/11b5486f-8b/quotaConfiguration/default"; 16488Requests[2826].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16489Requests[2826].Request.Path = "/subscriptions/db92f9be-de3f-/resourceGroups/3a5c52f6-5215-410/providers/Microsoft.EventHub/namespaces/fdf0f2ef-a7e1/disasterRecoveryConfigs/CheckNameAvailability"; 16492Requests[2827].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16493Requests[2827].Request.Path = "/subscriptions/dabc9790-5e1c-/resourceGroups/f0737d7a-93e1-4ce/providers/Microsoft.HDInsight/clusters/d1ea20d5-cf/extensions/clustermonitoring"; 16496Requests[2828].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16497Requests[2828].Request.Path = "/subscriptions/8900299e-41b1-/resourceGroups/fbf77a89-2771-4ba/providers/Microsoft.HDInsight/clusters/d13ec2d3-fc/extensions/clustermonitoring"; 16500Requests[2829].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16501Requests[2829].Request.Path = "/subscriptions/f40debb9-157a-/resourceGroups/1ccf3a4d-4c08-433/providers/Microsoft.HDInsight/clusters/7e91f092-e2/extensions/clustermonitoring"; 16504Requests[2830].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16505Requests[2830].Request.Path = "/subscriptions/8513bef6-a4b1-/resourceGroups/b60fabcc-daf1-436/providers/microsoft.insights/components/2964355b-e9d/pricingPlans/current"; 16508Requests[2831].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16509Requests[2831].Request.Path = "/subscriptions/1c7aecad-bb29-/resourceGroups/c80faec7-a08e-4fd/providers/microsoft.insights/components/b00c07b3-681/pricingPlans/current"; 16512Requests[2832].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16513Requests[2832].Request.Path = "/subscriptions/72ff621d-2518-/resourceGroups/8ae50573-b981-49b/providers/microsoft.insights/components/3f3fb043-be7/pricingPlans/current"; 16516Requests[2833].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16517Requests[2833].Request.Path = "/subscriptions/226396ea-d2d9-/resourceGroups/1ca0f0ad-5f2a-49e/providers/Microsoft.Network/connections/a5779011-83a5-4a90-89c3-3c34d6ad608/sharedkey/reset"; 16520Requests[2834].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16521Requests[2834].Request.Path = "/Subscriptions/d5fee9d1-f860-/resourceGroups/cd098aec-6870-469/providers/Microsoft.RecoveryServices/vaults/87ad4430-226/replicationJobs/export"; 16524Requests[2835].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16525Requests[2835].Request.Path = "/Subscriptions/21fa17b4-5d58-/resourceGroups/a18f4433-9237-417/providers/Microsoft.RecoveryServices/vaults/fc11f229-/backupconfig/vaultconfig"; 16528Requests[2836].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16529Requests[2836].Request.Path = "/Subscriptions/d1755df3-a0c3-/resourceGroups/6f837ef5-0843-46e/providers/Microsoft.RecoveryServices/vaults/deb85497-/backupconfig/vaultconfig"; 16532Requests[2837].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16533Requests[2837].Request.Path = "/Subscriptions/9f481e9d-930c-/resourceGroups/5945b77f-4fa4-4e5/providers/Microsoft.RecoveryServices/vaults/61dccd35-/backupstorageconfig/vaultstorageconfig"; 16536Requests[2838].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16537Requests[2838].Request.Path = "/Subscriptions/04c6663f-77c4-/resourceGroups/1287af59-293d-453/providers/Microsoft.RecoveryServices/vaults/ea56a7bf-/backupstorageconfig/vaultstorageconfig"; 16540Requests[2839].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16541Requests[2839].Request.Path = "/subscriptions/ebe7d06d-a3bb-/resourceGroups/4bc2b366-797b-4c9/providers/Microsoft.RecoveryServices/vaults/26b633c7-/extendedInformation/vaultExtendedInfo"; 16544Requests[2840].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16545Requests[2840].Request.Path = "/subscriptions/c1165156-220f-/resourceGroups/d560820b-fb78-404/providers/Microsoft.RecoveryServices/vaults/6a2c32cc-/extendedInformation/vaultExtendedInfo"; 16548Requests[2841].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16549Requests[2841].Request.Path = "/subscriptions/4d973798-2cd4-/resourceGroups/b68a8d1a-1ca1-4fe/providers/Microsoft.RecoveryServices/vaults/6601296a-/extendedInformation/vaultExtendedInfo"; 16552Requests[2842].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16553Requests[2842].Request.Path = "/subscriptions/ee3d96e7-6a68-/resourceGroups/3fdbe8c4-5554-4b2/providers/Microsoft.ServiceBus/namespaces/b91a4b2e-2c5a/disasterRecoveryConfigs/CheckNameAvailability"; 16556Requests[2843].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16557Requests[2843].Request.Path = "/subscriptions/fe9b893c-cc02-/resourceGroups/7f558c7c-4328-42d/providers/Microsoft.Sql/servers/7e51f1ec-9/automaticTuning/current"; 16560Requests[2844].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16561Requests[2844].Request.Path = "/subscriptions/d792883e-0c5d-/resourceGroups/f887ba1f-d375-451/providers/Microsoft.Sql/servers/a3b546b4-2/automaticTuning/current"; 16564Requests[2845].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16565Requests[2845].Request.Path = "/subscriptions/c7e8019f-f2cf-/resourceGroups/2805c9c8-f821-4db/providers/Microsoft.StorSimple/managers/88e6dcc0-d3/encryptionSettings/default"; 16568Requests[2846].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16569Requests[2846].Request.Path = "/subscriptions/34910e68-6239-/resourceGroups/bb1f81eb-2315-4cd/providers/Microsoft.StorSimple/managers/f5139c77-58/extendedInformation/vaultExtendedInfo"; 16572Requests[2847].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16573Requests[2847].Request.Path = "/subscriptions/86cffec5-7e7a-/resourceGroups/c666ab6c-ec7a-499/providers/Microsoft.StorSimple/managers/91eab166-62/extendedInformation/vaultExtendedInfo"; 16576Requests[2848].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16577Requests[2848].Request.Path = "/subscriptions/9d21172b-a6e7-/resourceGroups/0a90ed07-fac9-42d/providers/Microsoft.StorSimple/managers/23df2368-5d/extendedInformation/vaultExtendedInfo"; 16580Requests[2849].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16581Requests[2849].Request.Path = "/subscriptions/e37a4a41-f4c7-/resourceGroups/87d38aeb-accb-444/providers/Microsoft.StorSimple/managers/a21957d8-39/extendedInformation/vaultExtendedInfo"; 16584Requests[2850].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16585Requests[2850].Request.Path = "/subscriptions/85bf2882-d001-/resourceGroups/29546527-875a-422/providers/Microsoft.Web/hostingEnvironments/97aa1/capacities/compute"; 16588Requests[2851].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16589Requests[2851].Request.Path = "/subscriptions/d8af6205-e3da-/resourceGroups/2a1939e9-04ae-49f/providers/Microsoft.Web/hostingEnvironments/1ae6d/capacities/virtualip"; 16592Requests[2852].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16593Requests[2852].Request.Path = "/subscriptions/a2607f91-a5b4-/resourceGroups/cfc03d4f-6ad6-46a/providers/Microsoft.Web/hostingEnvironments/0038b/multiRolePools/default"; 16596Requests[2853].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16597Requests[2853].Request.Path = "/subscriptions/36680d99-fdcd-/resourceGroups/1c3a76a6-871d-4b5/providers/Microsoft.Web/hostingEnvironments/46d02/multiRolePools/default"; 16600Requests[2854].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16601Requests[2854].Request.Path = "/subscriptions/7d70ad09-37cf-/resourceGroups/6c0940ae-706d-401/providers/Microsoft.Web/hostingEnvironments/8e1d7/multiRolePools/default"; 16604Requests[2855].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16605Requests[2855].Request.Path = "/subscriptions/2c00ee7a-052d-/resourceGroups/3441ec98-b0dc-4d6/providers/Microsoft.Web/managedHostingEnvironments/22340/capacities/virtualip"; 16608Requests[2856].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16609Requests[2856].Request.Path = "/subscriptions/54aafda4-1ce1-/resourceGroups/8ff0660a-f63a-47b/providers/Microsoft.Web/serverfarms/8b460/hybridConnectionPlanLimits/limit"; 16612Requests[2857].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16613Requests[2857].Request.Path = "/subscriptions/9901d2fc-00e4-/resourceGroups/38b93efb-0fe6-4e2/providers/Microsoft.Web/sites/497f3/backups/discover"; 16616Requests[2858].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16617Requests[2858].Request.Path = "/subscriptions/9ec9fb34-d5a6-/resourceGroups/72d9ee4c-1211-431/providers/Microsoft.Web/sites/b1605/config/appsettings"; 16620Requests[2859].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16621Requests[2859].Request.Path = "/subscriptions/2a57d086-9f51-/resourceGroups/45b37779-c061-4a1/providers/Microsoft.Web/sites/99a41/config/authsettings"; 16624Requests[2860].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16625Requests[2860].Request.Path = "/subscriptions/f5aef3fb-083e-/resourceGroups/90dbcf45-1489-47b/providers/Microsoft.Web/sites/d7962/config/backup"; 16628Requests[2861].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16629Requests[2861].Request.Path = "/subscriptions/ad60d8a5-72df-/resourceGroups/13f3b9d9-fa0b-4be/providers/Microsoft.Web/sites/5bc85/config/backup"; 16632Requests[2862].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16633Requests[2862].Request.Path = "/subscriptions/3f7035e8-a95d-/resourceGroups/61c8d55d-720f-4e5/providers/Microsoft.Web/sites/f0f41/config/connectionstrings"; 16636Requests[2863].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16637Requests[2863].Request.Path = "/subscriptions/3f05ede4-1e9b-/resourceGroups/1f570b76-40a1-4c2/providers/Microsoft.Web/sites/289c6/config/logs"; 16640Requests[2864].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16641Requests[2864].Request.Path = "/subscriptions/1fc2ea88-6316-/resourceGroups/540006d7-3d7e-4cf/providers/Microsoft.Web/sites/1d691/config/logs"; 16644Requests[2865].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16645Requests[2865].Request.Path = "/subscriptions/b4dc3356-ce73-/resourceGroups/5d7fe10a-c1a2-4a1/providers/Microsoft.Web/sites/df798/config/metadata"; 16648Requests[2866].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16649Requests[2866].Request.Path = "/subscriptions/5f70dab3-db45-/resourceGroups/8a1025da-4ea9-4ab/providers/Microsoft.Web/sites/bad44/config/pushsettings"; 16652Requests[2867].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16653Requests[2867].Request.Path = "/subscriptions/255db266-8044-/resourceGroups/b0c45c3f-173d-4e4/providers/Microsoft.Web/sites/1a900/config/slotConfigNames"; 16656Requests[2868].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16657Requests[2868].Request.Path = "/subscriptions/e808d843-0ad3-/resourceGroups/9cdc76c6-8352-4f9/providers/Microsoft.Web/sites/c7c3c/config/slotConfigNames"; 16660Requests[2869].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16661Requests[2869].Request.Path = "/subscriptions/2de73392-9394-/resourceGroups/28c0aa2c-e9df-4b5/providers/Microsoft.Web/sites/5a371/config/web"; 16664Requests[2870].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16665Requests[2870].Request.Path = "/subscriptions/33d4fe65-312b-/resourceGroups/6d1bb784-84a2-470/providers/Microsoft.Web/sites/83268/config/web"; 16668Requests[2871].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16669Requests[2871].Request.Path = "/subscriptions/ffd0a810-7248-/resourceGroups/79e2f883-eb2f-417/providers/Microsoft.Web/sites/73d04/config/web"; 16672Requests[2872].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16673Requests[2872].Request.Path = "/subscriptions/4f20f1c1-ff7b-/resourceGroups/b0fd4a64-2eda-478/providers/Microsoft.Web/sites/64e24/extensions/MSDeploy"; 16676Requests[2873].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16677Requests[2873].Request.Path = "/subscriptions/4ed9fd02-1925-/resourceGroups/aa14053b-006a-4fc/providers/Microsoft.Web/sites/81774/extensions/MSDeploy"; 16680Requests[2874].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16681Requests[2874].Request.Path = "/subscriptions/6be98a46-5930-/resourceGroups/2d36c9b4-060a-477/providers/Microsoft.Web/sites/b0d4c/migratemysql/status"; 16684Requests[2875].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16685Requests[2875].Request.Path = "/subscriptions/12059745-2394-/resourceGroups/6e46535f-c91e-4af/providers/Microsoft.Web/sites/cf9da/networkTrace/start"; 16688Requests[2876].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16689Requests[2876].Request.Path = "/subscriptions/d7884531-6555-/resourceGroups/8645ed51-5c8a-476/providers/Microsoft.Web/sites/c11e7/networkTrace/stop"; 16692Requests[2877].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16693Requests[2877].Request.Path = "/subscriptions/89f269ce-68bd-/resourceGroups/d2660434-de34-4be/providers/Microsoft.Web/sites/7cedb/privateAccess/virtualNetworks"; 16696Requests[2878].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16697Requests[2878].Request.Path = "/subscriptions/d305f71e-23cd-/resourceGroups/25b8adab-8c56-440/providers/Microsoft.Web/sites/3f048/privateAccess/virtualNetworks"; 16700Requests[2879].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16701Requests[2879].Request.Path = "/subscriptions/ab386275-b581-/resourceGroups/6c5a9781-bce9-4d9/providers/Microsoft.Web/sites/c655a/resourceHealthMetadata/default"; 16704Requests[2880].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16705Requests[2880].Request.Path = "/subscriptions/a89084a4-9b22-/resourceGroups/5aee4870-511d-49c/providers/Microsoft.Web/sites/d7328/sourcecontrols/web"; 16708Requests[2881].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16709Requests[2881].Request.Path = "/subscriptions/1fd27bf1-eefd-/resourceGroups/f5db06a9-6f95-4b2/providers/Microsoft.Web/sites/8de5d/sourcecontrols/web"; 16712Requests[2882].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16713Requests[2882].Request.Path = "/subscriptions/e0557f6f-652f-/resourceGroups/7a77d56e-2d77-4fe/providers/Microsoft.Web/sites/bf9b3/sourcecontrols/web"; 16716Requests[2883].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16717Requests[2883].Request.Path = "/subscriptions/337e4ca3-a973-/resourceGroups/7b0c81a8-08de-477/providers/Microsoft.Web/sites/6d8c1/sourcecontrols/web"; 16720Requests[2884].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16721Requests[2884].Request.Path = "/subscriptions/101a9a9f-6f9a-/resourceGroups/3158844f-c5ca-488/providers/Microsoft.Web/sites/9fb93b69/recommendations/disable"; 16724Requests[2885].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16725Requests[2885].Request.Path = "/subscriptions/9b840bbf-7b04-/resourceGroups/c4e8a835-1ada-415/providers/Microsoft.Web/sites/ccd208b0/recommendations/reset"; 16728Requests[2886].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16729Requests[2886].Request.Path = "/subscriptions/5e945aff-26c1-/resourceGroups/9416fbf6-7871-472/providers/Microsoft.ApiManagement/service/be7963b1-b5/tenant/access/git"; 16732Requests[2887].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16733Requests[2887].Request.Path = "/subscriptions/b0c986a4-1c54-/resourceGroups/36beee13-5cd5-4ad/providers/Microsoft.ApiManagement/service/604fd38d-5c/tenant/access/regeneratePrimaryKey"; 16736Requests[2888].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16737Requests[2888].Request.Path = "/subscriptions/1620900d-2bba-/resourceGroups/0b066871-8a14-425/providers/Microsoft.ApiManagement/service/e8fb01c2-3d/tenant/access/regenerateSecondaryKey"; 16740Requests[2889].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16741Requests[2889].Request.Path = "/subscriptions/fd8a61ee-dc78-/resourceGroups/43f58a9b-76b6-42a/providers/Microsoft.ApiManagement/service/779b5226-f4/tenant/configuration/deploy"; 16744Requests[2890].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16745Requests[2890].Request.Path = "/subscriptions/707baa00-1e42-/resourceGroups/83a089e5-f89a-487/providers/Microsoft.ApiManagement/service/a86614d7-95/tenant/configuration/save"; 16748Requests[2891].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16749Requests[2891].Request.Path = "/subscriptions/57a236b2-838f-/resourceGroups/6c1ea24b-a5c1-427/providers/Microsoft.ApiManagement/service/e618f63b-48/tenant/configuration/syncState"; 16752Requests[2892].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16753Requests[2892].Request.Path = "/subscriptions/446174df-94e6-/resourceGroups/cc538ac7-5fc0-427/providers/Microsoft.ApiManagement/service/1c193544-32/tenant/configuration/validate"; 16756Requests[2893].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16757Requests[2893].Request.Path = "/subscriptions/381e1662-1e91-/resourceGroups/c5979d08-5ece-43b/providers/Microsoft.Devices/IotHubs/7289f418-c/routing/routes/$testall"; 16760Requests[2894].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16761Requests[2894].Request.Path = "/subscriptions/2ab25799-5c87-/resourceGroups/9f017336-7af7-4eb/providers/Microsoft.Devices/IotHubs/65210e6a-f/routing/routes/$testnew"; 16764Requests[2895].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16765Requests[2895].Request.Path = "/subscriptions/8f60b439-ac38-/resourceGroups/da3769e2-1abd-43b/providers/Microsoft.OperationalInsights/workspaces/9c6d7766-6f40/features/serviceMap/generateMap"; 16768Requests[2896].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16769Requests[2896].Request.Path = "/subscriptions/5644e177-10f4-/resourceGroups/fd12a661-377f-490/providers/Microsoft.OperationalInsights/workspaces/3fc0178f-6a4f/features/serviceMap/machineGroups"; 16772Requests[2897].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16773Requests[2897].Request.Path = "/subscriptions/86c4cd0b-ed39-/resourceGroups/4dfc8444-3035-475/providers/Microsoft.OperationalInsights/workspaces/4abac5b8-4a11/features/serviceMap/machineGroups"; 16776Requests[2898].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16777Requests[2898].Request.Path = "/subscriptions/5a3fd3fc-42e8-/resourceGroups/973151eb-78ba-4f1/providers/Microsoft.OperationalInsights/workspaces/947d887f-9081/features/serviceMap/machines"; 16780Requests[2899].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16781Requests[2899].Request.Path = "/Subscriptions/07439263-5298-/resourceGroups/5a287d13-8789-4ba/providers/Microsoft.RecoveryServices/vaults/0215176b-5ef/replicationVaultHealth/default/refresh"; 16784Requests[2900].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16785Requests[2900].Request.Path = "/subscriptions/f9ef2486-aa03-/resourceGroups/b0a7a315-0780-48d/providers/Microsoft.Storage/storageAccounts/ccb40c5b-e4/blobServices/default/containers"; 16788Requests[2901].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16789Requests[2901].Request.Path = "/subscriptions/e20f9b93-1f86-/resourceGroups/ab066640-b5b3-437/providers/Microsoft.Web/hostingEnvironments/26527/multiRolePools/default/metricdefinitions"; 16792Requests[2902].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16793Requests[2902].Request.Path = "/subscriptions/4252a302-6f0c-/resourceGroups/b84f2a48-c980-442/providers/Microsoft.Web/hostingEnvironments/8650f/multiRolePools/default/metrics"; 16796Requests[2903].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16797Requests[2903].Request.Path = "/subscriptions/548b79a0-395f-/resourceGroups/1c154bc3-4194-4fc/providers/Microsoft.Web/hostingEnvironments/98d7a/multiRolePools/default/skus"; 16800Requests[2904].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16801Requests[2904].Request.Path = "/subscriptions/3a228f63-0df7-/resourceGroups/82dfb926-9d84-419/providers/Microsoft.Web/hostingEnvironments/70e74/multiRolePools/default/usages"; 16804Requests[2905].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16805Requests[2905].Request.Path = "/subscriptions/b97f84fe-ab8f-/resourceGroups/cac74313-1a13-444/providers/Microsoft.Web/sites/f6b31/config/appsettings/list"; 16808Requests[2906].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16809Requests[2906].Request.Path = "/subscriptions/543d84ea-9c6f-/resourceGroups/c6a10ae9-558d-443/providers/Microsoft.Web/sites/9e380/config/authsettings/list"; 16812Requests[2907].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16813Requests[2907].Request.Path = "/subscriptions/03a212a8-f609-/resourceGroups/05bab127-ca81-4f2/providers/Microsoft.Web/sites/c603e/config/backup/list"; 16816Requests[2908].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16817Requests[2908].Request.Path = "/subscriptions/c1a2223f-bd5c-/resourceGroups/d28e74ab-4e98-406/providers/Microsoft.Web/sites/8246c/config/connectionstrings/list"; 16820Requests[2909].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16821Requests[2909].Request.Path = "/subscriptions/31bb39e0-53ea-/resourceGroups/2d3be9dd-e29b-4e6/providers/Microsoft.Web/sites/b1c88/config/metadata/list"; 16824Requests[2910].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16825Requests[2910].Request.Path = "/subscriptions/36cf1ccf-9af2-/resourceGroups/44cffed6-6e29-43a/providers/Microsoft.Web/sites/fad72/config/publishingcredentials/list"; 16828Requests[2911].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16829Requests[2911].Request.Path = "/subscriptions/b0c1f61b-2b9e-/resourceGroups/b6eeb473-502f-4f1/providers/Microsoft.Web/sites/43421/config/pushsettings/list"; 16832Requests[2912].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16833Requests[2912].Request.Path = "/subscriptions/76563061-a2f2-/resourceGroups/ebea7ed1-e5b4-492/providers/Microsoft.Web/sites/bb690/config/web/snapshots"; 16836Requests[2913].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16837Requests[2913].Request.Path = "/subscriptions/8c3f3871-69ef-/resourceGroups/fb2620df-179c-489/providers/Microsoft.Web/sites/c96f3/containerlogs/zip/download"; 16840Requests[2914].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16841Requests[2914].Request.Path = "/subscriptions/567bbecf-7778-/resourceGroups/30650e6e-eba1-46f/providers/Microsoft.Web/sites/170c5/extensions/MSDeploy/log"; 16844Requests[2915].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16845Requests[2915].Request.Path = "/subscriptions/1ddab599-3d28-/resourceGroups/76e4e131-df3c-4ad/providers/Microsoft.Web/sites/b637b/functions/admin/token"; 16848Requests[2916].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16849Requests[2916].Request.Path = "/subscriptions/48b50f23-06b9-/resourceGroups/bbe91601-28dd-42c/providers/Microsoft.ApiManagement/service/9b6c6599-fa/tenant/access/git/regeneratePrimaryKey"; 16852Requests[2917].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16853Requests[2917].Request.Path = "/subscriptions/3ad91b13-2aba-/resourceGroups/242268a5-6661-48f/providers/Microsoft.ApiManagement/service/9b7bceff-8d/tenant/access/git/regenerateSecondaryKey"; 16856Requests[2918].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16857Requests[2918].Request.Path = "/subscriptions/7ba7e2fd-8be2-/resourceGroups/6efff822-6e0a-45c/providers/Microsoft.OperationalInsights/workspaces/1152ad3a-965a/features/serviceMap/summaries/machines"; 16860Requests[2919].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16861Requests[2919].Request.Path = "/subscriptions/a29117e5-2dd3-/resourceGroups/3ddfeff6-2f01-459/providers/Microsoft.OperationalInsights/workspaces/6af9976e-0150/features/serviceMap/clientGroups/80d8c882-c25e-4"; 16864Requests[2920].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16865Requests[2920].Request.Path = "/subscriptions/579a0d3a-8e25-/resourceGroups/b96fc04c-52d5-43c/providers/Microsoft.OperationalInsights/workspaces/5531ca94-a9a7/features/serviceMap/machineGroups/cb813092-645d-49"; 16868Requests[2921].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16869Requests[2921].Request.Path = "/subscriptions/c40dc4e1-c5d1-/resourceGroups/783b9285-0b90-4c1/providers/Microsoft.OperationalInsights/workspaces/18584f0e-eab6/features/serviceMap/machineGroups/2c6c03f7-279c-46"; 16872Requests[2922].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16873Requests[2922].Request.Path = "/subscriptions/a13ebeb8-9c13-/resourceGroups/1de61a68-6038-421/providers/Microsoft.OperationalInsights/workspaces/08223cb8-5fbb/features/serviceMap/machineGroups/abb7f33a-1f43-4a"; 16876Requests[2923].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16877Requests[2923].Request.Path = "/subscriptions/86374978-af0e-/resourceGroups/48e5c11d-3080-441/providers/Microsoft.OperationalInsights/workspaces/1a4cec37-85d1/features/serviceMap/machines/2eec9e03-1d"; 16880Requests[2924].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 16881Requests[2924].Request.Path = "/subscriptions/883d2106-3ccc-/resourceGroups/5ffa27d0-3611-422/providers/Microsoft.Storage/storageAccounts/93e06dd3-1e/blobServices/default/containers/37a4fcda-5a38"; 16884Requests[2925].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16885Requests[2925].Request.Path = "/subscriptions/df23d8c1-88b0-/resourceGroups/b8cecee8-2b26-4ed/providers/Microsoft.Storage/storageAccounts/2cc0af3e-18/blobServices/default/containers/ccf8abcc-011f"; 16888Requests[2926].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16889Requests[2926].Request.Path = "/subscriptions/017cb9da-008b-/resourceGroups/7e9fe602-973a-4f2/providers/Microsoft.Storage/storageAccounts/58fe1881-83/blobServices/default/containers/2ca33c13-5b7d"; 16892Requests[2927].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16893Requests[2927].Request.Path = "/subscriptions/1cc2d03a-68da-/resourceGroups/117eeed7-1642-4be/providers/Microsoft.Storage/storageAccounts/1e6d09ff-af/blobServices/default/containers/8ca32980-5329"; 16896Requests[2928].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16897Requests[2928].Request.Path = "/subscriptions/7f4dea19-d521-/resourceGroups/0c67d0fb-b8c2-421/providers/Microsoft.Web/sites/73d18/config/web/snapshots/acfd0142-a"; 16900Requests[2929].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16901Requests[2929].Request.Path = "/subscriptions/9941ddf6-6d80-/resourceGroups/86951fd3-6e50-453/providers/Microsoft.OperationalInsights/workspaces/7a67d15d-6c1f/features/serviceMap/clientGroups/b7b6d946-f5ae-4/members"; 16904Requests[2930].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16905Requests[2930].Request.Path = "/subscriptions/69404a44-1df0-/resourceGroups/836ef9eb-7b64-40f/providers/Microsoft.OperationalInsights/workspaces/7e9d9f7d-7fa5/features/serviceMap/clientGroups/42e42663-ade7-4/membersCount"; 16908Requests[2931].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16909Requests[2931].Request.Path = "/subscriptions/e248b657-4c22-/resourceGroups/229c04b6-3d2c-4db/providers/Microsoft.OperationalInsights/workspaces/a4713130-548e/features/serviceMap/machines/27e48d94-e1/connections"; 16912Requests[2932].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16913Requests[2932].Request.Path = "/subscriptions/51cf8985-d8f3-/resourceGroups/a56d6494-f995-43b/providers/Microsoft.OperationalInsights/workspaces/b9798816-0b2e/features/serviceMap/machines/248074ab-c9/liveness"; 16916Requests[2933].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16917Requests[2933].Request.Path = "/subscriptions/e7c1c270-32d7-/resourceGroups/f78d920a-439e-438/providers/Microsoft.OperationalInsights/workspaces/b8518a8d-a79d/features/serviceMap/machines/525ff651-2e/machineGroups"; 16920Requests[2934].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16921Requests[2934].Request.Path = "/subscriptions/8ad0f175-427c-/resourceGroups/ca95b742-706c-42c/providers/Microsoft.OperationalInsights/workspaces/d526ffc9-a0d9/features/serviceMap/machines/35230518-6f/ports"; 16924Requests[2935].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16925Requests[2935].Request.Path = "/subscriptions/71cf5c2f-c213-/resourceGroups/25805ee1-235e-44b/providers/Microsoft.OperationalInsights/workspaces/bcdb94bf-e86e/features/serviceMap/machines/295e42ba-1a/processes"; 16928Requests[2936].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16929Requests[2936].Request.Path = "/subscriptions/a18be7eb-8e66-/resourceGroups/970a9cff-2d88-43c/providers/Microsoft.Storage/storageAccounts/5fe55a9c-d7/blobServices/default/containers/2ca04e44-7b1a/clearLegalHold"; 16932Requests[2937].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16933Requests[2937].Request.Path = "/subscriptions/f7ea0fc1-80f6-/resourceGroups/d7211526-03bb-487/providers/Microsoft.Storage/storageAccounts/3ffa4aeb-99/blobServices/default/containers/f05f8032-2959/setLegalHold"; 16936Requests[2938].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16937Requests[2938].Request.Path = "/subscriptions/03c13c38-5d95-/resourceGroups/163d1094-16dc-413/providers/Microsoft.Web/hostingEnvironments/3adf9/multiRolePools/default/instances/494eb1e7/metricdefinitions"; 16940Requests[2939].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16941Requests[2939].Request.Path = "/subscriptions/dbdd400f-99cc-/resourceGroups/4f7b2fbb-0eaf-419/providers/Microsoft.Web/hostingEnvironments/1a85c/multiRolePools/default/instances/72322969/metrics"; 16944Requests[2940].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16945Requests[2940].Request.Path = "/subscriptions/d69d51b3-3647-/resourceGroups/46c7cd3a-db7e-4b2/providers/Microsoft.Web/sites/e2c3f/config/web/snapshots/40b64303-3/recover"; 16948Requests[2941].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16949Requests[2941].Request.Path = "/subscriptions/45f176e8-e179-/resourceGroups/9c25b417-9213-45d/providers/Microsoft.Storage/storageAccounts/860c0bba-bc/blobServices/default/containers/44761f56-aa6b/immutabilityPolicies/default/extend"; 16952Requests[2942].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 16953Requests[2942].Request.Path = "/subscriptions/f6da0121-63d5-/resourceGroups/1b58ff81-bfd5-444/providers/Microsoft.Storage/storageAccounts/cc209ea8-55/blobServices/default/containers/fe53148f-1eb8/immutabilityPolicies/default/lock"; 16956Requests[2943].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16957Requests[2943].Request.Path = "/subscriptions/2879425a-9cdc-/resourceGroups/fce95a2e-8b81-4ac/providers/Microsoft.OperationalInsights/workspaces/d4aeede1-9e78/features/serviceMap/machines/a23fed31-9b/ports/caa07cb3"; 16960Requests[2944].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16961Requests[2944].Request.Path = "/subscriptions/6beb076d-f11a-/resourceGroups/be75d81b-a850-49e/providers/Microsoft.OperationalInsights/workspaces/162f2784-c4be/features/serviceMap/machines/7ddeabb4-fb/processes/8c22eab6-2e"; 16964Requests[2945].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16965Requests[2945].Request.Path = "/subscriptions/e607c8b0-9336-/resourceGroups/bf8428ef-1f98-445/providers/Microsoft.Storage/storageAccounts/2dfa7089-0d/blobServices/default/containers/dfcf67c7-8e0c/immutabilityPolicies/1b1e6c2a-e352-487f-be9"; 16968Requests[2946].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 16969Requests[2946].Request.Path = "/subscriptions/238d9f79-f079-/resourceGroups/242148c9-9b6c-49e/providers/Microsoft.Storage/storageAccounts/ba4188d0-e3/blobServices/default/containers/f18b2350-646c/immutabilityPolicies/d7f11596-472b-464d-ae9"; 16972Requests[2947].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 16973Requests[2947].Request.Path = "/subscriptions/5f45bdea-9817-/resourceGroups/e8309781-3384-4d0/providers/Microsoft.Storage/storageAccounts/fdcc8ef1-75/blobServices/default/containers/2e05c99d-d4e3/immutabilityPolicies/6a1ed462-a6c4-4908-816"; 16976Requests[2948].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16977Requests[2948].Request.Path = "/subscriptions/24bb2ced-979b-/resourceGroups/0e5ec9f6-38bd-417/providers/Microsoft.OperationalInsights/workspaces/4b898e52-735b/features/serviceMap/machines/51f5ae7c-8b/ports/74d52171/acceptingProcesses"; 16980Requests[2949].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16981Requests[2949].Request.Path = "/subscriptions/032c94f2-f4da-/resourceGroups/918fd311-f84b-46a/providers/Microsoft.OperationalInsights/workspaces/36511d76-82f9/features/serviceMap/machines/4e0eb8c5-68/ports/c0d900c8/connections"; 16984Requests[2950].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16985Requests[2950].Request.Path = "/subscriptions/5f040c0e-bd4e-/resourceGroups/bc330b0a-7469-454/providers/Microsoft.OperationalInsights/workspaces/58fd1608-931a/features/serviceMap/machines/3c9fd9a5-86/ports/5a4e1c6d/liveness"; 16988Requests[2951].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16989Requests[2951].Request.Path = "/subscriptions/2724301f-eaa2-/resourceGroups/a4386a3b-a59f-4dd/providers/Microsoft.OperationalInsights/workspaces/b5cf9986-96c4/features/serviceMap/machines/fe397bbd-a9/processes/2dbc2efb-35/acceptingPorts"; 16992Requests[2952].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16993Requests[2952].Request.Path = "/subscriptions/643d4cc4-5fc5-/resourceGroups/30c2b8a3-8830-4c2/providers/Microsoft.OperationalInsights/workspaces/2c9475d7-b372/features/serviceMap/machines/05f0999c-c6/processes/cdabae4e-05/connections"; 16996Requests[2953].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 16997Requests[2953].Request.Path = "/subscriptions/de35a878-611d-/resourceGroups/4105cda7-bf6b-46c/providers/Microsoft.OperationalInsights/workspaces/19f67907-9c33/features/serviceMap/machines/ee86153d-f9/processes/ba59ccfb-d7/liveness"; 17000Requests[2954].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17001Requests[2954].Request.Path = "/Subscriptions/4d821db6-7cad-/resourceGroups/1ae87d02-0a12-4c0/providers/Microsoft.RecoveryServices/vaults/e809942f-/backupJobs/operationResults/ee4d9e84-59"; 17004Requests[2955].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 17005Requests[2955].Request.Path = "/subscriptions/068e489b-155d-/resourcegroups/dec74986-a1f7-4a7/providers/Microsoft.Storage.Admin/farms/8858ee/shares/operationresults/3c0fe0c2-35"; 17008Requests[2956].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17009Requests[2956].Request.Path = "/subscriptions/4f9a33c4-b5f4-/resourcegroups/79c4533b-03e0-46f/providers/Microsoft.Storage.Admin/farms/d488a0/shares/operationresults/b9fe335c-d3"; 17012Requests[2957].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17013Requests[2957].Request.Path = "/subscriptions/20ff8131-1a48-/resourceGroup/5d70c143-63e3-418/providers/Microsoft.MachineLearningServices/workspaces/0306ae8e-53fe/computes/34a93725-ba"; 17016Requests[2958].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17017Requests[2958].Request.Path = "/subscriptions/3e833b4c-b8c4-/resourceGroup/4135b13a-ce0c-450/providers/Microsoft.MachineLearningServices/workspaces/631185ba-014e/computes/c681152b-57"; 17020Requests[2959].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17021Requests[2959].Request.Path = "/subscriptions/258f126d-1967-/resourceGroup/a420b6bb-cd1d-4e4/providers/Microsoft.MachineLearningServices/workspaces/da767a46-9aae/computes/0943fa06-72"; 17024Requests[2960].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17025Requests[2960].Request.Path = "/subscriptions/42a82f0e-034e-/resourceGroups/f9612835-/providers/Microsoft.DataMigration/services/d47aed37-6c/projects/dd310e7e-03"; 17028Requests[2961].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17029Requests[2961].Request.Path = "/subscriptions/ac46e81a-6a97-/resourceGroups/ac588f2d-/providers/Microsoft.DataMigration/services/bb9c126f-89/projects/f5e7e6db-47"; 17032Requests[2962].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17033Requests[2962].Request.Path = "/subscriptions/04a607de-c556-/resourceGroups/d0c430f4-/providers/Microsoft.DataMigration/services/903f68c8-4c/projects/b30b303f-b8"; 17036Requests[2963].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17037Requests[2963].Request.Path = "/subscriptions/82a0394a-de3d-/resourceGroups/356cf4fa-/providers/Microsoft.DataMigration/services/8bce1ba1-16/projects/2d4f4ab8-2f"; 17040Requests[2964].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 17041Requests[2964].Request.Path = "/subscriptions/a5f0d2b1-559a-/resourceGroups/0985517e-/providers/Microsoft.DataMigration/services/810e4f83-54/projects/9207050a-5d"; 17044Requests[2965].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17045Requests[2965].Request.Path = "/subscriptions/b1ea3083-1ec8-/resourcegroups/ed071ff1-6752/providers/Microsoft.AzureBridge.Admin/activations/7d940ac4-e839-/downloadedProducts/29d52386-88"; 17048Requests[2966].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17049Requests[2966].Request.Path = "/subscriptions/53e0a721-2016-/resourcegroups/d7188377-f9de/providers/Microsoft.AzureBridge.Admin/activations/b378806e-d305-/downloadedProducts/771e0bc0-e3"; 17052Requests[2967].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17053Requests[2967].Request.Path = "/subscriptions/80e66663-8898-/resourcegroups/473df903-b8bc/providers/Microsoft.AzureBridge.Admin/activations/a3c3a2ba-ec27-/products/a7c39dff-bd"; 17056Requests[2968].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17057Requests[2968].Request.Path = "/subscriptions/85459ae0-fcad-/resourceGroups/b3712f7b-7205/providers/Microsoft.AzureStack/registrations/93f57b1e-2ef6-4c/customerSubscriptions/4c18401b-c92f-480a-82b8-"; 17060Requests[2969].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17061Requests[2969].Request.Path = "/subscriptions/3c53eb75-6a41-/resourceGroups/f178cd16-0a26/providers/Microsoft.AzureStack/registrations/754e3885-6b85-45/customerSubscriptions/2ff6ee33-fc93-43c2-8cd2-"; 17064Requests[2970].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17065Requests[2970].Request.Path = "/subscriptions/02e711e6-708d-/resourceGroups/45103859-626c/providers/Microsoft.AzureStack/registrations/c7a5641e-7289-43/customerSubscriptions/a938fb1a-3d84-4115-8900-"; 17068Requests[2971].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17069Requests[2971].Request.Path = "/subscriptions/97316cda-26ce-/resourceGroups/fd4def52-2b8d/providers/Microsoft.AzureStack/registrations/dc7263bc-017d-4f/products/f6b7fb23-c3"; 17072Requests[2972].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17073Requests[2972].Request.Path = "/subscriptions/c2b8fb8d-6abf-/resourceGroups/e841c65f-1373-411/providers/Microsoft.ApiManagement/service/37406ec6-97/apis/1a91e"; 17076Requests[2973].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17077Requests[2973].Request.Path = "/subscriptions/ebc6d7cc-d7ef-/resourceGroups/2f099d6c-e2b8-430/providers/Microsoft.ApiManagement/service/095a4a80-a1/apis/410dc"; 17080Requests[2974].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17081Requests[2974].Request.Path = "/subscriptions/e0d9387a-1df0-/resourceGroups/3e2c03b6-a7a3-475/providers/Microsoft.ApiManagement/service/2d7afe64-0e/apis/50885"; 17084Requests[2975].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17085Requests[2975].Request.Path = "/subscriptions/ba40e904-fa86-/resourceGroups/88e06f13-6116-4c3/providers/Microsoft.ApiManagement/service/608411f3-66/apis/68d69"; 17088Requests[2976].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17089Requests[2976].Request.Path = "/subscriptions/75a6baa7-0abe-/resourceGroups/b0f039eb-7ae6-49b/providers/Microsoft.ApiManagement/service/47555aae-bb/apis/fc01f"; 17092Requests[2977].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17093Requests[2977].Request.Path = "/subscriptions/97cff903-acd8-/resourceGroups/6b6d8dcd-66aa-4dc/providers/Microsoft.ApiManagement/service/bcadf16e-99/api-version-sets/43de1b8c-3be"; 17096Requests[2978].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17097Requests[2978].Request.Path = "/subscriptions/3760ab11-a853-/resourceGroups/f22b8c3e-c50e-466/providers/Microsoft.ApiManagement/service/27e8fd44-7b/api-version-sets/a55f2f40-327"; 17100Requests[2979].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17101Requests[2979].Request.Path = "/subscriptions/e4b60afc-fec6-/resourceGroups/eb60ec0d-2ca8-44c/providers/Microsoft.ApiManagement/service/72d352eb-fa/api-version-sets/649cfe33-f78"; 17104Requests[2980].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17105Requests[2980].Request.Path = "/subscriptions/dee154aa-4add-/resourceGroups/a5cb41bb-872e-464/providers/Microsoft.ApiManagement/service/d70070bc-91/api-version-sets/2deb3c69-5eb"; 17108Requests[2981].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17109Requests[2981].Request.Path = "/subscriptions/620fa6fb-2392-/resourceGroups/d818719e-fd7c-44d/providers/Microsoft.ApiManagement/service/7755633b-88/api-version-sets/9238a65c-379"; 17112Requests[2982].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 17113Requests[2982].Request.Path = "/subscriptions/4f320d72-1e03-/resourceGroups/8f1d6b48-0a75-4cd/providers/Microsoft.ApiManagement/service/0f212093-21/api-version-sets/b16a3104-993"; 17116Requests[2983].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17117Requests[2983].Request.Path = "/subscriptions/fe2d6786-4ae7-/resourceGroups/b51e9a20-2335-402/providers/Microsoft.ApiManagement/service/7b975106-d4/authorizationServers/a345bfa"; 17120Requests[2984].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17121Requests[2984].Request.Path = "/subscriptions/46667647-cd9f-/resourceGroups/76c6098f-738d-4a3/providers/Microsoft.ApiManagement/service/1505ba62-de/authorizationServers/206d389"; 17124Requests[2985].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17125Requests[2985].Request.Path = "/subscriptions/fe58b0a3-c2a4-/resourceGroups/30d4565e-9518-4f4/providers/Microsoft.ApiManagement/service/af3ed4b0-93/authorizationServers/9cc8ab2"; 17128Requests[2986].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17129Requests[2986].Request.Path = "/subscriptions/c3609445-f1c6-/resourceGroups/5e0c9db9-2182-469/providers/Microsoft.ApiManagement/service/6bf1f248-7f/authorizationServers/d2a4f40"; 17132Requests[2987].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17133Requests[2987].Request.Path = "/subscriptions/1e6eb197-ece9-/resourceGroups/f0176929-7350-406/providers/Microsoft.ApiManagement/service/9a3bb9d0-aa/authorizationServers/59695aa"; 17136Requests[2988].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17137Requests[2988].Request.Path = "/subscriptions/a286008a-f578-/resourceGroups/cbf2a9a3-62a9-4e1/providers/Microsoft.ApiManagement/service/e6195e47-2a/backends/bb0227c5-"; 17140Requests[2989].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17141Requests[2989].Request.Path = "/subscriptions/f0a89759-be26-/resourceGroups/b5564fba-4429-4a0/providers/Microsoft.ApiManagement/service/3c570a59-a8/backends/43683750-"; 17144Requests[2990].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17145Requests[2990].Request.Path = "/subscriptions/d6a2b1fc-3115-/resourceGroups/8de97dba-2bf6-44d/providers/Microsoft.ApiManagement/service/afaa1314-d0/backends/de8c2885-"; 17148Requests[2991].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17149Requests[2991].Request.Path = "/subscriptions/67e38d11-5703-/resourceGroups/f11cc59e-f1bb-40a/providers/Microsoft.ApiManagement/service/6ea5b8f2-e4/backends/6dd9a573-"; 17152Requests[2992].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17153Requests[2992].Request.Path = "/subscriptions/dec623de-06c8-/resourceGroups/51cee1ce-20fa-4d1/providers/Microsoft.ApiManagement/service/645105c7-a5/backends/6b3a0ace-"; 17156Requests[2993].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17157Requests[2993].Request.Path = "/subscriptions/ed74d376-5d8f-/resourceGroups/dabf2883-9898-482/providers/Microsoft.ApiManagement/service/2ef3e9de-90/certificates/6f48a19b-554d"; 17160Requests[2994].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17161Requests[2994].Request.Path = "/subscriptions/8be2d8ae-e246-/resourceGroups/ccaa4bd2-540c-46b/providers/Microsoft.ApiManagement/service/4faebbe6-26/certificates/682b4091-0e9d"; 17164Requests[2995].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17165Requests[2995].Request.Path = "/subscriptions/bf85fb61-3e48-/resourceGroups/ee455d21-4d81-44d/providers/Microsoft.ApiManagement/service/132239f1-d6/certificates/f023b1f6-75f8"; 17168Requests[2996].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17169Requests[2996].Request.Path = "/subscriptions/defdf4e7-af42-/resourceGroups/9f6ac094-eb42-459/providers/Microsoft.ApiManagement/service/76503ea1-e8/certificates/e9c01b43-08e4"; 17172Requests[2997].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17173Requests[2997].Request.Path = "/subscriptions/3a48a5bc-3252-/resourceGroups/177975ca-0178-411/providers/Microsoft.ApiManagement/service/813a04d1-19/diagnostics/db3ba92c-9dd"; 17176Requests[2998].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17177Requests[2998].Request.Path = "/subscriptions/7710e56c-57af-/resourceGroups/c6cde74a-669e-412/providers/Microsoft.ApiManagement/service/a9d38522-b0/diagnostics/8ca53e3f-ad9"; 17180Requests[2999].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17181Requests[2999].Request.Path = "/subscriptions/f142565c-e121-/resourceGroups/0029d02e-60cb-482/providers/Microsoft.ApiManagement/service/b279f0a7-76/diagnostics/75997d1c-021"; 17184Requests[3000].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17185Requests[3000].Request.Path = "/subscriptions/8b1cac27-0225-/resourceGroups/408db9e5-afb0-4a1/providers/Microsoft.ApiManagement/service/bc26895c-85/diagnostics/ecf1378c-e1e"; 17188Requests[3001].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17189Requests[3001].Request.Path = "/subscriptions/ef29915b-6e23-/resourceGroups/53cd3320-8969-429/providers/Microsoft.ApiManagement/service/965e57cb-2b/diagnostics/69d5cc5a-6aa"; 17192Requests[3002].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17193Requests[3002].Request.Path = "/subscriptions/ee0e8a46-c97e-/resourceGroups/84a69bf6-e714-46f/providers/Microsoft.ApiManagement/service/813c84fa-17/groups/ae5cd31"; 17196Requests[3003].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17197Requests[3003].Request.Path = "/subscriptions/38b8904a-35a0-/resourceGroups/81779466-62c2-460/providers/Microsoft.ApiManagement/service/00876d0e-b4/groups/d051597"; 17200Requests[3004].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17201Requests[3004].Request.Path = "/subscriptions/256d98c0-29aa-/resourceGroups/5e0864de-0851-46f/providers/Microsoft.ApiManagement/service/e238a53c-a1/groups/31bed2f"; 17204Requests[3005].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17205Requests[3005].Request.Path = "/subscriptions/03f6fdee-1f8e-/resourceGroups/3908cd0a-0072-4ff/providers/Microsoft.ApiManagement/service/d535c1ba-1d/groups/0a2cdca"; 17208Requests[3006].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17209Requests[3006].Request.Path = "/subscriptions/d49370c4-ae89-/resourceGroups/65ccec5e-6826-4eb/providers/Microsoft.ApiManagement/service/4d885ee8-11/groups/bc2d83d"; 17212Requests[3007].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17213Requests[3007].Request.Path = "/subscriptions/5d565a53-2e82-/resourceGroups/3e55b6e8-e12f-459/providers/Microsoft.ApiManagement/service/9b1e20d0-ec/identityProviders/6b5e2648-4262-4862-a"; 17216Requests[3008].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17217Requests[3008].Request.Path = "/subscriptions/9783e7f5-fcc1-/resourceGroups/03a0293f-9d8b-43e/providers/Microsoft.ApiManagement/service/78d8857d-c7/identityProviders/a999ad23-0187-4ab6-a"; 17220Requests[3009].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17221Requests[3009].Request.Path = "/subscriptions/45a9dc9c-018b-/resourceGroups/b6b89258-f1d5-41b/providers/Microsoft.ApiManagement/service/d24dd9d6-72/identityProviders/5e448e76-c35e-4e71-9"; 17224Requests[3010].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17225Requests[3010].Request.Path = "/subscriptions/2decda53-953f-/resourceGroups/055673a2-fa94-44f/providers/Microsoft.ApiManagement/service/534f3103-ac/identityProviders/0a557fe3-f415-4f2c-b"; 17228Requests[3011].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17229Requests[3011].Request.Path = "/subscriptions/e9087213-7a1e-/resourceGroups/51364ccf-4b1e-46b/providers/Microsoft.ApiManagement/service/829648f0-90/identityProviders/2d0749e4-eb29-44ba-a"; 17232Requests[3012].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17233Requests[3012].Request.Path = "/subscriptions/8542c7de-ef4b-/resourceGroups/072cccdd-f278-458/providers/Microsoft.ApiManagement/service/e7c97461-46/loggers/a4dbac87"; 17236Requests[3013].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17237Requests[3013].Request.Path = "/subscriptions/2f9a02f9-de0c-/resourceGroups/f05ea938-0ee3-4d2/providers/Microsoft.ApiManagement/service/278749bc-d2/loggers/aea473b3"; 17240Requests[3014].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17241Requests[3014].Request.Path = "/subscriptions/17ccc322-55a1-/resourceGroups/bea9aaeb-7f94-4a6/providers/Microsoft.ApiManagement/service/01f1ce91-79/loggers/b9584901"; 17244Requests[3015].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17245Requests[3015].Request.Path = "/subscriptions/a93b62ab-3cd1-/resourceGroups/9d33f101-2b3d-4de/providers/Microsoft.ApiManagement/service/e9b65f1a-bf/loggers/22665e98"; 17248Requests[3016].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17249Requests[3016].Request.Path = "/subscriptions/903c9002-79bb-/resourceGroups/a96b6680-0b73-419/providers/Microsoft.ApiManagement/service/a86f4b42-24/loggers/a89cb7dc"; 17252Requests[3017].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17253Requests[3017].Request.Path = "/subscriptions/ff8b9918-9058-/resourceGroups/1cd47a54-5c2a-410/providers/Microsoft.ApiManagement/service/0e2c281f-3c/notifications/5762c692-abbb-4c"; 17256Requests[3018].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17257Requests[3018].Request.Path = "/subscriptions/e470c69d-1166-/resourceGroups/dc34a7a2-2b9a-454/providers/Microsoft.ApiManagement/service/64b82b29-1a/notifications/a222a270-59af-4f"; 17260Requests[3019].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17261Requests[3019].Request.Path = "/subscriptions/8695b3ba-a51b-/resourceGroups/74d7d192-cdb1-4cf/providers/Microsoft.ApiManagement/service/ab14f1ef-f1/openidConnectProviders/29ebf"; 17264Requests[3020].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17265Requests[3020].Request.Path = "/subscriptions/3478d87c-3cfe-/resourceGroups/e694fcbb-fb7d-402/providers/Microsoft.ApiManagement/service/7bb290e5-08/openidConnectProviders/0357c"; 17268Requests[3021].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17269Requests[3021].Request.Path = "/subscriptions/24bc47ee-d70d-/resourceGroups/c5514dc1-7433-44a/providers/Microsoft.ApiManagement/service/906cab44-e3/openidConnectProviders/36586"; 17272Requests[3022].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17273Requests[3022].Request.Path = "/subscriptions/53e658b3-5e6d-/resourceGroups/7075c5c0-695e-410/providers/Microsoft.ApiManagement/service/d0eb77c6-43/openidConnectProviders/00e2f"; 17276Requests[3023].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17277Requests[3023].Request.Path = "/subscriptions/3a341b39-fb2f-/resourceGroups/af60c4f8-84f0-4ea/providers/Microsoft.ApiManagement/service/f3a436bb-71/openidConnectProviders/64448"; 17280Requests[3024].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17281Requests[3024].Request.Path = "/subscriptions/5e7fb988-512d-/resourceGroups/29543082-7da0-4b2/providers/Microsoft.ApiManagement/service/4c809c28-50/policies/4279759e"; 17284Requests[3025].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17285Requests[3025].Request.Path = "/subscriptions/bcd8a2b9-5a52-/resourceGroups/e6c5b16d-f585-476/providers/Microsoft.ApiManagement/service/8a9f12e1-b1/policies/5469b0b2"; 17288Requests[3026].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17289Requests[3026].Request.Path = "/subscriptions/e48059c8-a93b-/resourceGroups/f1e6aab5-9e67-48c/providers/Microsoft.ApiManagement/service/d814d1be-1f/policies/26eb4283"; 17292Requests[3027].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17293Requests[3027].Request.Path = "/subscriptions/991dc958-12a5-/resourceGroups/da5b9162-25c7-417/providers/Microsoft.ApiManagement/service/e678330e-c7/policies/e2f16039"; 17296Requests[3028].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17297Requests[3028].Request.Path = "/subscriptions/f06dcc82-44e7-/resourceGroups/96354e65-58d8-441/providers/Microsoft.ApiManagement/service/b86bfb8e-db/products/8a93cc29-"; 17300Requests[3029].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17301Requests[3029].Request.Path = "/subscriptions/4965274b-7654-/resourceGroups/2993eb87-cb21-4bf/providers/Microsoft.ApiManagement/service/1946a657-fc/products/80e8bb00-"; 17304Requests[3030].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17305Requests[3030].Request.Path = "/subscriptions/2ceb4526-7fcd-/resourceGroups/c3a9b601-601f-49e/providers/Microsoft.ApiManagement/service/aa6685ca-ae/products/03dd0095-"; 17308Requests[3031].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17309Requests[3031].Request.Path = "/subscriptions/0f0226f5-0dde-/resourceGroups/c3f4836d-194f-491/providers/Microsoft.ApiManagement/service/152b04d2-2e/products/e7f7e47b-"; 17312Requests[3032].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17313Requests[3032].Request.Path = "/subscriptions/95c8e255-b08f-/resourceGroups/b31d92ea-78bf-4e1/providers/Microsoft.ApiManagement/service/18b4a487-3b/products/62344162-"; 17316Requests[3033].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17317Requests[3033].Request.Path = "/subscriptions/72f3cd01-62eb-/resourceGroups/b2eaea41-c60d-4cb/providers/Microsoft.ApiManagement/service/5d51a9ae-83/properties/ef3c95"; 17320Requests[3034].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17321Requests[3034].Request.Path = "/subscriptions/3994542d-adcc-/resourceGroups/7779c05e-330c-48c/providers/Microsoft.ApiManagement/service/87986799-76/properties/e5fd1a"; 17324Requests[3035].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17325Requests[3035].Request.Path = "/subscriptions/d18353bd-68c8-/resourceGroups/97b0fc39-ace1-466/providers/Microsoft.ApiManagement/service/e9085253-93/properties/64a76b"; 17328Requests[3036].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17329Requests[3036].Request.Path = "/subscriptions/5cb6c805-d71a-/resourceGroups/6af7c672-7380-433/providers/Microsoft.ApiManagement/service/d1ba35f6-2b/properties/7dfe75"; 17332Requests[3037].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17333Requests[3037].Request.Path = "/subscriptions/f0830b5b-7b3d-/resourceGroups/1b2710b9-a5e5-431/providers/Microsoft.ApiManagement/service/8bb3a388-37/properties/0d2538"; 17336Requests[3038].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17337Requests[3038].Request.Path = "/subscriptions/536171fe-862b-/resourceGroups/2136bfca-8b4f-46d/providers/Microsoft.ApiManagement/service/a0e6c822-1b/quotas/40faedad-f3eb-4"; 17340Requests[3039].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17341Requests[3039].Request.Path = "/subscriptions/65bd6861-f13f-/resourceGroups/df76693c-af29-441/providers/Microsoft.ApiManagement/service/5ce2123b-3b/quotas/4aeef56f-efad-4"; 17344Requests[3040].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17345Requests[3040].Request.Path = "/subscriptions/d3190b27-ce25-/resourceGroups/16c3d61d-1706-4f4/providers/Microsoft.ApiManagement/service/fdff089e-5a/reports/dcd1a41c-01"; 17348Requests[3041].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17349Requests[3041].Request.Path = "/subscriptions/7dfdb3e8-fc62-/resourceGroups/7cade622-e2a2-4cd/providers/Microsoft.ApiManagement/service/4bdb177a-a4/subscriptions/8c0ab"; 17352Requests[3042].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17353Requests[3042].Request.Path = "/subscriptions/49212dc6-a414-/resourceGroups/4fd03937-0807-40b/providers/Microsoft.ApiManagement/service/00228d75-fb/subscriptions/332b7"; 17356Requests[3043].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17357Requests[3043].Request.Path = "/subscriptions/0e6b63f1-f1db-/resourceGroups/c96985c0-8a71-4c4/providers/Microsoft.ApiManagement/service/988173d8-f8/subscriptions/32e55"; 17360Requests[3044].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17361Requests[3044].Request.Path = "/subscriptions/b61dc822-402c-/resourceGroups/6fe2d0d0-f848-468/providers/Microsoft.ApiManagement/service/05b5445d-cd/subscriptions/b001f"; 17364Requests[3045].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17365Requests[3045].Request.Path = "/subscriptions/30d24d63-cac8-/resourceGroups/9018a0f3-6871-443/providers/Microsoft.ApiManagement/service/39ac14d2-67/subscriptions/7d383"; 17368Requests[3046].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17369Requests[3046].Request.Path = "/subscriptions/53b87572-5bb7-/resourceGroups/d2444c6b-8fe7-499/providers/Microsoft.ApiManagement/service/85f5bdcd-59/tags/6ec8c"; 17372Requests[3047].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17373Requests[3047].Request.Path = "/subscriptions/526ddc98-4b4e-/resourceGroups/afb46eae-871f-437/providers/Microsoft.ApiManagement/service/c54626cb-31/tags/6d746"; 17376Requests[3048].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17377Requests[3048].Request.Path = "/subscriptions/868689e0-04f8-/resourceGroups/d9fb5e3c-8fcc-436/providers/Microsoft.ApiManagement/service/a958584e-9c/tags/1ee57"; 17380Requests[3049].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17381Requests[3049].Request.Path = "/subscriptions/74113d28-6b49-/resourceGroups/e0a7b56c-bd82-48c/providers/Microsoft.ApiManagement/service/e3c1e678-16/tags/22ace"; 17384Requests[3050].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17385Requests[3050].Request.Path = "/subscriptions/113a3930-d51b-/resourceGroups/34f40b9c-93b8-4cd/providers/Microsoft.ApiManagement/service/bc2930a2-4c/tags/56061"; 17388Requests[3051].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17389Requests[3051].Request.Path = "/subscriptions/7a22a6b2-fba7-/resourceGroups/07d06021-a1be-4fa/providers/Microsoft.ApiManagement/service/fbd3df26-59/templates/1490474b-90f"; 17392Requests[3052].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17393Requests[3052].Request.Path = "/subscriptions/142106b2-bd19-/resourceGroups/b48d4289-7803-47b/providers/Microsoft.ApiManagement/service/fc5c45fd-7f/templates/e82da1a3-86a"; 17396Requests[3053].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17397Requests[3053].Request.Path = "/subscriptions/89abb97d-b392-/resourceGroups/0a4bcdae-806b-40e/providers/Microsoft.ApiManagement/service/c191a065-1b/templates/ea7872b1-5ba"; 17400Requests[3054].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17401Requests[3054].Request.Path = "/subscriptions/c61a432b-32bd-/resourceGroups/503aa104-7502-43e/providers/Microsoft.ApiManagement/service/db4d66a7-85/templates/3e1cd73d-cc4"; 17404Requests[3055].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17405Requests[3055].Request.Path = "/subscriptions/34ec5e97-9d49-/resourceGroups/4315de35-8203-4d3/providers/Microsoft.ApiManagement/service/4b328510-2f/templates/45fff909-317"; 17408Requests[3056].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17409Requests[3056].Request.Path = "/subscriptions/9ef00301-7900-/resourceGroups/481dc838-3216-463/providers/Microsoft.ApiManagement/service/de510650-76/tenant/7c2383df-d"; 17412Requests[3057].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17413Requests[3057].Request.Path = "/subscriptions/27b48a68-af45-/resourceGroups/f27bd94b-98cb-4e9/providers/Microsoft.ApiManagement/service/76736659-7f/tenant/eb1071bb-2"; 17416Requests[3058].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17417Requests[3058].Request.Path = "/subscriptions/d2655b8d-af7d-/resourceGroups/c64109c3-6e09-402/providers/Microsoft.ApiManagement/service/83f23fd7-f3/users/dcf1b"; 17420Requests[3059].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17421Requests[3059].Request.Path = "/subscriptions/5ac7c366-b196-/resourceGroups/5dad4c87-0076-4d6/providers/Microsoft.ApiManagement/service/48870894-84/users/ae4d5"; 17424Requests[3060].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 17425Requests[3060].Request.Path = "/subscriptions/02b665f4-043f-/resourceGroups/ac4f4432-9318-46d/providers/Microsoft.ApiManagement/service/a5e00d7d-4f/users/796ef"; 17428Requests[3061].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17429Requests[3061].Request.Path = "/subscriptions/4c69db2a-6544-/resourceGroups/66f7b926-1af3-40d/providers/Microsoft.ApiManagement/service/7906d1b4-37/users/7ee78"; 17432Requests[3062].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17433Requests[3062].Request.Path = "/subscriptions/1fb66107-105e-/resourceGroups/badfa65f-a39e-44d/providers/Microsoft.ApiManagement/service/b97d5a82-e2/users/4a922"; 17436Requests[3063].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17437Requests[3063].Request.Path = "/subscriptions/8c0d13b7-c022-/resourceGroups/57f8946f-ceba-48b/providers/Microsoft.Automation/automationAccounts/fe2fa66e-9fe9-4698-aa/certificates/ed86f1eb-8d2b-4"; 17440Requests[3064].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17441Requests[3064].Request.Path = "/subscriptions/8152a45d-a250-/resourceGroups/63910a64-cb4b-4a6/providers/Microsoft.Automation/automationAccounts/3ecfedb6-054a-43b5-88/certificates/9bcb4420-8a76-4"; 17444Requests[3065].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17445Requests[3065].Request.Path = "/subscriptions/73a5335f-8199-/resourceGroups/301d2518-5376-441/providers/Microsoft.Automation/automationAccounts/a63f6562-a4d8-4364-91/certificates/b2767ea5-7702-4"; 17448Requests[3066].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17449Requests[3066].Request.Path = "/subscriptions/02d8cd9f-24f0-/resourceGroups/da387c13-f6de-4ed/providers/Microsoft.Automation/automationAccounts/ab0fa6dc-15f6-42d3-8b/certificates/f2a4b410-f1ac-4"; 17452Requests[3067].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17453Requests[3067].Request.Path = "/subscriptions/68e89e34-fb45-/resourceGroups/172577b8-9e00-415/providers/Microsoft.Automation/automationAccounts/642efcd3-9e3c-4425-8c/compilationjobs/270bd442-1947-45df"; 17456Requests[3068].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17457Requests[3068].Request.Path = "/subscriptions/c59bfdc0-ebba-/resourceGroups/f1609978-7b69-47f/providers/Microsoft.Automation/automationAccounts/acffc8a2-ab80-4acc-9c/compilationjobs/2c8717b3-0ea1-4d99"; 17460Requests[3069].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17461Requests[3069].Request.Path = "/subscriptions/2cb06ebe-58c5-/resourceGroups/cb8af96c-5981-444/providers/Microsoft.Automation/automationAccounts/b99af91d-ddc9-4320-b0/configurations/5db6a334-ab69-4f6"; 17464Requests[3070].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17465Requests[3070].Request.Path = "/subscriptions/3b8888e0-8e6f-/resourceGroups/0ed30bcc-e5fa-496/providers/Microsoft.Automation/automationAccounts/4f536c8c-4ad8-4f52-96/configurations/0de0ae69-9d76-4e3"; 17468Requests[3071].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17469Requests[3071].Request.Path = "/subscriptions/681f90b4-0f8f-/resourceGroups/8c6108f5-c8ce-4ed/providers/Microsoft.Automation/automationAccounts/aa5e8e6b-f004-45f5-8a/configurations/75ba48a3-41ee-44f"; 17472Requests[3072].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17473Requests[3072].Request.Path = "/subscriptions/d51c0a84-19e2-/resourceGroups/9cb3373b-4b89-4cd/providers/Microsoft.Automation/automationAccounts/1d5eb55b-1162-4e41-8f/configurations/f5a6a3f8-bf32-4a6"; 17476Requests[3073].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17477Requests[3073].Request.Path = "/subscriptions/8e9c65da-b94c-/resourceGroups/278242b7-b858-4b6/providers/Microsoft.Automation/automationAccounts/4c6dbcb9-bb7e-4407-8f/connections/b37a7756-7679-"; 17480Requests[3074].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17481Requests[3074].Request.Path = "/subscriptions/9cddf19b-ce2e-/resourceGroups/c0e918ac-33fe-4fd/providers/Microsoft.Automation/automationAccounts/d4a7c01f-0e1f-485e-92/connections/9f422a41-8812-"; 17484Requests[3075].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17485Requests[3075].Request.Path = "/subscriptions/3640a0ec-ee81-/resourceGroups/6ffc2f76-05af-4bc/providers/Microsoft.Automation/automationAccounts/e0700816-e65c-4b06-a4/connections/5d54bdaf-2f98-"; 17488Requests[3076].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17489Requests[3076].Request.Path = "/subscriptions/f2d986eb-98ef-/resourceGroups/136bcbdf-ff5e-496/providers/Microsoft.Automation/automationAccounts/a9e96bb8-f355-4ee4-ac/connections/bec749aa-4007-"; 17492Requests[3077].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17493Requests[3077].Request.Path = "/subscriptions/ef4b1150-8f67-/resourceGroups/a3a1c5a0-85de-467/providers/Microsoft.Automation/automationAccounts/44dc038a-b6df-410b-ab/connectionTypes/b869a637-655c-42b8"; 17496Requests[3078].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17497Requests[3078].Request.Path = "/subscriptions/2830d4b5-43c7-/resourceGroups/1436189b-9622-4a8/providers/Microsoft.Automation/automationAccounts/a6cb4619-b8ff-4dd8-a4/connectionTypes/ab92c304-52a6-457a"; 17500Requests[3079].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17501Requests[3079].Request.Path = "/subscriptions/52945d57-79af-/resourceGroups/57f823d1-8103-446/providers/Microsoft.Automation/automationAccounts/8937837c-fc70-4391-bf/connectionTypes/b5e631c2-868d-496e"; 17504Requests[3080].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17505Requests[3080].Request.Path = "/subscriptions/17dc841a-be8c-/resourceGroups/04b78a0d-122a-454/providers/Microsoft.Automation/automationAccounts/fda6fe88-1e3b-46eb-94/credentials/37f0b4bf-ed3a-"; 17508Requests[3081].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17509Requests[3081].Request.Path = "/subscriptions/5db38561-9ed9-/resourceGroups/73c5ac4e-0bcd-4b5/providers/Microsoft.Automation/automationAccounts/03827224-6d02-4eb2-b4/credentials/2fbd5336-d28b-"; 17512Requests[3082].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17513Requests[3082].Request.Path = "/subscriptions/2e6c5512-45a5-/resourceGroups/8a1d85fa-2839-4cc/providers/Microsoft.Automation/automationAccounts/22efd9c6-2727-4ac3-97/credentials/acc194d5-d1fd-"; 17516Requests[3083].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17517Requests[3083].Request.Path = "/subscriptions/10108e3c-4785-/resourceGroups/0d83c041-f8ae-4e8/providers/Microsoft.Automation/automationAccounts/27e82ebf-3acd-4b5b-a5/credentials/23b4db2a-c04e-"; 17520Requests[3084].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17521Requests[3084].Request.Path = "/subscriptions/5e93d8d0-5990-/resourceGroups/1eeacc7b-13f7-457/providers/Microsoft.Automation/automationAccounts/71ed6cab-c47f-4158-85/hybridRunbookWorkerGroups/4ee5a92f-d8d6-47b5-a073-c8bb"; 17524Requests[3085].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17525Requests[3085].Request.Path = "/subscriptions/511fccf2-6fdf-/resourceGroups/a36015fc-d5eb-4e2/providers/Microsoft.Automation/automationAccounts/bd7f0991-d81f-4a22-85/hybridRunbookWorkerGroups/10e96e01-810f-4818-8e6c-5494"; 17528Requests[3086].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17529Requests[3086].Request.Path = "/subscriptions/6bb121be-1e9d-/resourceGroups/454bfbde-9643-44d/providers/Microsoft.Automation/automationAccounts/0fd59c6e-5552-47c0-96/hybridRunbookWorkerGroups/84a96805-e304-4620-a42f-6686"; 17532Requests[3087].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17533Requests[3087].Request.Path = "/subscriptions/41e9b8ca-36a5-/resourceGroups/3c8e43f4-7e38-468/providers/Microsoft.Automation/automationAccounts/4814cf86-556a-4d15-af/jobs/1213d"; 17536Requests[3088].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17537Requests[3088].Request.Path = "/subscriptions/c6704bda-0e46-/resourceGroups/5b7ddbd5-6860-4f1/providers/Microsoft.Automation/automationAccounts/eb5b7646-0f8c-4e2e-8a/jobs/abf5e"; 17540Requests[3089].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17541Requests[3089].Request.Path = "/subscriptions/2fe2afd1-21ed-/resourceGroups/b0e436e0-017d-411/providers/Microsoft.Automation/automationAccounts/f2896e66-f301-424d-93/jobSchedules/1299bd09-3b1d"; 17544Requests[3090].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17545Requests[3090].Request.Path = "/subscriptions/7eed7f20-7fea-/resourceGroups/6631fc2d-23d5-4a4/providers/Microsoft.Automation/automationAccounts/f4c2db95-5518-47d3-a3/jobSchedules/54fc8eec-9b54"; 17548Requests[3091].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17549Requests[3091].Request.Path = "/subscriptions/ec97f276-334a-/resourceGroups/077acbe0-f388-456/providers/Microsoft.Automation/automationAccounts/4a7a4404-5b7f-44a6-a6/jobSchedules/6dcd12c4-a6c2"; 17552Requests[3092].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17553Requests[3092].Request.Path = "/subscriptions/04df760b-ed88-/resourceGroups/f23b592e-f395-459/providers/Microsoft.Automation/automationAccounts/87043ac9-6085-4758-97/modules/215ed900-4"; 17556Requests[3093].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17557Requests[3093].Request.Path = "/subscriptions/dc57c9d8-15f1-/resourceGroups/a26b4081-5618-4fa/providers/Microsoft.Automation/automationAccounts/3e652b9e-75a7-4c91-93/modules/fb4857dc-5"; 17560Requests[3094].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17561Requests[3094].Request.Path = "/subscriptions/cc655fc2-dc05-/resourceGroups/714a77de-22a7-4ec/providers/Microsoft.Automation/automationAccounts/7ea09f67-6aa3-4491-99/modules/3aad3058-f"; 17564Requests[3095].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17565Requests[3095].Request.Path = "/subscriptions/2673d7ca-7a99-/resourceGroups/73d718a5-505b-4dc/providers/Microsoft.Automation/automationAccounts/ef10561e-54d4-4d90-a3/modules/d61bb2f9-5"; 17568Requests[3096].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17569Requests[3096].Request.Path = "/subscriptions/12d46d7b-8338-/resourceGroups/bb435d9e-7c02-46a/providers/Microsoft.Automation/automationAccounts/ef7e2063-4aae-4995-8c/nodeConfigurations/e71abf42-1bc1-4647-b7"; 17572Requests[3097].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17573Requests[3097].Request.Path = "/subscriptions/956c0d3a-5265-/resourceGroups/4356ab5b-bf1d-46d/providers/Microsoft.Automation/automationAccounts/bbec7674-9d88-4de8-9b/nodeConfigurations/43502ffb-2f57-4e14-84"; 17576Requests[3098].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17577Requests[3098].Request.Path = "/subscriptions/c85ff2e1-60b6-/resourceGroups/8b20acac-a692-4e2/providers/Microsoft.Automation/automationAccounts/87ab0df6-4245-478c-88/nodeConfigurations/4006cbae-0af2-4c17-b9"; 17580Requests[3099].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17581Requests[3099].Request.Path = "/subscriptions/918b34b2-f322-/resourceGroups/27831ba5-0a31-464/providers/Microsoft.Automation/automationAccounts/d2afd480-50f9-4d0f-a9/nodecounts/f6dd0fdc-"; 17584Requests[3100].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17585Requests[3100].Request.Path = "/subscriptions/1f50a44e-5da9-/resourceGroups/3254252c-8562-4d8/providers/Microsoft.Automation/automationAccounts/61331d79-a3c2-4371-8f/nodes/865083"; 17588Requests[3101].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17589Requests[3101].Request.Path = "/subscriptions/f759d3bd-0cca-/resourceGroups/4af3e660-fb99-4a5/providers/Microsoft.Automation/automationAccounts/6f489ce6-5325-4e95-b1/nodes/3966a3"; 17592Requests[3102].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17593Requests[3102].Request.Path = "/subscriptions/407b70e7-0f10-/resourceGroups/0673cb13-3e62-431/providers/Microsoft.Automation/automationAccounts/386eb18b-b83c-4ccf-85/nodes/449ecb"; 17596Requests[3103].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17597Requests[3103].Request.Path = "/subscriptions/2e36437c-03cc-/resourceGroups/8934cfd5-d833-477/providers/Microsoft.Automation/automationAccounts/2b6fc51a-6ea6-402b-93/runbooks/0b567141-c5"; 17600Requests[3104].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17601Requests[3104].Request.Path = "/subscriptions/e8870771-5980-/resourceGroups/32321226-d569-4f1/providers/Microsoft.Automation/automationAccounts/96044a77-adf7-41b4-be/runbooks/a749d577-c4"; 17604Requests[3105].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17605Requests[3105].Request.Path = "/subscriptions/768220c0-f516-/resourceGroups/0d82757a-214e-422/providers/Microsoft.Automation/automationAccounts/934dd07b-7829-4353-b7/runbooks/d8a2867d-a4"; 17608Requests[3106].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17609Requests[3106].Request.Path = "/subscriptions/e92e3ad5-e481-/resourceGroups/b75cf3c9-9a84-438/providers/Microsoft.Automation/automationAccounts/e1821107-2d99-4cfc-91/runbooks/7542c1b2-c8"; 17612Requests[3107].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17613Requests[3107].Request.Path = "/subscriptions/662c8aaa-c711-/resourceGroups/f4f962fc-1b5c-454/providers/Microsoft.Automation/automationAccounts/3cee5970-1827-43ec-a8/schedules/ce903436-397"; 17616Requests[3108].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17617Requests[3108].Request.Path = "/subscriptions/5f7ba516-ff6e-/resourceGroups/362ced5e-60c9-4e0/providers/Microsoft.Automation/automationAccounts/37390b6b-ac36-446a-a3/schedules/81db88eb-ed9"; 17620Requests[3109].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17621Requests[3109].Request.Path = "/subscriptions/d5de57d3-7e31-/resourceGroups/ea67ef7c-5448-4ec/providers/Microsoft.Automation/automationAccounts/9c849fbf-798c-4a71-98/schedules/490d4f7d-b55"; 17624Requests[3110].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17625Requests[3110].Request.Path = "/subscriptions/672e2a41-36cc-/resourceGroups/7886342b-6483-441/providers/Microsoft.Automation/automationAccounts/bce3f555-db80-48f8-a2/schedules/dec07a3e-5a5"; 17628Requests[3111].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17629Requests[3111].Request.Path = "/subscriptions/d1c46c03-8e59-/resourceGroups/9066218d-e095-4d9/providers/Microsoft.Automation/automationAccounts/a2d1c680-6b91-4b71-9f/softwareUpdateConfigurationMachineRuns/5e1e04fe-b89a-4de3-9bb2-ddcd3add11c1"; 17632Requests[3112].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17633Requests[3112].Request.Path = "/subscriptions/b2ff3236-a54d-/resourceGroups/9a35ad8f-b314-400/providers/Microsoft.Automation/automationAccounts/a73381d5-5657-4c70-89/softwareUpdateConfigurationRuns/5feccf4c-4e47-4dca-8f92-a3cd4bfd"; 17636Requests[3113].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17637Requests[3113].Request.Path = "/subscriptions/d2576d23-7684-/resourceGroups/9b70d008-4443-49c/providers/Microsoft.Automation/automationAccounts/bf124235-f4ad-429d-85/softwareUpdateConfigurations/0dbcb7a0-5ee1-4396-90ed-7c0c53e"; 17640Requests[3114].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17641Requests[3114].Request.Path = "/subscriptions/e371d4ed-0407-/resourceGroups/f2ac3219-413e-4a0/providers/Microsoft.Automation/automationAccounts/906fe21a-2b81-45e8-a8/softwareUpdateConfigurations/dc07f766-504b-455e-87ef-2a10e21"; 17644Requests[3115].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17645Requests[3115].Request.Path = "/subscriptions/78008973-60a6-/resourceGroups/8070be3c-6e09-4e7/providers/Microsoft.Automation/automationAccounts/004670d8-e030-41d7-8c/softwareUpdateConfigurations/5b9e8b36-7704-46ec-ae0e-81f2132"; 17648Requests[3116].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17649Requests[3116].Request.Path = "/subscriptions/68c44ac9-e2cb-/resourceGroups/b52aed6b-a24e-446/providers/Microsoft.Automation/automationAccounts/2b005435-72e8-443d-93/sourceControls/f46e6fdc-80e8-409"; 17652Requests[3117].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17653Requests[3117].Request.Path = "/subscriptions/7b7bae8a-86a0-/resourceGroups/42f361e9-deac-490/providers/Microsoft.Automation/automationAccounts/3d645f24-27af-471b-89/sourceControls/3b886788-93ba-451"; 17656Requests[3118].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17657Requests[3118].Request.Path = "/subscriptions/a386974c-6868-/resourceGroups/524a763d-52ea-4f3/providers/Microsoft.Automation/automationAccounts/855a8572-9497-4b40-be/sourceControls/3d9ce267-b655-459"; 17660Requests[3119].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17661Requests[3119].Request.Path = "/subscriptions/3e07c5f7-0df8-/resourceGroups/1a8cae5c-8012-47f/providers/Microsoft.Automation/automationAccounts/80e79926-8e2b-404b-a3/sourceControls/38269635-94a1-429"; 17664Requests[3120].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17665Requests[3120].Request.Path = "/subscriptions/0abcf6e8-b457-/resourceGroups/075e721d-a352-4da/providers/Microsoft.Automation/automationAccounts/383dd9a9-bd1f-4ca3-8d/variables/8c887415-3f0"; 17668Requests[3121].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17669Requests[3121].Request.Path = "/subscriptions/289a4fde-dc38-/resourceGroups/32cf5c2c-ed3b-4d2/providers/Microsoft.Automation/automationAccounts/0d978534-1ae6-4d96-a0/variables/53fbe406-6ca"; 17672Requests[3122].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17673Requests[3122].Request.Path = "/subscriptions/a9bfa23c-7b5a-/resourceGroups/d06b9211-74b8-4a2/providers/Microsoft.Automation/automationAccounts/8c063c48-8084-4df8-83/variables/27474804-1ef"; 17676Requests[3123].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17677Requests[3123].Request.Path = "/subscriptions/56a24df0-8df6-/resourceGroups/cc4b5169-bc8c-450/providers/Microsoft.Automation/automationAccounts/7c012562-768d-41e1-bc/variables/868e2aab-fdf"; 17680Requests[3124].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17681Requests[3124].Request.Path = "/subscriptions/6f637cd0-572b-/resourceGroups/3338dabd-4169-42c/providers/Microsoft.Automation/automationAccounts/67b69c77-f5b3-44f8-ad/watchers/51988d9d-e0"; 17684Requests[3125].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17685Requests[3125].Request.Path = "/subscriptions/4d7b60ee-dc5f-/resourceGroups/b074e6cc-c7a1-4a8/providers/Microsoft.Automation/automationAccounts/bf295cbd-e59f-4469-ac/watchers/14a75a19-a4"; 17688Requests[3126].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17689Requests[3126].Request.Path = "/subscriptions/5e178611-abff-/resourceGroups/4ae26e45-bead-4c9/providers/Microsoft.Automation/automationAccounts/b430fb95-a3d7-417b-86/watchers/bdf42300-fd"; 17692Requests[3127].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17693Requests[3127].Request.Path = "/subscriptions/c3bef65b-b8dd-/resourceGroups/53f40dab-c574-402/providers/Microsoft.Automation/automationAccounts/4a1d8ee6-15d8-43e4-96/watchers/0e006427-9c"; 17696Requests[3128].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17697Requests[3128].Request.Path = "/subscriptions/24b3b49b-2ff6-/resourceGroups/948e4c2e-e339-422/providers/Microsoft.Automation/automationAccounts/a73c7828-bff6-46cf-ae/webhooks/5de7698b-a4"; 17700Requests[3129].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17701Requests[3129].Request.Path = "/subscriptions/2bb733b9-1757-/resourceGroups/b04469d0-99fa-46f/providers/Microsoft.Automation/automationAccounts/ed6f8963-eee8-47f9-b0/webhooks/552a63bb-2d"; 17704Requests[3130].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17705Requests[3130].Request.Path = "/subscriptions/51d79b46-ebfb-/resourceGroups/5d16214e-dc82-46a/providers/Microsoft.Automation/automationAccounts/efd88a57-e14f-494d-85/webhooks/821938d5-07"; 17708Requests[3131].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17709Requests[3131].Request.Path = "/subscriptions/1795ab1e-8ce3-/resourceGroups/1bbc24f7-baeb-452/providers/Microsoft.Automation/automationAccounts/430b675e-2ad6-4366-84/webhooks/6bf54bd8-ff"; 17712Requests[3132].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17713Requests[3132].Request.Path = "/subscriptions/0c702b30-1260-/resourcegroups/b47820a3-dd7e-498/providers/Microsoft.Backup.Admin/backupLocations/5928b4e9/backups/407a9c"; 17716Requests[3133].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17717Requests[3133].Request.Path = "/subscriptions/182c3197-5f8a-/resourceGroups/44d4f7cb-7f8b-43b/providers/Microsoft.Batch/batchAccounts/3ce6b72c-17/applications/0c7e9027-6837"; 17720Requests[3134].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17721Requests[3134].Request.Path = "/subscriptions/94021efb-5700-/resourceGroups/cf0c8e66-61eb-417/providers/Microsoft.Batch/batchAccounts/10c0ece2-a3/applications/c0202748-668e"; 17724Requests[3135].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17725Requests[3135].Request.Path = "/subscriptions/337b6e82-f2ab-/resourceGroups/408a2b37-1654-45d/providers/Microsoft.Batch/batchAccounts/e6465821-49/applications/9f9876e4-0530"; 17728Requests[3136].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17729Requests[3136].Request.Path = "/subscriptions/00bd06d4-2397-/resourceGroups/befe7653-79be-49b/providers/Microsoft.Batch/batchAccounts/37fcb2f1-84/applications/b74d56f5-fae8"; 17732Requests[3137].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17733Requests[3137].Request.Path = "/subscriptions/5544659b-7bdd-/resourceGroups/66002cc3-632d-4df/providers/Microsoft.Batch/batchAccounts/8857ce97-57/certificates/ed6e3129-a553-4"; 17736Requests[3138].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17737Requests[3138].Request.Path = "/subscriptions/5ec64fcc-8707-/resourceGroups/e2a01c92-cb99-41b/providers/Microsoft.Batch/batchAccounts/5d34bd8d-ed/certificates/8f3b3767-1381-4"; 17740Requests[3139].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17741Requests[3139].Request.Path = "/subscriptions/b599e7f4-52e4-/resourceGroups/7bfce9e0-f565-481/providers/Microsoft.Batch/batchAccounts/66a2a687-a9/certificates/54962a39-6720-4"; 17744Requests[3140].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17745Requests[3140].Request.Path = "/subscriptions/9518a45c-1d83-/resourceGroups/5d02fde2-c8f0-475/providers/Microsoft.Batch/batchAccounts/aa08d062-d5/certificates/5255853e-d755-4"; 17748Requests[3141].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17749Requests[3141].Request.Path = "/subscriptions/19a52de0-ccda-/resourceGroups/6e3ea7c2-240b-4b5/providers/Microsoft.Batch/batchAccounts/a0b51cef-59/pools/56708831"; 17752Requests[3142].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17753Requests[3142].Request.Path = "/subscriptions/d0fe75be-e804-/resourceGroups/a6ae43ab-d210-4c9/providers/Microsoft.Batch/batchAccounts/41032ccf-f3/pools/2f23003d"; 17756Requests[3143].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17757Requests[3143].Request.Path = "/subscriptions/ca128058-5c82-/resourceGroups/2e227078-6c63-4be/providers/Microsoft.Batch/batchAccounts/da66edfd-14/pools/2b5ba1c6"; 17760Requests[3144].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17761Requests[3144].Request.Path = "/subscriptions/49ba0e2a-44c0-/resourceGroups/8cdaf807-9b83-488/providers/Microsoft.Batch/batchAccounts/e2ff9288-c6/pools/dacbad26"; 17764Requests[3145].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17765Requests[3145].Request.Path = "/subscriptions/f392b1b6-9634-/resourceGroups/9ae9abbc-21fc-445/providers/Microsoft.BatchAI/workspaces/84244b11-d893/clusters/826d2724-8b"; 17768Requests[3146].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17769Requests[3146].Request.Path = "/subscriptions/c0e1d9a8-798e-/resourceGroups/9d4f9e4a-3872-455/providers/Microsoft.BatchAI/workspaces/fc41be3f-aa03/clusters/4fef7be1-e2"; 17772Requests[3147].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17773Requests[3147].Request.Path = "/subscriptions/0e518bda-21a0-/resourceGroups/6e8c8094-c8d2-436/providers/Microsoft.BatchAI/workspaces/e8dc0e88-3452/clusters/9dc0efe9-3d"; 17776Requests[3148].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17777Requests[3148].Request.Path = "/subscriptions/905e244e-3b85-/resourceGroups/4ce38365-5ecb-457/providers/Microsoft.BatchAI/workspaces/82ffdc24-24d3/clusters/344de303-3a"; 17780Requests[3149].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17781Requests[3149].Request.Path = "/subscriptions/aa1a09f4-4b5d-/resourceGroups/27f7d1cb-4c98-4f3/providers/Microsoft.BatchAI/workspaces/c4479347-5f53/experiments/a54f8402-90a0-"; 17784Requests[3150].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17785Requests[3150].Request.Path = "/subscriptions/c9b6fece-b87d-/resourceGroups/b6955b0e-ece6-439/providers/Microsoft.BatchAI/workspaces/5dd5949b-683f/experiments/32c82ae9-bf1a-"; 17788Requests[3151].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17789Requests[3151].Request.Path = "/subscriptions/7f4254ed-5f9e-/resourceGroups/29b26f38-2267-493/providers/Microsoft.BatchAI/workspaces/592378ae-7ba0/experiments/f272df06-6350-"; 17792Requests[3152].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17793Requests[3152].Request.Path = "/subscriptions/b43349f3-c1f0-/resourceGroups/ed7ea0f7-2658-435/providers/Microsoft.BatchAI/workspaces/6255a4a0-c12a/fileServers/45032f20-960d-"; 17796Requests[3153].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17797Requests[3153].Request.Path = "/subscriptions/7ba9320e-7901-/resourceGroups/68824242-f406-4e9/providers/Microsoft.BatchAI/workspaces/a9445a32-4d58/fileServers/ed3b6f6c-475e-"; 17800Requests[3154].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17801Requests[3154].Request.Path = "/subscriptions/43143722-cc6f-/resourceGroups/79d8c8c6-e645-405/providers/Microsoft.BatchAI/workspaces/ee157c8b-1f88/fileServers/11654561-88a0-"; 17804Requests[3155].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17805Requests[3155].Request.Path = "/subscriptions/eda11e7a-95e0-/resourceGroups/805de5cb-29cc-406/providers/Microsoft.BotService/botServices/4bde8877-62f/channels/9c2cddaa-2d"; 17808Requests[3156].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17809Requests[3156].Request.Path = "/subscriptions/243a78b9-0529-/resourceGroups/48f7ad1b-01c3-48e/providers/Microsoft.BotService/botServices/76973058-261/channels/f273de4a-10"; 17812Requests[3157].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17813Requests[3157].Request.Path = "/subscriptions/e4ba7b2c-9232-/resourceGroups/413c4f28-1c9a-491/providers/Microsoft.BotService/botServices/3bb4dccf-735/channels/1d736b2e-47"; 17816Requests[3158].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17817Requests[3158].Request.Path = "/subscriptions/0b9abf05-d88b-/resourceGroups/c37b5020-88d0-4b3/providers/Microsoft.BotService/botServices/faaef165-eb2/channels/81b8cf74-b8"; 17820Requests[3159].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17821Requests[3159].Request.Path = "/subscriptions/0db78f26-17ea-/resourceGroups/23ea66a1-6b8f-4c0/providers/Microsoft.BotService/botServices/ebd13dd2-571/Connections/57a8ab0b-31bc-"; 17824Requests[3160].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17825Requests[3160].Request.Path = "/subscriptions/86aeacf9-16ed-/resourceGroups/4fcacb02-ed03-425/providers/Microsoft.BotService/botServices/f258b910-35e/Connections/8ec527de-393e-"; 17828Requests[3161].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17829Requests[3161].Request.Path = "/subscriptions/52ddb069-05a4-/resourceGroups/021c776f-6d5a-4fc/providers/Microsoft.BotService/botServices/a9ee7c78-3d7/Connections/7604286a-7504-"; 17832Requests[3162].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17833Requests[3162].Request.Path = "/subscriptions/8d30d9de-bf51-/resourceGroups/45678a68-342f-492/providers/Microsoft.BotService/botServices/a7ffce5c-13d/Connections/18fff1d8-24b4-"; 17836Requests[3163].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17837Requests[3163].Request.Path = "/subscriptions/73d1bdf2-32c1-/resourceGroups/fea486d7-9f82-4cc/providers/Microsoft.Cache/Redis/248a931d-/firewallRules/80557267"; 17840Requests[3164].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17841Requests[3164].Request.Path = "/subscriptions/cc8bfdcd-a31d-/resourceGroups/2967fa1e-0b5f-455/providers/Microsoft.Cache/Redis/7fe8a5a2-/firewallRules/35d67bfa"; 17844Requests[3165].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17845Requests[3165].Request.Path = "/subscriptions/a5a823ba-8b94-/resourceGroups/c72989fd-9ad4-452/providers/Microsoft.Cache/Redis/07c99c61-/firewallRules/2e90d015"; 17848Requests[3166].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17849Requests[3166].Request.Path = "/subscriptions/fb978744-9160-/resourceGroups/e81bc747-3fb2-472/providers/Microsoft.Cache/Redis/6901f/linkedServers/e878e1d9-f53a-48"; 17852Requests[3167].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17853Requests[3167].Request.Path = "/subscriptions/1ff36b06-da5d-/resourceGroups/96267d27-ad51-4a0/providers/Microsoft.Cache/Redis/bebe7/linkedServers/f4befbe3-673f-4f"; 17856Requests[3168].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17857Requests[3168].Request.Path = "/subscriptions/8b5a80c8-a8d3-/resourceGroups/6ff1ed1d-dcc6-426/providers/Microsoft.Cache/Redis/fc350/linkedServers/dea73de3-44bf-4a"; 17860Requests[3169].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17861Requests[3169].Request.Path = "/subscriptions/0802c7ac-9be7-/resourceGroups/e41edd80-d0da-451/providers/Microsoft.Cache/Redis/13ccb/patchSchedules/88196c0"; 17864Requests[3170].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17865Requests[3170].Request.Path = "/subscriptions/b56dfb0b-bbd8-/resourceGroups/5b05d06c-f4a8-444/providers/Microsoft.Cache/Redis/729f4/patchSchedules/ee31f71"; 17868Requests[3171].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17869Requests[3171].Request.Path = "/subscriptions/805fd567-9821-/resourceGroups/9f27ae7c-7990-4e9/providers/Microsoft.Cache/Redis/b3e2c/patchSchedules/7e3bed9"; 17872Requests[3172].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17873Requests[3172].Request.Path = "/subscriptions/9d1b1886-5bfd-/resourceGroups/e3944ac4-fc08-44d/providers/Microsoft.Cdn/profiles/cf3bda2f-7c/endpoints/404331ce-ca1"; 17876Requests[3173].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17877Requests[3173].Request.Path = "/subscriptions/29fcce9b-2483-/resourceGroups/3432ae26-a940-440/providers/Microsoft.Cdn/profiles/a7464ecf-c0/endpoints/d29895cd-767"; 17880Requests[3174].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17881Requests[3174].Request.Path = "/subscriptions/cd7130e0-85ac-/resourceGroups/c82e9c6f-69cb-4cc/providers/Microsoft.Cdn/profiles/423d8826-16/endpoints/55bdb275-bb0"; 17884Requests[3175].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17885Requests[3175].Request.Path = "/subscriptions/3f861e80-00f8-/resourceGroups/238285e4-a969-4da/providers/Microsoft.Cdn/profiles/7939794f-3f/endpoints/3caaf38a-e19"; 17888Requests[3176].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17889Requests[3176].Request.Path = "/subscriptions/21cc8918-2658-/resourceGroups/d0a21376-3eca-40c/providers/Microsoft.CertificateRegistration/certificateOrders/44ef59ab-6775-4163-b/certificates/c9b35"; 17892Requests[3177].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17893Requests[3177].Request.Path = "/subscriptions/c9e3777a-5151-/resourceGroups/8aff917b-4f51-483/providers/Microsoft.CertificateRegistration/certificateOrders/19f8c14e-bbb4-45b9-a/certificates/89d3c"; 17896Requests[3178].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17897Requests[3178].Request.Path = "/subscriptions/76f19a38-734b-/resourceGroups/d0558ce3-13b6-407/providers/Microsoft.CertificateRegistration/certificateOrders/3aa9b1e0-3996-4dab-8/certificates/6472a"; 17900Requests[3179].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17901Requests[3179].Request.Path = "/subscriptions/af37a1eb-775c-/resourceGroups/da9e4ca5-a08d-4ad/providers/Microsoft.CertificateRegistration/certificateOrders/64621ba0-55a0-4ade-9/certificates/1cdce"; 17904Requests[3180].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17905Requests[3180].Request.Path = "/subscriptions/7a7e016e-2ca9-/resourceGroups/220c48b6-2e2c-4ec/providers/Microsoft.Compute/galleries/8f14e667-c2/images/bfed7932-bf5a-43"; 17908Requests[3181].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17909Requests[3181].Request.Path = "/subscriptions/be1b9912-5a07-/resourceGroups/88e2e9e6-e802-473/providers/Microsoft.Compute/galleries/26a8513c-ef/images/d289b0d7-31c0-40"; 17912Requests[3182].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17913Requests[3182].Request.Path = "/subscriptions/fbb0cafe-b0d3-/resourceGroups/3ba30256-094b-4f4/providers/Microsoft.Compute/galleries/6f840928-d2/images/4e2ddbab-0eb6-4c"; 17916Requests[3183].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17917Requests[3183].Request.Path = "/subscriptions/03764a14-f598-/resourceGroups/3d976650-872a-481/providers/Microsoft.Compute/virtualMachines/ad40f6/extensions/a0fb6c66-9da4-4"; 17920Requests[3184].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17921Requests[3184].Request.Path = "/subscriptions/efb69047-ec3e-/resourceGroups/b62a7d47-28a4-471/providers/Microsoft.Compute/virtualMachines/0bc0ee/extensions/2a4f2a1f-58b8-4"; 17924Requests[3185].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17925Requests[3185].Request.Path = "/subscriptions/6037bbb6-ee61-/resourceGroups/10aa935a-2486-45a/providers/Microsoft.Compute/virtualMachines/e178c7/extensions/de0611bf-6edf-4"; 17928Requests[3186].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17929Requests[3186].Request.Path = "/subscriptions/f048d009-6370-/resourceGroups/016834f2-f8b6-447/providers/Microsoft.Compute/virtualMachines/0ed5e7/extensions/9fe89f46-f96e-4"; 17932Requests[3187].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17933Requests[3187].Request.Path = "/subscriptions/93dd4c67-0b2b-/resourceGroups/a19f2a7d-78fe-4cf/providers/Microsoft.Compute/virtualMachineScaleSets/e1cfc243-4074-/extensions/28548944-7cee-4f7"; 17936Requests[3188].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17937Requests[3188].Request.Path = "/subscriptions/8d8cea01-5a2d-/resourceGroups/06539fbf-0b5e-43d/providers/Microsoft.Compute/virtualMachineScaleSets/680bd233-18ad-/extensions/bfcf6af6-28af-405"; 17940Requests[3189].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17941Requests[3189].Request.Path = "/subscriptions/9890acd7-c7ce-/resourceGroups/074f366d-a539-4aa/providers/Microsoft.Compute/virtualMachineScaleSets/8b668b56-bac7-/extensions/56116377-0a7b-44d"; 17944Requests[3190].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17945Requests[3190].Request.Path = "/subscriptions/344d3bcb-f300-/resourceGroups/2da790d8-2459-4d4/providers/Microsoft.Compute/virtualMachineScaleSets/9ef151d7-edbe-/virtualmachines/12d5960f-f"; 17948Requests[3191].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17949Requests[3191].Request.Path = "/subscriptions/7ea2fe40-5aa0-/resourceGroups/22bf9cb1-ba50-4d0/providers/Microsoft.Compute/virtualMachineScaleSets/d340721d-9935-/virtualmachines/e77a378e-e"; 17952Requests[3192].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17953Requests[3192].Request.Path = "/subscriptions/960b73d8-015e-/resourceGroups/a6420a43-dd82-436/providers/Microsoft.Compute/virtualMachineScaleSets/a20ab165-71e5-/virtualmachines/a63c4c71-e"; 17956Requests[3193].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17957Requests[3193].Request.Path = "/subscriptions/a7226e52-1496-/resourceGroups/62c19e4e-d7cc-4cd/providers/Microsoft.ContainerRegistry/registries/1eab03ae-1de/builds/59fd372"; 17960Requests[3194].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17961Requests[3194].Request.Path = "/subscriptions/fa853918-1f88-/resourceGroups/146a4e32-fa2d-4e7/providers/Microsoft.ContainerRegistry/registries/f6b9ec62-dea/builds/044a97f"; 17964Requests[3195].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17965Requests[3195].Request.Path = "/subscriptions/3d6b22a2-21b8-/resourceGroups/48a21572-c8fd-4c6/providers/Microsoft.ContainerRegistry/registries/c3d86f2a-007/buildTasks/c1398489-9f81"; 17968Requests[3196].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17969Requests[3196].Request.Path = "/subscriptions/aa1f275f-9074-/resourceGroups/013c3c94-4fd7-44f/providers/Microsoft.ContainerRegistry/registries/9441fa12-c1a/buildTasks/2f6cd4bc-c679"; 17972Requests[3197].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17973Requests[3197].Request.Path = "/subscriptions/24b15599-f6f1-/resourceGroups/14f1a660-9694-4c7/providers/Microsoft.ContainerRegistry/registries/218196a7-9a2/buildTasks/a87740db-ca40"; 17976Requests[3198].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17977Requests[3198].Request.Path = "/subscriptions/2b28d619-c50b-/resourceGroups/88858008-4ad3-42d/providers/Microsoft.ContainerRegistry/registries/c79b97ed-d5d/buildTasks/3c526cd6-35d2"; 17980Requests[3199].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 17981Requests[3199].Request.Path = "/subscriptions/6ae0ee7f-16ea-/resourceGroups/63790ba6-9e68-40a/providers/Microsoft.ContainerRegistry/registries/922a1cee-095/replications/1d2594e1-35b7-4"; 17984Requests[3200].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 17985Requests[3200].Request.Path = "/subscriptions/541e1e43-5b2a-/resourceGroups/e32a98a6-0176-480/providers/Microsoft.ContainerRegistry/registries/9ce1ee99-cc3/replications/5ade2877-739d-4"; 17988Requests[3201].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 17989Requests[3201].Request.Path = "/subscriptions/1d56b556-520d-/resourceGroups/f5fdc819-8b3a-490/providers/Microsoft.ContainerRegistry/registries/77a7795b-833/replications/118a018f-d7c8-4"; 17992Requests[3202].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17993Requests[3202].Request.Path = "/subscriptions/535b89b6-c1f8-/resourceGroups/9acc2c99-1e0c-4e6/providers/Microsoft.ContainerRegistry/registries/72531f5e-b7a/replications/cb066bad-d63a-4"; 17996Requests[3203].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 17997Requests[3203].Request.Path = "/subscriptions/8c05b9ee-4ebb-/resourceGroups/f2e8064b-8b27-460/providers/Microsoft.ContainerRegistry/registries/9aa2356f-677/webhooks/651fefbf-72"; 18000Requests[3204].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18001Requests[3204].Request.Path = "/subscriptions/bb5b6596-2e2a-/resourceGroups/6c110b04-98bb-42a/providers/Microsoft.ContainerRegistry/registries/ddd21abb-8b5/webhooks/3fa2af58-31"; 18004Requests[3205].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18005Requests[3205].Request.Path = "/subscriptions/2475aeca-b7f7-/resourceGroups/2271a31f-5858-437/providers/Microsoft.ContainerRegistry/registries/cca650e6-85e/webhooks/786530eb-8d"; 18008Requests[3206].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18009Requests[3206].Request.Path = "/subscriptions/df589778-fc29-/resourceGroups/511a327b-f762-43c/providers/Microsoft.ContainerRegistry/registries/610415ad-547/webhooks/21075409-81"; 18012Requests[3207].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18013Requests[3207].Request.Path = "/subscriptions/ae750838-d373-/resourceGroups/6fe264da-90d5-490/providers/Microsoft.ContainerService/managedClusters/6abf4cf1-28d/accessProfiles/26566545"; 18016Requests[3208].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18017Requests[3208].Request.Path = "/subscriptions/43285b2f-230c-/resourceGroups/2ce432d2-0cb8-410/providers/Microsoft.CustomerInsights/hubs/a19e032/authorizationPolicies/6e12fe51-bfe0-4f6c-ba32"; 18020Requests[3209].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18021Requests[3209].Request.Path = "/subscriptions/ed3ce779-825b-/resourceGroups/acaaf706-a8a4-4c7/providers/Microsoft.CustomerInsights/hubs/27f0f6e/authorizationPolicies/ac32438a-bec4-4940-99d3"; 18024Requests[3210].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18025Requests[3210].Request.Path = "/subscriptions/f502b6c0-895a-/resourceGroups/86a1f060-73ba-4b4/providers/Microsoft.CustomerInsights/hubs/5ef0e47/connectors/ccbf5713-09d6"; 18028Requests[3211].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18029Requests[3211].Request.Path = "/subscriptions/a09d51d9-ed7a-/resourceGroups/1c9633ad-a6cc-429/providers/Microsoft.CustomerInsights/hubs/692d779/connectors/3505aee4-0501"; 18032Requests[3212].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18033Requests[3212].Request.Path = "/subscriptions/728d0b48-94cd-/resourceGroups/d7bfb1be-af3e-468/providers/Microsoft.CustomerInsights/hubs/c2db8a6/connectors/6229c841-dbd6"; 18036Requests[3213].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18037Requests[3213].Request.Path = "/subscriptions/0d37588c-ab25-/resourceGroups/9fad3206-20df-4ee/providers/Microsoft.CustomerInsights/hubs/c5488c1/interactions/9cdab60e-96b5-4"; 18040Requests[3214].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18041Requests[3214].Request.Path = "/subscriptions/631ab1c9-a12f-/resourceGroups/f5594fac-1fca-4cd/providers/Microsoft.CustomerInsights/hubs/4c02c00/interactions/2e3daab9-93c3-4"; 18044Requests[3215].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18045Requests[3215].Request.Path = "/subscriptions/ecb1652a-136d-/resourceGroups/cbea5a06-302f-4a9/providers/Microsoft.CustomerInsights/hubs/d54d57d/kpi/2e7837f"; 18048Requests[3216].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18049Requests[3216].Request.Path = "/subscriptions/b74bf062-f9a6-/resourceGroups/9ba49593-5f77-4f8/providers/Microsoft.CustomerInsights/hubs/4d195b0/kpi/2467a0a"; 18052Requests[3217].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18053Requests[3217].Request.Path = "/subscriptions/aac6856c-332a-/resourceGroups/270ab3c1-2c65-431/providers/Microsoft.CustomerInsights/hubs/9a99793/kpi/72cbd15"; 18056Requests[3218].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18057Requests[3218].Request.Path = "/subscriptions/9cea25ac-ee67-/resourceGroups/6f752ffe-0415-4c3/providers/Microsoft.CustomerInsights/hubs/a9a4d20/links/1d696947"; 18060Requests[3219].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18061Requests[3219].Request.Path = "/subscriptions/d30ccfe4-aae3-/resourceGroups/8bb2eb33-8ac4-453/providers/Microsoft.CustomerInsights/hubs/65eeb5e/links/675bc8ed"; 18064Requests[3220].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18065Requests[3220].Request.Path = "/subscriptions/a18f06e2-d72f-/resourceGroups/566cc6b0-ad97-4b3/providers/Microsoft.CustomerInsights/hubs/730a0e7/links/83b8a981"; 18068Requests[3221].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18069Requests[3221].Request.Path = "/subscriptions/630a00d7-5f02-/resourceGroups/64dcd845-323d-433/providers/Microsoft.CustomerInsights/hubs/826e654/predictions/f3fa0448-3c23-"; 18072Requests[3222].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18073Requests[3222].Request.Path = "/subscriptions/60e442d6-6039-/resourceGroups/b770bbca-63e1-4a5/providers/Microsoft.CustomerInsights/hubs/1a4d429/predictions/1d7d92b7-3b5f-"; 18076Requests[3223].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18077Requests[3223].Request.Path = "/subscriptions/633c0aab-dee3-/resourceGroups/35308989-ca78-431/providers/Microsoft.CustomerInsights/hubs/9b92018/predictions/c4bf97b3-df5f-"; 18080Requests[3224].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18081Requests[3224].Request.Path = "/subscriptions/423c0f6c-f4c9-/resourceGroups/f91956da-aaae-406/providers/Microsoft.CustomerInsights/hubs/8360c14/profiles/5acd1728-2d"; 18084Requests[3225].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18085Requests[3225].Request.Path = "/subscriptions/5abb336c-3342-/resourceGroups/36305322-024f-432/providers/Microsoft.CustomerInsights/hubs/f5c1a2d/profiles/43cad0ad-7e"; 18088Requests[3226].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18089Requests[3226].Request.Path = "/subscriptions/c437ecd0-26ee-/resourceGroups/6eebf0e1-4791-44a/providers/Microsoft.CustomerInsights/hubs/45356bb/profiles/ff745938-d7"; 18092Requests[3227].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18093Requests[3227].Request.Path = "/subscriptions/d645f967-54a7-/resourceGroups/5b1cf5ec-0808-419/providers/Microsoft.CustomerInsights/hubs/3ad35cb/relationshipLinks/442cdd7b-e530-446e-b"; 18096Requests[3228].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18097Requests[3228].Request.Path = "/subscriptions/719cea6e-744a-/resourceGroups/540a474a-5b0e-4a3/providers/Microsoft.CustomerInsights/hubs/1584d3b/relationshipLinks/f91e0e93-2d75-4f5c-a"; 18100Requests[3229].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18101Requests[3229].Request.Path = "/subscriptions/b1022f0e-9d08-/resourceGroups/f0a2b676-7ce9-4a8/providers/Microsoft.CustomerInsights/hubs/deaff13/relationshipLinks/f7c51924-c531-4b02-b"; 18104Requests[3230].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18105Requests[3230].Request.Path = "/subscriptions/407ecf68-e225-/resourceGroups/dced862b-d0c9-47f/providers/Microsoft.CustomerInsights/hubs/c8e5636/relationships/a34e6c9c-48de-40"; 18108Requests[3231].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18109Requests[3231].Request.Path = "/subscriptions/81b6db86-8f6b-/resourceGroups/c51cc330-5d4b-4a1/providers/Microsoft.CustomerInsights/hubs/9b7730d/relationships/c22cf1ba-9461-44"; 18112Requests[3232].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18113Requests[3232].Request.Path = "/subscriptions/b2f687d2-469f-/resourceGroups/dc489880-fc2e-4c1/providers/Microsoft.CustomerInsights/hubs/b1b6ac8/relationships/8309d018-f81f-42"; 18116Requests[3233].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18117Requests[3233].Request.Path = "/subscriptions/e2df591d-cb22-/resourceGroups/38d4cddf-3e8c-492/providers/Microsoft.CustomerInsights/hubs/d89dc8e/roleAssignments/02eb1d1d-5403-"; 18120Requests[3234].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18121Requests[3234].Request.Path = "/subscriptions/cc447069-5e14-/resourceGroups/8a08124f-72ef-482/providers/Microsoft.CustomerInsights/hubs/43bd303/roleAssignments/6a073c63-1b9b-"; 18124Requests[3235].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18125Requests[3235].Request.Path = "/subscriptions/6ad2e1df-5045-/resourceGroups/7872f776-6e47-49c/providers/Microsoft.CustomerInsights/hubs/b26ab25/roleAssignments/4924eb9a-89e6-"; 18128Requests[3236].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18129Requests[3236].Request.Path = "/subscriptions/82758579-fb4c-/resourceGroups/d1baa73f-bf56-4bd/providers/Microsoft.CustomerInsights/hubs/eabed77/views/680ba089"; 18132Requests[3237].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18133Requests[3237].Request.Path = "/subscriptions/0a08e262-0263-/resourceGroups/db6c7f11-2fae-42b/providers/Microsoft.CustomerInsights/hubs/b09d9af/views/451ce2a6"; 18136Requests[3238].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18137Requests[3238].Request.Path = "/subscriptions/f80fa6fb-0f28-/resourceGroups/4ca8ed5a-fa7f-4b4/providers/Microsoft.CustomerInsights/hubs/d34a3b7/views/254d7eef"; 18140Requests[3239].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18141Requests[3239].Request.Path = "/subscriptions/b2f486df-1e59-/resourceGroups/b540fb7b-e1c5-40d/providers/Microsoft.CustomerInsights/hubs/0a7be00/widgetTypes/f7c2bec8-87e6-"; 18144Requests[3240].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 18145Requests[3240].Request.Path = "/subscriptions/994dc681-5382-/resourceGroups/9fb8492c-97ac-492/providers/Microsoft.DataFactory/factories/cdac5c31-55/cancelpipelinerun/54282"; 18148Requests[3241].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18149Requests[3241].Request.Path = "/subscriptions/fabfe797-e853-/resourceGroups/5073a852-3a5f-402/providers/Microsoft.DataFactory/factories/77eefa44-aa/datasets/d30f756b-49"; 18152Requests[3242].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18153Requests[3242].Request.Path = "/subscriptions/e9d0d5dd-bf42-/resourceGroups/2744bc21-88f4-4a6/providers/Microsoft.DataFactory/factories/9b334bd9-14/datasets/a4864ee8-bf"; 18156Requests[3243].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18157Requests[3243].Request.Path = "/subscriptions/77b69811-6b2d-/resourceGroups/500fd66f-7e72-48c/providers/Microsoft.DataFactory/factories/5a7a0086-71/datasets/7d5984b8-2e"; 18160Requests[3244].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18161Requests[3244].Request.Path = "/subscriptions/73e42e2f-5d3e-/resourceGroups/e0c6d6df-eebf-4c7/providers/Microsoft.DataFactory/factories/85f3d63e-e1/integrationRuntimes/922c68aa-beac-4dc9-935"; 18164Requests[3245].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18165Requests[3245].Request.Path = "/subscriptions/d3cde6bf-83cb-/resourceGroups/f10eeae0-c9eb-4e4/providers/Microsoft.DataFactory/factories/d9f7bce6-55/integrationRuntimes/707cd55d-cefb-4439-826"; 18168Requests[3246].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18169Requests[3246].Request.Path = "/subscriptions/abc4d98a-8c5b-/resourceGroups/597e0a4f-ea29-468/providers/Microsoft.DataFactory/factories/1e43a4b1-4d/integrationRuntimes/144b486a-f1f8-4991-9cc"; 18172Requests[3247].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18173Requests[3247].Request.Path = "/subscriptions/1cae88e4-5b40-/resourceGroups/d28760c9-f2ed-411/providers/Microsoft.DataFactory/factories/a95c31e5-d8/integrationRuntimes/bf648da0-f34e-4d99-b68"; 18176Requests[3248].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18177Requests[3248].Request.Path = "/subscriptions/0680b2f0-a1d1-/resourceGroups/301ede59-a433-4cf/providers/Microsoft.DataFactory/factories/610f4a42-de/linkedservices/c69f7b73-0a2d-40b"; 18180Requests[3249].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18181Requests[3249].Request.Path = "/subscriptions/7247da51-b260-/resourceGroups/c286910d-3d77-455/providers/Microsoft.DataFactory/factories/017eb700-17/linkedservices/b9972136-10ec-43a"; 18184Requests[3250].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18185Requests[3250].Request.Path = "/subscriptions/2a4404a9-8fba-/resourceGroups/5e5e35e1-f142-4b6/providers/Microsoft.DataFactory/factories/84cd810c-81/linkedservices/7541e626-3f32-494"; 18188Requests[3251].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18189Requests[3251].Request.Path = "/subscriptions/1a183dae-05c9-/resourceGroups/80bd0388-3d17-4be/providers/Microsoft.DataFactory/factories/4b6b48d9-51/pipelineruns/13a67"; 18192Requests[3252].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18193Requests[3252].Request.Path = "/subscriptions/6eba88a5-3634-/resourceGroups/c52c934f-56a1-4ef/providers/Microsoft.DataFactory/factories/48c9ed64-ce/pipelines/0936656e-05e"; 18196Requests[3253].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18197Requests[3253].Request.Path = "/subscriptions/803835e4-6ecf-/resourceGroups/1c11bb08-d671-4e1/providers/Microsoft.DataFactory/factories/eb926941-f5/pipelines/eb53a01a-885"; 18200Requests[3254].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18201Requests[3254].Request.Path = "/subscriptions/cf6b88bc-0d05-/resourceGroups/2e02eecb-4fcf-410/providers/Microsoft.DataFactory/factories/42631591-55/pipelines/990c5f6e-9b4"; 18204Requests[3255].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18205Requests[3255].Request.Path = "/subscriptions/cc91571f-58b6-/resourceGroups/150b077e-3db3-4fe/providers/Microsoft.DataFactory/factories/9dbf4ead-5c/triggers/0ccc478e-64"; 18208Requests[3256].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18209Requests[3256].Request.Path = "/subscriptions/8a52cfdd-450e-/resourceGroups/8ecf7188-8ec3-479/providers/Microsoft.DataFactory/factories/58966022-78/triggers/5879bd8b-32"; 18212Requests[3257].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18213Requests[3257].Request.Path = "/subscriptions/1f045159-e0b9-/resourceGroups/cd584e94-c8d8-419/providers/Microsoft.DataFactory/factories/9dec22d5-a5/triggers/7f0457c2-b6"; 18216Requests[3258].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18217Requests[3258].Request.Path = "/subscriptions/411d6f6c-6341-/resourceGroups/31a1dd1c-6cbe-41f/providers/Microsoft.DataLakeAnalytics/accounts/08563d30-59/computePolicies/c0615065-ce4d-4d9"; 18220Requests[3259].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18221Requests[3259].Request.Path = "/subscriptions/817a8089-87fa-/resourceGroups/db4ceeda-9f3c-4b2/providers/Microsoft.DataLakeAnalytics/accounts/8af37315-83/computePolicies/b049d89c-b70e-4bc"; 18224Requests[3260].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18225Requests[3260].Request.Path = "/subscriptions/84db810a-bc8e-/resourceGroups/674d6e58-7cf1-49d/providers/Microsoft.DataLakeAnalytics/accounts/8637a8b2-1d/computePolicies/a393c7b4-4871-44f"; 18228Requests[3261].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18229Requests[3261].Request.Path = "/subscriptions/7002107c-00ad-/resourceGroups/8afc9ffa-d5ee-48c/providers/Microsoft.DataLakeAnalytics/accounts/c191d0c6-3d/computePolicies/e304a0ee-e721-48f"; 18232Requests[3262].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18233Requests[3262].Request.Path = "/subscriptions/bf829d64-8e80-/resourceGroups/202b9c80-5885-455/providers/Microsoft.DataLakeAnalytics/accounts/f90cb834-25/dataLakeStoreAccounts/c1e3246a-8fab-4913-84e9-"; 18236Requests[3263].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18237Requests[3263].Request.Path = "/subscriptions/f4c73e2a-d87d-/resourceGroups/e2870594-dcd6-4bf/providers/Microsoft.DataLakeAnalytics/accounts/2afbaee4-7e/dataLakeStoreAccounts/7e4004fa-23ca-47dd-bd70-"; 18240Requests[3264].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18241Requests[3264].Request.Path = "/subscriptions/67b0cc16-3052-/resourceGroups/f3cb57d6-bfea-428/providers/Microsoft.DataLakeAnalytics/accounts/3fc6eb9e-5e/dataLakeStoreAccounts/98976533-951d-46b7-ab6b-"; 18244Requests[3265].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18245Requests[3265].Request.Path = "/subscriptions/cb3676a0-4710-/resourceGroups/b8febce3-97e2-4fe/providers/Microsoft.DataLakeAnalytics/accounts/d2db00fb-4d/firewallRules/7724934e-748f-4e"; 18248Requests[3266].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18249Requests[3266].Request.Path = "/subscriptions/69342a01-8890-/resourceGroups/5c7564ae-695d-481/providers/Microsoft.DataLakeAnalytics/accounts/bbb9e308-d4/firewallRules/a5c03bf6-e38a-45"; 18252Requests[3267].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18253Requests[3267].Request.Path = "/subscriptions/cd1f2584-a4ac-/resourceGroups/73e78cdc-6808-49a/providers/Microsoft.DataLakeAnalytics/accounts/b7178abf-49/firewallRules/ebb111d9-6f22-4f"; 18256Requests[3268].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18257Requests[3268].Request.Path = "/subscriptions/81a4ecf6-4f93-/resourceGroups/7ffd12b7-aa30-470/providers/Microsoft.DataLakeAnalytics/accounts/f3615c19-f2/firewallRules/fc2a29c1-3057-44"; 18260Requests[3269].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18261Requests[3269].Request.Path = "/subscriptions/50598ea9-c772-/resourceGroups/79f9c590-56e4-4d2/providers/Microsoft.DataLakeAnalytics/accounts/7efd9227-2b/storageAccounts/cf2bd279-14c1-44cb"; 18264Requests[3270].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18265Requests[3270].Request.Path = "/subscriptions/43ec7e25-0163-/resourceGroups/dd00a932-0a1d-41c/providers/Microsoft.DataLakeAnalytics/accounts/aa81e175-1a/storageAccounts/8ae783cb-3306-4fda"; 18268Requests[3271].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18269Requests[3271].Request.Path = "/subscriptions/4b58835d-d298-/resourceGroups/528fb27f-1b3e-4ca/providers/Microsoft.DataLakeAnalytics/accounts/dc1d5147-e5/storageAccounts/599dfb76-a621-4090"; 18272Requests[3272].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18273Requests[3272].Request.Path = "/subscriptions/a199fd8e-e5d8-/resourceGroups/84e802bd-7ee2-4fa/providers/Microsoft.DataLakeAnalytics/accounts/fa1a0711-ea/storageAccounts/8e5739ce-803e-4eee"; 18276Requests[3273].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18277Requests[3273].Request.Path = "/subscriptions/eb3b18c3-23ac-/resourceGroups/14287f28-66df-44b/providers/Microsoft.DataLakeStore/accounts/9831f92f-d4/firewallRules/2a163772-db7b-48"; 18280Requests[3274].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18281Requests[3274].Request.Path = "/subscriptions/55e65673-a9d9-/resourceGroups/24fb2c9e-f0c3-4f3/providers/Microsoft.DataLakeStore/accounts/9b71de5a-13/firewallRules/143148f1-f5f8-47"; 18284Requests[3275].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18285Requests[3275].Request.Path = "/subscriptions/ec9cd399-745e-/resourceGroups/624aea6b-06ef-4b1/providers/Microsoft.DataLakeStore/accounts/45e659f8-5f/firewallRules/15f72e23-75bd-44"; 18288Requests[3276].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18289Requests[3276].Request.Path = "/subscriptions/429dc0b4-110b-/resourceGroups/614b82b9-9cd1-414/providers/Microsoft.DataLakeStore/accounts/a4676464-bc/firewallRules/2f117444-bde0-4b"; 18292Requests[3277].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18293Requests[3277].Request.Path = "/subscriptions/5e48e7d3-0f0f-/resourceGroups/bff37667-2f71-4d3/providers/Microsoft.DataLakeStore/accounts/781feac2-9c/trustedIdProviders/f36df3a9-45b7-464a-b9"; 18296Requests[3278].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18297Requests[3278].Request.Path = "/subscriptions/00b5eab5-1428-/resourceGroups/f4124a76-53d7-47f/providers/Microsoft.DataLakeStore/accounts/6f0c7e9e-5d/trustedIdProviders/12bd5403-36bc-49ca-b1"; 18300Requests[3279].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18301Requests[3279].Request.Path = "/subscriptions/bb31e79b-b28e-/resourceGroups/399c0847-402a-456/providers/Microsoft.DataLakeStore/accounts/e72e6d74-e1/trustedIdProviders/7890b478-b1c7-4e57-84"; 18304Requests[3280].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18305Requests[3280].Request.Path = "/subscriptions/5b46f7c0-dbea-/resourceGroups/c2e8e5ee-bf7e-40a/providers/Microsoft.DataLakeStore/accounts/6136aee9-9c/trustedIdProviders/1cddef77-d8bc-4e59-a0"; 18308Requests[3281].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18309Requests[3281].Request.Path = "/subscriptions/313b53e1-0823-/resourceGroups/c10575cb-df18-4cb/providers/Microsoft.DataLakeStore/accounts/541f8d20-e7/virtualNetworkRules/08471677-554a-4e6e-b31"; 18312Requests[3282].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18313Requests[3282].Request.Path = "/subscriptions/afa95250-2e55-/resourceGroups/e087b069-824e-42b/providers/Microsoft.DataLakeStore/accounts/7b4f990c-e9/virtualNetworkRules/d0aa5129-bffe-4c6d-831"; 18316Requests[3283].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18317Requests[3283].Request.Path = "/subscriptions/e0795dbf-57c8-/resourceGroups/983ab409-49bd-464/providers/Microsoft.DataLakeStore/accounts/6d342f25-cd/virtualNetworkRules/42d236ef-dd08-47f5-a33"; 18320Requests[3284].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18321Requests[3284].Request.Path = "/subscriptions/654269d1-255b-/resourceGroups/a8998b62-05c3-46b/providers/Microsoft.DataLakeStore/accounts/eea2e218-07/virtualNetworkRules/9e44a307-d049-41b0-8c3"; 18324Requests[3285].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18325Requests[3285].Request.Path = "/subscriptions/718a69f5-620d-/resourceGroups/d6a29d14-38d3-41f/providers/Microsoft.DBforMySQL/servers/ae491e9f-3/configurations/ffcb9b26-7c93-4e2"; 18328Requests[3286].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18329Requests[3286].Request.Path = "/subscriptions/1699bbf6-519e-/resourceGroups/40cc6789-9c25-4f8/providers/Microsoft.DBforMySQL/servers/f72cb1c2-4/configurations/36440f9d-4d98-447"; 18332Requests[3287].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18333Requests[3287].Request.Path = "/subscriptions/6affd3bb-79b1-/resourceGroups/e8777d78-2d7c-4c3/providers/Microsoft.DBforMySQL/servers/7f63058e-e/databases/33bcbedf-292"; 18336Requests[3288].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18337Requests[3288].Request.Path = "/subscriptions/3baf41a5-fb01-/resourceGroups/c8b5c8bb-7229-43c/providers/Microsoft.DBforMySQL/servers/07d6e5e4-6/databases/0eb8f7ce-64c"; 18340Requests[3289].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18341Requests[3289].Request.Path = "/subscriptions/1ff4a6d3-b988-/resourceGroups/8c6b1850-af80-41c/providers/Microsoft.DBforMySQL/servers/71e873df-7/databases/1b7553a4-01e"; 18344Requests[3290].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18345Requests[3290].Request.Path = "/subscriptions/a039ded1-36ea-/resourceGroups/6c6d78f1-f822-4d7/providers/Microsoft.DBforMySQL/servers/5e8cbcfc-1/firewallRules/69736c05-170e-4f"; 18348Requests[3291].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18349Requests[3291].Request.Path = "/subscriptions/97af86d2-5d83-/resourceGroups/709d007b-9966-42a/providers/Microsoft.DBforMySQL/servers/14f7638b-5/firewallRules/0077dcef-9fad-48"; 18352Requests[3292].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18353Requests[3292].Request.Path = "/subscriptions/a4d16cfa-31da-/resourceGroups/e85f0a06-7fe2-42a/providers/Microsoft.DBforMySQL/servers/09ee6f71-c/firewallRules/f1c8e111-e651-42"; 18356Requests[3293].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18357Requests[3293].Request.Path = "/subscriptions/efd21a8d-07a1-/resourceGroups/62d5b28e-f581-47b/providers/Microsoft.DBforMySQL/servers/e18e2b73-d/virtualNetworkRules/ed1acd8a-330b-47ca-813"; 18360Requests[3294].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18361Requests[3294].Request.Path = "/subscriptions/1b787c19-5501-/resourceGroups/36ac7f1d-5d0a-4a6/providers/Microsoft.DBforMySQL/servers/353d7bbb-d/virtualNetworkRules/b5ae5b20-66e1-48d6-a84"; 18364Requests[3295].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18365Requests[3295].Request.Path = "/subscriptions/0936ae7b-600c-/resourceGroups/6a94955e-79e2-40c/providers/Microsoft.DBforMySQL/servers/5182c700-1/virtualNetworkRules/53611ba9-7d0d-46c3-b87"; 18368Requests[3296].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18369Requests[3296].Request.Path = "/subscriptions/f71d0a19-ca71-/resourceGroups/e057ee09-9016-463/providers/Microsoft.DBforPostgreSQL/servers/5e9cc08c-a/configurations/29a78beb-8455-44b"; 18372Requests[3297].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18373Requests[3297].Request.Path = "/subscriptions/75d3c7e7-bd92-/resourceGroups/2d7f62b2-2323-4fd/providers/Microsoft.DBforPostgreSQL/servers/ed98d647-f/configurations/943841d1-4b76-407"; 18376Requests[3298].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18377Requests[3298].Request.Path = "/subscriptions/ea405d01-4ee9-/resourceGroups/1b96c7e4-ee98-40a/providers/Microsoft.DBforPostgreSQL/servers/0bbd8067-8/databases/c8f8530f-0c4"; 18380Requests[3299].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18381Requests[3299].Request.Path = "/subscriptions/c92569d1-6124-/resourceGroups/5097f821-9815-499/providers/Microsoft.DBforPostgreSQL/servers/cda18583-8/databases/e3e844da-d11"; 18384Requests[3300].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18385Requests[3300].Request.Path = "/subscriptions/bee43a96-8922-/resourceGroups/fcd4c568-322b-4dd/providers/Microsoft.DBforPostgreSQL/servers/64340cd0-1/databases/ee30c61c-9fb"; 18388Requests[3301].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18389Requests[3301].Request.Path = "/subscriptions/8c53848e-bc73-/resourceGroups/e7185759-a1d9-486/providers/Microsoft.DBforPostgreSQL/servers/51673f61-a/firewallRules/d1db9a27-21c6-40"; 18392Requests[3302].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18393Requests[3302].Request.Path = "/subscriptions/4ce37339-874c-/resourceGroups/80ee4af7-76ef-48d/providers/Microsoft.DBforPostgreSQL/servers/b57f88d3-f/firewallRules/0b656473-ca3a-4f"; 18396Requests[3303].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18397Requests[3303].Request.Path = "/subscriptions/305c0cb6-87be-/resourceGroups/daedecf8-da43-4dd/providers/Microsoft.DBforPostgreSQL/servers/a6a240ef-e/firewallRules/ebb2bb98-79f1-45"; 18400Requests[3304].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18401Requests[3304].Request.Path = "/subscriptions/6a2c74df-372a-/resourceGroups/b807e5c6-d147-434/providers/Microsoft.DBforPostgreSQL/servers/837dfb82-4/securityAlertPolicies/5d9ac267-31af-48a8-b881"; 18404Requests[3305].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18405Requests[3305].Request.Path = "/subscriptions/9a781fb3-1457-/resourceGroups/86ce2ef3-159c-4fa/providers/Microsoft.DBforPostgreSQL/servers/227c4de1-c/securityAlertPolicies/003e86de-ae1e-4665-826f"; 18408Requests[3306].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18409Requests[3306].Request.Path = "/subscriptions/d3776290-35b6-/resourceGroups/f263f7f6-85ba-476/providers/Microsoft.DBforPostgreSQL/servers/089ca6fa-1/virtualNetworkRules/3656b8b4-9da7-4b28-949"; 18412Requests[3307].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18413Requests[3307].Request.Path = "/subscriptions/835e542a-ab7f-/resourceGroups/6968a590-45c3-4b8/providers/Microsoft.DBforPostgreSQL/servers/0ad015d9-2/virtualNetworkRules/28c68bf3-a2e7-4fcc-9c3"; 18416Requests[3308].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18417Requests[3308].Request.Path = "/subscriptions/9a66e23d-c66a-/resourceGroups/3cc50aa3-1723-4b3/providers/Microsoft.DBforPostgreSQL/servers/6c0dad0d-d/virtualNetworkRules/05dc9c49-e336-4bd6-800"; 18420Requests[3309].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18421Requests[3309].Request.Path = "/subscriptions/19864397-1c3e-/resourceGroups/ef721d97-e854-441/providers/Microsoft.Devices/IotHubs/8cc57d86-f02/certificates/7a5eb507-3b62-4"; 18424Requests[3310].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18425Requests[3310].Request.Path = "/subscriptions/9686d0c3-41ee-/resourceGroups/4ce4cb91-4844-472/providers/Microsoft.Devices/IotHubs/225bcf21-025/certificates/1ee68ef1-f240-4"; 18428Requests[3311].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18429Requests[3311].Request.Path = "/subscriptions/1cc060e7-95e4-/resourceGroups/b3332fd1-e369-4f0/providers/Microsoft.Devices/IotHubs/22cae28d-822/certificates/6530ba8d-b17d-4"; 18432Requests[3312].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18433Requests[3312].Request.Path = "/subscriptions/d7071c9b-ffce-/resourceGroups/3a657494-9aa6-4fa/providers/Microsoft.Devices/IotHubs/062f130e-26f/jobs/39c8d"; 18436Requests[3313].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18437Requests[3313].Request.Path = "/subscriptions/9d20efa3-e385-/resourceGroups/c2e3eb0a-ce12-43d/providers/Microsoft.Devices/provisioningServices/5071ec2c-659f-46cd-b501/certificates/4b0ad731-7ad2-4"; 18440Requests[3314].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18441Requests[3314].Request.Path = "/subscriptions/3408d739-40d9-/resourceGroups/9aec2105-7123-4b4/providers/Microsoft.Devices/provisioningServices/da66ee27-0f04-48dd-9022/certificates/de033251-8c1e-4"; 18444Requests[3315].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18445Requests[3315].Request.Path = "/subscriptions/366717c6-6da3-/resourceGroups/633159be-ed5c-494/providers/Microsoft.Devices/provisioningServices/b53adebe-316b-4c92-8b55/certificates/f4962a55-8b1b-4"; 18448Requests[3316].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18449Requests[3316].Request.Path = "/subscriptions/573b6fb9-6eab-/resourceGroups/ff90c6f3-31ca-44c/providers/Microsoft.Devices/provisioningServices/23d4bcd8-d67f-4ef0-bbe4/operationresults/71ac46b8-85"; 18452Requests[3317].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18453Requests[3317].Request.Path = "/subscriptions/59c7d074-a627-/resourceGroups/566e10e4-b8d1-447/providers/Microsoft.DevTestLab/labs/07f13ff/artifactsources/8a40b"; 18456Requests[3318].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18457Requests[3318].Request.Path = "/subscriptions/65c5db43-c668-/resourceGroups/2c766feb-7f42-46d/providers/Microsoft.DevTestLab/labs/0f27dc9/artifactsources/54c2d"; 18460Requests[3319].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18461Requests[3319].Request.Path = "/subscriptions/ed4b8ab5-3851-/resourceGroups/478ef68e-701a-445/providers/Microsoft.DevTestLab/labs/fa933b4/artifactsources/919ea"; 18464Requests[3320].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18465Requests[3320].Request.Path = "/subscriptions/8747c820-aaa9-/resourceGroups/2fb7773a-2cf8-410/providers/Microsoft.DevTestLab/labs/7e69c87/artifactsources/5cf25"; 18468Requests[3321].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18469Requests[3321].Request.Path = "/subscriptions/7a07526c-05fc-/resourceGroups/37e5c640-c7db-452/providers/Microsoft.DevTestLab/labs/ea0eacc/costinsights/669eb"; 18472Requests[3322].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18473Requests[3322].Request.Path = "/subscriptions/82ebb964-b1ca-/resourceGroups/891e765e-084f-459/providers/Microsoft.DevTestLab/labs/47ad73e/costs/465b3"; 18476Requests[3323].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18477Requests[3323].Request.Path = "/subscriptions/240668a4-342a-/resourceGroups/4fa075e0-71be-4af/providers/Microsoft.DevTestLab/labs/41d87fc/costs/52f84"; 18480Requests[3324].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18481Requests[3324].Request.Path = "/subscriptions/9ef65464-77ae-/resourceGroups/f6d7f940-e0d7-49f/providers/Microsoft.DevTestLab/labs/6ca31a9/customimages/4deaf"; 18484Requests[3325].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18485Requests[3325].Request.Path = "/subscriptions/4bfe781e-6f26-/resourceGroups/c209f8fd-0243-497/providers/Microsoft.DevTestLab/labs/a2222a1/customimages/ee766"; 18488Requests[3326].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18489Requests[3326].Request.Path = "/subscriptions/cb2e7a6a-a007-/resourceGroups/d87590ae-1577-4fe/providers/Microsoft.DevTestLab/labs/1abe00a/customimages/47848"; 18492Requests[3327].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18493Requests[3327].Request.Path = "/subscriptions/f58dbffb-e010-/resourceGroups/311c0f6e-30c6-46d/providers/Microsoft.DevTestLab/labs/93e773e/formulas/ecede"; 18496Requests[3328].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18497Requests[3328].Request.Path = "/subscriptions/c107cc04-9e27-/resourceGroups/ca49246d-43d8-4bc/providers/Microsoft.DevTestLab/labs/cba58af/formulas/9f233"; 18500Requests[3329].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18501Requests[3329].Request.Path = "/subscriptions/5c6a6bc8-38f9-/resourceGroups/0e650a9c-4ea3-482/providers/Microsoft.DevTestLab/labs/737f53e/formulas/3b155"; 18504Requests[3330].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18505Requests[3330].Request.Path = "/subscriptions/51fb22fc-6577-/resourceGroups/71bb36bd-5568-414/providers/Microsoft.DevTestLab/labs/97ba7ce/notificationchannels/3a20a"; 18508Requests[3331].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18509Requests[3331].Request.Path = "/subscriptions/464234a2-4df2-/resourceGroups/3b6543d3-a73d-4f0/providers/Microsoft.DevTestLab/labs/409cf53/notificationchannels/a3fa3"; 18512Requests[3332].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18513Requests[3332].Request.Path = "/subscriptions/18b1af85-6964-/resourceGroups/17a06894-a6fc-4aa/providers/Microsoft.DevTestLab/labs/25c4f29/notificationchannels/203d0"; 18516Requests[3333].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18517Requests[3333].Request.Path = "/subscriptions/8f70a958-7f4e-/resourceGroups/70365a2a-60af-414/providers/Microsoft.DevTestLab/labs/5953304/notificationchannels/066c4"; 18520Requests[3334].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18521Requests[3334].Request.Path = "/subscriptions/3b81286e-e472-/resourceGroups/c9db874d-05f9-405/providers/Microsoft.DevTestLab/labs/a0aef12/schedules/079b4"; 18524Requests[3335].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18525Requests[3335].Request.Path = "/subscriptions/7211e999-c534-/resourceGroups/36abedd6-9741-4fe/providers/Microsoft.DevTestLab/labs/93fa90a/schedules/d02ee"; 18528Requests[3336].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18529Requests[3336].Request.Path = "/subscriptions/8bdf8b2b-7395-/resourceGroups/01e1a2bc-9768-4ad/providers/Microsoft.DevTestLab/labs/6219948/schedules/22fbb"; 18532Requests[3337].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18533Requests[3337].Request.Path = "/subscriptions/d30fb32f-5a4c-/resourceGroups/5e7d9d16-3889-420/providers/Microsoft.DevTestLab/labs/86d2731/schedules/3b99b"; 18536Requests[3338].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18537Requests[3338].Request.Path = "/subscriptions/c98055a5-1dbf-/resourceGroups/2fb800b8-98c8-411/providers/Microsoft.DevTestLab/labs/9c9f0bb/servicerunners/4ed6c"; 18540Requests[3339].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18541Requests[3339].Request.Path = "/subscriptions/b6f2aa85-8e4c-/resourceGroups/537c5357-23af-4d8/providers/Microsoft.DevTestLab/labs/386b6ad/servicerunners/58d65"; 18544Requests[3340].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18545Requests[3340].Request.Path = "/subscriptions/6781ad81-92cc-/resourceGroups/9a28c44b-8be0-4da/providers/Microsoft.DevTestLab/labs/c56a384/servicerunners/9534b"; 18548Requests[3341].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18549Requests[3341].Request.Path = "/subscriptions/0bdce12c-8c88-/resourceGroups/6f2ac3db-915c-49d/providers/Microsoft.DevTestLab/labs/a0a15aa/users/414dd"; 18552Requests[3342].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18553Requests[3342].Request.Path = "/subscriptions/05d01c49-787f-/resourceGroups/0afc3f1b-1d03-444/providers/Microsoft.DevTestLab/labs/3ab9845/users/2b9f3"; 18556Requests[3343].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18557Requests[3343].Request.Path = "/subscriptions/220fd84a-115c-/resourceGroups/fdf85ba9-deff-496/providers/Microsoft.DevTestLab/labs/71a4942/users/5ac40"; 18560Requests[3344].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18561Requests[3344].Request.Path = "/subscriptions/76763d83-4c08-/resourceGroups/cf41c903-4bfe-4d0/providers/Microsoft.DevTestLab/labs/5d32669/users/94058"; 18564Requests[3345].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18565Requests[3345].Request.Path = "/subscriptions/2c8d932c-39b0-/resourceGroups/fb86db9f-fa17-45e/providers/Microsoft.DevTestLab/labs/692d2cc/virtualmachines/25152"; 18568Requests[3346].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18569Requests[3346].Request.Path = "/subscriptions/5ca11c2a-52e7-/resourceGroups/a540fb29-7445-439/providers/Microsoft.DevTestLab/labs/5592d78/virtualmachines/c899d"; 18572Requests[3347].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18573Requests[3347].Request.Path = "/subscriptions/39ff1035-9ce9-/resourceGroups/194f061b-7bb6-4f7/providers/Microsoft.DevTestLab/labs/7f7470c/virtualmachines/c07b7"; 18576Requests[3348].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18577Requests[3348].Request.Path = "/subscriptions/7f9b298e-19c0-/resourceGroups/74d616a4-67ed-4a1/providers/Microsoft.DevTestLab/labs/7a1f506/virtualmachines/a15c8"; 18580Requests[3349].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18581Requests[3349].Request.Path = "/subscriptions/cb92cf57-475b-/resourceGroups/b823fa93-26fe-48b/providers/Microsoft.DevTestLab/labs/c05489d/virtualnetworks/2d893"; 18584Requests[3350].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18585Requests[3350].Request.Path = "/subscriptions/a8587cdc-be8b-/resourceGroups/c7cc3d3d-8444-440/providers/Microsoft.DevTestLab/labs/7e70167/virtualnetworks/6b8e5"; 18588Requests[3351].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18589Requests[3351].Request.Path = "/subscriptions/667b8e98-3a20-/resourceGroups/b5396589-e938-4ba/providers/Microsoft.DevTestLab/labs/94cf8c1/virtualnetworks/23743"; 18592Requests[3352].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18593Requests[3352].Request.Path = "/subscriptions/a7f5142a-2fd3-/resourceGroups/844129af-4d90-436/providers/Microsoft.DevTestLab/labs/e82cd99/virtualnetworks/a6943"; 18596Requests[3353].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18597Requests[3353].Request.Path = "/subscriptions/86ba4e3d-e710-/resourceGroups/61eb1780-5fee-40f/providers/Microsoft.DomainRegistration/domains/6c552d7e-e/domainOwnershipIdentifiers/3d8b5"; 18600Requests[3354].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18601Requests[3354].Request.Path = "/subscriptions/adea34b2-089b-/resourceGroups/9f7d2796-e2f2-411/providers/Microsoft.DomainRegistration/domains/69636791-f/domainOwnershipIdentifiers/4880d"; 18604Requests[3355].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18605Requests[3355].Request.Path = "/subscriptions/fba78ec5-fdb7-/resourceGroups/00cb3332-2f1b-454/providers/Microsoft.DomainRegistration/domains/960bff62-d/domainOwnershipIdentifiers/58326"; 18608Requests[3356].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18609Requests[3356].Request.Path = "/subscriptions/57721672-3269-/resourceGroups/b58886a1-0e84-4cf/providers/Microsoft.DomainRegistration/domains/03e0af28-5/domainOwnershipIdentifiers/0aae0"; 18612Requests[3357].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18613Requests[3357].Request.Path = "/subscriptions/6d5730d6-e2f3-/resourceGroups/b14c49da-cdbd-45a/providers/Microsoft.DomainRegistration/domains/8885430d-e/operationresults/ac4033c5-27"; 18616Requests[3358].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18617Requests[3358].Request.Path = "/subscriptions/86a6de46-2b56-/resourceGroups/1c3fdec5-3267-4ea/providers/Microsoft.EventHub/namespaces/93dab2ae-0d90/AuthorizationRules/e063678c-d1d9-4549-87"; 18620Requests[3359].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18621Requests[3359].Request.Path = "/subscriptions/e46b19c3-e39d-/resourceGroups/0effc4fc-dae0-4bc/providers/Microsoft.EventHub/namespaces/3323b33f-bcbb/AuthorizationRules/05e9d411-ace3-483a-b7"; 18624Requests[3360].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 18625Requests[3360].Request.Path = "/subscriptions/e6433cb7-25b8-/resourceGroups/60505573-ea5a-484/providers/Microsoft.EventHub/namespaces/b7494581-60b9/AuthorizationRules/9b8d7cf2-7070-402b-83"; 18628Requests[3361].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18629Requests[3361].Request.Path = "/subscriptions/b07abb9b-6e38-/resourceGroups/7080ba45-969d-438/providers/Microsoft.EventHub/namespaces/df0be321-c236/AuthorizationRules/56b153ae-9b89-495d-87"; 18632Requests[3362].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18633Requests[3362].Request.Path = "/subscriptions/63825588-0fa7-/resourceGroups/07200c4e-b42a-43f/providers/Microsoft.EventHub/namespaces/11e1d14f-6fce/disasterRecoveryConfigs/6ccca"; 18636Requests[3363].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18637Requests[3363].Request.Path = "/subscriptions/f23c07a8-d070-/resourceGroups/8bc5104f-c1af-477/providers/Microsoft.EventHub/namespaces/f4b34246-7329/disasterRecoveryConfigs/014a4"; 18640Requests[3364].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18641Requests[3364].Request.Path = "/subscriptions/d676d25b-261c-/resourceGroups/d7156a20-3756-467/providers/Microsoft.EventHub/namespaces/f62f9285-1ebf/disasterRecoveryConfigs/b521e"; 18644Requests[3365].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18645Requests[3365].Request.Path = "/subscriptions/a9dd8015-3a9e-/resourceGroups/d2a6b28d-6290-4f5/providers/Microsoft.EventHub/namespaces/25628983-c29b/eventhubs/e292c262-a7a"; 18648Requests[3366].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18649Requests[3366].Request.Path = "/subscriptions/8245ce58-5b91-/resourceGroups/d0f26433-38fb-414/providers/Microsoft.EventHub/namespaces/7916cd2a-b685/eventhubs/20b23e8b-faf"; 18652Requests[3367].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18653Requests[3367].Request.Path = "/subscriptions/458069f6-a89d-/resourceGroups/f8bfef7a-51b7-414/providers/Microsoft.EventHub/namespaces/c037d5e7-9337/eventhubs/de7c2f9c-ba5"; 18656Requests[3368].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18657Requests[3368].Request.Path = "/subscriptions/25b76931-5fc9-/resourceGroups/24a9fd7a-77f2-443/providers/Microsoft.Fabric.Admin/fabricLocations/888fffbe/edgeGatewayPools/7bc8685b-1907-4"; 18660Requests[3369].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18661Requests[3369].Request.Path = "/subscriptions/e2c9ca06-4020-/resourceGroups/9d360a02-2346-4e3/providers/Microsoft.Fabric.Admin/fabricLocations/e135c41a/edgeGateways/6573a524-60"; 18664Requests[3370].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18665Requests[3370].Request.Path = "/subscriptions/59f15b36-470d-/resourceGroups/cb51a063-d8eb-44a/providers/Microsoft.Fabric.Admin/fabricLocations/f28c26e4/fileShares/3749c9ae-"; 18668Requests[3371].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18669Requests[3371].Request.Path = "/subscriptions/a6cffdcc-1be8-/resourceGroups/2a9d91c4-9bac-44a/providers/Microsoft.Fabric.Admin/fabricLocations/8c63f058/infraRoleInstances/13c19aab-e29f-4aa"; 18672Requests[3372].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18673Requests[3372].Request.Path = "/subscriptions/f69f041a-10f7-/resourceGroups/85530446-0d6a-4ac/providers/Microsoft.Fabric.Admin/fabricLocations/31ce57e5/infraRoles/357a95e0-"; 18676Requests[3373].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18677Requests[3373].Request.Path = "/subscriptions/b055c01a-2205-/resourceGroups/2b4cd670-f1f5-4ba/providers/Microsoft.Fabric.Admin/fabricLocations/473414f9/ipPools/e0cadd"; 18680Requests[3374].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18681Requests[3374].Request.Path = "/subscriptions/607e0a5c-9ec3-/resourceGroups/f2046b73-4bc4-411/providers/Microsoft.Fabric.Admin/fabricLocations/68c05827/ipPools/fbdc06"; 18684Requests[3375].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18685Requests[3375].Request.Path = "/subscriptions/af6944b0-4488-/resourceGroups/96965296-0eb6-496/providers/Microsoft.Fabric.Admin/fabricLocations/1fc92547/logicalNetworks/b82509b1-2f46-"; 18688Requests[3376].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18689Requests[3376].Request.Path = "/subscriptions/a608e910-b580-/resourceGroups/aefb76fa-eaf1-40c/providers/Microsoft.Fabric.Admin/fabricLocations/9524ab4d/macAddressPools/782d68bb-c97b-"; 18692Requests[3377].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18693Requests[3377].Request.Path = "/subscriptions/c0322e01-76ad-/resourceGroups/5f5fedf9-624e-45b/providers/Microsoft.Fabric.Admin/fabricLocations/caa1b26f/scaleUnitNodes/affdefc4-e6d5"; 18696Requests[3378].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18697Requests[3378].Request.Path = "/subscriptions/d6ead371-c303-/resourceGroups/294246dd-2e03-4dc/providers/Microsoft.Fabric.Admin/fabricLocations/c696e4a5/scaleUnits/7f60922d-"; 18700Requests[3379].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18701Requests[3379].Request.Path = "/subscriptions/ec855de5-fd42-/resourceGroups/2425691a-109f-48c/providers/Microsoft.Fabric.Admin/fabricLocations/70228030/slbMuxInstances/c78aad27-2a1e-"; 18704Requests[3380].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18705Requests[3380].Request.Path = "/subscriptions/45e3d360-438a-/resourceGroups/e1112a0c-cd02-442/providers/Microsoft.Fabric.Admin/fabricLocations/86ec0b20/storageSubSystems/420268fa-0d4e-4f"; 18708Requests[3381].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18709Requests[3381].Request.Path = "/subscriptions/57fb55b7-f927-/resourceGroups/083aabc1-c511-43a/providers/Microsoft.HDInsight/clusters/af0a3ac0-4b/applications/80caa166-df58-4"; 18712Requests[3382].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18713Requests[3382].Request.Path = "/subscriptions/c94a8523-be81-/resourceGroups/90f73fcf-12b0-4f0/providers/Microsoft.HDInsight/clusters/86e9a7cc-e9/applications/331802e5-7243-4"; 18716Requests[3383].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18717Requests[3383].Request.Path = "/subscriptions/86518104-a76a-/resourceGroups/f5f9ef31-5f26-4fa/providers/Microsoft.HDInsight/clusters/7d8d2930-71/applications/16ba760b-58d4-4"; 18720Requests[3384].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 18721Requests[3384].Request.Path = "/subscriptions/ec0ff1bf-7a24-/resourceGroups/f335941a-09d2-4db/providers/Microsoft.HDInsight/clusters/74c47d1e-ca/configurations/47375384-7f14-40a"; 18724Requests[3385].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18725Requests[3385].Request.Path = "/subscriptions/84989d71-4649-/resourceGroups/7d8a4e21-4bde-46d/providers/Microsoft.HDInsight/clusters/600b673a-a9/configurations/4f34dad8-fbd0-463"; 18728Requests[3386].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18729Requests[3386].Request.Path = "/subscriptions/895adc7a-e6d7-/resourceGroups/5aec0f3c-3f35-4f8/providers/Microsoft.HDInsight/clusters/fd9f2077-e8/extensions/738b2267-5834"; 18732Requests[3387].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18733Requests[3387].Request.Path = "/subscriptions/40dfacd0-88b7-/resourceGroups/95b0592b-8b30-484/providers/Microsoft.HDInsight/clusters/d66af711-41/extensions/eddf2322-f849"; 18736Requests[3388].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18737Requests[3388].Request.Path = "/subscriptions/a5268cf5-f38e-/resourceGroups/3222354b-6d79-4e5/providers/Microsoft.HDInsight/clusters/7ab5314f-c3/extensions/6191cf63-170b"; 18740Requests[3389].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18741Requests[3389].Request.Path = "/subscriptions/ba17eac9-4688-/resourceGroups/01d17d09-8b6b-45b/providers/Microsoft.HDInsight/clusters/8e7d7570-ff/scriptActions/c84ee3be-e"; 18744Requests[3390].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18745Requests[3390].Request.Path = "/subscriptions/c9cb6624-2b5f-/resourceGroups/b9450e47-22f2-4d4/providers/Microsoft.HDInsight/clusters/40e019e9-0b/scriptExecutionHistory/f8de71ae-c1a9-40f"; 18748Requests[3391].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18749Requests[3391].Request.Path = "/subscriptions/7ec477e5-ac16-/resourceGroups/c7f4325f-0d73-497/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/c41e81a4/alerts/3da84651-"; 18752Requests[3392].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18753Requests[3392].Request.Path = "/subscriptions/bdfa19f5-5a49-/resourceGroups/75aa0f90-c478-4a7/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/be5d02eb/alerts/99a7ba49-"; 18756Requests[3393].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18757Requests[3393].Request.Path = "/subscriptions/6fff71b3-f607-/resourceGroups/7e748805-a8bf-48a/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/e9c924a7/serviceHealths/90824631-9564"; 18760Requests[3394].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18761Requests[3394].Request.Path = "/subscriptions/2a027b58-2cc4-/resourcegroups/d3b7f39d-2f52-456/providers/microsoft.insights/alertrules/8c880bcc/incidents/160930b8-908"; 18764Requests[3395].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18765Requests[3395].Request.Path = "/subscriptions/91f08de7-3e16-/resourceGroups/b791199d-a916-4f9/providers/Microsoft.Insights/components/b68673d7-e47/Annotations/38ab4753-4ce"; 18768Requests[3396].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18769Requests[3396].Request.Path = "/subscriptions/a01836a1-4237-/resourceGroups/7e9cb7ce-7141-459/providers/Microsoft.Insights/components/66177e4a-565/Annotations/57e8b636-97d"; 18772Requests[3397].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18773Requests[3397].Request.Path = "/subscriptions/1e4cfe00-98e2-/resourceGroups/6bcaa751-d800-422/providers/Microsoft.Insights/components/24aa5bb7-291/APIKeys/061a5"; 18776Requests[3398].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18777Requests[3398].Request.Path = "/subscriptions/21517f54-ce1d-/resourceGroups/8b66ce4c-7a57-41c/providers/Microsoft.Insights/components/ce38dda7-2ba/APIKeys/38984"; 18780Requests[3399].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18781Requests[3399].Request.Path = "/subscriptions/6432cce1-84bb-/resourceGroups/d36ad5d3-ab58-407/providers/Microsoft.Insights/components/c43ba01d-f25/exportconfiguration/7a4d5df6"; 18784Requests[3400].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18785Requests[3400].Request.Path = "/subscriptions/c5277787-8dfe-/resourceGroups/2ac7cedb-3175-4f5/providers/Microsoft.Insights/components/28486ac1-532/exportconfiguration/e2f45ed3"; 18788Requests[3401].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18789Requests[3401].Request.Path = "/subscriptions/3809cbaa-3fef-/resourceGroups/4e3eaafe-49ab-4e7/providers/Microsoft.Insights/components/6c7e4407-114/exportconfiguration/07c9b8fd"; 18792Requests[3402].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18793Requests[3402].Request.Path = "/subscriptions/8ea3c354-a636-/resourceGroups/237a1060-030e-424/providers/Microsoft.Insights/components/c0c9e35b-3ff/favorites/b6a305b0-7"; 18796Requests[3403].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18797Requests[3403].Request.Path = "/subscriptions/83c03a59-7aef-/resourceGroups/afbca39e-7782-484/providers/Microsoft.Insights/components/94ba494b-09d/favorites/724cca15-f"; 18800Requests[3404].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18801Requests[3404].Request.Path = "/subscriptions/50cc5434-4a9e-/resourceGroups/cbd3da14-c9e6-4de/providers/Microsoft.Insights/components/7c49186f-81c/favorites/7caf8368-2"; 18804Requests[3405].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18805Requests[3405].Request.Path = "/subscriptions/7a756fdc-a524-/resourceGroups/8ddabb24-16f6-494/providers/Microsoft.Insights/components/475cb2ff-e29/favorites/fa76a670-3"; 18808Requests[3406].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18809Requests[3406].Request.Path = "/subscriptions/f5c9d63f-f0ca-/resourceGroups/5b5d91a1-d59a-4ef/providers/Microsoft.Insights/components/f9ac0728-6a7/ProactiveDetectionConfigs/ec45fcf8-6aa4-4"; 18812Requests[3407].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18813Requests[3407].Request.Path = "/subscriptions/3e577ed7-427e-/resourceGroups/5263565b-38e0-4ed/providers/Microsoft.Insights/components/8c250dda-8c4/ProactiveDetectionConfigs/7444f46b-9f18-4"; 18816Requests[3408].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18817Requests[3408].Request.Path = "/subscriptions/0a43c0cb-d928-/resourceGroups/a758f055-0ae3-4b3/providers/Microsoft.Insights/components/60d59084-310/WorkItemConfigs/3c3ed86f-ec71-4c"; 18820Requests[3409].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18821Requests[3409].Request.Path = "/subscriptions/316ac405-ce13-/resourceGroups/e560146f-4833-42a/providers/Microsoft.Insights/metricAlerts/98975d82/status/42e57674-5"; 18824Requests[3410].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18825Requests[3410].Request.Path = "/subscriptions/fa740faa-02a7-/resourceGroups/06df777b-6828-495/providers/Microsoft.KeyVault/vaults/5c7c7a91-/accessPolicies/e58e91cf-880a"; 18828Requests[3411].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18829Requests[3411].Request.Path = "/subscriptions/bf7f52c5-c34e-/resourceGroups/6c1475dd-45cb-4da/providers/Microsoft.KeyVault/vaults/089d3ed2-/secrets/eeaf647a-3"; 18832Requests[3412].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18833Requests[3412].Request.Path = "/subscriptions/8caf14cf-36d1-/resourceGroups/5ebec0af-47ae-486/providers/Microsoft.KeyVault/vaults/f8578ac6-/secrets/1e0b720e-f"; 18836Requests[3413].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18837Requests[3413].Request.Path = "/subscriptions/e64be3f1-455e-/resourceGroups/77a10d7c-0826-41e/providers/Microsoft.KeyVault/vaults/4611d573-/secrets/77d1ae57-d"; 18840Requests[3414].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18841Requests[3414].Request.Path = "/subscriptions/a89d2554-8b3d-/resourceGroups/5bb60ee0-961d-491/providers/Microsoft.Logic/integrationAccounts/ae87537e-a0c2-4345-8d0/agreements/b9443cbe-09f8"; 18844Requests[3415].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18845Requests[3415].Request.Path = "/subscriptions/83f77e9d-47c8-/resourceGroups/1fae412b-8bb1-436/providers/Microsoft.Logic/integrationAccounts/8da2006f-6d5b-43d0-84c/agreements/4179b367-47b9"; 18848Requests[3416].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18849Requests[3416].Request.Path = "/subscriptions/9944d1f7-fcd6-/resourceGroups/59e12ce2-265e-4cd/providers/Microsoft.Logic/integrationAccounts/1c2cfc07-6f1b-4c26-a72/agreements/6e560d15-2de5"; 18852Requests[3417].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18853Requests[3417].Request.Path = "/subscriptions/45b3c593-58f1-/resourceGroups/42735bdd-caf7-4e0/providers/Microsoft.Logic/integrationAccounts/8c199903-2dcd-421a-908/assemblies/aa9e3869-960d-4aad-8"; 18856Requests[3418].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18857Requests[3418].Request.Path = "/subscriptions/5be904ce-7027-/resourceGroups/c77e78d8-2960-44c/providers/Microsoft.Logic/integrationAccounts/fe042cde-897d-43db-812/assemblies/bfd033e0-3b86-494e-a"; 18860Requests[3419].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18861Requests[3419].Request.Path = "/subscriptions/46d8692a-5efb-/resourceGroups/6ca63d18-a9c5-470/providers/Microsoft.Logic/integrationAccounts/1081cf25-bcfd-4f1e-88b/assemblies/42638952-6002-4a71-8"; 18864Requests[3420].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18865Requests[3420].Request.Path = "/subscriptions/8258bf56-9050-/resourceGroups/63a4f130-3f3e-446/providers/Microsoft.Logic/integrationAccounts/a4e1b33b-086a-4c71-acf/batchConfigurations/48e5915f-0304-4a24-bdf"; 18868Requests[3421].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18869Requests[3421].Request.Path = "/subscriptions/3dcc6f9a-0607-/resourceGroups/1b6b0311-bb46-45d/providers/Microsoft.Logic/integrationAccounts/7ea78d7b-b5ff-461f-97c/batchConfigurations/f1329801-08a1-441a-92b"; 18872Requests[3422].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18873Requests[3422].Request.Path = "/subscriptions/341494c5-a7a2-/resourceGroups/2d3ad9fc-8ad2-49a/providers/Microsoft.Logic/integrationAccounts/4557ff95-0810-45fd-b7d/batchConfigurations/3f5e2435-f53e-4e64-ac0"; 18876Requests[3423].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18877Requests[3423].Request.Path = "/subscriptions/facc9199-5c76-/resourceGroups/a9296b0d-c8cf-455/providers/Microsoft.Logic/integrationAccounts/109a723f-4a69-4c1d-b9d/certificates/9d3b354a-cb9a-4"; 18880Requests[3424].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18881Requests[3424].Request.Path = "/subscriptions/770b950c-6c5f-/resourceGroups/40842794-92d4-465/providers/Microsoft.Logic/integrationAccounts/04596cda-b71c-4aed-8f7/certificates/232adb9b-532a-4"; 18884Requests[3425].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18885Requests[3425].Request.Path = "/subscriptions/9fe019a5-7d4f-/resourceGroups/e4086f43-a5cf-412/providers/Microsoft.Logic/integrationAccounts/8ade6bc2-932c-4ab2-851/certificates/10f15b81-976f-4"; 18888Requests[3426].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18889Requests[3426].Request.Path = "/subscriptions/675e9ca0-bebc-/resourceGroups/df8c1564-079d-438/providers/Microsoft.Logic/integrationAccounts/c31d70ff-e44d-45a3-b94/maps/1492c7e"; 18892Requests[3427].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18893Requests[3427].Request.Path = "/subscriptions/83805967-8966-/resourceGroups/88820d1b-3680-4a0/providers/Microsoft.Logic/integrationAccounts/06052c1d-5492-4690-8c7/maps/9749938"; 18896Requests[3428].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18897Requests[3428].Request.Path = "/subscriptions/adae313f-3aaa-/resourceGroups/86a80972-a793-458/providers/Microsoft.Logic/integrationAccounts/beb4afd6-6118-4eac-a6c/maps/e415a0f"; 18900Requests[3429].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18901Requests[3429].Request.Path = "/subscriptions/8445dd71-95bc-/resourceGroups/2468edb6-a925-4df/providers/Microsoft.Logic/integrationAccounts/e6fbca30-a620-4b61-ad6/partners/dc0ae800-e3"; 18904Requests[3430].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18905Requests[3430].Request.Path = "/subscriptions/a276c58d-0701-/resourceGroups/3f491580-e657-4a5/providers/Microsoft.Logic/integrationAccounts/d67a397c-2e15-4b0d-b0d/partners/2b0df951-aa"; 18908Requests[3431].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18909Requests[3431].Request.Path = "/subscriptions/ae21e61d-abd6-/resourceGroups/a3f00f37-44b4-4cd/providers/Microsoft.Logic/integrationAccounts/3c340d12-79d8-4999-a05/partners/f45944ee-c2"; 18912Requests[3432].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18913Requests[3432].Request.Path = "/subscriptions/edd99227-881c-/resourceGroups/7efc798d-64f4-415/providers/Microsoft.Logic/integrationAccounts/0c176140-3da5-4e72-b4c/schemas/f2dd5000-f"; 18916Requests[3433].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18917Requests[3433].Request.Path = "/subscriptions/b2f6bb05-6364-/resourceGroups/9f082b70-ac23-438/providers/Microsoft.Logic/integrationAccounts/520f51ee-c409-4652-9d4/schemas/33ae82b5-4"; 18920Requests[3434].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18921Requests[3434].Request.Path = "/subscriptions/55d79d71-f66a-/resourceGroups/0ff3e5ec-2cf6-420/providers/Microsoft.Logic/integrationAccounts/b406af49-1a1e-4b44-889/schemas/001a8f66-1"; 18924Requests[3435].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18925Requests[3435].Request.Path = "/subscriptions/ca06de7d-2384-/resourceGroups/c7b32f8a-537c-4c5/providers/Microsoft.Logic/integrationAccounts/da5c8b29-e1bf-4f27-b1e/sessions/fce204b4-59"; 18928Requests[3436].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18929Requests[3436].Request.Path = "/subscriptions/f4a773fa-3623-/resourceGroups/e8d57092-bd6c-4d0/providers/Microsoft.Logic/integrationAccounts/0b917153-9421-4dd2-863/sessions/a20f4dfe-bb"; 18932Requests[3437].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18933Requests[3437].Request.Path = "/subscriptions/9dca12ee-3653-/resourceGroups/ac2811ea-658b-425/providers/Microsoft.Logic/integrationAccounts/f0a98d4f-83e8-48b3-936/sessions/13c8b848-08"; 18936Requests[3438].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18937Requests[3438].Request.Path = "/subscriptions/a39d0d27-e75a-/resourceGroups/88e1ebcf-55bc-4df/providers/Microsoft.Logic/workflows/c9a7cfc9-e19/accessKeys/e3d14eec-6e40"; 18940Requests[3439].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18941Requests[3439].Request.Path = "/subscriptions/04728e65-a966-/resourceGroups/87649c29-119d-4d1/providers/Microsoft.Logic/workflows/d0057c23-f0b/accessKeys/80b98ff3-7c74"; 18944Requests[3440].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18945Requests[3440].Request.Path = "/subscriptions/d25ea2c4-73b7-/resourceGroups/a2115e2c-6715-476/providers/Microsoft.Logic/workflows/520432c1-178/accessKeys/0f5f3699-5536"; 18948Requests[3441].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18949Requests[3441].Request.Path = "/subscriptions/58dc1beb-427b-/resourceGroups/e0ae3904-15a6-441/providers/Microsoft.Logic/workflows/324a8e57-eb5/runs/9954b65"; 18952Requests[3442].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18953Requests[3442].Request.Path = "/subscriptions/7ee18238-c94f-/resourceGroups/aaf26dab-be63-4a0/providers/Microsoft.Logic/workflows/5ac508d1-b74/triggers/e36ea17d-bc"; 18956Requests[3443].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18957Requests[3443].Request.Path = "/subscriptions/04753533-3003-/resourceGroups/f0b53651-11c5-46a/providers/Microsoft.Logic/workflows/45cfd6e1-071/versions/a1d9beac-"; 18960Requests[3444].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18961Requests[3444].Request.Path = "/subscriptions/7fe7659b-854c-/resourceGroups/7eeea410-0acf-44d/providers/Microsoft.MachineLearning/commitmentPlans/874bc03d-dc26-4b98/commitmentAssociations/3b7de80f-568e-47c7-8328-5"; 18964Requests[3445].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18965Requests[3445].Request.Path = "/subscriptions/74f93457-340b-/resourceGroups/b5e3612f-e76c-4cd/providers/Microsoft.MachineLearningExperimentation/accounts/18236e0b-a9/workspaces/92fd2220-8536"; 18968Requests[3446].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18969Requests[3446].Request.Path = "/subscriptions/6962ebd6-cc86-/resourceGroups/859efb4a-320e-46e/providers/Microsoft.MachineLearningExperimentation/accounts/e7122c1f-57/workspaces/ca11d1e2-3711"; 18972Requests[3447].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18973Requests[3447].Request.Path = "/subscriptions/9272f9d6-3e16-/resourceGroups/0eb450c0-4347-438/providers/Microsoft.MachineLearningExperimentation/accounts/1ca629f4-7c/workspaces/28d40310-65dd"; 18976Requests[3448].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18977Requests[3448].Request.Path = "/subscriptions/e22207a2-a169-/resourceGroups/ed413dd8-5f6f-4ed/providers/Microsoft.MachineLearningExperimentation/accounts/2a38bfc5-45/workspaces/69d7d6b6-4df6"; 18980Requests[3449].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 18981Requests[3449].Request.Path = "/subscriptions/6b4618b9-a1f2-/resourceGroups/09598923-73e4-436/providers/Microsoft.Media/mediaServices/77b791d1-94/assets/9037a48f-"; 18984Requests[3450].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 18985Requests[3450].Request.Path = "/subscriptions/1c86d388-768b-/resourceGroups/5f3406fa-de9b-452/providers/Microsoft.Media/mediaServices/6da2edd1-4e/assets/0a6e653c-"; 18988Requests[3451].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18989Requests[3451].Request.Path = "/subscriptions/29c71370-ded1-/resourceGroups/01246921-d023-433/providers/Microsoft.Media/mediaServices/575aabb7-98/assets/dfb6574d-"; 18992Requests[3452].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 18993Requests[3452].Request.Path = "/subscriptions/fbe499ab-4a47-/resourceGroups/6e975c2c-e6ee-4cf/providers/Microsoft.Media/mediaServices/c04fb11b-29/assets/2098e208-"; 18996Requests[3453].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 18997Requests[3453].Request.Path = "/subscriptions/431df7d0-1438-/resourceGroups/edd52ad9-e2da-42f/providers/Microsoft.Media/mediaServices/4fea9547-c4/contentKeyPolicies/ed45b748-6b2a-4140-9"; 19000Requests[3454].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19001Requests[3454].Request.Path = "/subscriptions/560879bc-2edf-/resourceGroups/64cecb88-253d-447/providers/Microsoft.Media/mediaServices/565ca3f1-a1/contentKeyPolicies/bfa0ff76-b629-4df8-b"; 19004Requests[3455].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19005Requests[3455].Request.Path = "/subscriptions/242ac867-1815-/resourceGroups/e595fd97-9394-456/providers/Microsoft.Media/mediaServices/d4009294-a9/contentKeyPolicies/1e39e331-e756-4aec-b"; 19008Requests[3456].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19009Requests[3456].Request.Path = "/subscriptions/2ff1f888-ca70-/resourceGroups/f62a7b17-9974-41c/providers/Microsoft.Media/mediaServices/b3cb07d5-ff/contentKeyPolicies/8d411abb-a294-40c2-8"; 19012Requests[3457].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19013Requests[3457].Request.Path = "/subscriptions/ec94515f-30ec-/resourceGroups/6a5c3965-23e2-4b2/providers/Microsoft.Media/mediaservices/aa0289a6-94/liveEvents/3460be13-4902"; 19016Requests[3458].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19017Requests[3458].Request.Path = "/subscriptions/fce00197-4414-/resourceGroups/24bae5da-f2d1-439/providers/Microsoft.Media/mediaservices/48ba7cc1-8c/liveEvents/ad7dabcb-4800"; 19020Requests[3459].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19021Requests[3459].Request.Path = "/subscriptions/7d16a90e-6805-/resourceGroups/81d6308c-4ac5-44a/providers/Microsoft.Media/mediaservices/17d1c142-9e/liveEvents/894da6ee-5797"; 19024Requests[3460].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19025Requests[3460].Request.Path = "/subscriptions/b05cbbe8-d596-/resourceGroups/bae581b4-f0a0-4a7/providers/Microsoft.Media/mediaservices/5d14d32b-28/liveEvents/a2d58cf7-97cd"; 19028Requests[3461].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19029Requests[3461].Request.Path = "/subscriptions/b2d2dd83-6242-/resourceGroups/e432b4c5-1e33-4bb/providers/Microsoft.Media/mediaservices/ec36fbb8-e1/streamingEndpoints/8f85ac35-6236-47b7-82"; 19032Requests[3462].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19033Requests[3462].Request.Path = "/subscriptions/c7052482-1345-/resourceGroups/54d7ce81-c9a3-464/providers/Microsoft.Media/mediaservices/07d639bf-64/streamingEndpoints/5f16bd2e-7a44-4434-97"; 19036Requests[3463].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19037Requests[3463].Request.Path = "/subscriptions/1b7b8379-9abf-/resourceGroups/42a42f00-e4ff-458/providers/Microsoft.Media/mediaservices/9d556a1f-5d/streamingEndpoints/fe984e90-14e8-4b18-8d"; 19040Requests[3464].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19041Requests[3464].Request.Path = "/subscriptions/0a8ae250-edab-/resourceGroups/d8389ee8-525f-4e2/providers/Microsoft.Media/mediaservices/7593dbe6-c6/streamingEndpoints/da79415f-0b00-47d8-81"; 19044Requests[3465].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19045Requests[3465].Request.Path = "/subscriptions/6f607e44-2c08-/resourceGroups/55e10e2d-b392-4e8/providers/Microsoft.Media/mediaServices/e0f0b994-c4/streamingLocators/4f057f4c-3138-442d-a"; 19048Requests[3466].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19049Requests[3466].Request.Path = "/subscriptions/0724475b-6cef-/resourceGroups/be400e3b-4589-405/providers/Microsoft.Media/mediaServices/dab901a4-1a/streamingLocators/e6ebdf85-e020-4da3-8"; 19052Requests[3467].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19053Requests[3467].Request.Path = "/subscriptions/a1cc61ad-b4a5-/resourceGroups/6c64ae08-62c7-4cd/providers/Microsoft.Media/mediaServices/6c3bbb85-b7/streamingLocators/58c86d08-773d-49f1-9"; 19056Requests[3468].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19057Requests[3468].Request.Path = "/subscriptions/f33c929d-8374-/resourceGroups/2b1f2831-bde1-438/providers/Microsoft.Media/mediaServices/7841d2e4-7b/streamingPolicies/819544ba-0f0d-4d61-"; 19060Requests[3469].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19061Requests[3469].Request.Path = "/subscriptions/0e246b2e-5a5b-/resourceGroups/d6e9b20f-5f05-492/providers/Microsoft.Media/mediaServices/23a8ef34-cf/streamingPolicies/1a311120-ac7f-49ac-"; 19064Requests[3470].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19065Requests[3470].Request.Path = "/subscriptions/ee21fcef-6d6c-/resourceGroups/19d13cc9-4f4f-430/providers/Microsoft.Media/mediaServices/89979045-ce/streamingPolicies/ad4846f1-6292-4f23-"; 19068Requests[3471].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19069Requests[3471].Request.Path = "/subscriptions/8e152d6a-a8ef-/resourceGroups/a6a4ae7b-2ba0-4a0/providers/Microsoft.Media/mediaServices/281f2511-4d/transforms/2ddf13b1-5d1c"; 19072Requests[3472].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19073Requests[3472].Request.Path = "/subscriptions/a738e7b6-5c24-/resourceGroups/ff6f8f79-6d91-48e/providers/Microsoft.Media/mediaServices/ffad459c-fb/transforms/74b0f4ec-e2b2"; 19076Requests[3473].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19077Requests[3473].Request.Path = "/subscriptions/29032d00-bd97-/resourceGroups/70eed3bf-d608-446/providers/Microsoft.Media/mediaServices/82e5fdc5-28/transforms/e8dd47a9-f6b2"; 19080Requests[3474].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19081Requests[3474].Request.Path = "/subscriptions/cae4330a-c2db-/resourceGroups/e5b692e6-9d4e-4d4/providers/Microsoft.Media/mediaServices/940bed30-f0/transforms/b1a4a952-ec2f"; 19084Requests[3475].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19085Requests[3475].Request.Path = "/subscriptions/b1cde871-d53f-/resourceGroups/cb23be53-b3ec-4cf/providers/Microsoft.Migrate/projects/6a04db49-0d/groups/8310a8a8-"; 19088Requests[3476].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19089Requests[3476].Request.Path = "/subscriptions/69e31c17-a1dd-/resourceGroups/96948bf6-8042-460/providers/Microsoft.Migrate/projects/5fe2908d-3f/groups/af6d0b61-"; 19092Requests[3477].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19093Requests[3477].Request.Path = "/subscriptions/0fede060-c092-/resourceGroups/889e957a-12af-450/providers/Microsoft.Migrate/projects/0b6d2ea8-6f/groups/cc09f2a0-"; 19096Requests[3478].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19097Requests[3478].Request.Path = "/subscriptions/d5b448b2-fe13-/resourceGroups/3d43c187-84c8-438/providers/Microsoft.Migrate/projects/9fddb64a-f3/machines/da76e210-88"; 19100Requests[3479].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19101Requests[3479].Request.Path = "/subscriptions/66b629db-8bb7-/resourceGroups/6ab07d6e-d430-498/providers/Microsoft.Network/expressRouteCircuits/a6e42d3a-8f/authorizations/5382a1f2-d735-496"; 19104Requests[3480].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19105Requests[3480].Request.Path = "/subscriptions/19d6eacf-828d-/resourceGroups/e95c5dd2-f1db-449/providers/Microsoft.Network/expressRouteCircuits/653b6e58-2f/authorizations/8d5e4209-95b0-44e"; 19108Requests[3481].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19109Requests[3481].Request.Path = "/subscriptions/8b99a4d9-9927-/resourceGroups/66fa6cab-4016-4ef/providers/Microsoft.Network/expressRouteCircuits/7b047da0-7f/authorizations/81aaaf8a-7a2d-4fa"; 19112Requests[3482].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19113Requests[3482].Request.Path = "/subscriptions/257048b4-9ee5-/resourceGroups/913860d6-5fa2-4cd/providers/Microsoft.Network/expressRouteCircuits/2a7ba91e-65/peerings/9b2e7641-4e"; 19116Requests[3483].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19117Requests[3483].Request.Path = "/subscriptions/03ce3505-de9f-/resourceGroups/45ea07df-d01a-4de/providers/Microsoft.Network/expressRouteCircuits/78de00a7-7b/peerings/825d05ea-97"; 19120Requests[3484].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19121Requests[3484].Request.Path = "/subscriptions/50fce6bf-0405-/resourceGroups/089d2eae-e217-4ee/providers/Microsoft.Network/expressRouteCircuits/04227265-a0/peerings/1414f54f-f2"; 19124Requests[3485].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19125Requests[3485].Request.Path = "/subscriptions/3cae6b34-754a-/resourceGroups/96ec70cf-e66d-44e/providers/Microsoft.Network/expressRouteCrossConnections/04d2ebd6-2352-464c-/peerings/8b8b5ada-e2"; 19128Requests[3486].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19129Requests[3486].Request.Path = "/subscriptions/b0b15d0e-3f77-/resourceGroups/4b596d96-7d88-466/providers/Microsoft.Network/expressRouteCrossConnections/2d1c3c49-d9ef-4ad6-/peerings/4973736a-31"; 19132Requests[3487].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19133Requests[3487].Request.Path = "/subscriptions/100cd908-a6c8-/resourceGroups/05900e9d-03fa-45e/providers/Microsoft.Network/expressRouteCrossConnections/af306fae-5ab8-4e01-/peerings/73d1e4d5-a8"; 19136Requests[3488].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19137Requests[3488].Request.Path = "/subscriptions/d15b397f-87e7-/resourceGroups/e53b121d-e898-461/providers/Microsoft.Network/loadBalancers/657ea4b9-80bc-4d/backendAddressPools/845b9bd4-eb60-4efd-a25"; 19140Requests[3489].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19141Requests[3489].Request.Path = "/subscriptions/5eadf865-50fe-/resourceGroups/56ed28c1-4446-4be/providers/Microsoft.Network/loadBalancers/6d45e820-e9f3-44/frontendIPConfigurations/4d2c7fae-49c2-43be-b51a-ba0"; 19144Requests[3490].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19145Requests[3490].Request.Path = "/subscriptions/92fed8da-a027-/resourceGroups/cf9329e0-acc4-40c/providers/Microsoft.Network/loadBalancers/9149b402-b735-49/inboundNatRules/05407719-0ced-440e"; 19148Requests[3491].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19149Requests[3491].Request.Path = "/subscriptions/e7cbb2bc-f673-/resourceGroups/c5e12e47-ecc3-428/providers/Microsoft.Network/loadBalancers/24a32522-8bce-4b/inboundNatRules/44e2be43-e8c5-4a7d"; 19152Requests[3492].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19153Requests[3492].Request.Path = "/subscriptions/87a6f75a-4edb-/resourceGroups/4f2a16dd-59de-436/providers/Microsoft.Network/loadBalancers/20705bb8-9340-47/inboundNatRules/077940ae-6d04-47d7"; 19156Requests[3493].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19157Requests[3493].Request.Path = "/subscriptions/539ecc95-3fd8-/resourceGroups/cc362dbe-3e8d-475/providers/Microsoft.Network/loadBalancers/993ec159-315f-40/loadBalancingRules/a2814eff-c5cb-4f77-9d"; 19160Requests[3494].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19161Requests[3494].Request.Path = "/subscriptions/49548392-8520-/resourceGroups/8f88c160-0718-4aa/providers/Microsoft.Network/loadBalancers/83ca8776-b035-4f/probes/e17a5b15-"; 19164Requests[3495].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19165Requests[3495].Request.Path = "/subscriptions/ae9e6ad1-39a3-/resourceGroups/6312cebc-0617-4cd/providers/Microsoft.Network/networkInterfaces/c13bc402-5ad7-42fe-9/ipConfigurations/2cc4b5b9-c51c-4587-"; 19168Requests[3496].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19169Requests[3496].Request.Path = "/subscriptions/25352ebf-30d2-/resourceGroups/566b5f1c-c7e6-4da/providers/Microsoft.Network/networkSecurityGroups/87e41767-6fab-4ac7-a5a5-/defaultSecurityRules/5e871e30-467c-45f2-8606"; 19172Requests[3497].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19173Requests[3497].Request.Path = "/subscriptions/663da4a5-c53e-/resourceGroups/1c16b27e-bee4-4c6/providers/Microsoft.Network/networkSecurityGroups/b9fa6247-e969-4b15-91f1-/securityRules/cad39ae6-638c-40"; 19176Requests[3498].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19177Requests[3498].Request.Path = "/subscriptions/7b2c1d21-0842-/resourceGroups/14e9a315-9d85-492/providers/Microsoft.Network/networkSecurityGroups/eefa68cd-49b8-493f-bc82-/securityRules/c3020b27-97c7-4d"; 19180Requests[3499].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19181Requests[3499].Request.Path = "/subscriptions/74ad4561-642e-/resourceGroups/548e10e6-21ef-48d/providers/Microsoft.Network/networkSecurityGroups/cdaa2261-9a27-4164-bfd3-/securityRules/f755a7fe-150b-40"; 19184Requests[3500].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19185Requests[3500].Request.Path = "/subscriptions/d5018188-f3da-/resourceGroups/34b1e79e-f8e8-4e7/providers/Microsoft.Network/networkWatchers/7ae3cdd7-6d63-436f/connectionMonitors/1d4b8c23-8f45-4228-b2"; 19188Requests[3501].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19189Requests[3501].Request.Path = "/subscriptions/812cbacc-9dae-/resourceGroups/113810f4-23a8-456/providers/Microsoft.Network/networkWatchers/a3b85687-2393-41f5/connectionMonitors/e41d6e08-0612-4e2c-b8"; 19192Requests[3502].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19193Requests[3502].Request.Path = "/subscriptions/4c7b9ef9-d467-/resourceGroups/229eaf93-33ca-45f/providers/Microsoft.Network/networkWatchers/71cf04bf-e6c7-41b3/connectionMonitors/7e252119-8d6d-4329-95"; 19196Requests[3503].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19197Requests[3503].Request.Path = "/subscriptions/e8ee2592-fb52-/resourceGroups/bfec8c7a-9255-4cd/providers/Microsoft.Network/networkWatchers/86b3a912-5557-4d50/packetCaptures/4d7fa849-1aa6-4a4"; 19200Requests[3504].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19201Requests[3504].Request.Path = "/subscriptions/3f8771fc-cf9c-/resourceGroups/51ea5769-7963-4c9/providers/Microsoft.Network/networkWatchers/e7ed7998-a975-4b66/packetCaptures/cc2d15e0-6167-46d"; 19204Requests[3505].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19205Requests[3505].Request.Path = "/subscriptions/1c397139-f8b4-/resourceGroups/33350aff-f876-46c/providers/Microsoft.Network/networkWatchers/3cc2f582-a877-4c81/packetCaptures/c932b2cc-752e-479"; 19208Requests[3506].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19209Requests[3506].Request.Path = "/subscriptions/c4ceeee2-499b-/resourceGroups/1b13683e-a54b-4ef/providers/Microsoft.Network/routeFilters/1a6512dc-7b59-4/routeFilterRules/c5447648"; 19212Requests[3507].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19213Requests[3507].Request.Path = "/subscriptions/4b5b50e5-71a8-/resourceGroups/8a7b1f6b-e319-411/providers/Microsoft.Network/routeFilters/965ece29-30a0-4/routeFilterRules/bb43553d"; 19216Requests[3508].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19217Requests[3508].Request.Path = "/subscriptions/e85664f7-cb4d-/resourceGroups/de439e56-c194-47d/providers/Microsoft.Network/routeFilters/49ebd842-df69-4/routeFilterRules/485fb1e2"; 19220Requests[3509].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19221Requests[3509].Request.Path = "/subscriptions/ca69deed-9837-/resourceGroups/97054c49-9288-42f/providers/Microsoft.Network/routeFilters/af54ef10-8a30-4/routeFilterRules/ad10f706"; 19224Requests[3510].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19225Requests[3510].Request.Path = "/subscriptions/c4ce9705-3a5c-/resourceGroups/ee0861c9-1b4c-4a9/providers/Microsoft.Network/routeTables/74a90a65-c3ee-/routes/d8de5d25-"; 19228Requests[3511].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19229Requests[3511].Request.Path = "/subscriptions/6b45e9b3-7a2e-/resourceGroups/6b5de833-7585-427/providers/Microsoft.Network/routeTables/70dc046a-7562-/routes/eebb21d4-"; 19232Requests[3512].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19233Requests[3512].Request.Path = "/subscriptions/e5d69f04-3056-/resourceGroups/7d90d3d4-5f57-42f/providers/Microsoft.Network/routeTables/904f088c-a724-/routes/dc5d32f4-"; 19236Requests[3513].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19237Requests[3513].Request.Path = "/subscriptions/e6c5c6a0-8bc3-/resourceGroups/cd559ce5-1478-4ef/providers/Microsoft.Network/trafficmanagerprofiles/6844464f-42/heatMaps/e290e83f-81"; 19240Requests[3514].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19241Requests[3514].Request.Path = "/subscriptions/9f8c1c68-c62f-/resourceGroups/fb3c9fd1-0aed-475/providers/Microsoft.Network/virtualNetworks/99492edd-674a-4396/subnets/dd42e3ce-5"; 19244Requests[3515].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19245Requests[3515].Request.Path = "/subscriptions/9ec94caa-1fa2-/resourceGroups/fa59ad3e-76a6-475/providers/Microsoft.Network/virtualNetworks/d2cbf431-aebf-465a/subnets/e165129d-7"; 19248Requests[3516].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19249Requests[3516].Request.Path = "/subscriptions/84802f5d-0e20-/resourceGroups/46d89d5a-30c3-42e/providers/Microsoft.Network/virtualNetworks/94b2f236-e103-4fd5/subnets/eda77098-4"; 19252Requests[3517].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19253Requests[3517].Request.Path = "/subscriptions/5daf30dd-c1c2-/resourceGroups/a36200e0-21df-40b/providers/Microsoft.Network/virtualNetworks/7291513a-2bbb-4ac9/virtualNetworkPeerings/1eeab136-f13b-4e12-9165-f"; 19256Requests[3518].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19257Requests[3518].Request.Path = "/subscriptions/5979864a-1e0e-/resourceGroups/35760caf-0ba4-4d9/providers/Microsoft.Network/virtualNetworks/65a1e7d2-f6db-486f/virtualNetworkPeerings/eb88034e-de66-4603-8068-d"; 19260Requests[3519].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19261Requests[3519].Request.Path = "/subscriptions/3bc50e43-56f8-/resourceGroups/2e8e58a1-ccfe-40c/providers/Microsoft.Network/virtualNetworks/01d7ba2d-4f50-4325/virtualNetworkPeerings/2d7b59bb-44ae-4d45-89c1-e"; 19264Requests[3520].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19265Requests[3520].Request.Path = "/subscriptions/d0e51f0f-e341-/resourceGroups/7015988f-c967-46d/providers/Microsoft.NotificationHubs/namespaces/5509cf7b-bbc2/AuthorizationRules/fa601838-c88b-4d3e-8a"; 19268Requests[3521].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19269Requests[3521].Request.Path = "/subscriptions/ffe46171-0688-/resourceGroups/6d371afb-1342-4a9/providers/Microsoft.NotificationHubs/namespaces/573505a4-bfc1/AuthorizationRules/7e6cad8e-f67d-4a00-9e"; 19272Requests[3522].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19273Requests[3522].Request.Path = "/subscriptions/6bb218d6-ae5e-/resourceGroups/612529f0-6c64-4b4/providers/Microsoft.NotificationHubs/namespaces/54d977a2-d122/AuthorizationRules/ec3e663b-ec3e-492a-a0"; 19276Requests[3523].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19277Requests[3523].Request.Path = "/subscriptions/3d8907b3-7f3a-/resourceGroups/0c6d05eb-eb56-491/providers/Microsoft.NotificationHubs/namespaces/8084355a-2f16/AuthorizationRules/fa175406-7bcd-4a52-a1"; 19280Requests[3524].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19281Requests[3524].Request.Path = "/subscriptions/0b663048-b011-/resourceGroups/51ead463-7a5c-426/providers/Microsoft.NotificationHubs/namespaces/510666c2-0757/notificationHubs/497c6769-b883-442d-"; 19284Requests[3525].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19285Requests[3525].Request.Path = "/subscriptions/68cd1e09-d086-/resourceGroups/df90658b-9a4c-4f7/providers/Microsoft.NotificationHubs/namespaces/c30c7689-8344/notificationHubs/7d56aac1-c1ce-4741-"; 19288Requests[3526].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19289Requests[3526].Request.Path = "/subscriptions/8e525449-ae5d-/resourceGroups/14f47cc7-e239-466/providers/Microsoft.NotificationHubs/namespaces/cd3315c9-566a/notificationHubs/2fc36085-358e-4441-"; 19292Requests[3527].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19293Requests[3527].Request.Path = "/subscriptions/710ee48c-ed7f-/resourcegroups/e61a06e0-5941-43f/providers/Microsoft.OperationalInsights/workspaces/bc28940f-1dc8/dataSources/e713d136-7fb9-"; 19296Requests[3528].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19297Requests[3528].Request.Path = "/subscriptions/89c230c4-f669-/resourcegroups/06be5007-4c2e-43d/providers/Microsoft.OperationalInsights/workspaces/1c68c98e-5945/dataSources/81c7ea20-d414-"; 19300Requests[3529].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19301Requests[3529].Request.Path = "/subscriptions/625a8b49-a0cb-/resourcegroups/620ff9ef-abad-4fd/providers/Microsoft.OperationalInsights/workspaces/dc5c6816-19d4/dataSources/720c06e3-d2f6-"; 19304Requests[3530].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19305Requests[3530].Request.Path = "/subscriptions/4ad9920b-4a5a-/resourcegroups/89973266-5e39-4b5/providers/Microsoft.OperationalInsights/workspaces/4909c312-dbeb/linkedServices/0768e184-337d-40c"; 19308Requests[3531].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19309Requests[3531].Request.Path = "/subscriptions/a42221bc-6939-/resourcegroups/eea66522-3c8f-423/providers/Microsoft.OperationalInsights/workspaces/f026dd23-7b03/linkedServices/99a350dc-1018-4ff"; 19312Requests[3532].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19313Requests[3532].Request.Path = "/subscriptions/854eef44-406c-/resourcegroups/cecb243c-ffae-40d/providers/Microsoft.OperationalInsights/workspaces/1b373304-b97f/linkedServices/e0fcc4c2-e01f-4a9"; 19316Requests[3533].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19317Requests[3533].Request.Path = "/subscriptions/e75eee98-b6e1-/resourcegroups/63bd8925-1692-4d3/providers/Microsoft.OperationalInsights/workspaces/44911d4b-fe80/savedSearches/e769a61f-99a8-4"; 19320Requests[3534].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19321Requests[3534].Request.Path = "/subscriptions/5d38ef6f-01e3-/resourcegroups/e67da77a-ef46-419/providers/Microsoft.OperationalInsights/workspaces/e98b50c9-4b1b/savedSearches/61efa1ad-0f34-4"; 19324Requests[3535].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19325Requests[3535].Request.Path = "/subscriptions/7e186464-2492-/resourcegroups/6808b2d6-4fc8-4a1/providers/Microsoft.OperationalInsights/workspaces/65ba8286-41e6/savedSearches/42742120-5a4d-4"; 19328Requests[3536].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19329Requests[3536].Request.Path = "/subscriptions/0711c343-9d56-/resourcegroups/6b963c83-5dd9-463/providers/Microsoft.OperationalInsights/workspaces/c2fc1d95-a208/search/a2d68"; 19332Requests[3537].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19333Requests[3537].Request.Path = "/subscriptions/b5e1fd8b-477c-/resourcegroups/a4184d19-140c-4a2/providers/Microsoft.OperationalInsights/workspaces/d1e19421-328b/storageInsightConfigs/bc4542e7-52f7-420f"; 19336Requests[3538].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19337Requests[3538].Request.Path = "/subscriptions/180b27eb-c0ef-/resourcegroups/be736599-edd9-4af/providers/Microsoft.OperationalInsights/workspaces/f4d97e63-0d72/storageInsightConfigs/e5dbdbf3-5a52-4766"; 19340Requests[3539].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19341Requests[3539].Request.Path = "/subscriptions/976f60f0-7ec5-/resourcegroups/d9fbb8af-ee01-48c/providers/Microsoft.OperationalInsights/workspaces/e113c199-6720/storageInsightConfigs/19535fab-363f-45c2"; 19344Requests[3540].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19345Requests[3540].Request.Path = "/Subscriptions/4c290d24-be40-/resourceGroups/698f0b3b-a8d2-4ff/providers/Microsoft.RecoveryServices/vaults/f7387631-1ac/replicationAlertSettings/382c300d-0536-4f"; 19348Requests[3541].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19349Requests[3541].Request.Path = "/Subscriptions/d65c917d-1573-/resourceGroups/5da6d08f-a858-433/providers/Microsoft.RecoveryServices/vaults/57b4ae74-499/replicationAlertSettings/a3506944-14c7-42"; 19352Requests[3542].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19353Requests[3542].Request.Path = "/Subscriptions/42beeaa2-095a-/resourceGroups/97b6e781-6091-480/providers/Microsoft.RecoveryServices/vaults/889e9029-909/replicationEvents/680ef85e-"; 19356Requests[3543].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19357Requests[3543].Request.Path = "/Subscriptions/bde811a2-f54b-/resourceGroups/1ba0c0cd-6e5b-40e/providers/Microsoft.RecoveryServices/vaults/1592acdf-b31/replicationFabrics/d0e1cfc9-8"; 19360Requests[3544].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19361Requests[3544].Request.Path = "/Subscriptions/f6bb761d-e13e-/resourceGroups/e5ea48fb-f05e-4dc/providers/Microsoft.RecoveryServices/vaults/0ad4de85-b03/replicationFabrics/720696fa-7"; 19364Requests[3545].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19365Requests[3545].Request.Path = "/Subscriptions/4085e236-a93e-/resourceGroups/c3ad4b7f-9a5b-4e2/providers/Microsoft.RecoveryServices/vaults/d1d0adce-9a4/replicationFabrics/f39b8c82-5"; 19368Requests[3546].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19369Requests[3546].Request.Path = "/Subscriptions/f26f4491-7b65-/resourceGroups/a98999ad-e073-4c2/providers/Microsoft.RecoveryServices/vaults/85398f53-159/replicationJobs/2167f3f"; 19372Requests[3547].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19373Requests[3547].Request.Path = "/Subscriptions/b6b633ad-3bc9-/resourceGroups/7e9c9cb2-fc57-4b9/providers/Microsoft.RecoveryServices/vaults/ab02f798-b5b/replicationPolicies/951e6f56-f"; 19376Requests[3548].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19377Requests[3548].Request.Path = "/Subscriptions/02b3cb39-15bc-/resourceGroups/5729d5e3-865c-4ae/providers/Microsoft.RecoveryServices/vaults/e4823c9e-7eb/replicationPolicies/a0447693-8"; 19380Requests[3549].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19381Requests[3549].Request.Path = "/Subscriptions/80993d9c-8aac-/resourceGroups/7610c0a5-63fc-422/providers/Microsoft.RecoveryServices/vaults/6add19a4-364/replicationPolicies/71d4364a-4"; 19384Requests[3550].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19385Requests[3550].Request.Path = "/Subscriptions/dd2e523d-53c0-/resourceGroups/5dea2965-2f73-4f6/providers/Microsoft.RecoveryServices/vaults/708c80ee-6e3/replicationPolicies/3d85215b-6"; 19388Requests[3551].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19389Requests[3551].Request.Path = "/Subscriptions/8be1698b-9633-/resourceGroups/b8af0288-46ba-44a/providers/Microsoft.RecoveryServices/vaults/9edff46d-605/replicationRecoveryPlans/2b750c60-3466-4a"; 19392Requests[3552].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19393Requests[3552].Request.Path = "/Subscriptions/6acadaf2-79e7-/resourceGroups/860fedc3-3e5d-417/providers/Microsoft.RecoveryServices/vaults/f3810dca-88b/replicationRecoveryPlans/dcd20ca9-3112-45"; 19396Requests[3553].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19397Requests[3553].Request.Path = "/Subscriptions/1bbbbd66-166f-/resourceGroups/2a0f7cd7-4813-42a/providers/Microsoft.RecoveryServices/vaults/4c4e97f4-5ca/replicationRecoveryPlans/f1b3e3a6-4995-4b"; 19400Requests[3554].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19401Requests[3554].Request.Path = "/Subscriptions/3216b4a6-2e5c-/resourceGroups/c12d1ebf-6196-4c7/providers/Microsoft.RecoveryServices/vaults/361df9be-59f/replicationRecoveryPlans/3d89e514-9d5e-4f"; 19404Requests[3555].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19405Requests[3555].Request.Path = "/Subscriptions/efdacb8d-d8dd-/resourceGroups/24bce819-ffd6-4a3/providers/Microsoft.RecoveryServices/vaults/594eb53b-/backupEngines/3a910229-2d1e-4b"; 19408Requests[3556].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19409Requests[3556].Request.Path = "/Subscriptions/de4f7f5b-5df4-/resourceGroups/e2d318db-443b-486/providers/Microsoft.RecoveryServices/vaults/f6c55619-/backupJobs/c0af570"; 19412Requests[3557].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19413Requests[3557].Request.Path = "/Subscriptions/5c66b8ad-4974-/resourceGroups/8bd1f45e-2891-410/providers/Microsoft.RecoveryServices/vaults/8c50a2ad-/backupOperationResults/382690b7-81"; 19416Requests[3558].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19417Requests[3558].Request.Path = "/Subscriptions/ad150d44-b4a4-/resourceGroups/128d5b84-98af-4c5/providers/Microsoft.RecoveryServices/vaults/7026290a-/backupOperations/438fd24c-33"; 19420Requests[3559].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19421Requests[3559].Request.Path = "/Subscriptions/06a188e2-2b05-/resourceGroups/40421757-59d9-422/providers/Microsoft.RecoveryServices/vaults/d7935617-/backupPolicies/d0c38b89-f"; 19424Requests[3560].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19425Requests[3560].Request.Path = "/Subscriptions/a81e9878-7775-/resourceGroups/479edeee-719a-462/providers/Microsoft.RecoveryServices/vaults/0cf46f6d-/backupPolicies/8e435166-b"; 19428Requests[3561].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19429Requests[3561].Request.Path = "/Subscriptions/17beb2f4-bd4a-/resourceGroups/af0395bb-c69f-491/providers/Microsoft.RecoveryServices/vaults/9e25151f-/backupPolicies/96962300-8"; 19432Requests[3562].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19433Requests[3562].Request.Path = "/Subscriptions/5e1766e7-781d-/resourceGroups/9b55e6cb-f4b5-474/providers/Microsoft.RecoveryServices/vaults/09251426-/certificates/3f5b3574-2496-4"; 19436Requests[3563].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19437Requests[3563].Request.Path = "/subscriptions/341f3391-5a75-/resourceGroups/eb57e067-d906-45f/providers/Microsoft.RecoveryServices/vaults/896ebe23-/registeredIdentities/35011f31-688"; 19440Requests[3564].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19441Requests[3564].Request.Path = "/subscriptions/afa0aeab-834a-/resourceGroups/bd76a471-adbc-4fe/providers/Microsoft.Relay/namespaces/652a1ddf-29eb/authorizationRules/b8d8a368-973e-4667-bc"; 19444Requests[3565].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19445Requests[3565].Request.Path = "/subscriptions/84a63d17-0c4f-/resourceGroups/c40e777f-d4af-4d7/providers/Microsoft.Relay/namespaces/db386569-f8da/authorizationRules/b5673846-5582-4827-a3"; 19448Requests[3566].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19449Requests[3566].Request.Path = "/subscriptions/946d27a0-91b3-/resourceGroups/6d45b9b1-dc29-448/providers/Microsoft.Relay/namespaces/a8abf9b6-46a4/authorizationRules/880458e5-9ae8-4cd9-9d"; 19452Requests[3567].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19453Requests[3567].Request.Path = "/subscriptions/5d843d54-d376-/resourceGroups/558dffa3-2610-455/providers/Microsoft.Relay/namespaces/a983cdf7-21c9/AuthorizationRules/1ce187b0-6eba-4acc-8f"; 19456Requests[3568].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19457Requests[3568].Request.Path = "/subscriptions/b27e94a2-3d79-/resourceGroups/42bf3f7e-3ea0-46b/providers/Microsoft.Relay/namespaces/cc33fdce-7f44/hybridConnections/e712cfda-6198-4d56-a"; 19460Requests[3569].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19461Requests[3569].Request.Path = "/subscriptions/e358184f-5e25-/resourceGroups/5bb5c3f1-7948-444/providers/Microsoft.Relay/namespaces/4d268b06-2975/hybridConnections/756be23e-a201-4aea-9"; 19464Requests[3570].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19465Requests[3570].Request.Path = "/subscriptions/39218c84-0254-/resourceGroups/fff6ff11-adba-4ed/providers/Microsoft.Relay/namespaces/e3532a03-142d/hybridConnections/168e163c-ff9c-45e0-8"; 19468Requests[3571].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19469Requests[3571].Request.Path = "/subscriptions/cb2640a6-7903-/resourceGroups/7144f497-93d3-429/providers/Microsoft.Relay/namespaces/e9e04427-c3bd/wcfRelays/d8395d8b-"; 19472Requests[3572].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19473Requests[3572].Request.Path = "/subscriptions/8a71dfb9-5712-/resourceGroups/41961868-f1c4-41f/providers/Microsoft.Relay/namespaces/55d4ce48-e669/wcfRelays/9f2bcf06-"; 19476Requests[3573].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19477Requests[3573].Request.Path = "/subscriptions/0d9f7526-e658-/resourceGroups/86a55245-03f2-429/providers/Microsoft.Relay/namespaces/d8e50b36-e481/wcfRelays/a26ef109-"; 19480Requests[3574].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19481Requests[3574].Request.Path = "/subscriptions/49ccb59e-6417-/resourceGroups/ef065643-f9ac-416/providers/Microsoft.Scheduler/jobCollections/ad10abb9-0078-49c/jobs/a5be877"; 19484Requests[3575].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19485Requests[3575].Request.Path = "/subscriptions/a945db49-974d-/resourceGroups/195d7562-3fbe-4f0/providers/Microsoft.Scheduler/jobCollections/8d3219a5-6956-47e/jobs/121ca5d"; 19488Requests[3576].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19489Requests[3576].Request.Path = "/subscriptions/70fd58c9-cd6f-/resourceGroups/d1a18956-b8f3-498/providers/Microsoft.Scheduler/jobCollections/0d0c6ab2-0530-4ca/jobs/b7afbed"; 19492Requests[3577].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19493Requests[3577].Request.Path = "/subscriptions/aab3f90b-83dd-/resourceGroups/dbc49cd3-b1b0-48f/providers/Microsoft.Scheduler/jobCollections/e5121cb9-69f2-479/jobs/cab9fcd"; 19496Requests[3578].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19497Requests[3578].Request.Path = "/subscriptions/b9f66040-e1bd-/resourceGroups/5328484a-9d53-40a/providers/Microsoft.Search/searchServices/a3332744-f3db-471/createQueryKey/ed05b"; 19500Requests[3579].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19501Requests[3579].Request.Path = "/subscriptions/1a560876-e35a-/resourceGroups/2ea10e5a-445d-4b2/providers/Microsoft.Search/searchServices/45ab4008-d21a-4da/deleteQueryKey/1c966"; 19504Requests[3580].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19505Requests[3580].Request.Path = "/subscriptions/df4af081-af25-/resourceGroups/e3c98ba4-4471-45c/providers/Microsoft.Search/searchServices/90365768-5f05-4f5/regenerateAdminKey/6dc4366"; 19508Requests[3581].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19509Requests[3581].Request.Path = "/subscriptions/4f3f5327-bc73-/resourceGroups/9e736c76-9cca-4f0/providers/Microsoft.Security/locations/24fd2d57-a0/alerts/1e8511ae-"; 19512Requests[3582].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19513Requests[3582].Request.Path = "/subscriptions/59350987-c1d7-/resourceGroups/7f774d6d-05de-4b6/providers/Microsoft.Security/locations/045adeb9-16/discoveredSecuritySolutions/40d6e5ed-e1a5-47c2-8dec-996357"; 19516Requests[3583].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19517Requests[3583].Request.Path = "/subscriptions/bde5b1bb-da11-/resourceGroups/f058e130-bd88-460/providers/Microsoft.Security/locations/9af6ecd8-62/ExternalSecuritySolutions/4c9b1aa8-04ed-4320-ba9e-4665c"; 19520Requests[3584].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19521Requests[3584].Request.Path = "/subscriptions/9c051a76-8ce4-/resourceGroups/9203e62b-395e-4da/providers/Microsoft.Security/locations/719914da-3f/jitNetworkAccessPolicies/015091a4-a630-41c5-a821-b3"; 19524Requests[3585].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19525Requests[3585].Request.Path = "/subscriptions/c306798d-1389-/resourceGroups/e4c1c367-b8c3-443/providers/Microsoft.Security/locations/ce012f39-86/jitNetworkAccessPolicies/69c7d0d1-d5f0-44b3-8d12-c5"; 19528Requests[3586].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19529Requests[3586].Request.Path = "/subscriptions/9a06bcc7-4053-/resourceGroups/99fd5ccf-8eb4-419/providers/Microsoft.Security/locations/586de508-7a/jitNetworkAccessPolicies/59a8088c-b62c-4c9b-9b4f-91"; 19532Requests[3587].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19533Requests[3587].Request.Path = "/subscriptions/df00b862-60b6-/resourceGroups/59fff4ee-414a-416/providers/Microsoft.Security/locations/40fc0870-1e/tasks/cf42cb55"; 19536Requests[3588].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19537Requests[3588].Request.Path = "/subscriptions/ceadc42b-b4b8-/resourceGroups/a5992715-a78b-4a1/providers/Microsoft.ServerManagement/nodes/4a474d74/sessions/a9dda03"; 19540Requests[3589].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19541Requests[3589].Request.Path = "/subscriptions/1fe3f0ff-9fb7-/resourceGroups/3f98e429-cc0e-442/providers/Microsoft.ServerManagement/nodes/966455cd/sessions/337d144"; 19544Requests[3590].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19545Requests[3590].Request.Path = "/subscriptions/1b4abc04-213b-/resourceGroups/f9717435-2a41-4eb/providers/Microsoft.ServerManagement/nodes/136d2e76/sessions/4982171"; 19548Requests[3591].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19549Requests[3591].Request.Path = "/subscriptions/1cca3ed1-6a93-/resourceGroups/6dd75fc1-0a14-4f8/providers/Microsoft.ServiceBus/namespaces/216b8f97-29c0/AuthorizationRules/e45ca7b5-57f1-4202-a7"; 19552Requests[3592].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19553Requests[3592].Request.Path = "/subscriptions/b0270832-57d6-/resourceGroups/0a5cdccb-afb3-447/providers/Microsoft.ServiceBus/namespaces/c4e39f9e-0fef/AuthorizationRules/5705da5b-dc9c-42f0-86"; 19556Requests[3593].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19557Requests[3593].Request.Path = "/subscriptions/c9155b32-3054-/resourceGroups/064149d8-f542-482/providers/Microsoft.ServiceBus/namespaces/03d25a39-563b/AuthorizationRules/a96da34e-28a6-4cbe-85"; 19560Requests[3594].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19561Requests[3594].Request.Path = "/subscriptions/8b3f4538-d073-/resourceGroups/419a5c28-dd79-4db/providers/Microsoft.ServiceBus/namespaces/16216f23-c19b/AuthorizationRules/4907955a-7a4d-447e-a7"; 19564Requests[3595].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19565Requests[3595].Request.Path = "/subscriptions/e91cd07b-39d2-/resourceGroups/8032b272-897c-4bd/providers/Microsoft.ServiceBus/namespaces/59b39ef7-0bea/disasterRecoveryConfigs/25453"; 19568Requests[3596].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19569Requests[3596].Request.Path = "/subscriptions/5b58e621-8ad3-/resourceGroups/48d6e71f-5d64-42f/providers/Microsoft.ServiceBus/namespaces/d2a645bc-492d/disasterRecoveryConfigs/3e688"; 19572Requests[3597].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19573Requests[3597].Request.Path = "/subscriptions/fcab6a4a-e250-/resourceGroups/2b7d754c-667d-4f1/providers/Microsoft.ServiceBus/namespaces/9b53b9e4-cfa6/disasterRecoveryConfigs/5ceaa"; 19576Requests[3598].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19577Requests[3598].Request.Path = "/subscriptions/5a664d0d-6c32-/resourceGroups/7c10d9fa-eaa6-4b7/providers/Microsoft.ServiceBus/namespaces/a110839b-e7d5/migrationConfigurations/0c542530-5"; 19580Requests[3599].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19581Requests[3599].Request.Path = "/subscriptions/8c920654-b1ae-/resourceGroups/43beba9a-3309-41d/providers/Microsoft.ServiceBus/namespaces/c5ddf40a-e9eb/migrationConfigurations/b1f6ecdb-f"; 19584Requests[3600].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19585Requests[3600].Request.Path = "/subscriptions/bbb1be86-1ef9-/resourceGroups/ab9b0927-9c2f-45f/providers/Microsoft.ServiceBus/namespaces/f0d487bd-86c8/migrationConfigurations/ac9d0476-3"; 19588Requests[3601].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19589Requests[3601].Request.Path = "/subscriptions/bb093ba6-7192-/resourceGroups/afbb3b68-6dc9-441/providers/Microsoft.ServiceBus/namespaces/727666d6-9c5c/queues/0a91b761-"; 19592Requests[3602].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19593Requests[3602].Request.Path = "/subscriptions/b56bdbb3-da78-/resourceGroups/a9b0ccb0-b954-44d/providers/Microsoft.ServiceBus/namespaces/2fd7ab2f-51fd/queues/88e0cef5-"; 19596Requests[3603].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19597Requests[3603].Request.Path = "/subscriptions/c9446009-4ddc-/resourceGroups/eeed8376-80b6-412/providers/Microsoft.ServiceBus/namespaces/998220c6-3477/queues/66609b48-"; 19600Requests[3604].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19601Requests[3604].Request.Path = "/subscriptions/a772b83d-b6c7-/resourceGroups/141f0f6e-0be7-46c/providers/Microsoft.ServiceBus/namespaces/c9e65d53-42e8/topics/2fb8b097-"; 19604Requests[3605].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19605Requests[3605].Request.Path = "/subscriptions/bf97ddc8-e729-/resourceGroups/2bfa74f3-e406-484/providers/Microsoft.ServiceBus/namespaces/3a01c77f-0192/topics/99c96d74-"; 19608Requests[3606].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19609Requests[3606].Request.Path = "/subscriptions/763c747b-560b-/resourceGroups/c086ad3b-ce61-414/providers/Microsoft.ServiceBus/namespaces/04d61576-a4e5/topics/f39dbcf4-"; 19612Requests[3607].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19613Requests[3607].Request.Path = "/subscriptions/78f85495-0feb-/resourceGroups/3a3010a3-1f23-410/providers/Microsoft.ServiceFabric/clusters/e123c7e7-69/applications/2e0c19d3-5e56-4"; 19616Requests[3608].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19617Requests[3608].Request.Path = "/subscriptions/f292dbc8-3b07-/resourceGroups/57c34f72-4980-47f/providers/Microsoft.ServiceFabric/clusters/42be9cd7-94/applications/12cdcfd8-3e9f-4"; 19620Requests[3609].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19621Requests[3609].Request.Path = "/subscriptions/32a8b82b-b015-/resourceGroups/2a424666-429c-49e/providers/Microsoft.ServiceFabric/clusters/771517e2-bb/applications/d8a6bc5d-8474-4"; 19624Requests[3610].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19625Requests[3610].Request.Path = "/subscriptions/38dd114a-e79d-/resourceGroups/eecc7ef7-e44b-4b1/providers/Microsoft.ServiceFabric/clusters/e679a19c-d0/applications/bbdc3fe8-e2d4-4"; 19628Requests[3611].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19629Requests[3611].Request.Path = "/subscriptions/78c1e480-67e9-/resourceGroups/2e7e3cf0-8191-48a/providers/Microsoft.ServiceFabric/clusters/d04abb8f-83/applicationTypes/275e7132-5268-46b6-"; 19632Requests[3612].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19633Requests[3612].Request.Path = "/subscriptions/99991146-7888-/resourceGroups/8dc90734-28a4-44d/providers/Microsoft.ServiceFabric/clusters/51adaad8-0c/applicationTypes/27588c5a-dfc0-41f7-"; 19636Requests[3613].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19637Requests[3613].Request.Path = "/subscriptions/b1660710-3b01-/resourceGroups/78ac331a-fd2f-4e6/providers/Microsoft.ServiceFabric/clusters/13c769e7-2c/applicationTypes/fe2fc946-172f-492b-"; 19640Requests[3614].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19641Requests[3614].Request.Path = "/subscriptions/53936cc0-a23e-/resourceGroups/3b36a41e-5cde-45c/providers/Microsoft.Sql/locations/f05f2945-641/instanceFailoverGroups/c8f1f2d0-4f6a-44e"; 19644Requests[3615].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19645Requests[3615].Request.Path = "/subscriptions/73430bbc-3a23-/resourceGroups/086cf9b0-2245-47f/providers/Microsoft.Sql/locations/69d55bbd-e34/instanceFailoverGroups/43cf9c7c-85ff-467"; 19648Requests[3616].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19649Requests[3616].Request.Path = "/subscriptions/ca8e1224-8bab-/resourceGroups/9e231561-3c41-462/providers/Microsoft.Sql/locations/b94bcd99-6fe/instanceFailoverGroups/40408b8e-b96d-473"; 19652Requests[3617].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19653Requests[3617].Request.Path = "/subscriptions/fc1ff79b-be3b-/resourceGroups/7520b907-3425-4c1/providers/Microsoft.Sql/managedInstances/f6c83ff3-5189-4d62-/databases/b0a34872-ea4"; 19656Requests[3618].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19657Requests[3618].Request.Path = "/subscriptions/61078b3a-5778-/resourceGroups/54cc77fb-b958-4eb/providers/Microsoft.Sql/managedInstances/2aeb9a86-b203-40c6-/databases/cb8aa49c-7bd"; 19660Requests[3619].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19661Requests[3619].Request.Path = "/subscriptions/41aea38f-65ab-/resourceGroups/941c6486-3bfd-4cb/providers/Microsoft.Sql/managedInstances/9f2ec492-8ebe-4e31-/databases/c69cd4ef-e18"; 19664Requests[3620].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19665Requests[3620].Request.Path = "/subscriptions/6fa29189-7047-/resourceGroups/aed4ef3b-4ea9-451/providers/Microsoft.Sql/managedInstances/7026ef70-a6df-47ba-/databases/53b857da-e07"; 19668Requests[3621].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19669Requests[3621].Request.Path = "/subscriptions/a5efbd7b-19e0-/resourceGroups/3a402cfc-7f5b-458/providers/Microsoft.Sql/servers/53307d15-2/administrators/56bd6556-4d8d-46e"; 19672Requests[3622].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19673Requests[3622].Request.Path = "/subscriptions/96e69c52-482b-/resourceGroups/affb13c3-f4b9-4ba/providers/Microsoft.Sql/servers/cc78a68a-d/administrators/db1d2fac-dbbc-4d7"; 19676Requests[3623].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19677Requests[3623].Request.Path = "/subscriptions/7658e30b-132f-/resourceGroups/c3ca3345-4bf6-452/providers/Microsoft.Sql/servers/52003ba6-2/administrators/dab02be0-41ae-4c1"; 19680Requests[3624].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19681Requests[3624].Request.Path = "/subscriptions/97d179ff-c257-/resourceGroups/55f1802a-8a41-40a/providers/Microsoft.Sql/servers/1ce91983-0/advisors/72b956f6-c3"; 19684Requests[3625].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19685Requests[3625].Request.Path = "/subscriptions/46e3e2b1-c5a6-/resourceGroups/7bdc7c8b-3dbe-428/providers/Microsoft.Sql/servers/fb95cbe8-f/advisors/61313abd-72"; 19688Requests[3626].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19689Requests[3626].Request.Path = "/subscriptions/e2768db7-527f-/resourceGroups/ea10042e-03a9-4d3/providers/Microsoft.Sql/servers/2630bade-4/advisors/f59388b5-27"; 19692Requests[3627].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19693Requests[3627].Request.Path = "/subscriptions/28f12b5c-0767-/resourceGroups/8793c6aa-522b-419/providers/Microsoft.Sql/servers/73fd62a3-0/auditingPolicies/65357168-f9a0-4420-a6da"; 19696Requests[3628].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19697Requests[3628].Request.Path = "/subscriptions/8958d1eb-a557-/resourceGroups/c891c9a7-d417-462/providers/Microsoft.Sql/servers/614ef8e5-1/auditingPolicies/bea1612b-745e-4042-842a"; 19700Requests[3629].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19701Requests[3629].Request.Path = "/subscriptions/af1fcaf6-02c6-/resourceGroups/0c66bae2-9791-4fb/providers/Microsoft.Sql/servers/1bb48be4-9/backupLongTermRetentionVaults/593df173-8337-4f8a-9032-d84fa7d9"; 19704Requests[3630].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19705Requests[3630].Request.Path = "/subscriptions/a5b29161-0c6d-/resourceGroups/f78be39b-1cbf-44e/providers/Microsoft.Sql/servers/7823aece-a/backupLongTermRetentionVaults/fe795322-c3b3-4cf3-ab00-6fef4b3c"; 19708Requests[3631].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19709Requests[3631].Request.Path = "/subscriptions/3c82c3b6-d53a-/resourceGroups/b3a92e31-a33d-4f9/providers/Microsoft.Sql/servers/dc3f54f4-e/communicationLinks/9fb18fa1-4d1b-4b7b-97"; 19712Requests[3632].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19713Requests[3632].Request.Path = "/subscriptions/6f7ddbf4-2213-/resourceGroups/d9c92278-a39c-42d/providers/Microsoft.Sql/servers/54e5f231-0/communicationLinks/45f58af8-94de-4bf9-ae"; 19716Requests[3633].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19717Requests[3633].Request.Path = "/subscriptions/c7f659aa-e56f-/resourceGroups/8444f9d8-b118-441/providers/Microsoft.Sql/servers/9039a1c0-d/communicationLinks/f7039088-1cbd-4e10-82"; 19720Requests[3634].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19721Requests[3634].Request.Path = "/subscriptions/74fc0852-7975-/resourceGroups/c6a61b5b-f753-42f/providers/Microsoft.Sql/servers/a1a9ce5c-1/connectionPolicies/5924e074-b27d-4100-9"; 19724Requests[3635].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19725Requests[3635].Request.Path = "/subscriptions/5c430f86-df17-/resourceGroups/684ac433-50e9-48d/providers/Microsoft.Sql/servers/8dd38507-0/connectionPolicies/ce1b1db7-1cb4-420b-9"; 19728Requests[3636].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19729Requests[3636].Request.Path = "/subscriptions/1b470e22-b6c7-/resourceGroups/1c94e2cf-7faf-408/providers/Microsoft.Sql/servers/fe5f74fd-f/databases/0fae7977-a7c"; 19732Requests[3637].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19733Requests[3637].Request.Path = "/subscriptions/30703fa9-bb7b-/resourceGroups/eb90cfb1-9419-49a/providers/Microsoft.Sql/servers/d296fcb0-4/databases/ac1c1aa0-71e"; 19736Requests[3638].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19737Requests[3638].Request.Path = "/subscriptions/ad076480-200e-/resourceGroups/270680b0-6e03-435/providers/Microsoft.Sql/servers/00777c95-6/databases/2bc360d0-871"; 19740Requests[3639].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19741Requests[3639].Request.Path = "/subscriptions/5b0856c6-422b-/resourceGroups/aa0b7e4b-1061-48f/providers/Microsoft.Sql/servers/fc555022-8/databases/f27cdf49-9cf"; 19744Requests[3640].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19745Requests[3640].Request.Path = "/subscriptions/eeee3538-ece5-/resourceGroups/20eeee13-9375-487/providers/Microsoft.Sql/servers/45b86e10-8/disasterRecoveryConfiguration/9684f623-762a-4dae-885f-12d319540"; 19748Requests[3641].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19749Requests[3641].Request.Path = "/subscriptions/54b32210-21b8-/resourceGroups/391a35ed-288c-4b9/providers/Microsoft.Sql/servers/25ee6885-6/disasterRecoveryConfiguration/0b34f3ea-9505-4556-a359-284418cc2"; 19752Requests[3642].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19753Requests[3642].Request.Path = "/subscriptions/55163867-c648-/resourceGroups/aaac97a5-0730-417/providers/Microsoft.Sql/servers/ef8269d4-d/disasterRecoveryConfiguration/dcf3f629-d12b-4218-ac9c-167022d51"; 19756Requests[3643].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19757Requests[3643].Request.Path = "/subscriptions/17e23a5a-3b4b-/resourceGroups/74430ff1-7fc4-47b/providers/Microsoft.Sql/servers/6ede82a3-5/dnsAliases/ba21d2f5-0b6"; 19760Requests[3644].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19761Requests[3644].Request.Path = "/subscriptions/90f3c42c-cc5f-/resourceGroups/898e6c61-a7e4-484/providers/Microsoft.Sql/servers/dc407848-9/dnsAliases/02f0fdf8-52d"; 19764Requests[3645].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19765Requests[3645].Request.Path = "/subscriptions/4d0a41b3-65f7-/resourceGroups/0117d15d-81ca-415/providers/Microsoft.Sql/servers/c69d5f25-5/dnsAliases/d1c70cba-442"; 19768Requests[3646].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19769Requests[3646].Request.Path = "/subscriptions/28ea0723-fb83-/resourceGroups/8ea39bc1-ed31-475/providers/Microsoft.Sql/servers/2741b403-7/elasticPools/7f3a7018-7f59-4"; 19772Requests[3647].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19773Requests[3647].Request.Path = "/subscriptions/07dd2e6d-bce5-/resourceGroups/01eaecdd-b503-4c9/providers/Microsoft.Sql/servers/5c113b32-f/elasticPools/3e5464a8-c236-4"; 19776Requests[3648].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19777Requests[3648].Request.Path = "/subscriptions/e81075b4-3d25-/resourceGroups/7fd483e8-a153-433/providers/Microsoft.Sql/servers/8c119753-e/elasticPools/3b1f386e-26fa-4"; 19780Requests[3649].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19781Requests[3649].Request.Path = "/subscriptions/0b115db3-aa98-/resourceGroups/b57e97ce-0740-44a/providers/Microsoft.Sql/servers/f155ba8c-9/elasticPools/96d3bf2a-0185-4"; 19784Requests[3650].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19785Requests[3650].Request.Path = "/subscriptions/eb3a4f63-2663-/resourceGroups/0698336a-67df-42c/providers/Microsoft.Sql/servers/59236b98-e/encryptionProtector/d4a94ca4-14a9-4b67-a5b4"; 19788Requests[3651].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19789Requests[3651].Request.Path = "/subscriptions/3fd7563d-f536-/resourceGroups/da48220f-2c41-4b6/providers/Microsoft.Sql/servers/6a792d72-5/encryptionProtector/97bbb22d-9f55-46ee-ad10"; 19792Requests[3652].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19793Requests[3652].Request.Path = "/subscriptions/bcac6d00-d107-/resourceGroups/5b951425-aff4-44a/providers/Microsoft.Sql/servers/6396a62d-9/failoverGroups/e25a7aea-abe6-4c7"; 19796Requests[3653].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19797Requests[3653].Request.Path = "/subscriptions/43c14a34-6587-/resourceGroups/84da74c4-8c0e-473/providers/Microsoft.Sql/servers/38dde54f-d/failoverGroups/09124e4d-a175-4c8"; 19800Requests[3654].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19801Requests[3654].Request.Path = "/subscriptions/d84864f9-010d-/resourceGroups/ce0d15f1-9c03-492/providers/Microsoft.Sql/servers/66a043c0-9/failoverGroups/d1363882-ffeb-4f8"; 19804Requests[3655].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19805Requests[3655].Request.Path = "/subscriptions/ee7f23f3-548d-/resourceGroups/37d68090-b899-423/providers/Microsoft.Sql/servers/e7cbe8e3-8/failoverGroups/80d69693-cb02-49d"; 19808Requests[3656].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19809Requests[3656].Request.Path = "/subscriptions/1c7f7a85-cdbb-/resourceGroups/7e5f7fc0-f754-461/providers/Microsoft.Sql/servers/fbff8a59-4/firewallRules/e6a3dbcb-d920-43"; 19812Requests[3657].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19813Requests[3657].Request.Path = "/subscriptions/6eb68ce4-9400-/resourceGroups/e068320f-99c0-4a0/providers/Microsoft.Sql/servers/6ce3eb47-2/firewallRules/b7f478ae-d205-4c"; 19816Requests[3658].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19817Requests[3658].Request.Path = "/subscriptions/b6ea026c-4a96-/resourceGroups/d5b3d7fd-6cb7-45d/providers/Microsoft.Sql/servers/649378a6-0/firewallRules/768cbd5c-099b-46"; 19820Requests[3659].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19821Requests[3659].Request.Path = "/subscriptions/4c95af31-6266-/resourceGroups/dfe75acb-cbc4-4bf/providers/Microsoft.Sql/servers/7867db67-5/jobAgents/b7cf119a-26e"; 19824Requests[3660].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19825Requests[3660].Request.Path = "/subscriptions/99bdbbcc-3e5e-/resourceGroups/4697c908-7cf4-486/providers/Microsoft.Sql/servers/101f46cd-6/jobAgents/8ed57837-b55"; 19828Requests[3661].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19829Requests[3661].Request.Path = "/subscriptions/9aea31ac-7134-/resourceGroups/c87979aa-d8ad-41a/providers/Microsoft.Sql/servers/57d10e01-e/jobAgents/a555a75b-196"; 19832Requests[3662].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19833Requests[3662].Request.Path = "/subscriptions/87ac8d36-c84a-/resourceGroups/bad826e2-6c2a-4db/providers/Microsoft.Sql/servers/da9e81a2-b/jobAgents/218d19c6-bf2"; 19836Requests[3663].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19837Requests[3663].Request.Path = "/subscriptions/301c2c43-d4ed-/resourceGroups/29e5e849-7c13-453/providers/Microsoft.Sql/servers/2c809f1e-7/keys/803d66d"; 19840Requests[3664].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19841Requests[3664].Request.Path = "/subscriptions/155211b4-bbcc-/resourceGroups/d8841ae8-8547-47d/providers/Microsoft.Sql/servers/8da67c10-3/keys/3d9f767"; 19844Requests[3665].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19845Requests[3665].Request.Path = "/subscriptions/d8c2cd7f-c2d0-/resourceGroups/7c6b2ba7-6633-46e/providers/Microsoft.Sql/servers/c49826ae-7/keys/1fef8bc"; 19848Requests[3666].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19849Requests[3666].Request.Path = "/subscriptions/a91ea4e4-8bd3-/resourceGroups/9efad4f8-b5fb-48e/providers/Microsoft.Sql/servers/befdde85-7/recommendedElasticPools/68fae41a-62e6-4330-8ba7-de"; 19852Requests[3667].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19853Requests[3667].Request.Path = "/subscriptions/a64d8136-8a72-/resourceGroups/7cf8d81f-6d85-451/providers/Microsoft.Sql/servers/9355b75f-b/recoverableDatabases/0938ef12-bb5"; 19856Requests[3668].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19857Requests[3668].Request.Path = "/subscriptions/ef17d84d-8988-/resourceGroups/3440242c-883a-4d4/providers/Microsoft.Sql/servers/73632d9c-4/restorableDroppedDatabases/f4999d14-a2cb-48a2-8b81-1a791"; 19860Requests[3669].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19861Requests[3669].Request.Path = "/subscriptions/eeaf0a55-5b54-/resourceGroups/c8ee0d1b-1f02-4f7/providers/Microsoft.Sql/servers/1018be95-7/serviceObjectives/130764ae-d8cc-4e14-8"; 19864Requests[3670].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19865Requests[3670].Request.Path = "/subscriptions/519b8264-2eeb-/resourceGroups/4de11410-8247-413/providers/Microsoft.Sql/servers/99637833-b/syncAgents/a132c1a2-1c37"; 19868Requests[3671].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19869Requests[3671].Request.Path = "/subscriptions/7d53d480-3247-/resourceGroups/690ce51b-3b60-4c1/providers/Microsoft.Sql/servers/c0f8f996-3/syncAgents/99d0a75b-dd49"; 19872Requests[3672].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19873Requests[3672].Request.Path = "/subscriptions/10228d13-07cb-/resourceGroups/67c41592-8b4d-478/providers/Microsoft.Sql/servers/9f72e9b7-9/syncAgents/e494d0be-631a"; 19876Requests[3673].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19877Requests[3673].Request.Path = "/subscriptions/3d46c805-0b9f-/resourceGroups/a03f03c8-6b7e-444/providers/Microsoft.Sql/servers/5fe98dab-9/virtualNetworkRules/5e11f064-8539-4b5b-842"; 19880Requests[3674].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19881Requests[3674].Request.Path = "/subscriptions/39f6001a-a902-/resourceGroups/a69e8a77-0136-41a/providers/Microsoft.Sql/servers/bea34886-9/virtualNetworkRules/d22b2538-d0e1-4c59-813"; 19884Requests[3675].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19885Requests[3675].Request.Path = "/subscriptions/4436eabf-7fb6-/resourceGroups/66ae917e-7096-494/providers/Microsoft.Sql/servers/34dcc0da-9/virtualNetworkRules/b04e0122-107a-496b-84f"; 19888Requests[3676].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19889Requests[3676].Request.Path = "/subscriptions/4e94fc68-807f-/resourcegroups/3a90be95-f0cd-451/providers/Microsoft.Storage.Admin/farms/85f536/blobservices/c3ef5c62-28"; 19892Requests[3677].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19893Requests[3677].Request.Path = "/subscriptions/c0565da1-b47a-/resourcegroups/3bd34546-a537-42a/providers/Microsoft.Storage.Admin/farms/d689bd/operationresults/f7fc99bd-bb"; 19896Requests[3678].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19897Requests[3678].Request.Path = "/subscriptions/d34d0dc3-de4a-/resourcegroups/3452f1cc-2f7c-4f6/providers/Microsoft.Storage.Admin/farms/822e97/queueservices/8608a9a2-20"; 19900Requests[3679].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19901Requests[3679].Request.Path = "/subscriptions/bd597ae8-aacc-/resourcegroups/544d37f0-7c91-4d3/providers/Microsoft.Storage.Admin/farms/e2c33d/shares/f9069feb-"; 19904Requests[3680].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 19905Requests[3680].Request.Path = "/subscriptions/3b0e9ea8-c8de-/resourcegroups/4e8ee799-bf6d-408/providers/Microsoft.Storage.Admin/farms/6c853f/storageaccounts/8266a3a0-"; 19908Requests[3681].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19909Requests[3681].Request.Path = "/subscriptions/6770ceae-7b83-/resourcegroups/1089c040-6639-44e/providers/Microsoft.Storage.Admin/farms/42ebb8/storageaccounts/6ac4f4ba-"; 19912Requests[3682].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19913Requests[3682].Request.Path = "/subscriptions/84682694-0b62-/resourcegroups/6a8c05fb-dbeb-452/providers/Microsoft.Storage.Admin/farms/442ef1/tableservices/70f73580-41"; 19916Requests[3683].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19917Requests[3683].Request.Path = "/subscriptions/3df9232b-683f-/resourceGroups/dd57df6b-ad8e-4d7/providers/Microsoft.Storage/storageAccounts/38dd76ce-a7/managementPolicies/90364da4-82f5-49a1-a"; 19920Requests[3684].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19921Requests[3684].Request.Path = "/subscriptions/febb1089-7194-/resourceGroups/b4dbd1ab-bd68-40a/providers/Microsoft.Storage/storageAccounts/a5ca5063-ea/managementPolicies/4f834371-132e-47eb-8"; 19924Requests[3685].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19925Requests[3685].Request.Path = "/subscriptions/6f3dda26-2e6c-/resourceGroups/8e1428e4-f238-4ed/providers/Microsoft.Storage/storageAccounts/4f1e4848-93/managementPolicies/81b2fafc-9726-44bb-8"; 19928Requests[3686].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19929Requests[3686].Request.Path = "/subscriptions/e746e6a7-14cd-/resourceGroups/39ca1c6d-2e76-452/providers/Microsoft.StorSimple/managers/028c33fa-4e/accessControlRecords/631b7c5a-adfa-4d50-abd0"; 19932Requests[3687].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19933Requests[3687].Request.Path = "/subscriptions/9b010ebe-cd35-/resourceGroups/2c40312a-2ab3-41f/providers/Microsoft.StorSimple/managers/57720dd1-97/accessControlRecords/0c4ed516-7395-4098-a8dc"; 19936Requests[3688].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19937Requests[3688].Request.Path = "/subscriptions/c7fd6d70-929e-/resourceGroups/a89f81da-689a-4f5/providers/Microsoft.StorSimple/managers/5b579b6e-be/accessControlRecords/a4005d84-e62e-4283-a2ed"; 19940Requests[3689].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19941Requests[3689].Request.Path = "/subscriptions/d1bcffa9-159a-/resourceGroups/6f3d67fa-586a-456/providers/Microsoft.StorSimple/managers/beded94d-0a/bandwidthSettings/9c94cf76-79bc-49cc-8"; 19944Requests[3690].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19945Requests[3690].Request.Path = "/subscriptions/80430817-d887-/resourceGroups/4dd905ad-3520-468/providers/Microsoft.StorSimple/managers/8fc6217d-e8/bandwidthSettings/2c166486-884a-4766-9"; 19948Requests[3691].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19949Requests[3691].Request.Path = "/subscriptions/a50559b4-83e6-/resourceGroups/41d4cf2e-785b-466/providers/Microsoft.StorSimple/managers/449b4776-ea/bandwidthSettings/4c0254fa-562a-4111-b"; 19952Requests[3692].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19953Requests[3692].Request.Path = "/subscriptions/8f1a1859-1178-/resourceGroups/de8a82e7-abab-435/providers/Microsoft.StorSimple/managers/95d02b26-e0/devices/2c7a8408-f"; 19956Requests[3693].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19957Requests[3693].Request.Path = "/subscriptions/5bffdcda-f485-/resourceGroups/290bd609-c12a-423/providers/Microsoft.StorSimple/managers/a4b4746b-fa/devices/ce3c79c4-1"; 19960Requests[3694].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19961Requests[3694].Request.Path = "/subscriptions/5ee482d6-3f13-/resourceGroups/a3afa95f-15c8-4d4/providers/Microsoft.StorSimple/managers/6feb4822-99/devices/9571dfda-9"; 19964Requests[3695].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19965Requests[3695].Request.Path = "/subscriptions/b2efd7e6-3169-/resourceGroups/9db060ca-4b3d-4ba/providers/Microsoft.StorSimple/managers/a1c75e8c-d5/storageAccountCredentials/4215c996-27a1-47bb-a75b-4836"; 19968Requests[3696].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19969Requests[3696].Request.Path = "/subscriptions/3705b9e0-095d-/resourceGroups/b179f280-ecc8-43f/providers/Microsoft.StorSimple/managers/bc6414d2-d8/storageAccountCredentials/d53aff2a-6f01-4520-a9b5-67cd"; 19972Requests[3697].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19973Requests[3697].Request.Path = "/subscriptions/da520851-7a41-/resourceGroups/6a413775-0d22-4f5/providers/Microsoft.StorSimple/managers/e397479b-69/storageAccountCredentials/44f108fc-565d-45dd-b912-cfe2"; 19976Requests[3698].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 19977Requests[3698].Request.Path = "/subscriptions/a7edfe14-fc8b-/resourcegroups/f220c17b-6000-478/providers/Microsoft.StreamAnalytics/streamingjobs/4b9358d/functions/98f4c085-b70"; 19980Requests[3699].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19981Requests[3699].Request.Path = "/subscriptions/bd99fcaf-fdd0-/resourcegroups/839864b2-3371-4f8/providers/Microsoft.StreamAnalytics/streamingjobs/5b71120/functions/68255ae8-0c7"; 19984Requests[3700].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19985Requests[3700].Request.Path = "/subscriptions/5cb2c693-c320-/resourcegroups/c6695f59-5081-431/providers/Microsoft.StreamAnalytics/streamingjobs/d1f8c47/functions/fa15ee3f-c0c"; 19988Requests[3701].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 19989Requests[3701].Request.Path = "/subscriptions/0d04e5a4-819e-/resourcegroups/6d12f844-7b1b-44b/providers/Microsoft.StreamAnalytics/streamingjobs/5378aad/functions/050c6ed0-140"; 19992Requests[3702].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 19993Requests[3702].Request.Path = "/subscriptions/ccaf6cf4-77d6-/resourcegroups/89b74795-a9bf-4ec/providers/Microsoft.StreamAnalytics/streamingjobs/1e5e43f/inputs/c4703eae-"; 19996Requests[3703].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 19997Requests[3703].Request.Path = "/subscriptions/fafb9dfe-a716-/resourcegroups/da58a232-1853-495/providers/Microsoft.StreamAnalytics/streamingjobs/72bb9c8/inputs/416bcc32-"; 20000Requests[3704].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20001Requests[3704].Request.Path = "/subscriptions/4bc23531-ad91-/resourcegroups/31e6a1aa-b145-4d3/providers/Microsoft.StreamAnalytics/streamingjobs/ee61093/inputs/c247816a-"; 20004Requests[3705].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20005Requests[3705].Request.Path = "/subscriptions/fbf04647-cce8-/resourcegroups/99a3c804-c94c-4fe/providers/Microsoft.StreamAnalytics/streamingjobs/eb400fc/inputs/6ca31c34-"; 20008Requests[3706].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20009Requests[3706].Request.Path = "/subscriptions/3c45a57f-4932-/resourcegroups/1b059ec7-5311-44c/providers/Microsoft.StreamAnalytics/streamingjobs/d3b26d4/outputs/e2bb7893-d"; 20012Requests[3707].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20013Requests[3707].Request.Path = "/subscriptions/d0fd2abe-8670-/resourcegroups/0111d435-a5ca-4b3/providers/Microsoft.StreamAnalytics/streamingjobs/ee0b641/outputs/2310afee-2"; 20016Requests[3708].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20017Requests[3708].Request.Path = "/subscriptions/6388f132-f35d-/resourcegroups/a8ee2bbb-d8ee-43d/providers/Microsoft.StreamAnalytics/streamingjobs/9e88823/outputs/ec8677b9-3"; 20020Requests[3709].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20021Requests[3709].Request.Path = "/subscriptions/b6142eeb-cdf7-/resourcegroups/36d15a38-8303-432/providers/Microsoft.StreamAnalytics/streamingjobs/02d31a0/outputs/e5c926b5-4"; 20024Requests[3710].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20025Requests[3710].Request.Path = "/subscriptions/ec3fd25c-3577-/resourcegroups/36547fb6-6a52-4cd/providers/Microsoft.StreamAnalytics/streamingjobs/3cf129e/transformations/5bc84c66-89fe-4852"; 20028Requests[3711].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20029Requests[3711].Request.Path = "/subscriptions/fdbe6213-83c4-/resourcegroups/ebd323eb-1385-4db/providers/Microsoft.StreamAnalytics/streamingjobs/6955454/transformations/f7812853-af95-49d5"; 20032Requests[3712].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20033Requests[3712].Request.Path = "/subscriptions/a624f2a9-4536-/resourcegroups/4af89dc0-254a-481/providers/Microsoft.StreamAnalytics/streamingjobs/8d4aff5/transformations/3296fdda-8468-4b71"; 20036Requests[3713].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20037Requests[3713].Request.Path = "/subscriptions/8e8fce73-b4d3-/resourcegroups/c5d1810d-2083-4bd/providers/Microsoft.Subscriptions.Admin/offers/2b334/offerDelegations/895e2861-e515-4b60-"; 20040Requests[3714].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20041Requests[3714].Request.Path = "/subscriptions/0c089167-485f-/resourcegroups/4fe6e6a7-5e5d-463/providers/Microsoft.Subscriptions.Admin/offers/e429e/offerDelegations/9fdb242c-0895-46ec-"; 20044Requests[3715].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20045Requests[3715].Request.Path = "/subscriptions/a3daf8af-0602-/resourcegroups/97f99cb5-b250-42d/providers/Microsoft.Subscriptions.Admin/offers/5e875/offerDelegations/9ebad908-01ee-42de-"; 20048Requests[3716].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20049Requests[3716].Request.Path = "/subscriptions/fc4b570e-32d7-/resourceGroups/7dc56720-08e7-406/providers/Microsoft.TimeSeriesInsights/environments/9f2dfb4c-dc73-4/accessPolicies/5babf0c9-d9e4-4a"; 20052Requests[3717].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20053Requests[3717].Request.Path = "/subscriptions/6f0f56b0-61f2-/resourceGroups/b96807eb-65a5-43f/providers/Microsoft.TimeSeriesInsights/environments/49a4275f-4b44-4/accessPolicies/d3d1a309-9f10-4b"; 20056Requests[3718].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20057Requests[3718].Request.Path = "/subscriptions/be2e1350-2733-/resourceGroups/e0e15ad3-fc51-420/providers/Microsoft.TimeSeriesInsights/environments/9ab967e4-2e44-4/accessPolicies/4f7f3f3c-81c2-4d"; 20060Requests[3719].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20061Requests[3719].Request.Path = "/subscriptions/4550be7c-aa12-/resourceGroups/8ddb5bc8-8aa7-47b/providers/Microsoft.TimeSeriesInsights/environments/b6e4b979-9f6c-4/accessPolicies/8670716a-3188-42"; 20064Requests[3720].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20065Requests[3720].Request.Path = "/subscriptions/1bc0caf0-1c53-/resourceGroups/d1483324-b0c2-4e5/providers/Microsoft.TimeSeriesInsights/environments/e07eadad-177c-4/eventSources/41df518f-0cd6-4"; 20068Requests[3721].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20069Requests[3721].Request.Path = "/subscriptions/45869e24-b13f-/resourceGroups/9b411cfd-33c9-4b0/providers/Microsoft.TimeSeriesInsights/environments/36fc1bca-c7bc-4/eventSources/53251857-0614-4"; 20072Requests[3722].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20073Requests[3722].Request.Path = "/subscriptions/61d7f18c-f459-/resourceGroups/38c7e756-27f2-45b/providers/Microsoft.TimeSeriesInsights/environments/8e306eb6-baef-4/eventSources/9e458cf3-20d8-4"; 20076Requests[3723].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20077Requests[3723].Request.Path = "/subscriptions/1b1a6ddc-f9f0-/resourceGroups/b8bce253-488a-45c/providers/Microsoft.TimeSeriesInsights/environments/0a90c26e-f537-4/eventSources/ef41bcda-5740-4"; 20080Requests[3724].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20081Requests[3724].Request.Path = "/subscriptions/adece0ad-620d-/resourceGroups/6f8c179b-8e24-413/providers/Microsoft.TimeSeriesInsights/environments/30bb4cc7-27ae-4/referenceDataSets/7cba5340-b92f-46a8-b"; 20084Requests[3725].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20085Requests[3725].Request.Path = "/subscriptions/99709a78-56e9-/resourceGroups/003e14ea-6be9-48e/providers/Microsoft.TimeSeriesInsights/environments/ee529ac5-3301-4/referenceDataSets/9811620e-a9e4-48f4-8"; 20088Requests[3726].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20089Requests[3726].Request.Path = "/subscriptions/63683018-1899-/resourceGroups/13d4653f-ae80-466/providers/Microsoft.TimeSeriesInsights/environments/27308c43-0c36-4/referenceDataSets/522af3e7-f70c-4572-8"; 20092Requests[3727].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20093Requests[3727].Request.Path = "/subscriptions/08e2bae7-36cf-/resourceGroups/68a4749f-f8d2-47b/providers/Microsoft.TimeSeriesInsights/environments/34f7232d-d3a8-4/referenceDataSets/4bbeef96-5cd2-4582-b"; 20096Requests[3728].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20097Requests[3728].Request.Path = "/subscriptions/e7344f4b-2345-/resourcegroups/92cc4afc-a9be-485/providers/Microsoft.Update.Admin/updateLocations/230dbce0-fe97-/updates/6f9204a0-e"; 20100Requests[3729].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20101Requests[3729].Request.Path = "/subscriptions/09243a7a-9e93-/resourcegroups/b0deca74-02c6-41a/providers/microsoft.visualstudio/account/256a4234-33e7-4b8c-/extension/07a3000f-4651-4d32-a1"; 20104Requests[3730].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20105Requests[3730].Request.Path = "/subscriptions/62359f28-85b0-/resourcegroups/8f3f727b-bba9-427/providers/microsoft.visualstudio/account/b19fd86b-0f53-4e37-/extension/42f77ee5-02e6-4650-8f"; 20108Requests[3731].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20109Requests[3731].Request.Path = "/subscriptions/1dde984b-1f47-/resourcegroups/5a1b6193-9870-42e/providers/microsoft.visualstudio/account/a9337878-861a-4851-/extension/455843a0-b976-477a-a4"; 20112Requests[3732].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20113Requests[3732].Request.Path = "/subscriptions/d32cde11-d945-/resourcegroups/7c3cccf7-be02-4b0/providers/microsoft.visualstudio/account/3bde32f0-7e72-466c-/extension/bef9fa18-a3e8-4f7e-82"; 20116Requests[3733].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20117Requests[3733].Request.Path = "/subscriptions/a25f426d-3a62-/resourceGroups/1090a41c-f4d4-429/providers/microsoft.visualstudio/account/4d57f2b0-2b12-47/project/6cd255d7-b48"; 20120Requests[3734].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20121Requests[3734].Request.Path = "/subscriptions/99226427-c678-/resourceGroups/6c8a3c43-cf24-4f6/providers/microsoft.visualstudio/account/131994d4-12a0-41/project/6906222a-0a0"; 20124Requests[3735].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20125Requests[3735].Request.Path = "/subscriptions/5a879885-ab0a-/resourceGroups/2de0788f-3365-4c7/providers/microsoft.visualstudio/account/160244c8-bd18-46/project/22d09f5b-255"; 20128Requests[3736].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20129Requests[3736].Request.Path = "/subscriptions/7334cb8c-6395-/resourceGroups/f40dccf7-92ff-406/providers/Microsoft.Web/hostingEnvironments/85127/detectors/830d9d71-323"; 20132Requests[3737].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20133Requests[3737].Request.Path = "/subscriptions/577a5caa-ef18-/resourceGroups/220dde04-e8f7-401/providers/Microsoft.Web/hostingEnvironments/3f0d6/diagnostics/3bd28575-62cc-4"; 20136Requests[3738].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20137Requests[3738].Request.Path = "/subscriptions/71fbcfd4-a5e3-/resourceGroups/c66ee38d-918e-4c1/providers/Microsoft.Web/hostingEnvironments/4451a/operations/14d9f194-7d"; 20140Requests[3739].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20141Requests[3739].Request.Path = "/subscriptions/0f44d081-da3d-/resourceGroups/f74e9e16-643d-472/providers/Microsoft.Web/hostingEnvironments/a456b/workerPools/447c5449-6533-"; 20144Requests[3740].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20145Requests[3740].Request.Path = "/subscriptions/ede86ac2-2810-/resourceGroups/77d9e0f8-c41c-41c/providers/Microsoft.Web/hostingEnvironments/72665/workerPools/a59b1d60-5156-"; 20148Requests[3741].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20149Requests[3741].Request.Path = "/subscriptions/6170631f-4da4-/resourceGroups/51421974-844f-46f/providers/Microsoft.Web/hostingEnvironments/05414/workerPools/4c3cc883-7359-"; 20152Requests[3742].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20153Requests[3742].Request.Path = "/subscriptions/78991c18-8a6e-/resourceGroups/8506a028-5081-409/providers/Microsoft.Web/managedHostingEnvironments/fbf28/operations/ed44ba32-04"; 20156Requests[3743].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20157Requests[3743].Request.Path = "/subscriptions/59ce306d-b71d-/resourceGroups/61ddb88b-b4c1-485/providers/Microsoft.Web/serverfarms/4cfcd/operationresults/152e3d13-bd"; 20160Requests[3744].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20161Requests[3744].Request.Path = "/subscriptions/c7e9882e-3c79-/resourceGroups/4195a4b6-10d5-445/providers/Microsoft.Web/serverfarms/1dc04/virtualNetworkConnections/06659603"; 20164Requests[3745].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20165Requests[3745].Request.Path = "/subscriptions/9e11364c-734e-/resourceGroups/d826010d-1555-4e6/providers/Microsoft.Web/sites/59d86/backups/37e9269f"; 20168Requests[3746].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20169Requests[3746].Request.Path = "/subscriptions/0961c058-0fb8-/resourceGroups/c0aa8117-3f65-4a9/providers/Microsoft.Web/sites/5b05a/backups/1319fcbe"; 20172Requests[3747].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20173Requests[3747].Request.Path = "/subscriptions/f105535c-b156-/resourceGroups/e3217de6-e1cf-4f2/providers/Microsoft.Web/sites/c1068/continuouswebjobs/703587ea-a"; 20176Requests[3748].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20177Requests[3748].Request.Path = "/subscriptions/48b31958-70f9-/resourceGroups/46717d41-742b-449/providers/Microsoft.Web/sites/4cdb5/continuouswebjobs/1cd1ac91-f"; 20180Requests[3749].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20181Requests[3749].Request.Path = "/subscriptions/672f0322-1af5-/resourceGroups/84f861a2-44df-48b/providers/Microsoft.Web/sites/0d423/deployments/7479d"; 20184Requests[3750].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20185Requests[3750].Request.Path = "/subscriptions/5a223f0b-2a7a-/resourceGroups/273f9f43-97dc-485/providers/Microsoft.Web/sites/1f2dc/deployments/23c47"; 20188Requests[3751].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20189Requests[3751].Request.Path = "/subscriptions/8e36c384-274a-/resourceGroups/67706b72-b7c7-4c8/providers/Microsoft.Web/sites/faf41/deployments/79a0a"; 20192Requests[3752].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20193Requests[3752].Request.Path = "/subscriptions/352a404d-8235-/resourceGroups/f728ad3b-75b3-4ac/providers/Microsoft.Web/sites/5e892/domainOwnershipIdentifiers/a8caa4be-8915-4b6a-b113-4de07"; 20196Requests[3753].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20197Requests[3753].Request.Path = "/subscriptions/bcf19e4e-0205-/resourceGroups/37468510-aa5a-472/providers/Microsoft.Web/sites/270e1/domainOwnershipIdentifiers/de64ccd9-0c3b-4a61-b6a9-2826c"; 20200Requests[3754].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20201Requests[3754].Request.Path = "/subscriptions/6f9a4580-899d-/resourceGroups/04af77c7-808c-4ea/providers/Microsoft.Web/sites/b41ff/domainOwnershipIdentifiers/a86c1084-f7ae-45cd-9aef-95709"; 20204Requests[3755].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20205Requests[3755].Request.Path = "/subscriptions/ab4802a3-cea4-/resourceGroups/829d3967-fc41-43a/providers/Microsoft.Web/sites/20c68/domainOwnershipIdentifiers/bc819a2f-d4fb-41c8-98b5-7a257"; 20208Requests[3756].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20209Requests[3756].Request.Path = "/subscriptions/e028af5d-810b-/resourceGroups/e5612ef7-cc2f-42c/providers/Microsoft.Web/sites/b908a/functions/eb6f4572-412"; 20212Requests[3757].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20213Requests[3757].Request.Path = "/subscriptions/d7336829-3e48-/resourceGroups/be5070b4-2773-41c/providers/Microsoft.Web/sites/47952/functions/e048f8c6-a8a"; 20216Requests[3758].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20217Requests[3758].Request.Path = "/subscriptions/4dbdd877-028a-/resourceGroups/092d2066-1890-45f/providers/Microsoft.Web/sites/e70b5/functions/b000049d-1f0"; 20220Requests[3759].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20221Requests[3759].Request.Path = "/subscriptions/c312b330-478d-/resourceGroups/724feece-7110-423/providers/Microsoft.Web/sites/a093a/hostNameBindings/df644e47"; 20224Requests[3760].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20225Requests[3760].Request.Path = "/subscriptions/754e7855-5a03-/resourceGroups/03545b98-4734-4fd/providers/Microsoft.Web/sites/3b22d/hostNameBindings/9685ab90"; 20228Requests[3761].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20229Requests[3761].Request.Path = "/subscriptions/8ba0b039-51b0-/resourceGroups/5ab94869-75e9-4d8/providers/Microsoft.Web/sites/39cf9/hostNameBindings/521e98c6"; 20232Requests[3762].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20233Requests[3762].Request.Path = "/subscriptions/ae661d39-3077-/resourceGroups/00a7ebff-f143-41d/providers/Microsoft.Web/sites/2c7f0/hybridconnection/a512b8aa-6"; 20236Requests[3763].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20237Requests[3763].Request.Path = "/subscriptions/a56af18f-f6b6-/resourceGroups/a36fed2e-4828-42e/providers/Microsoft.Web/sites/aeee5/hybridconnection/b3c5c5ab-6"; 20240Requests[3764].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20241Requests[3764].Request.Path = "/subscriptions/c4c0ab32-f43a-/resourceGroups/611f079e-ab35-427/providers/Microsoft.Web/sites/f3264/hybridconnection/82a4b810-2"; 20244Requests[3765].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20245Requests[3765].Request.Path = "/subscriptions/f0d88475-d2fc-/resourceGroups/6bd3ab63-3a93-44b/providers/Microsoft.Web/sites/20255/hybridconnection/c2d47cd6-d"; 20248Requests[3766].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20249Requests[3766].Request.Path = "/subscriptions/493a566f-8d09-/resourceGroups/3774a9e1-f239-433/providers/Microsoft.Web/sites/d7478/networkFeatures/e8309"; 20252Requests[3767].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20253Requests[3767].Request.Path = "/subscriptions/4b350d39-c54f-/resourceGroups/bab69dc1-ef62-487/providers/Microsoft.Web/sites/47fe0/operationresults/72e058f9-22"; 20256Requests[3768].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20257Requests[3768].Request.Path = "/subscriptions/c29b35b8-9aef-/resourceGroups/b7ed4eb0-8e15-472/providers/Microsoft.Web/sites/82012/premieraddons/e28e6c33-3239-40"; 20260Requests[3769].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20261Requests[3769].Request.Path = "/subscriptions/6bd4966f-7e34-/resourceGroups/6180d404-4947-4cd/providers/Microsoft.Web/sites/3278e/premieraddons/3b3f0c0f-2560-43"; 20264Requests[3770].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20265Requests[3770].Request.Path = "/subscriptions/4ea66b76-6304-/resourceGroups/65f01404-182d-479/providers/Microsoft.Web/sites/a326d/premieraddons/289429ef-e20b-4b"; 20268Requests[3771].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20269Requests[3771].Request.Path = "/subscriptions/bdddff6f-7f3b-/resourceGroups/4d5a4086-eacb-4e6/providers/Microsoft.Web/sites/10fd6/processes/3615ee01-"; 20272Requests[3772].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20273Requests[3772].Request.Path = "/subscriptions/90c2dc55-0e03-/resourceGroups/e27b2dcc-02ec-450/providers/Microsoft.Web/sites/5e038/processes/bd323886-"; 20276Requests[3773].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20277Requests[3773].Request.Path = "/subscriptions/a5681f1b-af39-/resourceGroups/47939ea9-812c-4d0/providers/Microsoft.Web/sites/9928c/publicCertificates/c78beaa2-b140-4c3d-bc"; 20280Requests[3774].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20281Requests[3774].Request.Path = "/subscriptions/7fbfe263-9e66-/resourceGroups/8c66855b-2609-48b/providers/Microsoft.Web/sites/33491/publicCertificates/ef303502-8380-43fe-93"; 20284Requests[3775].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20285Requests[3775].Request.Path = "/subscriptions/552d48a7-1f9c-/resourceGroups/54710385-3dab-430/providers/Microsoft.Web/sites/bca24/publicCertificates/552d7cb3-f332-45e6-94"; 20288Requests[3776].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20289Requests[3776].Request.Path = "/subscriptions/f4952572-77a7-/resourceGroups/c3a3552d-ce89-4fd/providers/Microsoft.Web/sites/1efbc/siteextensions/2cb7c38f-af00-4"; 20292Requests[3777].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20293Requests[3777].Request.Path = "/subscriptions/ef7848ab-d7c1-/resourceGroups/7c0a3285-d9fa-444/providers/Microsoft.Web/sites/c685c/siteextensions/a6b6cf31-9c22-4"; 20296Requests[3778].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20297Requests[3778].Request.Path = "/subscriptions/2d97a7f8-da41-/resourceGroups/95227e4e-5542-426/providers/Microsoft.Web/sites/7ab49/siteextensions/0cc827f6-3d9c-4"; 20300Requests[3779].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20301Requests[3779].Request.Path = "/subscriptions/8ab9533b-40b5-/resourceGroups/f57ae4e9-0e0d-413/providers/Microsoft.Web/sites/fec40/slots/ed57e"; 20304Requests[3780].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20305Requests[3780].Request.Path = "/subscriptions/5ee30cc5-f00d-/resourceGroups/4f5fa93a-0bd3-402/providers/Microsoft.Web/sites/abe10/slots/0374a"; 20308Requests[3781].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20309Requests[3781].Request.Path = "/subscriptions/3c6e347f-1c90-/resourceGroups/976c21dc-1dc5-42e/providers/Microsoft.Web/sites/aa5d5/slots/5db44"; 20312Requests[3782].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20313Requests[3782].Request.Path = "/subscriptions/699b359b-fe97-/resourceGroups/d384dc5d-798a-4e9/providers/Microsoft.Web/sites/ca4b8/slots/63b90"; 20316Requests[3783].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20317Requests[3783].Request.Path = "/subscriptions/a5c40202-7fb4-/resourceGroups/0b57606f-f369-40f/providers/Microsoft.Web/sites/7bc0a/triggeredwebjobs/29c49a21-5"; 20320Requests[3784].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20321Requests[3784].Request.Path = "/subscriptions/4e4528f6-770d-/resourceGroups/be259e46-c2e3-478/providers/Microsoft.Web/sites/7f2fa/triggeredwebjobs/455eba18-9"; 20324Requests[3785].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 20325Requests[3785].Request.Path = "/subscriptions/cad2fe36-27d4-/resourceGroups/682464cd-a124-403/providers/Microsoft.Web/sites/6ff00/virtualNetworkConnections/501fabab"; 20328Requests[3786].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20329Requests[3786].Request.Path = "/subscriptions/0fcd6570-7af1-/resourceGroups/ce69187a-f32d-4df/providers/Microsoft.Web/sites/47fa2/virtualNetworkConnections/d12c5f0f"; 20332Requests[3787].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20333Requests[3787].Request.Path = "/subscriptions/b31ec4cc-6e5c-/resourceGroups/52983183-fbda-44b/providers/Microsoft.Web/sites/6a5b1/virtualNetworkConnections/ca6bf850"; 20336Requests[3788].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20337Requests[3788].Request.Path = "/subscriptions/7a121464-cfa2-/resourceGroups/ef41073e-3f9f-48e/providers/Microsoft.Web/sites/304f3/virtualNetworkConnections/1ab73d51"; 20340Requests[3789].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20341Requests[3789].Request.Path = "/subscriptions/0ac2fc25-df24-/resourceGroups/bdccada9-96c9-468/providers/Microsoft.Web/sites/0460c/webjobs/4139d255-f"; 20344Requests[3790].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20345Requests[3790].Request.Path = "/subscriptions/75d316bf-cc32-/resourceGroups/376215b1-12a9-49b/providers/Microsoft.Web/sites/144b2cac/detectors/97a5802e-b67"; 20348Requests[3791].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20349Requests[3791].Request.Path = "/subscriptions/21e8b550-144f-/resourceGroups/d1e1f7a4-11c2-496/providers/Microsoft.Web/sites/e6995884/diagnostics/249bacad-96b8-4708"; 20352Requests[3792].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20353Requests[3792].Request.Path = "/subscriptions/8cc7b346-5c09-/resourceGroups/2bc39383-a75c-413/providers/Microsoft.Web/sites/4b65e8e0/recommendations/86800"; 20356Requests[3793].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20357Requests[3793].Request.Path = "/subscriptions/e07e8d78-f11a-/resourceGroup/ebad9344-7ce6-4f9/providers/Microsoft.MachineLearningServices/workspaces/8d88b02b-09c0/computes/c335097f-77/listKeys"; 20360Requests[3794].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20361Requests[3794].Request.Path = "/subscriptions/077a0fd5-18bc-/resourceGroups/ce8b8c43-/providers/Microsoft.DataMigration/services/e9c753c5-97/projects/0cc116c7-59/tasks"; 20364Requests[3795].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20365Requests[3795].Request.Path = "/subscriptions/36b25caf-dcd6-/resourcegroups/889a3058-ecd8/providers/Microsoft.AzureBridge.Admin/activations/c752968a-c169-/products/bf50a8b9-a5/download"; 20368Requests[3796].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20369Requests[3796].Request.Path = "/subscriptions/b76ec582-61ca-/resourceGroups/27e0e7ed-a766/providers/Microsoft.AzureStack/registrations/32490e7e-cc5c-40/products/a25208e4-1c/listDetails"; 20372Requests[3797].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20373Requests[3797].Request.Path = "/subscriptions/47e2365d-c173-/resourceGroups/29fa8663-b38d-4d9/providers/Microsoft.ApiManagement/service/73c5627f-7d/apis/afdd2/diagnostics"; 20376Requests[3798].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20377Requests[3798].Request.Path = "/subscriptions/c4dff69c-f2c0-/resourceGroups/2cb23ae0-4418-4b2/providers/Microsoft.ApiManagement/service/a599a843-12/apis/d0846/issues"; 20380Requests[3799].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20381Requests[3799].Request.Path = "/subscriptions/c98207c0-0ba2-/resourceGroups/b4eacc85-e7ce-482/providers/Microsoft.ApiManagement/service/908b9223-6f/apis/cbf64/operations"; 20384Requests[3800].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20385Requests[3800].Request.Path = "/subscriptions/04572060-b1e5-/resourceGroups/35c6bbfb-5b9a-4e2/providers/Microsoft.ApiManagement/service/91a3ede2-c3/apis/baded/operationsByTags"; 20388Requests[3801].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20389Requests[3801].Request.Path = "/subscriptions/b3a07ed1-5a1d-/resourceGroups/e071aa64-741d-49e/providers/Microsoft.ApiManagement/service/65fcb055-11/apis/c4e0e/policies"; 20392Requests[3802].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20393Requests[3802].Request.Path = "/subscriptions/da3e6b87-4641-/resourceGroups/72d6b935-710a-4db/providers/Microsoft.ApiManagement/service/f8ea2841-e8/apis/9fcf2/policy"; 20396Requests[3803].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20397Requests[3803].Request.Path = "/subscriptions/5a692697-2ff4-/resourceGroups/47ef1e76-c5b6-48e/providers/Microsoft.ApiManagement/service/720bc9df-37/apis/eb968/policy"; 20400Requests[3804].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20401Requests[3804].Request.Path = "/subscriptions/6ab0c038-b08e-/resourceGroups/54f0fdca-97e8-490/providers/Microsoft.ApiManagement/service/9c854a3c-68/apis/3aa26/policy"; 20404Requests[3805].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20405Requests[3805].Request.Path = "/subscriptions/e372b77d-f8bd-/resourceGroups/17232b58-f349-44b/providers/Microsoft.ApiManagement/service/b106afdc-d0/apis/ca315/products"; 20408Requests[3806].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 20409Requests[3806].Request.Path = "/subscriptions/36b5e7d2-f5bc-/resourceGroups/b3ba9b5c-23bf-479/providers/Microsoft.ApiManagement/service/24bea8c3-95/apis/20637/releases"; 20412Requests[3807].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20413Requests[3807].Request.Path = "/subscriptions/813561ec-13bc-/resourceGroups/d51ab0bc-855d-452/providers/Microsoft.ApiManagement/service/e0dd3e8f-ea/apis/d18f4/releases"; 20416Requests[3808].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 20417Requests[3808].Request.Path = "/subscriptions/b9243163-d6c3-/resourceGroups/7822e8af-7ca9-451/providers/Microsoft.ApiManagement/service/632a35f2-bb/apis/51d17/revisions"; 20420Requests[3809].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20421Requests[3809].Request.Path = "/subscriptions/06731f44-dace-/resourceGroups/c5902e45-1b9d-486/providers/Microsoft.ApiManagement/service/3ac19b26-c6/apis/56206/revisions"; 20424Requests[3810].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20425Requests[3810].Request.Path = "/subscriptions/3220c235-23db-/resourceGroups/f9668dd2-6252-45c/providers/Microsoft.ApiManagement/service/8efc3594-2b/apis/fa45b/schemas"; 20428Requests[3811].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20429Requests[3811].Request.Path = "/subscriptions/caa519ba-1f2c-/resourceGroups/96f022f1-a2e4-45c/providers/Microsoft.ApiManagement/service/e91fabf8-a4/apis/894d2/tagDescriptions"; 20432Requests[3812].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20433Requests[3812].Request.Path = "/subscriptions/4630971c-6447-/resourceGroups/1bcedf56-df66-4fb/providers/Microsoft.ApiManagement/service/a3fe4869-f0/apis/a32f5/tags"; 20436Requests[3813].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20437Requests[3813].Request.Path = "/subscriptions/0e7613e0-c85a-/resourceGroups/b1ece843-197e-448/providers/Microsoft.ApiManagement/service/30592452-6f/backends/e32060c2-/reconnect"; 20440Requests[3814].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20441Requests[3814].Request.Path = "/subscriptions/c992b2ea-f7ab-/resourceGroups/36fa7f18-e63a-40f/providers/Microsoft.ApiManagement/service/92dfec04-7d/diagnostics/16edd64d-a3c/loggers"; 20444Requests[3815].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20445Requests[3815].Request.Path = "/subscriptions/14068d11-77a6-/resourceGroups/c2251292-323a-484/providers/Microsoft.ApiManagement/service/32698aa8-b2/groups/5512f08/users"; 20448Requests[3816].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20449Requests[3816].Request.Path = "/subscriptions/0447dc19-19fc-/resourceGroups/bc11873d-ee96-4a9/providers/Microsoft.ApiManagement/service/691eb80f-79/locations/b35ba8da-2bc/networkstatus"; 20452Requests[3817].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20453Requests[3817].Request.Path = "/subscriptions/ab141841-b514-/resourceGroups/319edd85-5f1a-45f/providers/Microsoft.ApiManagement/service/a7f4abc2-a3/notifications/122b3802-c79d-44/recipientEmails"; 20456Requests[3818].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20457Requests[3818].Request.Path = "/subscriptions/ddc69703-b186-/resourceGroups/3131f6fd-8697-4cf/providers/Microsoft.ApiManagement/service/180cc9bf-14/notifications/dfd83d71-698f-48/recipientUsers"; 20460Requests[3819].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20461Requests[3819].Request.Path = "/subscriptions/c5bfd62f-09e2-/resourceGroups/421679be-d67e-449/providers/Microsoft.ApiManagement/service/740f99af-68/products/9aadad28-/apis"; 20464Requests[3820].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20465Requests[3820].Request.Path = "/subscriptions/f18fb4a1-032f-/resourceGroups/5a649172-828d-4a9/providers/Microsoft.ApiManagement/service/fa7d01f8-ed/products/da976d48-/groups"; 20468Requests[3821].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20469Requests[3821].Request.Path = "/subscriptions/f684152b-06c5-/resourceGroups/2f7041af-4ed9-4e8/providers/Microsoft.ApiManagement/service/c9e0f60c-34/products/64bcd868-/policies"; 20472Requests[3822].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 20473Requests[3822].Request.Path = "/subscriptions/a517d684-5eb9-/resourceGroups/10749360-4f5f-45f/providers/Microsoft.ApiManagement/service/4d56eb7b-c0/products/e80d71b2-/policy"; 20476Requests[3823].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20477Requests[3823].Request.Path = "/subscriptions/a0d9c73d-a02f-/resourceGroups/e0f79c51-157f-4e5/providers/Microsoft.ApiManagement/service/e90be2f2-76/products/767fb6ee-/policy"; 20480Requests[3824].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 20481Requests[3824].Request.Path = "/subscriptions/9f4aafc6-3d8f-/resourceGroups/a0c4f264-2051-406/providers/Microsoft.ApiManagement/service/f45085f8-49/products/8e116fb1-/policy"; 20484Requests[3825].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20485Requests[3825].Request.Path = "/subscriptions/79a672bf-8c7b-/resourceGroups/ac71f8b6-3af2-4b7/providers/Microsoft.ApiManagement/service/f3d5c455-c0/products/9b8a1344-/subscriptions"; 20488Requests[3826].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20489Requests[3826].Request.Path = "/subscriptions/860b3ff9-53e2-/resourceGroups/edb6a6ef-a927-45a/providers/Microsoft.ApiManagement/service/c19fb786-a4/products/e836bcc6-/tags"; 20492Requests[3827].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20493Requests[3827].Request.Path = "/subscriptions/3ded32f4-d7ba-/resourceGroups/53fdb9ef-eeee-4fc/providers/Microsoft.ApiManagement/service/9fbb7610-61/subscriptions/7f080/regeneratePrimaryKey"; 20496Requests[3828].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20497Requests[3828].Request.Path = "/subscriptions/176f5854-f94c-/resourceGroups/5bbade06-acf0-4f6/providers/Microsoft.ApiManagement/service/ead6e8ee-4d/subscriptions/d86be/regenerateSecondaryKey"; 20500Requests[3829].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20501Requests[3829].Request.Path = "/subscriptions/4a1cce99-44f5-/resourceGroups/f4090669-2a8e-4de/providers/Microsoft.ApiManagement/service/df8370cc-73/tenant/0e08677c-f/git"; 20504Requests[3830].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20505Requests[3830].Request.Path = "/subscriptions/6d6a14e9-8946-/resourceGroups/0794c2bd-19c8-433/providers/Microsoft.ApiManagement/service/a93dde6b-a9/tenant/62b8f8c5-1/regeneratePrimaryKey"; 20508Requests[3831].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20509Requests[3831].Request.Path = "/subscriptions/580e695b-b1e4-/resourceGroups/31ed66f5-a85e-4b7/providers/Microsoft.ApiManagement/service/a099c83c-e4/tenant/7bcff023-f/regenerateSecondaryKey"; 20512Requests[3832].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20513Requests[3832].Request.Path = "/subscriptions/49324851-b7dc-/resourceGroups/02366f58-9e16-4f7/providers/Microsoft.ApiManagement/service/5e1c8b86-28/tenant/6a223e5c-426d-404/deploy"; 20516Requests[3833].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20517Requests[3833].Request.Path = "/subscriptions/6c9ffbdc-5326-/resourceGroups/e31d6fa2-90ff-445/providers/Microsoft.ApiManagement/service/05de86ea-39/tenant/a8456482-7c64-406/save"; 20520Requests[3834].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20521Requests[3834].Request.Path = "/subscriptions/75c1f2e0-0bec-/resourceGroups/569076c2-37e4-404/providers/Microsoft.ApiManagement/service/28204d3b-94/tenant/5e453b59-097f-494/syncState"; 20524Requests[3835].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20525Requests[3835].Request.Path = "/subscriptions/c950c177-bc1f-/resourceGroups/ac480fff-6b92-452/providers/Microsoft.ApiManagement/service/9cf9bbd5-20/tenant/8400b5fd-5010-43d/validate"; 20528Requests[3836].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20529Requests[3836].Request.Path = "/subscriptions/cf590942-3ff5-/resourceGroups/e9c74933-698c-4b3/providers/Microsoft.ApiManagement/service/a4c58e7b-63/users/46fe8/generateSsoUrl"; 20532Requests[3837].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20533Requests[3837].Request.Path = "/subscriptions/d4ec4fe6-9363-/resourceGroups/f6cb60e7-2465-4ea/providers/Microsoft.ApiManagement/service/3bf26a64-a5/users/df1be/groups"; 20536Requests[3838].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20537Requests[3838].Request.Path = "/subscriptions/8072465d-ab48-/resourceGroups/a792de2e-7ddd-4f0/providers/Microsoft.ApiManagement/service/9ded7f49-ec/users/a0da9/identities"; 20540Requests[3839].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20541Requests[3839].Request.Path = "/subscriptions/b0b146f9-363b-/resourceGroups/ba388a37-0551-451/providers/Microsoft.ApiManagement/service/74a585d5-29/users/c61dc/subscriptions"; 20544Requests[3840].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20545Requests[3840].Request.Path = "/subscriptions/c7c80af6-3aa4-/resourceGroups/564c0b1a-3231-4dd/providers/Microsoft.ApiManagement/service/4ebc951e-4f/users/f06b4/token"; 20548Requests[3841].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20549Requests[3841].Request.Path = "/subscriptions/c8dffa5a-807e-/resourceGroups/e9952974-e684-4e6/providers/Microsoft.Automation/automationAccounts/4f30404f-ec91-4390-a2/compilationjobs/5a4ed/streams"; 20552Requests[3842].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20553Requests[3842].Request.Path = "/subscriptions/72aff501-ce60-/resourceGroups/e27ebba8-1f55-416/providers/Microsoft.Automation/automationAccounts/6dafd8c4-aa59-4488-b0/configurations/25c072b1-1756-4bd/content"; 20556Requests[3843].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20557Requests[3843].Request.Path = "/subscriptions/c5cb4dc2-91c1-/resourceGroups/4a7fd612-7286-4b1/providers/Microsoft.Automation/automationAccounts/84b5bc2a-ec39-44ba-90/jobs/8a35b/output"; 20560Requests[3844].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20561Requests[3844].Request.Path = "/subscriptions/0ebe54a5-1fde-/resourceGroups/b72046d1-a885-44d/providers/Microsoft.Automation/automationAccounts/3b8aa075-7633-4166-89/jobs/0935d/resume"; 20564Requests[3845].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20565Requests[3845].Request.Path = "/subscriptions/28c605a1-3653-/resourceGroups/50dd9c32-5675-450/providers/Microsoft.Automation/automationAccounts/5f1774c8-0c94-4bca-9e/jobs/90954/runbookContent"; 20568Requests[3846].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20569Requests[3846].Request.Path = "/subscriptions/1ec8a62d-db22-/resourceGroups/e4b77632-a8bb-492/providers/Microsoft.Automation/automationAccounts/50ccb68c-41b2-42af-85/jobs/6531f/stop"; 20572Requests[3847].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20573Requests[3847].Request.Path = "/subscriptions/89fe012a-395e-/resourceGroups/05188d6d-4ebd-441/providers/Microsoft.Automation/automationAccounts/1941c128-cda4-4323-95/jobs/08367/streams"; 20576Requests[3848].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20577Requests[3848].Request.Path = "/subscriptions/d504aecd-6653-/resourceGroups/d2e84ec3-236e-428/providers/Microsoft.Automation/automationAccounts/6b05a669-3cfe-4cb2-9d/jobs/7873e/suspend"; 20580Requests[3849].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20581Requests[3849].Request.Path = "/subscriptions/d4de0e90-a003-/resourceGroups/6cbbb2e4-2f86-4c4/providers/Microsoft.Automation/automationAccounts/ce08325f-5ead-4fd2-ad/modules/594ab6aa-d/activities"; 20584Requests[3850].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20585Requests[3850].Request.Path = "/subscriptions/4af34b12-2f48-/resourceGroups/75f074c0-e2c5-4ae/providers/Microsoft.Automation/automationAccounts/9589bd36-79b8-4c93-91/nodes/ef9f48/reports"; 20588Requests[3851].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20589Requests[3851].Request.Path = "/subscriptions/0e5d8d60-b2ab-/resourceGroups/560d9421-5bdc-458/providers/Microsoft.Automation/automationAccounts/3047471e-6a17-486a-a4/objectDataTypes/ffc3bab1/fields"; 20592Requests[3852].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20593Requests[3852].Request.Path = "/subscriptions/6a9009eb-34c1-/resourceGroups/098ad8a6-ee55-48d/providers/Microsoft.Automation/automationAccounts/b4b6e3d3-e060-4d83-b6/runbooks/90680981-3c/content"; 20596Requests[3853].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20597Requests[3853].Request.Path = "/subscriptions/1edafe2a-a314-/resourceGroups/adbd9338-7c43-472/providers/Microsoft.Automation/automationAccounts/e31cc128-25ea-44af-9b/runbooks/df1e8d2e-81/draft"; 20600Requests[3854].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20601Requests[3854].Request.Path = "/subscriptions/b752abbd-45d6-/resourceGroups/fb6ae255-7b6b-4db/providers/Microsoft.Automation/automationAccounts/88619468-d739-4610-81/sourceControls/c6aa65fc-d2a3-414/sourceControlSyncJobs"; 20604Requests[3855].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20605Requests[3855].Request.Path = "/subscriptions/3e31903c-222d-/resourceGroups/723c715e-fc95-494/providers/Microsoft.Automation/automationAccounts/3eb782f6-5f12-4acd-9e/watchers/5974ac71-80/start"; 20608Requests[3856].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20609Requests[3856].Request.Path = "/subscriptions/4d0f4ea4-78cb-/resourceGroups/0da10b55-1888-4da/providers/Microsoft.Automation/automationAccounts/919efafa-89b7-48a8-aa/watchers/578cba9f-89/stop"; 20612Requests[3857].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20613Requests[3857].Request.Path = "/subscriptions/8e62fc77-cdf7-/resourcegroups/47c70e47-baa2-419/providers/Microsoft.Backup.Admin/backupLocations/f457cc75/backups/1dc8ac/restore"; 20616Requests[3858].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20617Requests[3858].Request.Path = "/subscriptions/5c4a096e-87d2-/resourceGroups/9d2d7935-dd5c-466/providers/Microsoft.Batch/batchAccounts/999efb44-1a/certificates/3149d7ac-13c0-4/cancelDelete"; 20620Requests[3859].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20621Requests[3859].Request.Path = "/subscriptions/45251a6c-e4f1-/resourceGroups/48942da9-1bfb-4af/providers/Microsoft.Batch/batchAccounts/1ae89bdf-8e/pools/1c1ef48f/disableAutoScale"; 20624Requests[3860].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20625Requests[3860].Request.Path = "/subscriptions/b1f6ee85-3f0f-/resourceGroups/9ba38741-d7b3-498/providers/Microsoft.Batch/batchAccounts/955a95b1-3e/pools/1bd25b1e/stopResize"; 20628Requests[3861].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20629Requests[3861].Request.Path = "/subscriptions/ad6be55e-ff3e-/resourceGroups/2c1b7933-be3e-48a/providers/Microsoft.BatchAI/workspaces/db8f8c74-267a/clusters/ec520238-1e/listRemoteLoginInformation"; 20632Requests[3862].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20633Requests[3862].Request.Path = "/subscriptions/d150d776-8095-/resourceGroups/3c7ea214-4792-48a/providers/Microsoft.BatchAI/workspaces/9e0bccc2-3840/experiments/50242426-2a4b-/jobs"; 20636Requests[3863].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20637Requests[3863].Request.Path = "/subscriptions/96f3a0ce-97fc-/resourceGroups/8b9b4f29-996d-462/providers/Microsoft.BotService/botServices/bb90a05d-d3a/channels/39968973-c1/listChannelWithKeys"; 20640Requests[3864].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20641Requests[3864].Request.Path = "/subscriptions/9c93e2d5-d042-/resourceGroups/ee81894d-3b2f-418/providers/Microsoft.BotService/botServices/21f67fbd-a65/Connections/7877dd79-eda9-/listWithSecrets"; 20644Requests[3865].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20645Requests[3865].Request.Path = "/subscriptions/c763aebd-bb2b-/resourceGroups/7f1aca9b-3903-44a/providers/Microsoft.Cdn/profiles/f0073b84-5f/endpoints/0e662c7b-6d5/checkResourceUsage"; 20648Requests[3866].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20649Requests[3866].Request.Path = "/subscriptions/45cce753-12cd-/resourceGroups/29a4ed20-c264-4aa/providers/Microsoft.Cdn/profiles/b31fc582-fc/endpoints/ab2851e5-dec/customDomains"; 20652Requests[3867].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20653Requests[3867].Request.Path = "/subscriptions/2e751242-de87-/resourceGroups/1d9852a8-637f-424/providers/Microsoft.Cdn/profiles/11ca6289-79/endpoints/0fe85d45-00a/load"; 20656Requests[3868].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20657Requests[3868].Request.Path = "/subscriptions/f7aadd52-b923-/resourceGroups/f528da9b-2f2d-4d6/providers/Microsoft.Cdn/profiles/6e84303c-3b/endpoints/4174a136-577/origins"; 20660Requests[3869].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20661Requests[3869].Request.Path = "/subscriptions/cfcb594d-ce8c-/resourceGroups/efa12525-b819-491/providers/Microsoft.Cdn/profiles/118ebbc3-30/endpoints/03468f98-b6d/purge"; 20664Requests[3870].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20665Requests[3870].Request.Path = "/subscriptions/f0615c57-2d8c-/resourceGroups/0282d5c7-8ada-414/providers/Microsoft.Cdn/profiles/398af687-9a/endpoints/bbf0c4c6-d1a/start"; 20668Requests[3871].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20669Requests[3871].Request.Path = "/subscriptions/9b68c030-b2ad-/resourceGroups/dd45b0ab-e535-4e4/providers/Microsoft.Cdn/profiles/e7c56fd4-46/endpoints/031bef3c-dc6/stop"; 20672Requests[3872].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20673Requests[3872].Request.Path = "/subscriptions/9990a053-6d32-/resourceGroups/7ae693cc-f98a-493/providers/Microsoft.Cdn/profiles/a2ab5401-17/endpoints/b676fc29-c85/validateCustomDomain"; 20676Requests[3873].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20677Requests[3873].Request.Path = "/subscriptions/790704bb-0151-/resourceGroups/8b4d40e4-d976-4b1/providers/Microsoft.Compute/galleries/9e8a7978-63/images/5c8c7824-2282-43/versions"; 20680Requests[3874].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20681Requests[3874].Request.Path = "/subscriptions/2de39a6e-ffaf-/resourceGroups/9c39a25a-9fea-4e3/providers/microsoft.Compute/virtualMachineScaleSets/0384eb6b-f4ef-48fc-ba19-99/virtualMachines/c2abb64c-9eee-454f-/networkInterfaces"; 20684Requests[3875].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20685Requests[3875].Request.Path = "/subscriptions/7ef99ff0-340c-/resourceGroups/6ff4940b-1245-4dc/providers/Microsoft.Compute/virtualMachineScaleSets/74169111-acfa-/virtualmachines/ce099df3-5/deallocate"; 20688Requests[3876].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20689Requests[3876].Request.Path = "/subscriptions/28ceafa3-7d1c-/resourceGroups/bfc3c67c-2db0-4ec/providers/Microsoft.Compute/virtualMachineScaleSets/75f21679-6867-/virtualmachines/51f93d0c-f/instanceView"; 20692Requests[3877].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20693Requests[3877].Request.Path = "/subscriptions/c8fa9333-1113-/resourceGroups/f6d56097-c1b4-4cb/providers/Microsoft.Compute/virtualMachineScaleSets/fa4a7b4d-e6bc-/virtualmachines/cace8e61-b/performMaintenance"; 20696Requests[3878].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20697Requests[3878].Request.Path = "/subscriptions/25709df8-4194-/resourceGroups/5bd20531-b503-41a/providers/Microsoft.Compute/virtualMachineScaleSets/501897fa-32db-/virtualmachines/d58b1515-3/poweroff"; 20700Requests[3879].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20701Requests[3879].Request.Path = "/subscriptions/2324e0d1-c45a-/resourceGroups/5324cd6a-074a-485/providers/Microsoft.Compute/virtualMachineScaleSets/d1076b16-c5ff-/virtualmachines/67b6d63a-4/redeploy"; 20704Requests[3880].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20705Requests[3880].Request.Path = "/subscriptions/ba08154f-5bf7-/resourceGroups/719db02d-2d48-44b/providers/Microsoft.Compute/virtualMachineScaleSets/3bb1ea1c-3505-/virtualmachines/a39e9583-c/reimage"; 20708Requests[3881].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20709Requests[3881].Request.Path = "/subscriptions/42168226-d288-/resourceGroups/28229f10-b15c-4f1/providers/Microsoft.Compute/virtualMachineScaleSets/8dc8c478-61b6-/virtualmachines/ceefa225-8/reimageall"; 20712Requests[3882].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20713Requests[3882].Request.Path = "/subscriptions/88a55e5a-bc7f-/resourceGroups/038f554e-7726-4db/providers/Microsoft.Compute/virtualMachineScaleSets/4224ab3c-740a-/virtualmachines/bc9093b0-2/restart"; 20716Requests[3883].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20717Requests[3883].Request.Path = "/subscriptions/9083c7c0-8f6f-/resourceGroups/c104e0f0-ef73-4f2/providers/Microsoft.Compute/virtualMachineScaleSets/263ec3a5-df10-/virtualmachines/100e15bf-0/start"; 20720Requests[3884].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20721Requests[3884].Request.Path = "/subscriptions/ef88f3f0-4cfc-/resourceGroups/0531a345-4dee-4a8/providers/Microsoft.ContainerInstance/containerGroups/ef4142cb-2193-40a2/containers/04044390-bb68/exec"; 20724Requests[3885].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20725Requests[3885].Request.Path = "/subscriptions/a50d13cb-4fb1-/resourceGroups/7c7141be-8517-48e/providers/Microsoft.ContainerInstance/containerGroups/eb2f9bc2-8664-47c0/containers/71f416af-9b80/logs"; 20728Requests[3886].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20729Requests[3886].Request.Path = "/subscriptions/8672a101-337c-/resourceGroups/66495630-8c4d-43a/providers/Microsoft.ContainerRegistry/registries/be8eb9eb-f9b/builds/0d461a7/cancel"; 20732Requests[3887].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20733Requests[3887].Request.Path = "/subscriptions/6571cfcd-40b4-/resourceGroups/1868741a-605a-4a8/providers/Microsoft.ContainerRegistry/registries/4ccba60a-6e8/builds/10ee1ad/getLogLink"; 20736Requests[3888].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20737Requests[3888].Request.Path = "/subscriptions/eff130bd-4df6-/resourceGroups/37b92ac9-d6da-41f/providers/Microsoft.ContainerRegistry/registries/64ab3fb0-04d/buildTasks/8f171a29-703d/listSourceRepositoryProperties"; 20740Requests[3889].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20741Requests[3889].Request.Path = "/subscriptions/f40077ac-ef8d-/resourceGroups/9eb8b28c-bb5a-48d/providers/Microsoft.ContainerRegistry/registries/3afdbe97-6b1/buildTasks/efe1bfc8-5aef/steps"; 20744Requests[3890].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20745Requests[3890].Request.Path = "/subscriptions/42fd5aaf-155b-/resourceGroups/1031049d-44ef-419/providers/Microsoft.ContainerRegistry/registries/096c459b-e00/webhooks/a9c7680d-a4/getCallbackConfig"; 20748Requests[3891].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20749Requests[3891].Request.Path = "/subscriptions/163b10b6-1ef1-/resourceGroups/8aedafc8-20fb-472/providers/Microsoft.ContainerRegistry/registries/a744aa4a-d35/webhooks/becd47fb-d1/listEvents"; 20752Requests[3892].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20753Requests[3892].Request.Path = "/subscriptions/c754ef0a-a9d4-/resourceGroups/17b816d7-79c2-4d0/providers/Microsoft.ContainerRegistry/registries/e24558ab-a90/webhooks/7a66108e-8e/ping"; 20756Requests[3893].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20757Requests[3893].Request.Path = "/subscriptions/5a74b1db-f6b6-/resourceGroups/a29136d1-b3ab-4b5/providers/Microsoft.ContainerService/managedClusters/d51df64d-e5f/accessProfiles/8e9592ef/listCredential"; 20760Requests[3894].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20761Requests[3894].Request.Path = "/subscriptions/7075178e-4ff4-/resourceGroups/0aea62df-590c-428/providers/Microsoft.CustomerInsights/hubs/f26c04b/authorizationPolicies/444b3757-5c1a-49ca-a707/regeneratePrimaryKey"; 20764Requests[3895].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20765Requests[3895].Request.Path = "/subscriptions/a07ba9eb-c6a9-/resourceGroups/23138420-f3ea-43d/providers/Microsoft.CustomerInsights/hubs/6588453/authorizationPolicies/6380905b-3a11-4d26-ad55/regenerateSecondaryKey"; 20768Requests[3896].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20769Requests[3896].Request.Path = "/subscriptions/20e03d9c-de58-/resourceGroups/7ea00634-d2d3-420/providers/Microsoft.CustomerInsights/hubs/72e9086/connectors/634e8f78-8192/mappings"; 20772Requests[3897].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20773Requests[3897].Request.Path = "/subscriptions/8f3c4373-b3df-/resourceGroups/9d92797c-00e3-496/providers/Microsoft.CustomerInsights/hubs/76f1b92/interactions/0c2c0086-d794-4/suggestRelationshipLinks"; 20776Requests[3898].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20777Requests[3898].Request.Path = "/subscriptions/e8834317-968b-/resourceGroups/cfa04c18-7580-44d/providers/Microsoft.CustomerInsights/hubs/b55d5fa/kpi/6c1677d/reprocess"; 20780Requests[3899].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20781Requests[3899].Request.Path = "/subscriptions/8074f528-07d9-/resourceGroups/ef271695-ad27-4be/providers/Microsoft.CustomerInsights/hubs/0afee87/predictions/96d19ab2-6e0e-/getModelStatus"; 20784Requests[3900].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20785Requests[3900].Request.Path = "/subscriptions/d36ebcac-504c-/resourceGroups/7c47ec05-cc52-436/providers/Microsoft.CustomerInsights/hubs/b7c7f27/predictions/1c0e3993-e334-/getTrainingResults"; 20788Requests[3901].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20789Requests[3901].Request.Path = "/subscriptions/2cefb358-667f-/resourceGroups/29744e54-a120-4c5/providers/Microsoft.CustomerInsights/hubs/3d34458/predictions/d5556f82-5d5d-/modelStatus"; 20792Requests[3902].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20793Requests[3902].Request.Path = "/subscriptions/4456a0ba-81ff-/resourceGroups/4657d9c2-54d0-47c/providers/Microsoft.CustomerInsights/hubs/04ec55f/profiles/c5bbd841-31/getEnrichingKpis"; 20796Requests[3903].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20797Requests[3903].Request.Path = "/subscriptions/d3924d5b-7aac-/resourceGroups/eb7b848f-1839-4d1/providers/Microsoft.DataFactory/factories/a71cafb7-8e/integrationRuntimes/8b9c2e73-bbca-439f-9a9/getConnectionInfo"; 20800Requests[3904].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20801Requests[3904].Request.Path = "/subscriptions/a0783a3c-187a-/resourceGroups/6fcd6b16-26c4-4f7/providers/Microsoft.DataFactory/factories/27fb73eb-c9/integrationRuntimes/11f6e504-15d8-4cb6-a67/getStatus"; 20804Requests[3905].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20805Requests[3905].Request.Path = "/subscriptions/af3093db-0331-/resourceGroups/57769fe3-0918-4b4/providers/Microsoft.DataFactory/factories/4eba0e3a-11/integrationRuntimes/20816381-db1f-482c-ad3/listAuthKeys"; 20808Requests[3906].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20809Requests[3906].Request.Path = "/subscriptions/8909fc56-0714-/resourceGroups/652d3b4e-20f3-4d5/providers/Microsoft.DataFactory/factories/d35859e4-c0/integrationRuntimes/38e138d7-54e0-4b80-ac9/monitoringData"; 20812Requests[3907].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20813Requests[3907].Request.Path = "/subscriptions/41fe297f-1ebc-/resourceGroups/7cbf0b28-a032-4b9/providers/Microsoft.DataFactory/factories/d0cd9245-96/integrationRuntimes/8d5933dc-d182-459c-ae4/regenerateAuthKey"; 20816Requests[3908].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20817Requests[3908].Request.Path = "/subscriptions/7c5e3dd6-0afa-/resourceGroups/26492686-d61d-4b7/providers/Microsoft.DataFactory/factories/d5baa79e-fe/integrationRuntimes/c8149648-6e73-4727-ac0/removeNode"; 20820Requests[3909].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20821Requests[3909].Request.Path = "/subscriptions/bb3a9e3f-3df1-/resourceGroups/b2f6c2cb-42d8-437/providers/Microsoft.DataFactory/factories/ee9ac219-cc/integrationRuntimes/5b1664d6-8496-4ca9-8f4/start"; 20824Requests[3910].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20825Requests[3910].Request.Path = "/subscriptions/863c4b49-6ca1-/resourceGroups/9e81de85-127d-4a8/providers/Microsoft.DataFactory/factories/29d6af01-2e/integrationRuntimes/2b2f535b-73e9-49ec-8a0/stop"; 20828Requests[3911].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20829Requests[3911].Request.Path = "/subscriptions/cb4ad45a-83fc-/resourceGroups/05e35151-e88e-458/providers/Microsoft.DataFactory/factories/d2b9772c-c4/integrationRuntimes/be1ea13b-ceda-4c78-989/syncCredentials"; 20832Requests[3912].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20833Requests[3912].Request.Path = "/subscriptions/cd304ba8-99e7-/resourceGroups/b80ade59-42be-4a2/providers/Microsoft.DataFactory/factories/61a01dae-ef/integrationRuntimes/43596aaf-1461-4d58-b91/upgrade"; 20836Requests[3913].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20837Requests[3913].Request.Path = "/subscriptions/1ab09b79-efb5-/resourceGroups/1607e18d-9619-408/providers/Microsoft.DataFactory/factories/3656aba7-ff/pipelineruns/fb668/activityruns"; 20840Requests[3914].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20841Requests[3914].Request.Path = "/subscriptions/bacddc95-eabe-/resourceGroups/9d507039-e504-436/providers/Microsoft.DataFactory/factories/a831bca1-05/pipelines/bc86c1c9-5e5/createRun"; 20844Requests[3915].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20845Requests[3915].Request.Path = "/subscriptions/cdd1e347-8807-/resourceGroups/3bf71f17-c952-4c2/providers/Microsoft.DataFactory/factories/b0fe79af-c6/triggers/b7d4c785-af/start"; 20848Requests[3916].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20849Requests[3916].Request.Path = "/subscriptions/40e2ce56-e7bf-/resourceGroups/95d4f9e6-750d-4c0/providers/Microsoft.DataFactory/factories/a072eee2-01/triggers/1396ba54-15/stop"; 20852Requests[3917].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20853Requests[3917].Request.Path = "/subscriptions/562cd6eb-dc58-/resourceGroups/fc5e3647-4637-411/providers/Microsoft.DataFactory/factories/bc7b7424-4b/triggers/ba236dcb-02/triggerruns"; 20856Requests[3918].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20857Requests[3918].Request.Path = "/subscriptions/71b25ac1-2b6a-/resourceGroups/684c7484-982d-4bf/providers/Microsoft.DataLakeAnalytics/accounts/7a21530f-06/storageAccounts/a6afa904-7931-4bf0/containers"; 20860Requests[3919].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20861Requests[3919].Request.Path = "/subscriptions/ffdeeca5-5383-/resourceGroups/b39fa11f-060c-4f9/providers/Microsoft.Devices/IotHubs/ad0b5e26-a72/certificates/28215eb5-77a0-4/generateVerificationCode"; 20864Requests[3920].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20865Requests[3920].Request.Path = "/subscriptions/b5aea6de-8ac4-/resourceGroups/0e7f5cc5-ae9c-4a1/providers/Microsoft.Devices/IotHubs/c20cfd9c-27e/certificates/7d9df220-664e-4/verify"; 20868Requests[3921].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20869Requests[3921].Request.Path = "/subscriptions/c308d2b3-195a-/resourceGroups/4257a5ea-d6b7-4a7/providers/Microsoft.Devices/IotHubs/6a09fdd5-2f0/eventHubEndpoints/c8515d1f-4021-47ff-b/ConsumerGroups"; 20872Requests[3922].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20873Requests[3922].Request.Path = "/subscriptions/9d597319-d399-/resourceGroups/88fced10-7eb5-46e/providers/Microsoft.Devices/IotHubs/40615f36-dc6/IotHubKeys/3920100/listkeys"; 20876Requests[3923].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20877Requests[3923].Request.Path = "/subscriptions/d1a8497e-dd7a-/resourceGroups/cb4a2d28-51e4-464/providers/Microsoft.Devices/provisioningServices/b6959a04-678d-4c56-9b75/certificates/40c3f716-b8fe-4/generateVerificationCode"; 20880Requests[3924].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20881Requests[3924].Request.Path = "/subscriptions/532ba51c-0737-/resourceGroups/2574c30b-29af-4dd/providers/Microsoft.Devices/provisioningServices/03579272-88dc-4016-99d9/certificates/a37b397c-472b-4/verify"; 20884Requests[3925].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20885Requests[3925].Request.Path = "/subscriptions/146df8e2-11f1-/resourceGroups/eb77c8d7-3d58-4f6/providers/Microsoft.Devices/provisioningServices/31df9779-bed6-4b18-99ae/keys/3b5362c/listkeys"; 20888Requests[3926].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20889Requests[3926].Request.Path = "/subscriptions/6a67577a-3d69-/resourceGroups/e8470821-3368-449/providers/Microsoft.DevTestLab/labs/02a58c6/artifactsources/87d92219-cbf8-4179/armtemplates"; 20892Requests[3927].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20893Requests[3927].Request.Path = "/subscriptions/3f47c078-bf7f-/resourceGroups/5fc4255a-c80e-407/providers/Microsoft.DevTestLab/labs/8e04015/artifactsources/3d02244c-e322-43cd/artifacts"; 20896Requests[3928].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20897Requests[3928].Request.Path = "/subscriptions/eca2a233-b183-/resourceGroups/4b6f20cc-7ec5-4c4/providers/Microsoft.DevTestLab/labs/1387091/costinsights/88cd7/refreshData"; 20900Requests[3929].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20901Requests[3929].Request.Path = "/subscriptions/765a9b34-4c3d-/resourceGroups/61e49221-66d9-40a/providers/Microsoft.DevTestLab/labs/607aa52/costs/c54a5/refreshData"; 20904Requests[3930].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20905Requests[3930].Request.Path = "/subscriptions/6e70d267-217d-/resourceGroups/76a74e9c-3604-49a/providers/Microsoft.DevTestLab/labs/b07d5ac/notificationchannels/9a921/notify"; 20908Requests[3931].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20909Requests[3931].Request.Path = "/subscriptions/f41c1658-565e-/resourceGroups/49af5e86-8bd9-437/providers/Microsoft.DevTestLab/labs/71b26f4/policysets/bce8a/evaluatePolicies"; 20912Requests[3932].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20913Requests[3932].Request.Path = "/subscriptions/242c5408-99e8-/resourceGroups/f44a9fe5-dd03-442/providers/Microsoft.DevTestLab/labs/6fc9ba5/policysets/9778642b-68bd/policies"; 20916Requests[3933].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20917Requests[3933].Request.Path = "/subscriptions/b49f555c-5d50-/resourceGroups/e8e197c2-aa1a-44e/providers/Microsoft.DevTestLab/labs/880085b/schedules/1e249/execute"; 20920Requests[3934].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20921Requests[3934].Request.Path = "/subscriptions/e57d2bb5-3cd1-/resourceGroups/be2c3252-bf26-4cc/providers/Microsoft.DevTestLab/labs/582a0e7/schedules/1469d/listApplicable"; 20924Requests[3935].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20925Requests[3935].Request.Path = "/subscriptions/71c88fab-b8d2-/resourceGroups/ce96a037-6b5b-4e3/providers/Microsoft.DevTestLab/labs/a45a4f7/users/dc622b6e/disks"; 20928Requests[3936].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20929Requests[3936].Request.Path = "/subscriptions/24565dea-5330-/resourceGroups/e8de240b-80e5-431/providers/Microsoft.DevTestLab/labs/acd45b8/users/10392f4b/environments"; 20932Requests[3937].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20933Requests[3937].Request.Path = "/subscriptions/5e4f4863-51af-/resourceGroups/174479ab-4f94-427/providers/Microsoft.DevTestLab/labs/597e66c/users/a337b9ae/secrets"; 20936Requests[3938].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20937Requests[3938].Request.Path = "/subscriptions/2d9b3fbf-3a11-/resourceGroups/aa9a1de0-039b-46e/providers/Microsoft.DevTestLab/labs/448297a/virtualmachines/f0dab/addDataDisk"; 20940Requests[3939].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20941Requests[3939].Request.Path = "/subscriptions/6301cf2d-3d3e-/resourceGroups/fd329987-9b2c-45f/providers/Microsoft.DevTestLab/labs/49e5c64/virtualmachines/b6c0f/applyArtifacts"; 20944Requests[3940].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20945Requests[3940].Request.Path = "/subscriptions/5c2550af-0c4f-/resourceGroups/433e300a-9921-414/providers/Microsoft.DevTestLab/labs/26c90ff/virtualmachines/7751c/claim"; 20948Requests[3941].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20949Requests[3941].Request.Path = "/subscriptions/eb3992c3-3b78-/resourceGroups/1a92d991-5870-459/providers/Microsoft.DevTestLab/labs/b1b0d93/virtualmachines/e3c35/detachDataDisk"; 20952Requests[3942].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20953Requests[3942].Request.Path = "/subscriptions/8ced5264-d1df-/resourceGroups/f07dc3df-0ed8-4fa/providers/Microsoft.DevTestLab/labs/a46eff5/virtualmachines/1d3ed/listApplicableSchedules"; 20956Requests[3943].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20957Requests[3943].Request.Path = "/subscriptions/51384316-b25f-/resourceGroups/b133dd43-1f2a-493/providers/Microsoft.DevTestLab/labs/ad87515/virtualmachines/01f26/start"; 20960Requests[3944].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20961Requests[3944].Request.Path = "/subscriptions/17a0daa5-ef9a-/resourceGroups/9f60aaa8-79e2-453/providers/Microsoft.DevTestLab/labs/04bc807/virtualmachines/a0070/stop"; 20964Requests[3945].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20965Requests[3945].Request.Path = "/subscriptions/7e65253b-4a29-/resourceGroups/c7437169-f1c2-405/providers/Microsoft.DevTestLab/labs/0f31a8c/virtualmachines/b7371032-f92a-4118/schedules"; 20968Requests[3946].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20969Requests[3946].Request.Path = "/subscriptions/2b003331-ca01-/resourceGroups/b2872e6c-662f-407/providers/Microsoft.DocumentDB/databaseAccounts/69ebaa78-f5/databases/1200731e-41/metricDefinitions"; 20972Requests[3947].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20973Requests[3947].Request.Path = "/subscriptions/d5c2f451-be5c-/resourceGroups/ac650636-6d01-436/providers/Microsoft.DocumentDB/databaseAccounts/c8c4ac4b-20/databases/08cea02f-0c/metrics"; 20976Requests[3948].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20977Requests[3948].Request.Path = "/subscriptions/7cd26de5-3a2c-/resourceGroups/aba06210-82d8-45e/providers/Microsoft.DocumentDB/databaseAccounts/b8ad85c0-b0/databases/973d8eed-1f/usages"; 20980Requests[3949].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20981Requests[3949].Request.Path = "/subscriptions/3f6ceb3c-9f4e-/resourceGroups/94713a14-58c0-40e/providers/Microsoft.DocumentDB/databaseAccounts/dae6cb0a-ec/region/d67ecb/metrics"; 20984Requests[3950].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20985Requests[3950].Request.Path = "/subscriptions/dd1662fd-a112-/resourceGroups/ef7a2415-7315-4de/providers/Microsoft.EventGrid/locations/db4fdb9c/topicTypes/5fa83125-5b31/eventSubscriptions"; 20988Requests[3951].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20989Requests[3951].Request.Path = "/subscriptions/2dc0b4b2-478e-/resourceGroups/f9cf0a73-bd07-47e/providers/Microsoft.EventHub/namespaces/79009c7e-4aa3/AuthorizationRules/9fc7debf-ca6f-481a-b6/listKeys"; 20992Requests[3952].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 20993Requests[3952].Request.Path = "/subscriptions/68355d79-a398-/resourceGroups/5b4011ad-b821-410/providers/Microsoft.EventHub/namespaces/2187e68c-cedd/AuthorizationRules/ddd216c6-efca-4f9d-a0/regenerateKeys"; 20996Requests[3953].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 20997Requests[3953].Request.Path = "/subscriptions/3a0271d4-728a-/resourceGroups/12cc097d-bc61-492/providers/Microsoft.EventHub/namespaces/4b1a60bc-8f5a/disasterRecoveryConfigs/78f49/AuthorizationRules"; 21000Requests[3954].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21001Requests[3954].Request.Path = "/subscriptions/723f7a14-1349-/resourceGroups/05a3c565-e503-496/providers/Microsoft.EventHub/namespaces/30fc31ee-d3eb/disasterRecoveryConfigs/73840/breakPairing"; 21004Requests[3955].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21005Requests[3955].Request.Path = "/subscriptions/a6621589-33d4-/resourceGroups/37a1cca7-32fa-452/providers/Microsoft.EventHub/namespaces/b9e9440d-0c3b/disasterRecoveryConfigs/79fce/failover"; 21008Requests[3956].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21009Requests[3956].Request.Path = "/subscriptions/13ecf24d-6099-/resourceGroups/09408709-1bf7-4c7/providers/Microsoft.EventHub/namespaces/04dd6b43-93f3/eventhubs/21e029f6-2d3/authorizationRules"; 21012Requests[3957].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21013Requests[3957].Request.Path = "/subscriptions/71b06c72-b7de-/resourceGroups/3d5f9c99-3e1b-4a3/providers/Microsoft.EventHub/namespaces/938a6d96-aab7/eventhubs/d8e5117f-e77/consumergroups"; 21016Requests[3958].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21017Requests[3958].Request.Path = "/subscriptions/bd0507fa-7827-/resourceGroups/a46bbef4-703b-402/providers/Microsoft.Fabric.Admin/fabricLocations/4eece12c/infraRoleInstances/b53636a5-51f1-441/PowerOff"; 21020Requests[3959].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21021Requests[3959].Request.Path = "/subscriptions/65086138-b524-/resourceGroups/f5d95590-3e2e-401/providers/Microsoft.Fabric.Admin/fabricLocations/8a164834/infraRoleInstances/ff0da6e8-3ea5-4b7/PowerOn"; 21024Requests[3960].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21025Requests[3960].Request.Path = "/subscriptions/92cadc22-33d4-/resourceGroups/5e662666-f6a3-476/providers/Microsoft.Fabric.Admin/fabricLocations/5e35de70/infraRoleInstances/9e1ca717-7b10-47e/Reboot"; 21028Requests[3961].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21029Requests[3961].Request.Path = "/subscriptions/892653ea-c611-/resourceGroups/afbdf5c4-772a-442/providers/Microsoft.Fabric.Admin/fabricLocations/b74abd0b/infraRoleInstances/de954d36-bb8c-485/Shutdown"; 21032Requests[3962].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21033Requests[3962].Request.Path = "/subscriptions/c07c2730-3347-/resourceGroups/eadbe4fe-da81-422/providers/Microsoft.Fabric.Admin/fabricLocations/5c204962/infraRoles/85627345-/Restart"; 21036Requests[3963].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21037Requests[3963].Request.Path = "/subscriptions/7f40de4f-9b23-/resourceGroups/82d9abf3-fc37-4c7/providers/Microsoft.Fabric.Admin/fabricLocations/b8437c75/logicalNetworks/341430eb-9858-/logicalSubnets"; 21040Requests[3964].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21041Requests[3964].Request.Path = "/subscriptions/245a6bbd-4083-/resourceGroups/15e44c9a-0bc4-422/providers/Microsoft.Fabric.Admin/fabricLocations/273d273f/scaleUnitNodes/07900cee-0345/PowerOff"; 21044Requests[3965].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21045Requests[3965].Request.Path = "/subscriptions/c06d786f-fa02-/resourceGroups/aa6c85c0-3331-4c5/providers/Microsoft.Fabric.Admin/fabricLocations/a2e0e2f9/scaleUnitNodes/eea542fe-0c82/PowerOn"; 21048Requests[3966].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21049Requests[3966].Request.Path = "/subscriptions/276423cc-b66d-/resourceGroups/60f28b05-110e-423/providers/Microsoft.Fabric.Admin/fabricLocations/65699f26/scaleUnitNodes/57409945-53b3/Repair"; 21052Requests[3967].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21053Requests[3967].Request.Path = "/subscriptions/f72f35c8-22e5-/resourceGroups/cef52d7d-6c1f-4c9/providers/Microsoft.Fabric.Admin/fabricLocations/d83e8057/scaleUnitNodes/0bb1844f-9bd9/Shutdown"; 21056Requests[3968].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21057Requests[3968].Request.Path = "/subscriptions/e054f26a-6ada-/resourceGroups/cea891bb-05ca-426/providers/Microsoft.Fabric.Admin/fabricLocations/423956a4/scaleUnitNodes/597d064c-7123/StartMaintenanceMode"; 21060Requests[3969].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21061Requests[3969].Request.Path = "/subscriptions/90c38b31-ca30-/resourceGroups/c7180e48-f96d-4a1/providers/Microsoft.Fabric.Admin/fabricLocations/8223c907/scaleUnitNodes/b52e171b-4c16/StopMaintenanceMode"; 21064Requests[3970].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21065Requests[3970].Request.Path = "/subscriptions/0e4c100c-73bf-/resourceGroups/d65f35b5-008c-44f/providers/Microsoft.Fabric.Admin/fabricLocations/0db8ed79/scaleUnits/14a761da-/ScaleOut"; 21068Requests[3971].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21069Requests[3971].Request.Path = "/subscriptions/e2c11c96-1610-/resourceGroups/281dffe8-923d-411/providers/Microsoft.Fabric.Admin/fabricLocations/1b1417ef/storageSubSystems/f93b076c-2487-40/storagePools"; 21072Requests[3972].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21073Requests[3972].Request.Path = "/subscriptions/c0338296-35e8-/resourceGroups/3fa56e8d-02f8-4fd/providers/Microsoft.HDInsight/clusters/dbe67d0a-a9/roles/8a279ccc/resize"; 21076Requests[3973].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21077Requests[3973].Request.Path = "/subscriptions/3ff6ace5-de2d-/resourceGroups/13a5fa1d-7625-42e/providers/Microsoft.HDInsight/clusters/ed0980ba-88/scriptExecutionHistory/6df083dd-f012-4da/promote"; 21080Requests[3974].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21081Requests[3974].Request.Path = "/subscriptions/ddd7e171-45e5-/resourceGroups/18f69bae-ef54-45b/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/326d7aa9/serviceHealths/14453da5-0c53-4eac-8e/resourceHealths"; 21084Requests[3975].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21085Requests[3975].Request.Path = "/subscriptions/aded9ca9-c0a5-/resourceGroups/79825cd6-7c33-4e0/providers/Microsoft.Logic/integrationAccounts/9df7d8ff-6cc3-4c0a-831/agreements/753e8a6c-0756/listContentCallbackUrl"; 21088Requests[3976].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21089Requests[3976].Request.Path = "/subscriptions/2cb9b53c-e289-/resourceGroups/8792e42e-09ac-45e/providers/Microsoft.Logic/integrationAccounts/8fd33e73-ac9d-4455-9eb/assemblies/3453e344-b751-4848-9/listContentCallbackUrl"; 21092Requests[3977].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21093Requests[3977].Request.Path = "/subscriptions/386687e6-3b61-/resourceGroups/b0d1e39b-c9be-437/providers/Microsoft.Logic/integrationAccounts/981bf8dc-dec8-4f8e-891/maps/dc0968a/listContentCallbackUrl"; 21096Requests[3978].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21097Requests[3978].Request.Path = "/subscriptions/b34631b2-f896-/resourceGroups/1654b31a-860b-442/providers/Microsoft.Logic/integrationAccounts/b14a92e4-17f8-4601-b21/partners/59d542d3-48/listContentCallbackUrl"; 21100Requests[3979].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21101Requests[3979].Request.Path = "/subscriptions/6fd5341d-ffeb-/resourceGroups/f3be1e8f-b38f-458/providers/Microsoft.Logic/integrationAccounts/2b1a21d9-5151-4245-be0/schemas/ee4e0823-4/listContentCallbackUrl"; 21104Requests[3980].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21105Requests[3980].Request.Path = "/subscriptions/bab260cd-7f68-/resourceGroups/5f9e5b17-d4dc-49c/providers/Microsoft.Logic/locations/aea4dc2c/workflows/e96c52fc-dc0/validate"; 21108Requests[3981].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21109Requests[3981].Request.Path = "/subscriptions/bf6744a4-5828-/resourceGroups/51df9ae8-799a-49d/providers/Microsoft.Logic/workflows/cf421000-d4e/accessKeys/9f5ab74e-a356/list"; 21112Requests[3982].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21113Requests[3982].Request.Path = "/subscriptions/80596c6d-8fe6-/resourceGroups/87760f7a-60fc-4d3/providers/Microsoft.Logic/workflows/84e8699f-a83/accessKeys/f50956a0-0edd/regenerate"; 21116Requests[3983].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21117Requests[3983].Request.Path = "/subscriptions/83aabfa2-24ea-/resourceGroups/3614d50e-f80c-417/providers/Microsoft.Logic/workflows/7965df25-324/runs/a3f1002/actions"; 21120Requests[3984].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21121Requests[3984].Request.Path = "/subscriptions/6f7da107-5c88-/resourceGroups/76d35e29-140a-48a/providers/Microsoft.Logic/workflows/ec169774-1b8/runs/c9bb82e/cancel"; 21124Requests[3985].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21125Requests[3985].Request.Path = "/subscriptions/856e346d-9bf8-/resourceGroups/407972a3-101f-4af/providers/Microsoft.Logic/workflows/29f48480-3ef/triggers/5c24d8cc-3f/histories"; 21128Requests[3986].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21129Requests[3986].Request.Path = "/subscriptions/80ebe598-4b99-/resourceGroups/a09d388e-d048-46d/providers/Microsoft.Logic/workflows/2643f673-660/triggers/2a856419-ab/listCallbackUrl"; 21132Requests[3987].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21133Requests[3987].Request.Path = "/subscriptions/4f110266-96f5-/resourceGroups/db0b9497-4bdc-4b1/providers/Microsoft.Logic/workflows/cd2d1bfd-106/triggers/7befebdc-d3/reset"; 21136Requests[3988].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21137Requests[3988].Request.Path = "/subscriptions/122da36d-10be-/resourceGroups/aa77cb08-1ed7-4ee/providers/Microsoft.Logic/workflows/4d002500-6fa/triggers/d42e51d9-55/run"; 21140Requests[3989].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21141Requests[3989].Request.Path = "/subscriptions/d21e2089-73a6-/resourceGroups/ae02b2f1-a455-460/providers/Microsoft.Logic/workflows/1f39ebd2-207/triggers/5cfa4f93-e9/setState"; 21144Requests[3990].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21145Requests[3990].Request.Path = "/subscriptions/f50a67ec-7ae5-/resourceGroups/0b72c676-c650-443/providers/Microsoft.MachineLearning/commitmentPlans/812685c6-fbe3-4c51/commitmentAssociations/a5314ea6-a1db-406b-ad7e-6/move"; 21148Requests[3991].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21149Requests[3991].Request.Path = "/subscriptions/628e666b-30ad-/resourceGroups/229ed232-12d3-4f8/providers/Microsoft.Media/mediaServices/3c266170-74/assets/f6a26f0e-/getEncryptionKey"; 21152Requests[3992].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21153Requests[3992].Request.Path = "/subscriptions/1691b50c-8089-/resourceGroups/99ec0d77-5eb6-45f/providers/Microsoft.Media/mediaServices/c9f93bb1-7f/assets/7e505d55-/listContainerSas"; 21156Requests[3993].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21157Requests[3993].Request.Path = "/subscriptions/a9ae2cf0-0a58-/resourceGroups/2ff0009f-426e-46c/providers/Microsoft.Media/mediaServices/dcc175ed-59/contentKeyPolicies/5d9d6f19-2157-492c-9/getPolicyPropertiesWithSecrets"; 21160Requests[3994].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21161Requests[3994].Request.Path = "/subscriptions/f61ca657-1220-/resourceGroups/e04dc50f-081e-489/providers/Microsoft.Media/mediaservices/d4a46686-b8/liveEvents/14cc4635-ed36/liveOutputs"; 21164Requests[3995].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21165Requests[3995].Request.Path = "/subscriptions/8d3dc237-9525-/resourceGroups/dd7c92cc-a1c9-4c6/providers/Microsoft.Media/mediaservices/db2ca602-0c/liveEvents/cb4cb978-e2d8/reset"; 21168Requests[3996].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21169Requests[3996].Request.Path = "/subscriptions/460e604f-ca88-/resourceGroups/47f5bd45-12ad-499/providers/Microsoft.Media/mediaservices/b3364fa2-0e/liveEvents/48e4ddcc-7f8d/start"; 21172Requests[3997].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21173Requests[3997].Request.Path = "/subscriptions/514ca765-5d18-/resourceGroups/9cde063a-63d8-489/providers/Microsoft.Media/mediaservices/39dbaf25-8e/liveEvents/d27a0d4c-9b78/stop"; 21176Requests[3998].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21177Requests[3998].Request.Path = "/subscriptions/c5ce0dbb-42a3-/resourceGroups/ef99b5bf-ce64-4d6/providers/Microsoft.Media/mediaservices/3e66aa60-5d/streamingEndpoints/485aecdf-8901-4e44-b2/scale"; 21180Requests[3999].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21181Requests[3999].Request.Path = "/subscriptions/dfc60bbe-d570-/resourceGroups/0c8a8a64-fa38-4dd/providers/Microsoft.Media/mediaservices/e3c88ede-45/streamingEndpoints/6cf3e17e-17bd-422f-9e/start"; 21184Requests[4000].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21185Requests[4000].Request.Path = "/subscriptions/ea46da1c-1d74-/resourceGroups/7b1a4905-1635-4ed/providers/Microsoft.Media/mediaservices/2a66eb23-f0/streamingEndpoints/5311e4d6-2bfd-4eec-b3/stop"; 21188Requests[4001].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21189Requests[4001].Request.Path = "/subscriptions/bb18384f-63de-/resourceGroups/ea7c8cea-a757-4a7/providers/Microsoft.Media/mediaServices/5a96fac9-15/streamingLocators/6f4554fc-10ea-4895-8/listContentKeys"; 21192Requests[4002].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21193Requests[4002].Request.Path = "/subscriptions/1a5a4276-0de5-/resourceGroups/1df158b4-a136-439/providers/Microsoft.Media/mediaServices/cb09b7f0-64/streamingLocators/d4dd7329-860d-43d5-8/listPaths"; 21196Requests[4003].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21197Requests[4003].Request.Path = "/subscriptions/01bc3ca8-557e-/resourceGroups/08cbeb8c-351f-4a3/providers/Microsoft.Media/mediaServices/0c51f3aa-f7/transforms/5ad88ded-cc32/jobs"; 21200Requests[4004].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21201Requests[4004].Request.Path = "/subscriptions/cebaf05a-a6e3-/resourceGroups/746ca6c9-f48e-4c0/providers/Microsoft.Migrate/projects/64f772fe-f7/groups/7bb0970e-/assessments"; 21204Requests[4005].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21205Requests[4005].Request.Path = "/subscriptions/aea5b43e-19ea-/resourceGroups/6be157f6-3d5e-457/providers/Microsoft.Network/expressRouteCircuits/fe7d7499-f2/peerings/13a643a1-04/stats"; 21208Requests[4006].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21209Requests[4006].Request.Path = "/subscriptions/76c6b900-7a07-/resourceGroups/c6ef234e-9211-4f4/providers/Microsoft.Network/networkWatchers/91ede275-944f-4169/connectionMonitors/b4e2d99e-0081-422c-b3/query"; 21212Requests[4007].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21213Requests[4007].Request.Path = "/subscriptions/83181606-0321-/resourceGroups/931a2696-3c73-4df/providers/Microsoft.Network/networkWatchers/80371a05-e8f8-4c45/connectionMonitors/90450e4a-c6dd-4f24-8e/start"; 21216Requests[4008].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21217Requests[4008].Request.Path = "/subscriptions/1ba788f9-adf4-/resourceGroups/2e47a6c2-7b78-4d0/providers/Microsoft.Network/networkWatchers/be8c4df4-c028-4603/connectionMonitors/e1230a4f-6da8-4c02-97/stop"; 21220Requests[4009].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21221Requests[4009].Request.Path = "/subscriptions/858dffe9-0731-/resourceGroups/4391ab54-3e69-400/providers/Microsoft.Network/networkWatchers/e49952c7-ba3e-40ba/packetCaptures/9a6c63ca-1028-405/queryStatus"; 21224Requests[4010].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21225Requests[4010].Request.Path = "/subscriptions/1e06ea93-b4d5-/resourceGroups/8f2d562c-8521-4be/providers/Microsoft.Network/networkWatchers/36016387-c515-49f5/packetCaptures/6bd0ec63-3b45-420/stop"; 21228Requests[4011].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21229Requests[4011].Request.Path = "/subscriptions/cfaaed05-a23e-/resourceGroups/ab23672e-71a9-43e/providers/Microsoft.NotificationHubs/namespaces/0736bd53-7f9f/AuthorizationRules/4ea4c84c-d254-4dbc-a3/listKeys"; 21232Requests[4012].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21233Requests[4012].Request.Path = "/subscriptions/1bf37509-c42c-/resourceGroups/01cd71bb-4334-4e9/providers/Microsoft.NotificationHubs/namespaces/a8ad4a62-e57a/AuthorizationRules/d0605620-6c33-4805-8d/regenerateKeys"; 21236Requests[4013].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21237Requests[4013].Request.Path = "/subscriptions/4c262eea-5f38-/resourceGroups/2f33525e-bd80-469/providers/Microsoft.NotificationHubs/namespaces/55a31c0b-3d7d/notificationHubs/8f503cf5-2d1a-4f32-/AuthorizationRules"; 21240Requests[4014].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21241Requests[4014].Request.Path = "/subscriptions/b218c86c-46cc-/resourceGroups/724c07eb-9e2b-448/providers/Microsoft.NotificationHubs/namespaces/9585b6ac-c061/notificationHubs/b9cdb1c4-3118-4a02-/AuthorizationRules"; 21244Requests[4015].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21245Requests[4015].Request.Path = "/subscriptions/9006c375-8fd9-/resourceGroups/1326795c-7dda-40e/providers/Microsoft.NotificationHubs/namespaces/6d4980a5-e1f0/notificationHubs/289927c4-ccd2-4a0b-/pnsCredentials"; 21248Requests[4016].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21249Requests[4016].Request.Path = "/subscriptions/16446aba-fe46-/resourcegroups/be1674c1-2b22-446/providers/Microsoft.OperationalInsights/workspaces/cd210ca0-66d0/intelligencePacks/b8f2d0f5-566b-427c-a/Disable"; 21252Requests[4017].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21253Requests[4017].Request.Path = "/subscriptions/2ec84dbe-9c68-/resourcegroups/658f83d3-e45d-436/providers/Microsoft.OperationalInsights/workspaces/aac743c7-ef59/intelligencePacks/0adeb479-7395-460b-b/Enable"; 21256Requests[4018].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21257Requests[4018].Request.Path = "/subscriptions/8670c1a5-8d4e-/resourcegroups/66c122c3-48e2-4f4/providers/Microsoft.OperationalInsights/workspaces/dd31e771-52a3/savedSearches/bfe478a8-123d-4/results"; 21260Requests[4019].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21261Requests[4019].Request.Path = "/Subscriptions/c09f0fad-4e8e-/resourceGroups/b9a4784d-21c7-432/providers/Microsoft.RecoveryServices/vaults/dd88cd8d-bbc/replicationFabrics/84391cb8-1/checkConsistency"; 21264Requests[4020].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21265Requests[4020].Request.Path = "/Subscriptions/d8a49084-5565-/resourceGroups/2aec4684-c11a-4f4/providers/Microsoft.RecoveryServices/vaults/0f529304-220/replicationFabrics/0709a3a7-6/migratetoaad"; 21268Requests[4021].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21269Requests[4021].Request.Path = "/Subscriptions/a5aa447c-9847-/resourceGroups/ca30e8c4-3a6b-42f/providers/Microsoft.RecoveryServices/vaults/605a54a1-4b4/replicationFabrics/3507b639-7/reassociateGateway"; 21272Requests[4022].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21273Requests[4022].Request.Path = "/Subscriptions/017852ae-4ba1-/resourceGroups/af891d30-66df-460/providers/Microsoft.RecoveryServices/vaults/2a2d3df4-b08/replicationFabrics/fad1343f-1/remove"; 21276Requests[4023].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21277Requests[4023].Request.Path = "/Subscriptions/f66f3d6c-f1ba-/resourceGroups/f84eb934-518b-4ad/providers/Microsoft.RecoveryServices/vaults/3f581c87-def/replicationFabrics/7880384e-7/renewCertificate"; 21280Requests[4024].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21281Requests[4024].Request.Path = "/Subscriptions/91b4871b-9248-/resourceGroups/313b4e28-d6ff-421/providers/Microsoft.RecoveryServices/vaults/078e199a-8f7/replicationFabrics/4f2422ff-8/replicationLogicalNetworks"; 21284Requests[4025].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21285Requests[4025].Request.Path = "/Subscriptions/cf793c5b-0790-/resourceGroups/cf4b13ee-567b-424/providers/Microsoft.RecoveryServices/vaults/ae4c0357-a6c/replicationFabrics/63a2d3c4-d/replicationNetworks"; 21288Requests[4026].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21289Requests[4026].Request.Path = "/Subscriptions/2dd88ce9-8156-/resourceGroups/c16b2d5b-adce-45a/providers/Microsoft.RecoveryServices/vaults/dcec3c01-fa2/replicationFabrics/ee759d57-2/replicationProtectionContainers"; 21292Requests[4027].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21293Requests[4027].Request.Path = "/Subscriptions/07b6d986-58f6-/resourceGroups/123ea17b-9d93-4a9/providers/Microsoft.RecoveryServices/vaults/ff708d9b-be0/replicationFabrics/4fe86e5b-1/replicationRecoveryServicesProviders"; 21296Requests[4028].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21297Requests[4028].Request.Path = "/Subscriptions/4e8b9dc0-4530-/resourceGroups/3fca1826-972a-4d5/providers/Microsoft.RecoveryServices/vaults/9e9f8cc3-c32/replicationFabrics/d2915b01-b/replicationStorageClassifications"; 21300Requests[4029].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21301Requests[4029].Request.Path = "/Subscriptions/b021ea67-d6f6-/resourceGroups/2ece245d-aeaf-462/providers/Microsoft.RecoveryServices/vaults/081e8c81-635/replicationFabrics/8167d0ef-c/replicationvCenters"; 21304Requests[4030].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21305Requests[4030].Request.Path = "/Subscriptions/3cf9fbb4-cad8-/resourceGroups/6936f58d-de5c-438/providers/Microsoft.RecoveryServices/vaults/dd946025-8d3/replicationJobs/44be095/cancel"; 21308Requests[4031].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21309Requests[4031].Request.Path = "/Subscriptions/cac1ac8b-aefc-/resourceGroups/13349630-204d-471/providers/Microsoft.RecoveryServices/vaults/058e3a92-ef3/replicationJobs/7e5bb3e/restart"; 21312Requests[4032].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21313Requests[4032].Request.Path = "/Subscriptions/d095926c-4861-/resourceGroups/496c1767-ecde-49e/providers/Microsoft.RecoveryServices/vaults/a2fbf04a-98a/replicationJobs/20aca28/resume"; 21316Requests[4033].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21317Requests[4033].Request.Path = "/Subscriptions/eb6247a2-80d8-/resourceGroups/2abc1e61-c70c-416/providers/Microsoft.RecoveryServices/vaults/0fdf72bc-375/replicationRecoveryPlans/1ea03e31-4490-48/failoverCommit"; 21320Requests[4034].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21321Requests[4034].Request.Path = "/Subscriptions/81967920-2f44-/resourceGroups/c08118bc-1b18-4d1/providers/Microsoft.RecoveryServices/vaults/a0084390-667/replicationRecoveryPlans/d6c72f38-bc13-47/plannedFailover"; 21324Requests[4035].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21325Requests[4035].Request.Path = "/Subscriptions/d49334ba-0f15-/resourceGroups/ee99d653-1b67-46b/providers/Microsoft.RecoveryServices/vaults/021a5300-59d/replicationRecoveryPlans/8deed780-57d6-45/reProtect"; 21328Requests[4036].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21329Requests[4036].Request.Path = "/Subscriptions/27cd1c6c-3610-/resourceGroups/b738fb2a-a3ad-443/providers/Microsoft.RecoveryServices/vaults/9db9e16e-ec1/replicationRecoveryPlans/1743aa2d-c454-4a/testFailover"; 21332Requests[4037].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21333Requests[4037].Request.Path = "/Subscriptions/41f4c4f5-e412-/resourceGroups/59902af0-449c-4bd/providers/Microsoft.RecoveryServices/vaults/1d1feefd-a0a/replicationRecoveryPlans/a11e7d61-1b97-4f/testFailoverCleanup"; 21336Requests[4038].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21337Requests[4038].Request.Path = "/Subscriptions/48d6da82-ec2c-/resourceGroups/418a0ef2-43ae-4e7/providers/Microsoft.RecoveryServices/vaults/6f46a014-724/replicationRecoveryPlans/48a9fed5-495d-48/unplannedFailover"; 21340Requests[4039].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21341Requests[4039].Request.Path = "/Subscriptions/f13c870b-9da2-/resourceGroups/ec6302f6-83fc-4f1/providers/Microsoft.RecoveryServices/vaults/8a183ab3-/backupFabrics/fd101d6b-d/protectableContainers"; 21344Requests[4040].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21345Requests[4040].Request.Path = "/Subscriptions/5e1024b9-ac63-/resourceGroups/b4f8eed4-c9e4-474/providers/Microsoft.RecoveryServices/vaults/6d8b9b8b-/backupFabrics/060fc690-b/refreshContainers"; 21348Requests[4041].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21349Requests[4041].Request.Path = "/Subscriptions/4d4d94e7-a086-/resourceGroups/5be6dfae-c283-4a1/providers/Microsoft.RecoveryServices/vaults/a98b5e29-/backupJobs/126874d/cancel"; 21352Requests[4042].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21353Requests[4042].Request.Path = "/subscriptions/0ed10aea-8a13-/resourceGroups/34b3136b-233e-436/providers/Microsoft.Relay/namespaces/fa21d0ff-6124/authorizationRules/ceb5defd-de12-46be-9a/listKeys"; 21356Requests[4043].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21357Requests[4043].Request.Path = "/subscriptions/628f1224-1e12-/resourceGroups/add916c4-6829-454/providers/Microsoft.Relay/namespaces/49d8677d-ec8c/authorizationRules/cbb1dacb-6d5c-4c11-8d/regenerateKeys"; 21360Requests[4044].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21361Requests[4044].Request.Path = "/subscriptions/ef588118-5f6d-/resourceGroups/175834d6-eb47-47b/providers/Microsoft.Relay/namespaces/f91d60f1-d602/hybridConnections/25808f7b-5bc1-4ea7-a/authorizationRules"; 21364Requests[4045].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21365Requests[4045].Request.Path = "/subscriptions/b16c366d-f4d9-/resourceGroups/054a9446-7596-4f8/providers/Microsoft.Relay/namespaces/9b5bd446-c4dd/HybridConnections/fffc7b41-1328-4e6f-8/authorizationRules"; 21368Requests[4046].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21369Requests[4046].Request.Path = "/subscriptions/b58fd2a1-ef0f-/resourceGroups/5ee9d42c-d3d0-4f3/providers/Microsoft.Relay/namespaces/1e5f1aff-2c81/wcfRelays/da7ec357-/authorizationRules"; 21372Requests[4047].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21373Requests[4047].Request.Path = "/subscriptions/ec8ec8e7-f954-/resourceGroups/a8732944-a604-4c3/providers/Microsoft.Relay/namespaces/5f884d7d-8e74/WcfRelays/913db73b-/authorizationRules"; 21376Requests[4048].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21377Requests[4048].Request.Path = "/subscriptions/f55400af-c37a-/resourceGroups/5df251c5-b7a0-437/providers/Microsoft.Scheduler/jobCollections/f674942d-bf55-41f/jobs/1f75068/history"; 21380Requests[4049].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21381Requests[4049].Request.Path = "/subscriptions/d0fd1a2b-1018-/resourceGroups/43a35453-de16-4e0/providers/Microsoft.Scheduler/jobCollections/7d424910-3ba6-4ff/jobs/8b69978/run"; 21384Requests[4050].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21385Requests[4050].Request.Path = "/subscriptions/344aa008-c317-/resourceGroups/cb736d2e-e0b1-4d7/providers/Microsoft.ServiceBus/namespaces/d6c72fc7-4773/AuthorizationRules/9485a2ed-b0c5-4afd-b3/listKeys"; 21388Requests[4051].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21389Requests[4051].Request.Path = "/subscriptions/76b2be4b-9d72-/resourceGroups/3dc76d09-07fe-47e/providers/Microsoft.ServiceBus/namespaces/122f53d7-cf8f/AuthorizationRules/e2a551f1-4755-4f36-94/regenerateKeys"; 21392Requests[4052].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21393Requests[4052].Request.Path = "/subscriptions/5f51e46c-5fc8-/resourceGroups/70176dd6-39cd-476/providers/Microsoft.ServiceBus/namespaces/6c48f799-0450/disasterRecoveryConfigs/02785/AuthorizationRules"; 21396Requests[4053].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21397Requests[4053].Request.Path = "/subscriptions/2dd3fae6-dfa2-/resourceGroups/ba5bab8a-f69e-4af/providers/Microsoft.ServiceBus/namespaces/5839dffe-cd38/disasterRecoveryConfigs/84b9b/breakPairing"; 21400Requests[4054].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21401Requests[4054].Request.Path = "/subscriptions/c6c9d88a-a3ea-/resourceGroups/153d57f5-46b7-4e6/providers/Microsoft.ServiceBus/namespaces/731594b2-1188/disasterRecoveryConfigs/dab94/failover"; 21404Requests[4055].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21405Requests[4055].Request.Path = "/subscriptions/7990110d-b074-/resourceGroups/52317172-c652-413/providers/Microsoft.ServiceBus/namespaces/f41ddf5b-9649/eventhubs/dc3b7687-8ab/authorizationRules"; 21408Requests[4056].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21409Requests[4056].Request.Path = "/subscriptions/dd62bad8-62a7-/resourceGroups/41fda039-ae72-402/providers/Microsoft.ServiceBus/namespaces/db93ec3e-2227/migrationConfigurations/7bb668af-1/revert"; 21412Requests[4057].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21413Requests[4057].Request.Path = "/subscriptions/be12bbbd-6e41-/resourceGroups/e62a6973-407c-4bd/providers/Microsoft.ServiceBus/namespaces/053881c6-a4ea/migrationConfigurations/f50bc13c-2/upgrade"; 21416Requests[4058].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21417Requests[4058].Request.Path = "/subscriptions/df6c83f4-59d8-/resourceGroups/aeea59a1-27bd-46b/providers/Microsoft.ServiceBus/namespaces/223666e5-42d6/queues/d8f9ce12-/authorizationRules"; 21420Requests[4059].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21421Requests[4059].Request.Path = "/subscriptions/b57c31e0-6923-/resourceGroups/20b93907-4e3b-40f/providers/Microsoft.ServiceBus/namespaces/026a51dc-ca0f/topics/29688ac2-/authorizationRules"; 21424Requests[4060].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21425Requests[4060].Request.Path = "/subscriptions/7178860d-3414-/resourceGroups/fbfafedc-d7e2-4f7/providers/Microsoft.ServiceBus/namespaces/7c4236cd-06fb/topics/56291553-/subscriptions"; 21428Requests[4061].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21429Requests[4061].Request.Path = "/subscriptions/5fed8a2a-9803-/resourceGroups/43b4fab9-5512-42c/providers/Microsoft.ServiceFabric/clusters/8e71fe71-e1/applications/14e84916-8bdb-4/services"; 21432Requests[4062].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21433Requests[4062].Request.Path = "/subscriptions/4c66dda3-d2db-/resourceGroups/7996beb1-178b-459/providers/Microsoft.ServiceFabric/clusters/142fe7c0-2d/applicationTypes/3667416c-a156-4b9f-/versions"; 21436Requests[4063].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21437Requests[4063].Request.Path = "/subscriptions/33dc384d-b4db-/resourceGroups/1b963713-bd12-4de/providers/Microsoft.Sql/locations/2c03a424-ec4/instanceFailoverGroups/22b438d5-0018-439/failover"; 21440Requests[4064].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21441Requests[4064].Request.Path = "/subscriptions/7ec06be1-2c60-/resourceGroups/4414bbd7-e1ca-426/providers/Microsoft.Sql/locations/351ae9ee-ab5/instanceFailoverGroups/63afb08d-2083-4a2/forceFailoverAllowDataLoss"; 21444Requests[4065].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21445Requests[4065].Request.Path = "/subscriptions/4c55251f-b057-/resourceGroups/0af02473-f58d-442/providers/Microsoft.Sql/servers/c7e0437c-d/databases/ab09b617-ef4/advisors"; 21448Requests[4066].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21449Requests[4066].Request.Path = "/subscriptions/4fad441f-a202-/resourceGroups/02e4320c-d686-42e/providers/Microsoft.Sql/servers/91cf31ca-d/databases/440f3680-67c/auditingPolicies"; 21452Requests[4067].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21453Requests[4067].Request.Path = "/subscriptions/07ca7951-ddbf-/resourceGroups/8ef94fdf-a926-481/providers/Microsoft.Sql/servers/82a88d91-f/databases/99b3e890-6fe/backupLongTermRetentionPolicies"; 21456Requests[4068].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21457Requests[4068].Request.Path = "/subscriptions/4aeaf1a2-a81c-/resourceGroups/9555c8d6-20d6-4ae/providers/Microsoft.Sql/servers/e1357a78-0/databases/24a44ed3-809/export"; 21460Requests[4069].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21461Requests[4069].Request.Path = "/subscriptions/485d51db-d908-/resourceGroups/c1b9c533-021d-48d/providers/Microsoft.Sql/servers/dfdc6fdd-3/databases/914cf4c0-f48/extensions"; 21464Requests[4070].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21465Requests[4070].Request.Path = "/subscriptions/e0ba042a-888b-/resourceGroups/43ff4fbc-9b06-4e6/providers/Microsoft.Sql/servers/216a20b4-8/databases/d25e9438-e06/geoBackupPolicies"; 21468Requests[4071].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21469Requests[4071].Request.Path = "/subscriptions/70848d07-4d39-/resourceGroups/885b4e6a-5b93-436/providers/Microsoft.Sql/servers/c83227bb-8/databases/4271c0c4-e80/metricDefinitions"; 21472Requests[4072].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21473Requests[4072].Request.Path = "/subscriptions/ed53eca0-6491-/resourceGroups/27956df9-0a14-4f5/providers/Microsoft.Sql/servers/8c6802ae-7/databases/62d8f322-207/metrics"; 21476Requests[4073].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21477Requests[4073].Request.Path = "/subscriptions/28a3011d-3f3b-/resourceGroups/5c1fe03c-94d1-4d1/providers/Microsoft.Sql/servers/ac8bb435-6/databases/47192920-19d/move"; 21480Requests[4074].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21481Requests[4074].Request.Path = "/subscriptions/58a4e35c-baa0-/resourceGroups/68cf638f-b83c-4e5/providers/Microsoft.Sql/servers/3f355f11-7/databases/64d2fcb7-b3b/operations"; 21484Requests[4075].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21485Requests[4075].Request.Path = "/subscriptions/fd7917f4-275a-/resourceGroups/13b4144a-85ce-42b/providers/Microsoft.Sql/servers/5c7f7ae6-d/databases/e7d1fdc2-37a/pause"; 21488Requests[4076].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21489Requests[4076].Request.Path = "/subscriptions/8d756277-f886-/resourceGroups/5aa18d26-7c9f-4e4/providers/Microsoft.Sql/servers/6d40a674-5/databases/d8c2bfe6-c9f/replicationLinks"; 21492Requests[4077].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21493Requests[4077].Request.Path = "/subscriptions/358aa90b-a91b-/resourceGroups/84679703-662f-443/providers/Microsoft.Sql/servers/35857ff0-4/databases/3afcb549-e84/restorePoints"; 21496Requests[4078].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21497Requests[4078].Request.Path = "/subscriptions/c81826ed-faa6-/resourceGroups/f285be3c-f19e-412/providers/Microsoft.Sql/servers/a7752002-e/databases/6d8258ec-eca/restorePoints"; 21500Requests[4079].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21501Requests[4079].Request.Path = "/subscriptions/0b26875e-fbe3-/resourceGroups/100026f3-f0bc-49f/providers/Microsoft.Sql/servers/522bdd6b-c/databases/f9059b18-ad3/resume"; 21504Requests[4080].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21505Requests[4080].Request.Path = "/subscriptions/8dba771e-38f9-/resourceGroups/8b36220d-c130-49c/providers/Microsoft.Sql/servers/fedbf707-e/databases/45c152d7-a93/serviceTierAdvisors"; 21508Requests[4081].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21509Requests[4081].Request.Path = "/subscriptions/bb561083-e2a7-/resourceGroups/1d7836ee-d052-4de/providers/Microsoft.Sql/servers/aab3589f-d/databases/77517860-696/syncGroups"; 21512Requests[4082].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21513Requests[4082].Request.Path = "/subscriptions/4ace7562-5978-/resourceGroups/4913c310-fd0a-445/providers/Microsoft.Sql/servers/150743c4-3/databases/e0c8a648-0ee/topQueries"; 21516Requests[4083].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21517Requests[4083].Request.Path = "/subscriptions/bcbde091-7e47-/resourceGroups/060e0651-a230-4eb/providers/Microsoft.Sql/servers/e41b54de-c/databases/76d6c054-cd1/transparentDataEncryption"; 21520Requests[4084].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21521Requests[4084].Request.Path = "/subscriptions/80e28f7a-a199-/resourceGroups/a9af339f-b54e-495/providers/Microsoft.Sql/servers/80b88210-6/databases/101e82bf-b66/upgradeDataWarehouse"; 21524Requests[4085].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21525Requests[4085].Request.Path = "/subscriptions/581ddbf4-3a41-/resourceGroups/f33eddcd-4dab-415/providers/Microsoft.Sql/servers/ce897adf-4/databases/256a87ad-148/usages"; 21528Requests[4086].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21529Requests[4086].Request.Path = "/subscriptions/fd405096-ce02-/resourceGroups/60e3c4e7-b3de-424/providers/Microsoft.Sql/servers/e27d0fe3-d/disasterRecoveryConfiguration/e8f9591b-e106-4fb4-997a-da535d869/failover"; 21532Requests[4087].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21533Requests[4087].Request.Path = "/subscriptions/d85b2b46-7f20-/resourceGroups/05978a35-aede-4f3/providers/Microsoft.Sql/servers/d6f4df0b-a/disasterRecoveryConfiguration/1f42321a-03cb-4d89-b48e-549673329/forceFailoverAllowDataLoss"; 21536Requests[4088].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21537Requests[4088].Request.Path = "/subscriptions/3e5eb92f-6026-/resourceGroups/371f14ce-9310-44d/providers/Microsoft.Sql/servers/150ff49d-a/dnsAliases/9408aefc-a72/acquire"; 21540Requests[4089].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21541Requests[4089].Request.Path = "/subscriptions/39b75c2f-4666-/resourceGroups/94660e77-effc-472/providers/Microsoft.Sql/servers/e3f3cb5a-0/elasticPools/9d031a30-c41b-4/databases"; 21544Requests[4090].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21545Requests[4090].Request.Path = "/subscriptions/bf03c06e-c2c1-/resourceGroups/c1666304-a44b-408/providers/Microsoft.Sql/servers/4772623d-c/elasticPools/1acfbae6-d3a5-4/elasticPoolActivity"; 21548Requests[4091].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21549Requests[4091].Request.Path = "/subscriptions/a551c634-fc47-/resourceGroups/c1efb5e3-fb11-42d/providers/Microsoft.Sql/servers/bd727c66-3/elasticPools/1dcc47a9-36ae-4/elasticPoolDatabaseActivity"; 21552Requests[4092].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21553Requests[4092].Request.Path = "/subscriptions/e66e50d0-1cae-/resourceGroups/e2aee8ba-0696-4d3/providers/Microsoft.Sql/servers/6c0d41c8-f/elasticPools/d0971e23-10c5-4/metricDefinitions"; 21556Requests[4093].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21557Requests[4093].Request.Path = "/subscriptions/0ae8cc5a-1b23-/resourceGroups/06d8d233-29a1-4a2/providers/Microsoft.Sql/servers/7de4f348-a/elasticPools/1b9c49ab-650e-4/metrics"; 21560Requests[4094].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21561Requests[4094].Request.Path = "/subscriptions/7bddc7c0-acb2-/resourceGroups/c7bdb25b-5267-4cd/providers/Microsoft.Sql/servers/ec95db66-3/elasticPools/7d6cbfc3-48d9-4/operations"; 21564Requests[4095].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21565Requests[4095].Request.Path = "/subscriptions/13a391a8-8994-/resourceGroups/353ce4cc-b564-42d/providers/Microsoft.Sql/servers/8f78ddd8-1/failoverGroups/b26f94c1-ce83-40f/failover"; 21568Requests[4096].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21569Requests[4096].Request.Path = "/subscriptions/ddc11ea9-9407-/resourceGroups/a9b34d00-292b-417/providers/Microsoft.Sql/servers/467cda5b-1/failoverGroups/9fb39fe6-48a2-490/forceFailoverAllowDataLoss"; 21572Requests[4097].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21573Requests[4097].Request.Path = "/subscriptions/cd85caa6-6ffd-/resourceGroups/02d83105-7bdc-463/providers/Microsoft.Sql/servers/f9c727b1-8/jobAgents/3f4f560d-78c/credentials"; 21576Requests[4098].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21577Requests[4098].Request.Path = "/subscriptions/7ed8960d-85a9-/resourceGroups/75625f08-fc89-4f2/providers/Microsoft.Sql/servers/0c1c5d56-3/jobAgents/e8196cdb-5b7/executions"; 21580Requests[4099].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21581Requests[4099].Request.Path = "/subscriptions/b7e686ed-c5df-/resourceGroups/c562396f-ab99-483/providers/Microsoft.Sql/servers/efe2cb4f-3/jobAgents/282a6f6b-768/jobs"; 21584Requests[4100].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21585Requests[4100].Request.Path = "/subscriptions/e9b97e86-25be-/resourceGroups/4b145cd6-d848-477/providers/Microsoft.Sql/servers/e487c86d-6/jobAgents/f0cdc376-fba/targetGroups"; 21588Requests[4101].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21589Requests[4101].Request.Path = "/subscriptions/b72ac899-76e7-/resourceGroups/710288e4-8816-462/providers/Microsoft.Sql/servers/7f694cce-7/recommendedElasticPools/b842c4f1-a1b5-4b0b-83b5-7c/databases"; 21592Requests[4102].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21593Requests[4102].Request.Path = "/subscriptions/c12bfdd6-1958-/resourceGroups/7be61783-d5fb-452/providers/Microsoft.Sql/servers/c433c8fe-6/recommendedElasticPools/3ddaf2e4-2354-4826-9991-42/metrics"; 21596Requests[4103].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21597Requests[4103].Request.Path = "/subscriptions/85c5b055-0c87-/resourceGroups/6b615ea4-f1ff-46f/providers/Microsoft.Sql/servers/10187d79-7/syncAgents/6fc95099-1933/generateKey"; 21600Requests[4104].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21601Requests[4104].Request.Path = "/subscriptions/f81b8aeb-446a-/resourceGroups/25085b91-99a3-438/providers/Microsoft.Sql/servers/8df7c7ff-1/syncAgents/fa06ad6d-bd45/linkedDatabases"; 21604Requests[4105].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21605Requests[4105].Request.Path = "/subscriptions/96b2197c-7702-/resourcegroups/25f99eb8-d0a3-4e6/providers/Microsoft.Storage.Admin/farms/17bd13/blobservices/a4d807a5-d8/metricdefinitions"; 21608Requests[4106].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21609Requests[4106].Request.Path = "/subscriptions/9e0eb74a-31fe-/resourcegroups/5b43f0fc-30f4-4e0/providers/Microsoft.Storage.Admin/farms/3f8d3f/blobservices/a34060ed-80/metrics"; 21612Requests[4107].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21613Requests[4107].Request.Path = "/subscriptions/8d8237cf-f73e-/resourcegroups/b43f0ca9-eeec-4bd/providers/Microsoft.Storage.Admin/farms/83020a/queueservices/ba34f9e1-31/metricdefinitions"; 21616Requests[4108].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21617Requests[4108].Request.Path = "/subscriptions/e657c570-4ea4-/resourcegroups/a44d6ded-401b-4d1/providers/Microsoft.Storage.Admin/farms/be8ff2/queueservices/d452c864-1d/metrics"; 21620Requests[4109].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21621Requests[4109].Request.Path = "/subscriptions/6ca63f58-3fd6-/resourcegroups/331bf66b-da95-4bc/providers/Microsoft.Storage.Admin/farms/98d6af/shares/2e5828b0-/containers"; 21624Requests[4110].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21625Requests[4110].Request.Path = "/subscriptions/f230a047-4a48-/resourcegroups/372cd596-c588-487/providers/Microsoft.Storage.Admin/farms/ed3cae/shares/7e5f6163-/destinationshares"; 21628Requests[4111].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21629Requests[4111].Request.Path = "/subscriptions/5722ac1d-0b52-/resourcegroups/b648f6f8-ddfe-48f/providers/Microsoft.Storage.Admin/farms/bf9939/shares/75d979da-/metricdefinitions"; 21632Requests[4112].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21633Requests[4112].Request.Path = "/subscriptions/09d6c723-8be2-/resourcegroups/a6e7abfa-58b3-4c4/providers/Microsoft.Storage.Admin/farms/227790/shares/9942a643-/metrics"; 21636Requests[4113].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21637Requests[4113].Request.Path = "/subscriptions/86908261-ab93-/resourcegroups/7c2c17ce-f19f-427/providers/Microsoft.Storage.Admin/farms/53f738/shares/c475d08e-/migrate"; 21640Requests[4114].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21641Requests[4114].Request.Path = "/subscriptions/a7189b7f-1ba4-/resourcegroups/46651eb1-956e-4ea/providers/Microsoft.Storage.Admin/farms/28c997/tableservices/3dbeca99-fb/metricdefinitions"; 21644Requests[4115].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21645Requests[4115].Request.Path = "/subscriptions/6c8a6248-44d3-/resourcegroups/4d5840b3-c41d-42b/providers/Microsoft.Storage.Admin/farms/cf9a3a/tableservices/2353a610-8b/metrics"; 21648Requests[4116].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21649Requests[4116].Request.Path = "/subscriptions/585c7300-80d7-/resourceGroups/7a44d064-04c8-44f/providers/Microsoft.StorSimple/managers/be6d9542-87/devices/4da13c85-0/authorizeForServiceEncryptionKeyRollover"; 21652Requests[4117].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21653Requests[4117].Request.Path = "/subscriptions/d1b68202-d5fc-/resourceGroups/e0553172-60ac-4ad/providers/Microsoft.StorSimple/managers/7a052c9b-2f/devices/092e3a31-e/backupPolicies"; 21656Requests[4118].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21657Requests[4118].Request.Path = "/subscriptions/a1b9917c-4907-/resourceGroups/836c7815-c8b9-4b4/providers/Microsoft.StorSimple/managers/588a2b8a-6d/devices/f9d4460c-b/backups"; 21660Requests[4119].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21661Requests[4119].Request.Path = "/subscriptions/6df976f2-7582-/resourceGroups/bff6f8a7-aa6b-4d2/providers/Microsoft.StorSimple/managers/de7eb703-3f/devices/f7a876dd-e/deactivate"; 21664Requests[4120].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21665Requests[4120].Request.Path = "/subscriptions/7147451c-66b6-/resourceGroups/aeb266c6-028e-4c4/providers/Microsoft.StorSimple/managers/f26f1046-fd/devices/15213e74-1/hardwareComponentGroups"; 21668Requests[4121].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21669Requests[4121].Request.Path = "/subscriptions/73493cf7-6035-/resourceGroups/dd242ac7-a2f6-4e4/providers/Microsoft.StorSimple/managers/aa748925-42/devices/e1a2d945-0/installUpdates"; 21672Requests[4122].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21673Requests[4122].Request.Path = "/subscriptions/136589c6-0b38-/resourceGroups/bf60b8de-e3d2-44b/providers/Microsoft.StorSimple/managers/afe7a8fe-00/devices/e6b9e54c-a/jobs"; 21676Requests[4123].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21677Requests[4123].Request.Path = "/subscriptions/a7604571-0f54-/resourceGroups/63ede15b-c41a-47d/providers/Microsoft.StorSimple/managers/9a7a6f25-ae/devices/5a636e76-5/listFailoverSets"; 21680Requests[4124].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21681Requests[4124].Request.Path = "/subscriptions/aaa3c82a-ea7c-/resourceGroups/1edebfb0-e5fb-409/providers/Microsoft.StorSimple/managers/fd9121ee-7b/devices/40a9696e-1/metrics"; 21684Requests[4125].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21685Requests[4125].Request.Path = "/subscriptions/8469ccaa-fd68-/resourceGroups/af8ae925-340a-4fc/providers/Microsoft.StorSimple/managers/21534cbf-47/devices/5d7edc19-b/metricsDefinitions"; 21688Requests[4126].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21689Requests[4126].Request.Path = "/subscriptions/a70acf37-9199-/resourceGroups/a556cf28-5954-412/providers/Microsoft.StorSimple/managers/e61cac02-0e/devices/49a40e54-e/publicEncryptionKey"; 21692Requests[4127].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21693Requests[4127].Request.Path = "/subscriptions/cc7fc980-df79-/resourceGroups/98be1d72-ba92-445/providers/Microsoft.StorSimple/managers/3b2a22ed-ef/devices/03081db5-1/scanForUpdates"; 21696Requests[4128].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21697Requests[4128].Request.Path = "/subscriptions/2ffa17a4-90f4-/resourceGroups/8c9adedf-aa2d-4e2/providers/Microsoft.StorSimple/managers/1d3ab165-d5/devices/0c93a720-5/sendTestAlertEmail"; 21700Requests[4129].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21701Requests[4129].Request.Path = "/subscriptions/95468bc9-f3e6-/resourceGroups/3f36d7a5-dd74-463/providers/Microsoft.StorSimple/managers/5e90b11a-0b/devices/506ec1cd-c/volumeContainers"; 21704Requests[4130].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21705Requests[4130].Request.Path = "/subscriptions/4c70c5a5-20f8-/resourceGroups/0f6844ae-da1d-42e/providers/Microsoft.StorSimple/managers/c5ea5bd4-53/devices/74071118-9/volumes"; 21708Requests[4131].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21709Requests[4131].Request.Path = "/subscriptions/bed1713e-bf85-/resourceGroups/555303ab-65bb-4d4/providers/Microsoft.StorSimple/managers/419215b2-3d/devices/d3fb4a10-9c27-4b/failover"; 21712Requests[4132].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21713Requests[4132].Request.Path = "/subscriptions/ccb2a109-0fc3-/resourceGroups/9eda3d1f-651e-49f/providers/Microsoft.StorSimple/managers/c78e17a9-dd/devices/f3d75e7c-41d4-45/listFailoverTargets"; 21716Requests[4133].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21717Requests[4133].Request.Path = "/subscriptions/f805f932-4566-/resourcegroups/3c82ce71-d515-4d9/providers/Microsoft.StreamAnalytics/streamingjobs/422630f/functions/f55133b2-41b/RetrieveDefaultDefinition"; 21720Requests[4134].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21721Requests[4134].Request.Path = "/subscriptions/32de5a47-b44e-/resourcegroups/d60aeb36-11f9-4eb/providers/Microsoft.StreamAnalytics/streamingjobs/4ab78b2/functions/a1d8cfd7-c1f/test"; 21724Requests[4135].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21725Requests[4135].Request.Path = "/subscriptions/907942b0-1a43-/resourcegroups/52c35117-7a93-488/providers/Microsoft.StreamAnalytics/streamingjobs/8616ff2/inputs/0f608cbf-/test"; 21728Requests[4136].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21729Requests[4136].Request.Path = "/subscriptions/12e19fb9-39cd-/resourcegroups/bc369872-38db-4ac/providers/Microsoft.StreamAnalytics/streamingjobs/10d8bbe/outputs/832f1981-6/test"; 21732Requests[4137].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21733Requests[4137].Request.Path = "/subscriptions/b7868d1e-3440-/resourcegroups/e108265f-4c3c-41b/providers/Microsoft.Update.Admin/updateLocations/1bbb3a65-7f9d-/updates/cdae78db-d/Apply"; 21736Requests[4138].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21737Requests[4138].Request.Path = "/subscriptions/419315e5-292d-/resourcegroups/d638f3fd-58ab-4d6/providers/Microsoft.Update.Admin/updateLocations/3c57610f-d4b6-/updates/e4976e44-5/updateRuns"; 21740Requests[4139].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21741Requests[4139].Request.Path = "/subscriptions/3df7cc88-939a-/resourceGroups/d19d8c79-54b9-4fc/providers/Microsoft.Web/hostingEnvironments/dee6e/workerPools/a38ed005-08fa-/metricdefinitions"; 21744Requests[4140].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21745Requests[4140].Request.Path = "/subscriptions/790759c4-c1f7-/resourceGroups/c076757a-a7f2-4b6/providers/Microsoft.Web/hostingEnvironments/2606b/workerPools/a64907ca-33ba-/metrics"; 21748Requests[4141].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21749Requests[4141].Request.Path = "/subscriptions/d98bd8b7-e644-/resourceGroups/a7632b17-ff5a-4f4/providers/Microsoft.Web/hostingEnvironments/1cb38/workerPools/41084bfa-d60a-/skus"; 21752Requests[4142].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21753Requests[4142].Request.Path = "/subscriptions/6eb28ed5-750f-/resourceGroups/1c7824dc-25f0-409/providers/Microsoft.Web/hostingEnvironments/1c83e/workerPools/68c805d0-4516-/usages"; 21756Requests[4143].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21757Requests[4143].Request.Path = "/subscriptions/6507ca04-ae79-/resourceGroups/65bd38ef-b3a0-4dd/providers/Microsoft.Web/serverfarms/000bf/virtualNetworkConnections/8f34e587/routes"; 21760Requests[4144].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21761Requests[4144].Request.Path = "/subscriptions/29d2647e-e9f0-/resourceGroups/fe26daaa-9201-480/providers/Microsoft.Web/serverfarms/92ec0/workers/7c97a158-c/reboot"; 21764Requests[4145].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21765Requests[4145].Request.Path = "/subscriptions/2b6af97e-1e33-/resourceGroups/8c3f2efb-07f9-483/providers/Microsoft.Web/sites/11a74/backups/57a5f94f/list"; 21768Requests[4146].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21769Requests[4146].Request.Path = "/subscriptions/21e736c3-52d4-/resourceGroups/b4a8a17f-b377-423/providers/Microsoft.Web/sites/79aee/backups/9b268d08/restore"; 21772Requests[4147].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21773Requests[4147].Request.Path = "/subscriptions/901e1a06-9230-/resourceGroups/54b7895b-658b-4c4/providers/Microsoft.Web/sites/e6a80/continuouswebjobs/5554ad64-b/start"; 21776Requests[4148].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21777Requests[4148].Request.Path = "/subscriptions/ea104955-092e-/resourceGroups/e728a0ba-0bf4-42e/providers/Microsoft.Web/sites/b26af/continuouswebjobs/41a3e21e-e/stop"; 21780Requests[4149].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21781Requests[4149].Request.Path = "/subscriptions/65579011-fb98-/resourceGroups/ac781b03-1890-4e8/providers/Microsoft.Web/sites/a0662/deployments/fcaeb/log"; 21784Requests[4150].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21785Requests[4150].Request.Path = "/subscriptions/209d926b-54fa-/resourceGroups/fb3fab45-4c95-4ee/providers/Microsoft.Web/sites/785ea/functions/5f2e6c18-ebc/listsecrets"; 21788Requests[4151].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21789Requests[4151].Request.Path = "/subscriptions/8a674e65-8211-/resourceGroups/cd107727-b1d9-48a/providers/Microsoft.Web/sites/fc086/instances/d3e22eb6-0/deployments"; 21792Requests[4152].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21793Requests[4152].Request.Path = "/subscriptions/199a06b3-dd8c-/resourceGroups/0aa5fa44-58e8-47c/providers/Microsoft.Web/sites/70af1/instances/49afbb54-a/processes"; 21796Requests[4153].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21797Requests[4153].Request.Path = "/subscriptions/ab687277-4eba-/resourceGroups/444c6c79-13a5-492/providers/Microsoft.Web/sites/d2d55/processes/b9a2873e-/dump"; 21800Requests[4154].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21801Requests[4154].Request.Path = "/subscriptions/fc364538-d2b4-/resourceGroups/2def57a1-c18a-4d4/providers/Microsoft.Web/sites/64424/processes/2bd391e0-/modules"; 21804Requests[4155].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21805Requests[4155].Request.Path = "/subscriptions/eb4972de-9510-/resourceGroups/0ae9ce3a-2fe4-48e/providers/Microsoft.Web/sites/eb1bd/processes/857702a4-/threads"; 21808Requests[4156].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21809Requests[4156].Request.Path = "/subscriptions/bf38bcfe-2b07-/resourceGroups/b5620ef2-c29c-406/providers/Microsoft.Web/sites/b3c69/slots/4ba88/analyzeCustomHostname"; 21812Requests[4157].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21813Requests[4157].Request.Path = "/subscriptions/88fbe4c9-1f21-/resourceGroups/9fddd403-2ffc-4d8/providers/Microsoft.Web/sites/08f85/slots/d5ffa/applySlotConfig"; 21816Requests[4158].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21817Requests[4158].Request.Path = "/subscriptions/418e0d53-51f6-/resourceGroups/595c8a01-4439-417/providers/Microsoft.Web/sites/30fe7/slots/c0a05/backup"; 21820Requests[4159].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21821Requests[4159].Request.Path = "/subscriptions/18d2b3ea-f463-/resourceGroups/3a659e3a-f13e-447/providers/Microsoft.Web/sites/21102/slots/8ca6d/backups"; 21824Requests[4160].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21825Requests[4160].Request.Path = "/subscriptions/28c17d29-87b5-/resourceGroups/1fdab06e-68b2-48c/providers/Microsoft.Web/sites/222e1/slots/c1e3c/config"; 21828Requests[4161].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21829Requests[4161].Request.Path = "/subscriptions/8d69d03d-be0a-/resourceGroups/08532158-3dff-426/providers/Microsoft.Web/sites/b645a/slots/f79a6/containerlogs"; 21832Requests[4162].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21833Requests[4162].Request.Path = "/subscriptions/d3e6b7d4-0f5f-/resourceGroups/2e77cfc9-bafa-439/providers/Microsoft.Web/sites/7e768/slots/7d71d/continuouswebjobs"; 21836Requests[4163].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21837Requests[4163].Request.Path = "/subscriptions/54788982-812b-/resourceGroups/55a92289-222b-4c4/providers/Microsoft.Web/sites/4470d/slots/f86a0/deployments"; 21840Requests[4164].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21841Requests[4164].Request.Path = "/subscriptions/d48e57cb-762d-/resourceGroups/f7852a1c-2591-427/providers/Microsoft.Web/sites/c5c31/slots/2e072/domainOwnershipIdentifiers"; 21844Requests[4165].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21845Requests[4165].Request.Path = "/subscriptions/0419c632-66bc-/resourceGroups/2d992cb1-9903-46f/providers/Microsoft.Web/sites/cb6f4/slots/a710d/functions"; 21848Requests[4166].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21849Requests[4166].Request.Path = "/subscriptions/9046cdf1-b8a7-/resourceGroups/12096beb-249f-470/providers/Microsoft.Web/sites/cf032/slots/88d86/hostNameBindings"; 21852Requests[4167].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21853Requests[4167].Request.Path = "/subscriptions/d38146f3-a4e8-/resourceGroups/51d56dfb-4c3a-443/providers/Microsoft.Web/sites/52b28/slots/115aa/hybridconnection"; 21856Requests[4168].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21857Requests[4168].Request.Path = "/subscriptions/77548f4b-aa88-/resourceGroups/ccfff242-2530-45e/providers/Microsoft.Web/sites/0af6a/slots/1e0c8/hybridConnectionRelays"; 21860Requests[4169].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21861Requests[4169].Request.Path = "/subscriptions/354071f0-0a4c-/resourceGroups/f4329da4-d9d3-4f0/providers/Microsoft.Web/sites/21c11/slots/622f4/instances"; 21864Requests[4170].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21865Requests[4170].Request.Path = "/subscriptions/d5cb17ef-adfc-/resourceGroups/8514dfef-06ad-4e2/providers/Microsoft.Web/sites/3546b/slots/3d0b3/iscloneable"; 21868Requests[4171].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21869Requests[4171].Request.Path = "/subscriptions/1f9e02ba-2c50-/resourceGroups/7b97f188-5f11-4b0/providers/Microsoft.Web/sites/196e9/slots/1e90a/listsyncfunctiontriggerstatus"; 21872Requests[4172].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21873Requests[4172].Request.Path = "/subscriptions/036c6e58-b598-/resourceGroups/6910f166-fcc8-4f3/providers/Microsoft.Web/sites/e1127/slots/cce59/metricdefinitions"; 21876Requests[4173].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21877Requests[4173].Request.Path = "/subscriptions/8864e06b-1c34-/resourceGroups/a8aeab9b-637e-40e/providers/Microsoft.Web/sites/84c8b/slots/51e7b/metrics"; 21880Requests[4174].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21881Requests[4174].Request.Path = "/subscriptions/1618f723-24c3-/resourceGroups/35e2bfae-a480-48d/providers/Microsoft.Web/sites/ba554/slots/514cd/newpassword"; 21884Requests[4175].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21885Requests[4175].Request.Path = "/subscriptions/fbae4f96-cdf7-/resourceGroups/d4764665-39ab-45e/providers/Microsoft.Web/sites/d1392/slots/e07ef/perfcounters"; 21888Requests[4176].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21889Requests[4176].Request.Path = "/subscriptions/149186c3-8a7b-/resourceGroups/a5c6c544-86d6-4e7/providers/Microsoft.Web/sites/b2be5/slots/d40ec/phplogging"; 21892Requests[4177].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21893Requests[4177].Request.Path = "/subscriptions/cbd97841-c53b-/resourceGroups/835f5cc6-d553-404/providers/Microsoft.Web/sites/e7312/slots/15563/premieraddons"; 21896Requests[4178].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21897Requests[4178].Request.Path = "/subscriptions/dcb9c8d4-aee6-/resourceGroups/2e13b31d-3c29-4dc/providers/Microsoft.Web/sites/84936/slots/b3adb/processes"; 21900Requests[4179].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21901Requests[4179].Request.Path = "/subscriptions/898acb6f-5c2a-/resourceGroups/4cc8c94b-5ec0-4d6/providers/Microsoft.Web/sites/f9c17/slots/744fc/publicCertificates"; 21904Requests[4180].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21905Requests[4180].Request.Path = "/subscriptions/0340450e-4b45-/resourceGroups/0a7d1ea1-e96e-436/providers/Microsoft.Web/sites/c6794/slots/e73fb/publishxml"; 21908Requests[4181].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21909Requests[4181].Request.Path = "/subscriptions/112ca163-0b67-/resourceGroups/889af39b-7205-4b2/providers/Microsoft.Web/sites/ce35d/slots/ecce0/recover"; 21912Requests[4182].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21913Requests[4182].Request.Path = "/subscriptions/d3d17267-a589-/resourceGroups/5ce30be4-1bee-4b6/providers/Microsoft.Web/sites/71678/slots/c248d/resetSlotConfig"; 21916Requests[4183].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21917Requests[4183].Request.Path = "/subscriptions/ec04229e-1e3c-/resourceGroups/3c753e26-69c8-421/providers/Microsoft.Web/sites/e896b/slots/44bde/resourceHealthMetadata"; 21920Requests[4184].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21921Requests[4184].Request.Path = "/subscriptions/f183650c-90b3-/resourceGroups/a3512086-7d29-464/providers/Microsoft.Web/sites/4ca16/slots/93670/restart"; 21924Requests[4185].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21925Requests[4185].Request.Path = "/subscriptions/e99d36da-784f-/resourceGroups/27b2b8eb-a78f-41e/providers/Microsoft.Web/sites/89884/slots/c3178/restoreFromBackupBlob"; 21928Requests[4186].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21929Requests[4186].Request.Path = "/subscriptions/2e0dee3f-cafb-/resourceGroups/2a0a4876-7434-449/providers/Microsoft.Web/sites/2da88/slots/b2ee3/restoreFromDeletedApp"; 21932Requests[4187].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21933Requests[4187].Request.Path = "/subscriptions/0b079898-d5e8-/resourceGroups/6fb35ffe-4b9a-416/providers/Microsoft.Web/sites/0fe55/slots/10bab/restoreSnapshot"; 21936Requests[4188].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21937Requests[4188].Request.Path = "/subscriptions/a9a04015-f27c-/resourceGroups/948fd7c2-9e36-40a/providers/Microsoft.Web/sites/1cf07/slots/2c03d/siteextensions"; 21940Requests[4189].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21941Requests[4189].Request.Path = "/subscriptions/6e4b04d5-cbc9-/resourceGroups/d053913b-c82d-4c9/providers/Microsoft.Web/sites/81ce9/slots/8f284/slotsdiffs"; 21944Requests[4190].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21945Requests[4190].Request.Path = "/subscriptions/c1b984c9-9ff1-/resourceGroups/d44c5db3-594c-439/providers/Microsoft.Web/sites/54831/slots/af3fe/slotsswap"; 21948Requests[4191].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21949Requests[4191].Request.Path = "/subscriptions/461026bd-ddef-/resourceGroups/de73e390-7501-4bd/providers/Microsoft.Web/sites/269c2/slots/b5ef5/snapshots"; 21952Requests[4192].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 21953Requests[4192].Request.Path = "/subscriptions/46901df9-b51c-/resourceGroups/e5db0a68-161e-46d/providers/Microsoft.Web/sites/57dfe/slots/ea3bf/snapshots"; 21956Requests[4193].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21957Requests[4193].Request.Path = "/subscriptions/cd2da230-5624-/resourceGroups/b97c3975-41b7-4ff/providers/Microsoft.Web/sites/302b3/slots/0355d/start"; 21960Requests[4194].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21961Requests[4194].Request.Path = "/subscriptions/0854492d-d715-/resourceGroups/0bf4e5ed-40a7-492/providers/Microsoft.Web/sites/e57b0/slots/0a0b4/stop"; 21964Requests[4195].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21965Requests[4195].Request.Path = "/subscriptions/82e9ba1f-22ea-/resourceGroups/1c617e29-d9d8-404/providers/Microsoft.Web/sites/b41fb/slots/a7134/sync"; 21968Requests[4196].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21969Requests[4196].Request.Path = "/subscriptions/933cf52c-ac58-/resourceGroups/4b479d37-1612-43f/providers/Microsoft.Web/sites/772e1/slots/31343/syncfunctiontriggers"; 21972Requests[4197].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21973Requests[4197].Request.Path = "/subscriptions/af9ebf3a-7f96-/resourceGroups/4a3edd86-f319-42c/providers/Microsoft.Web/sites/1fb6b/slots/64478/triggeredwebjobs"; 21976Requests[4198].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21977Requests[4198].Request.Path = "/subscriptions/825cca41-7ae0-/resourceGroups/587aae5a-4806-4a3/providers/Microsoft.Web/sites/9c87a/slots/fbb96/usages"; 21980Requests[4199].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21981Requests[4199].Request.Path = "/subscriptions/f598e403-bf3d-/resourceGroups/01cd2f67-2c35-43c/providers/Microsoft.Web/sites/bb689/slots/9d079/virtualNetworkConnections"; 21984Requests[4200].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21985Requests[4200].Request.Path = "/subscriptions/52c9744a-550e-/resourceGroups/6012d98c-f716-47e/providers/Microsoft.Web/sites/c8349/slots/78623/webjobs"; 21988Requests[4201].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21989Requests[4201].Request.Path = "/subscriptions/20f8a0ce-1b47-/resourceGroups/100013bc-6c15-4ee/providers/Microsoft.Web/sites/9b82f/triggeredwebjobs/3b177cf9-c/history"; 21992Requests[4202].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 21993Requests[4202].Request.Path = "/subscriptions/c8dc64f9-9917-/resourceGroups/c2361277-7946-495/providers/Microsoft.Web/sites/88820/triggeredwebjobs/7abc551e-a/run"; 21996Requests[4203].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 21997Requests[4203].Request.Path = "/subscriptions/b2752a74-0db1-/resourceGroups/b307e32b-f033-434/providers/Microsoft.Web/sites/214fc246/diagnostics/9ffc2156-3e48-46b5/analyses"; 22000Requests[4204].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22001Requests[4204].Request.Path = "/subscriptions/1a353df5-d08d-/resourceGroups/aa023988-be17-414/providers/Microsoft.Web/sites/5aa5a3ff/diagnostics/cf7ec21d-7565-4353/detectors"; 22004Requests[4205].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22005Requests[4205].Request.Path = "/subscriptions/fae2c9bf-d180-/resourceGroups/9f46e38b-38c3-4d8/providers/Microsoft.Web/sites/8ab17ebe/recommendations/2fefe/disable"; 22008Requests[4206].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22009Requests[4206].Request.Path = "/subscriptions/9ca7d6cd-7d7e-/resourceGroups/b619a14e-d369-4cd/providers/Microsoft.Web/sites/c3dffdb8/slots/d615c/detectors"; 22012Requests[4207].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22013Requests[4207].Request.Path = "/subscriptions/f174e85c-1f61-/resourceGroups/0238b356-52ef-4b7/providers/Microsoft.Web/sites/0a1f0783/slots/66c5c/diagnostics"; 22016Requests[4208].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22017Requests[4208].Request.Path = "/subscriptions/a2b8e549-8571-/resourceGroups/f0b6b455-2929-4e4/providers/Microsoft.ApiManagement/service/17058d50-08/tenant/318bd5a3-6/git/regeneratePrimaryKey"; 22020Requests[4209].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22021Requests[4209].Request.Path = "/subscriptions/82b85b4a-253a-/resourceGroups/015721f6-f134-4eb/providers/Microsoft.ApiManagement/service/c692cf21-6a/tenant/41b8e813-f/git/regenerateSecondaryKey"; 22024Requests[4210].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22025Requests[4210].Request.Path = "/subscriptions/2f1f4d0f-4ce6-/resourceGroups/6c82099c-2f1a-459/providers/Microsoft.Automation/automationAccounts/2af34bb9-5da1-4dcc-ae/runbooks/0e1a859d-7c/draft/content"; 22028Requests[4211].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22029Requests[4211].Request.Path = "/subscriptions/6ff8ceb2-a1bf-/resourceGroups/aa51c86b-fefa-433/providers/Microsoft.Automation/automationAccounts/d8bb01be-a4ae-400e-b7/runbooks/045f0f7b-37/draft/content"; 22032Requests[4212].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22033Requests[4212].Request.Path = "/subscriptions/26ae0f25-d6fa-/resourceGroups/97cc9e54-16f4-47e/providers/Microsoft.Automation/automationAccounts/c8d01c85-b1e3-4cfd-ae/runbooks/0a68bd04-1b/draft/publish"; 22036Requests[4213].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22037Requests[4213].Request.Path = "/subscriptions/5c6af6fa-2d06-/resourceGroups/ecb9849c-758a-4f8/providers/Microsoft.Automation/automationAccounts/15ba3e92-18aa-4ae5-9f/runbooks/4aa14304-17/draft/testJob"; 22040Requests[4214].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22041Requests[4214].Request.Path = "/subscriptions/f66c6b68-2d00-/resourceGroups/43a36d40-3460-4cb/providers/Microsoft.Automation/automationAccounts/30f03224-a3f4-4a54-b6/runbooks/291b9edf-ad/draft/testJob"; 22044Requests[4215].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22045Requests[4215].Request.Path = "/subscriptions/affb8791-e435-/resourceGroups/c2cce16f-0a77-4a8/providers/Microsoft.Automation/automationAccounts/289663f5-df23-4b28-9f/runbooks/130c12e9-01/draft/undoEdit"; 22048Requests[4216].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22049Requests[4216].Request.Path = "/subscriptions/6b852888-3cc0-/resourceGroups/63fd974a-c0b6-434/providers/Microsoft.DocumentDB/databaseAccounts/26829c92-96/targetRegion/88e16de9-a83/percentile/metrics"; 22052Requests[4217].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22053Requests[4217].Request.Path = "/subscriptions/042b0a95-5d44-/resourceGroups/bf897844-24b0-436/providers/Microsoft.Logic/workflows/0c3b27f2-1db/triggers/02565f82-e5/schemas/json"; 22056Requests[4218].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22057Requests[4218].Request.Path = "/subscriptions/208a7a6a-af40-/resourceGroups/c899258b-45c7-409/providers/Microsoft.Sql/servers/4c4f74e0-b/databases/2b6b15c6-4d0/automaticTuning/current"; 22060Requests[4219].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22061Requests[4219].Request.Path = "/subscriptions/c6c61b0b-dd77-/resourceGroups/3710665e-3e11-410/providers/Microsoft.Sql/servers/cb46e677-3/databases/c3005ba7-134/automaticTuning/current"; 22064Requests[4220].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22065Requests[4220].Request.Path = "/subscriptions/0b9f260d-1ee7-/resourceGroups/95e9012a-b2b1-4de/providers/Microsoft.StorSimple/managers/8581b173-37/devices/587e8a8e-c/alertSettings/default"; 22068Requests[4221].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22069Requests[4221].Request.Path = "/subscriptions/a68d0c33-cf03-/resourceGroups/b983f94c-7653-49f/providers/Microsoft.StorSimple/managers/9fa665a2-d2/devices/d3ae9348-4/alertSettings/default"; 22072Requests[4222].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22073Requests[4222].Request.Path = "/subscriptions/ff2c40ef-101c-/resourceGroups/01d13f45-da36-46b/providers/Microsoft.StorSimple/managers/301c1f76-4d/devices/45b0e83d-7/networkSettings/default"; 22076Requests[4223].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22077Requests[4223].Request.Path = "/subscriptions/e9ee0679-5c31-/resourceGroups/fe3fad38-0394-483/providers/Microsoft.StorSimple/managers/2be7ffff-7d/devices/43999e57-5/networkSettings/default"; 22080Requests[4224].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22081Requests[4224].Request.Path = "/subscriptions/f2941e36-e325-/resourceGroups/2a16a0c6-f095-4a5/providers/Microsoft.StorSimple/managers/37c6674d-b6/devices/73e439b6-5/securitySettings/default"; 22084Requests[4225].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22085Requests[4225].Request.Path = "/subscriptions/55e264a8-13aa-/resourceGroups/ec664ceb-ea0d-48e/providers/Microsoft.StorSimple/managers/0c8f2424-a6/devices/8d48a68f-8/securitySettings/default"; 22088Requests[4226].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22089Requests[4226].Request.Path = "/subscriptions/cfda6225-d465-/resourceGroups/014a78a8-c72a-4ce/providers/Microsoft.StorSimple/managers/274b5027-45/devices/dd987cc6-8/timeSettings/default"; 22092Requests[4227].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22093Requests[4227].Request.Path = "/subscriptions/5f7a08dc-803a-/resourceGroups/72f5b171-be19-4a1/providers/Microsoft.StorSimple/managers/b7e2547d-17/devices/a223b0f1-d/timeSettings/default"; 22096Requests[4228].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22097Requests[4228].Request.Path = "/subscriptions/21b1e1d2-3cf6-/resourceGroups/66e99452-6740-499/providers/Microsoft.StorSimple/managers/04ea0464-43/devices/eca960b7-6/updateSummary/default"; 22100Requests[4229].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22101Requests[4229].Request.Path = "/subscriptions/39453c4b-effe-/resourceGroups/6dcedf9b-e07a-481/providers/Microsoft.Web/sites/b87c4/instances/a0e54888-7/extensions/MSDeploy"; 22104Requests[4230].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22105Requests[4230].Request.Path = "/subscriptions/a1f0e162-3337-/resourceGroups/d2001411-8863-49f/providers/Microsoft.Web/sites/33f91/instances/0b3742e4-e/extensions/MSDeploy"; 22108Requests[4231].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22109Requests[4231].Request.Path = "/subscriptions/30c60d6f-7f1d-/resourceGroups/8ec28b5b-a47f-442/providers/Microsoft.Web/sites/3bb50/slots/5cb0c/backups/discover"; 22112Requests[4232].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22113Requests[4232].Request.Path = "/subscriptions/9be96dde-80f5-/resourceGroups/aa036280-a4ba-42c/providers/Microsoft.Web/sites/f6352/slots/4ac72/config/appsettings"; 22116Requests[4233].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22117Requests[4233].Request.Path = "/subscriptions/d02d630d-ee27-/resourceGroups/8aa67292-f298-454/providers/Microsoft.Web/sites/51123/slots/3bff8/config/authsettings"; 22120Requests[4234].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22121Requests[4234].Request.Path = "/subscriptions/0cebbe76-cbf6-/resourceGroups/f32be4a5-fc14-4c6/providers/Microsoft.Web/sites/a865b/slots/3ceac/config/backup"; 22124Requests[4235].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22125Requests[4235].Request.Path = "/subscriptions/ab5dce22-d424-/resourceGroups/1dda3ed5-3a5a-44d/providers/Microsoft.Web/sites/2ec6d/slots/418f2/config/backup"; 22128Requests[4236].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22129Requests[4236].Request.Path = "/subscriptions/1c9119fc-b6c5-/resourceGroups/0b2d634d-b695-440/providers/Microsoft.Web/sites/46489/slots/278fd/config/connectionstrings"; 22132Requests[4237].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22133Requests[4237].Request.Path = "/subscriptions/2dc9edd9-5820-/resourceGroups/ccc6d01c-1c38-422/providers/Microsoft.Web/sites/5731c/slots/ec681/config/logs"; 22136Requests[4238].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22137Requests[4238].Request.Path = "/subscriptions/468bfe0a-d25b-/resourceGroups/1d78d402-7173-4bd/providers/Microsoft.Web/sites/6789b/slots/11758/config/logs"; 22140Requests[4239].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22141Requests[4239].Request.Path = "/subscriptions/a3fc5b48-9be7-/resourceGroups/528f20f1-ed82-417/providers/Microsoft.Web/sites/145fd/slots/8663a/config/metadata"; 22144Requests[4240].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22145Requests[4240].Request.Path = "/subscriptions/aaa9fbf6-8116-/resourceGroups/e9352311-4efa-4a1/providers/Microsoft.Web/sites/c1893/slots/a9734/config/pushsettings"; 22148Requests[4241].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22149Requests[4241].Request.Path = "/subscriptions/1cfb2057-1df3-/resourceGroups/0addff53-7f12-488/providers/Microsoft.Web/sites/7dcee/slots/800db/config/web"; 22152Requests[4242].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22153Requests[4242].Request.Path = "/subscriptions/0f8c529f-5449-/resourceGroups/5f9bfaf1-8e6d-49a/providers/Microsoft.Web/sites/9f5e2/slots/e5b3a/config/web"; 22156Requests[4243].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22157Requests[4243].Request.Path = "/subscriptions/f39f32c1-78ab-/resourceGroups/3a5107c4-c3eb-493/providers/Microsoft.Web/sites/b7bfc/slots/036ac/config/web"; 22160Requests[4244].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22161Requests[4244].Request.Path = "/subscriptions/b6d382df-5959-/resourceGroups/cf9caabb-7329-49c/providers/Microsoft.Web/sites/690b9/slots/7fa57/extensions/MSDeploy"; 22164Requests[4245].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22165Requests[4245].Request.Path = "/subscriptions/78a5d582-36af-/resourceGroups/6a3321d4-c59c-468/providers/Microsoft.Web/sites/60348/slots/298d5/extensions/MSDeploy"; 22168Requests[4246].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22169Requests[4246].Request.Path = "/subscriptions/79c9cf8b-0d34-/resourceGroups/538ff978-c506-483/providers/Microsoft.Web/sites/31f55/slots/53f9e/migratemysql/status"; 22172Requests[4247].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22173Requests[4247].Request.Path = "/subscriptions/43b1dd1b-b941-/resourceGroups/20687112-036e-4c6/providers/Microsoft.Web/sites/9f7fc/slots/857e3/networkTrace/start"; 22176Requests[4248].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22177Requests[4248].Request.Path = "/subscriptions/0c99341a-1aee-/resourceGroups/89a570fe-2d16-478/providers/Microsoft.Web/sites/877d9/slots/93a58/networkTrace/stop"; 22180Requests[4249].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22181Requests[4249].Request.Path = "/subscriptions/c35b1266-1f98-/resourceGroups/a4fabde7-34a1-42e/providers/Microsoft.Web/sites/745c9/slots/d29c7/privateAccess/virtualNetworks"; 22184Requests[4250].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22185Requests[4250].Request.Path = "/subscriptions/e65ebec4-9800-/resourceGroups/8867524e-95bf-4fb/providers/Microsoft.Web/sites/95abc/slots/cad13/privateAccess/virtualNetworks"; 22188Requests[4251].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22189Requests[4251].Request.Path = "/subscriptions/e592780a-faf4-/resourceGroups/570c8b34-60b3-461/providers/Microsoft.Web/sites/44236/slots/ffc42/resourceHealthMetadata/default"; 22192Requests[4252].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22193Requests[4252].Request.Path = "/subscriptions/cf716c85-6a17-/resourceGroups/a32a6e03-dd09-48f/providers/Microsoft.Web/sites/73619/slots/91384/sourcecontrols/web"; 22196Requests[4253].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22197Requests[4253].Request.Path = "/subscriptions/bbe96f09-ae14-/resourceGroups/9ab81152-5292-4c9/providers/Microsoft.Web/sites/fbd1b/slots/ea348/sourcecontrols/web"; 22200Requests[4254].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22201Requests[4254].Request.Path = "/subscriptions/d3dc52bd-87aa-/resourceGroups/e0928dc3-890f-492/providers/Microsoft.Web/sites/ae7b6/slots/88bee/sourcecontrols/web"; 22204Requests[4255].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22205Requests[4255].Request.Path = "/subscriptions/4bc137bb-a7ef-/resourceGroups/ff20ea30-2f39-490/providers/Microsoft.Web/sites/aff7c/slots/15b3b/sourcecontrols/web"; 22208Requests[4256].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22209Requests[4256].Request.Path = "/subscriptions/bbd54d5a-857f-/resourceGroups/01807944-9fc6-45a/providers/Microsoft.Automation/automationAccounts/8a1a9042-71dd-4653-8b/runbooks/9efe1777-54/draft/testJob/resume"; 22212Requests[4257].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22213Requests[4257].Request.Path = "/subscriptions/d30c184a-4400-/resourceGroups/07c77bda-acbf-4e0/providers/Microsoft.Automation/automationAccounts/bf8b45df-3388-438c-86/runbooks/0624116b-0f/draft/testJob/stop"; 22216Requests[4258].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22217Requests[4258].Request.Path = "/subscriptions/5b740ae9-b90c-/resourceGroups/1f5afec5-041c-461/providers/Microsoft.Automation/automationAccounts/e08f681f-072a-4707-8e/runbooks/37ab5e3e-00/draft/testJob/streams"; 22220Requests[4259].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22221Requests[4259].Request.Path = "/subscriptions/9003416a-6a91-/resourceGroups/fae6a169-22ff-408/providers/Microsoft.Automation/automationAccounts/2f2468c0-a4c9-41dd-8b/runbooks/946976a1-da/draft/testJob/suspend"; 22224Requests[4260].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22225Requests[4260].Request.Path = "/subscriptions/a25090fe-a741-/resourceGroups/6ff7fe51-1dec-4e9/providers/Microsoft.ServerManagement/nodes/cab0ed0e/sessions/937c78d/features/powerShellConsole/pssessions"; 22228Requests[4261].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22229Requests[4261].Request.Path = "/subscriptions/c2f8a439-4309-/resourceGroups/5c7ce02e-1a5e-429/providers/Microsoft.StorSimple/managers/a64114c1-3c/devices/cd578b70-7/securitySettings/default/syncRemoteManagementCertificate"; 22232Requests[4262].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22233Requests[4262].Request.Path = "/subscriptions/42bc1005-c7d7-/resourceGroups/7d5b9ac5-af67-477/providers/Microsoft.Web/sites/cb690/instances/7fd9c715-f/extensions/MSDeploy/log"; 22236Requests[4263].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22237Requests[4263].Request.Path = "/subscriptions/47864e9d-419a-/resourceGroups/4b339d80-17b4-47f/providers/Microsoft.Web/sites/ab1e4/slots/73b7a/config/appsettings/list"; 22240Requests[4264].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22241Requests[4264].Request.Path = "/subscriptions/fcbdeef3-f813-/resourceGroups/7e1eb892-9fdd-4ea/providers/Microsoft.Web/sites/45ecd/slots/7d01a/config/authsettings/list"; 22244Requests[4265].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22245Requests[4265].Request.Path = "/subscriptions/883930c2-de2e-/resourceGroups/34239e47-9c1f-4c4/providers/Microsoft.Web/sites/48a6f/slots/10e80/config/backup/list"; 22248Requests[4266].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22249Requests[4266].Request.Path = "/subscriptions/344e20df-2de5-/resourceGroups/e6549230-545a-48d/providers/Microsoft.Web/sites/d55cf/slots/2b413/config/connectionstrings/list"; 22252Requests[4267].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22253Requests[4267].Request.Path = "/subscriptions/3839ff45-97bc-/resourceGroups/052b523a-adf9-4d6/providers/Microsoft.Web/sites/d5776/slots/88edc/config/metadata/list"; 22256Requests[4268].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22257Requests[4268].Request.Path = "/subscriptions/9eedc674-7ce2-/resourceGroups/847db486-e2fe-49c/providers/Microsoft.Web/sites/dc2a9/slots/73337/config/publishingcredentials/list"; 22260Requests[4269].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22261Requests[4269].Request.Path = "/subscriptions/d33e0536-ef83-/resourceGroups/0abaa606-6e91-4c0/providers/Microsoft.Web/sites/24980/slots/a609e/config/pushsettings/list"; 22264Requests[4270].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22265Requests[4270].Request.Path = "/subscriptions/2c05058f-144b-/resourceGroups/ce037ffb-5244-458/providers/Microsoft.Web/sites/0791c/slots/d7f92/config/web/snapshots"; 22268Requests[4271].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22269Requests[4271].Request.Path = "/subscriptions/862d9a2d-bfa4-/resourceGroups/116e668a-67b0-48f/providers/Microsoft.Web/sites/9154c/slots/4a3f3/containerlogs/zip/download"; 22272Requests[4272].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22273Requests[4272].Request.Path = "/subscriptions/04231f85-21de-/resourceGroups/d74a00d1-a538-46e/providers/Microsoft.Web/sites/65ce4/slots/08776/extensions/MSDeploy/log"; 22276Requests[4273].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22277Requests[4273].Request.Path = "/subscriptions/bcca6820-1b87-/resourceGroups/9fc6d697-717b-488/providers/Microsoft.Web/sites/f5a61/slots/6e659/functions/admin/token"; 22280Requests[4274].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22281Requests[4274].Request.Path = "/subscriptions/d6dbcbed-1ba3-/resourceGroups/361082b9-85a9-4f7/providers/Microsoft.Automation/automationAccounts/e9845c2d-6e94-4da2-ad/runbooks/aaf4d25c-6c/draft/testJob/streams/fe0ae72c-6a"; 22284Requests[4275].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22285Requests[4275].Request.Path = "/subscriptions/3c8998e5-3c3b-/resourceGroups/66dd6110-23df-47f/providers/Microsoft.ServerManagement/nodes/287d6181/sessions/d3912b4/features/powerShellConsole/pssessions/bec626b9-"; 22288Requests[4276].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22289Requests[4276].Request.Path = "/subscriptions/5f6ad2fd-f2b5-/resourceGroups/64e25aea-7e78-4e6/providers/Microsoft.ServerManagement/nodes/b0f8f7f6/sessions/4ef2ad0/features/powerShellConsole/pssessions/4ff824e9-"; 22292Requests[4277].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22293Requests[4277].Request.Path = "/subscriptions/40ae5759-5ac6-/resourceGroups/8ff62095-5884-42a/providers/Microsoft.ServerManagement/nodes/6ee92b81/sessions/fe92cbb/features/powerShellConsole/pssessions/0fc9b2c5-"; 22296Requests[4278].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22297Requests[4278].Request.Path = "/subscriptions/eed33d39-5898-/resourceGroups/b8ff06ef-639a-412/providers/Microsoft.Web/sites/772d5/slots/05da5/config/web/snapshots/6e8038e6-b"; 22300Requests[4279].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22301Requests[4279].Request.Path = "/subscriptions/6ca94f9e-39a3-/resourceGroups/123c1dbf-060a-429/providers/Microsoft.ServerManagement/nodes/da409b73/sessions/2ed0a2d/features/powerShellConsole/pssessions/5a5296ab-/cancel"; 22304Requests[4280].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22305Requests[4280].Request.Path = "/subscriptions/0591d618-3f0a-/resourceGroups/bac4e063-4ea1-4d8/providers/Microsoft.ServerManagement/nodes/720fc5da/sessions/1f96ed6/features/powerShellConsole/pssessions/064909e6-/invokeCommand"; 22308Requests[4281].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22309Requests[4281].Request.Path = "/subscriptions/dc67e379-ff8c-/resourceGroups/1dabcc89-df48-40d/providers/Microsoft.ServerManagement/nodes/a2f52b00/sessions/e1b33ab/features/powerShellConsole/pssessions/492922c3-/tab"; 22312Requests[4282].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22313Requests[4282].Request.Path = "/subscriptions/3a3f5beb-d1f7-/resourceGroups/a39ef0fa-8e8a-415/providers/Microsoft.Web/sites/05c43/slots/5f850/config/web/snapshots/d8b69541-b/recover"; 22316Requests[4283].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22317Requests[4283].Request.Path = "/subscriptions/3003e987-e1ed-/resourceGroups/2cf9f107-/providers/Microsoft.DataMigration/services/ab4ce02a-a7/projects/b5be2ea7-f6/tasks/9e74fb60"; 22320Requests[4284].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22321Requests[4284].Request.Path = "/subscriptions/297af4fd-060c-/resourceGroups/eeb7f41a-/providers/Microsoft.DataMigration/services/bc2ae242-e4/projects/5be90488-07/tasks/f71959c8"; 22324Requests[4285].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22325Requests[4285].Request.Path = "/subscriptions/32999b2f-4840-/resourceGroups/60db154f-/providers/Microsoft.DataMigration/services/791518bb-6a/projects/c18fe9aa-2f/tasks/857bda96"; 22328Requests[4286].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22329Requests[4286].Request.Path = "/subscriptions/d4fd1ac6-c773-/resourceGroups/99cb6e99-/providers/Microsoft.DataMigration/services/f81ed551-7a/projects/b60207c3-b4/tasks/3c4ef4af"; 22332Requests[4287].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 22333Requests[4287].Request.Path = "/subscriptions/c410a6bb-a74d-/resourceGroups/57ce5129-/providers/Microsoft.DataMigration/services/8624a17d-28/projects/e001bdf7-16/tasks/0dbdf3cc"; 22336Requests[4288].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22337Requests[4288].Request.Path = "/subscriptions/8d0f95d0-023f-/resourceGroups/636e4704-cf5e-4c3/providers/Microsoft.ApiManagement/service/2308506e-bf/apis/1abd6/diagnostics/2a1513b1-1ea"; 22340Requests[4289].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22341Requests[4289].Request.Path = "/subscriptions/58c58208-323e-/resourceGroups/c985085f-8848-45e/providers/Microsoft.ApiManagement/service/55d30973-93/apis/34482/diagnostics/76a6b6a4-69c"; 22344Requests[4290].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22345Requests[4290].Request.Path = "/subscriptions/3419e3ee-2eda-/resourceGroups/da894604-adcd-4d5/providers/Microsoft.ApiManagement/service/bbcdba61-be/apis/48298/diagnostics/c03b67d2-2ca"; 22348Requests[4291].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22349Requests[4291].Request.Path = "/subscriptions/dd345062-5d31-/resourceGroups/156508c6-fa2a-41a/providers/Microsoft.ApiManagement/service/33731b1e-c5/apis/0c8e0/diagnostics/6fe28913-0e1"; 22352Requests[4292].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22353Requests[4292].Request.Path = "/subscriptions/f001a713-7588-/resourceGroups/0b43cb35-37e3-465/providers/Microsoft.ApiManagement/service/ce981247-73/apis/33bed/diagnostics/a7ad6250-f04"; 22356Requests[4293].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22357Requests[4293].Request.Path = "/subscriptions/b99a0cbd-95ff-/resourceGroups/966f0c99-45e7-493/providers/Microsoft.ApiManagement/service/d6c03ee9-5d/apis/a6d2a/issues/6323c14"; 22360Requests[4294].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22361Requests[4294].Request.Path = "/subscriptions/e94991df-04d0-/resourceGroups/8bea9e7c-9dd0-4ff/providers/Microsoft.ApiManagement/service/5db691b8-a6/apis/19a2f/issues/cdeb1f1"; 22364Requests[4295].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22365Requests[4295].Request.Path = "/subscriptions/873a6e1b-2c98-/resourceGroups/7bac2778-a6dd-402/providers/Microsoft.ApiManagement/service/9ed2af07-b0/apis/a9074/issues/2012323"; 22368Requests[4296].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22369Requests[4296].Request.Path = "/subscriptions/9a50b7bd-bd4d-/resourceGroups/11a720cd-0f99-420/providers/Microsoft.ApiManagement/service/f5fccb09-ad/apis/b49e8/issues/b0a2d34"; 22372Requests[4297].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22373Requests[4297].Request.Path = "/subscriptions/6ad1a739-794f-/resourceGroups/10c955bf-93f2-483/providers/Microsoft.ApiManagement/service/952c175e-20/apis/583fa/operations/7bf56dc1-36"; 22376Requests[4298].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22377Requests[4298].Request.Path = "/subscriptions/6e9f263c-6c31-/resourceGroups/72585735-d9ff-442/providers/Microsoft.ApiManagement/service/09f8ed16-bf/apis/19cd1/operations/e3037973-a4"; 22380Requests[4299].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22381Requests[4299].Request.Path = "/subscriptions/55f9721b-52e4-/resourceGroups/cb396e0f-7025-4f3/providers/Microsoft.ApiManagement/service/0b455117-9a/apis/33b67/operations/d66ddb31-f2"; 22384Requests[4300].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22385Requests[4300].Request.Path = "/subscriptions/8a18cb3a-7ef0-/resourceGroups/5f23a38c-2864-42d/providers/Microsoft.ApiManagement/service/6b0d19ba-d6/apis/56edc/operations/6923dbad-2b"; 22388Requests[4301].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22389Requests[4301].Request.Path = "/subscriptions/85b154c6-393f-/resourceGroups/798d4350-20b5-45d/providers/Microsoft.ApiManagement/service/eac44db7-2e/apis/94a48/operations/7067a307-06"; 22392Requests[4302].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22393Requests[4302].Request.Path = "/subscriptions/726ea3af-29bb-/resourceGroups/2c871a33-733d-486/providers/Microsoft.ApiManagement/service/c8408e00-65/apis/113f9/policies/04996aec"; 22396Requests[4303].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22397Requests[4303].Request.Path = "/subscriptions/9d0d8db4-0f3b-/resourceGroups/445315b0-d414-4a3/providers/Microsoft.ApiManagement/service/70e8da28-91/apis/cf02c/policies/0a4b6c51"; 22400Requests[4304].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22401Requests[4304].Request.Path = "/subscriptions/00cbf108-b9c0-/resourceGroups/582aaeb6-d18e-435/providers/Microsoft.ApiManagement/service/0932247f-10/apis/8d9b0/policies/9442115d"; 22404Requests[4305].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22405Requests[4305].Request.Path = "/subscriptions/63e6811a-ee0b-/resourceGroups/0765d562-2acb-42e/providers/Microsoft.ApiManagement/service/4dcea6b5-77/apis/6903b/policies/c2bb02a1"; 22408Requests[4306].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22409Requests[4306].Request.Path = "/subscriptions/3d456829-acfa-/resourceGroups/cd8d54c8-cfc9-4ac/providers/Microsoft.ApiManagement/service/f18f5ba8-63/apis/efeb1/releases/44fbadb5-"; 22412Requests[4307].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22413Requests[4307].Request.Path = "/subscriptions/829fc722-5258-/resourceGroups/431e82c6-69fc-46f/providers/Microsoft.ApiManagement/service/e121265a-a8/apis/af219/releases/02c7f529-"; 22416Requests[4308].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22417Requests[4308].Request.Path = "/subscriptions/700c4743-2140-/resourceGroups/3d1b1269-cb92-49f/providers/Microsoft.ApiManagement/service/149bd963-b2/apis/75cd2/releases/833c060b-"; 22420Requests[4309].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22421Requests[4309].Request.Path = "/subscriptions/3dc85a3e-0b58-/resourceGroups/334837e6-4f8b-493/providers/Microsoft.ApiManagement/service/a7924908-d3/apis/ff03c/releases/a1818a50-"; 22424Requests[4310].Request.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");; 22425Requests[4310].Request.Path = "/subscriptions/e597238e-6d07-/resourceGroups/e46ee08d-043c-4b0/providers/Microsoft.ApiManagement/service/4a2c5684-0a/apis/e53ce/releases/f057a631-"; 22428Requests[4311].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22429Requests[4311].Request.Path = "/subscriptions/717c04aa-9110-/resourceGroups/5b06794b-016c-480/providers/Microsoft.ApiManagement/service/7c56691d-86/apis/cae75/releases/baeb967e-"; 22432Requests[4312].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22433Requests[4312].Request.Path = "/subscriptions/b090bda8-9f17-/resourceGroups/aee2d28c-b150-41e/providers/Microsoft.ApiManagement/service/c20acbc6-0b/apis/231a6/schemas/38963ec4"; 22436Requests[4313].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22437Requests[4313].Request.Path = "/subscriptions/b6ceb903-e7ea-/resourceGroups/091e56d2-2b04-4c6/providers/Microsoft.ApiManagement/service/8546fc2f-c1/apis/b278d/schemas/10fd8714"; 22440Requests[4314].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22441Requests[4314].Request.Path = "/subscriptions/c1d8e3d8-742f-/resourceGroups/aeb14fba-b2c7-44a/providers/Microsoft.ApiManagement/service/181741cf-88/apis/56258/schemas/51b48917"; 22444Requests[4315].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22445Requests[4315].Request.Path = "/subscriptions/b808e2af-3b4c-/resourceGroups/48b1baab-17f4-424/providers/Microsoft.ApiManagement/service/f6e6a2e0-5d/apis/e2a0c/schemas/a873d73d"; 22448Requests[4316].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22449Requests[4316].Request.Path = "/subscriptions/93c97280-1115-/resourceGroups/7af02bc7-8035-472/providers/Microsoft.ApiManagement/service/cd9c7e74-a0/apis/24744/tagDescriptions/e3a85"; 22452Requests[4317].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22453Requests[4317].Request.Path = "/subscriptions/c62dc5ed-6bca-/resourceGroups/4c0321a3-a0f6-462/providers/Microsoft.ApiManagement/service/65c749cb-28/apis/56714/tagDescriptions/7e382"; 22456Requests[4318].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22457Requests[4318].Request.Path = "/subscriptions/eebafcb8-e2cb-/resourceGroups/2ad0c723-2f2e-40b/providers/Microsoft.ApiManagement/service/a564b238-55/apis/e7646/tagDescriptions/72cc1"; 22460Requests[4319].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22461Requests[4319].Request.Path = "/subscriptions/1e29b489-2597-/resourceGroups/94cbcaf9-aa93-4a6/providers/Microsoft.ApiManagement/service/31880838-2b/apis/12ea1/tagDescriptions/373ca"; 22464Requests[4320].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22465Requests[4320].Request.Path = "/subscriptions/3b2ff7e0-5bd5-/resourceGroups/3ff6fdb8-df9d-4fe/providers/Microsoft.ApiManagement/service/0e1b940d-2c/apis/97ef7/tags/ced89"; 22468Requests[4321].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22469Requests[4321].Request.Path = "/subscriptions/7ae78607-aa3f-/resourceGroups/705a341e-68c5-400/providers/Microsoft.ApiManagement/service/299d71e3-db/apis/9591a/tags/6a522"; 22472Requests[4322].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22473Requests[4322].Request.Path = "/subscriptions/2ad71bd4-778c-/resourceGroups/e516987c-9301-4da/providers/Microsoft.ApiManagement/service/b75363f8-80/apis/e7e61/tags/d76c0"; 22476Requests[4323].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22477Requests[4323].Request.Path = "/subscriptions/05c3b140-6ade-/resourceGroups/cdacf19e-b259-4e2/providers/Microsoft.ApiManagement/service/91584eba-1f/apis/a2166/tags/b0328"; 22480Requests[4324].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22481Requests[4324].Request.Path = "/subscriptions/ae291f0f-f2ca-/resourceGroups/541d0152-4409-462/providers/Microsoft.ApiManagement/service/ca747134-2d/diagnostics/bfdab92c-bc8/loggers/b27b26b4"; 22484Requests[4325].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22485Requests[4325].Request.Path = "/subscriptions/e4f7ca52-6696-/resourceGroups/1898b09f-5c9a-4e2/providers/Microsoft.ApiManagement/service/b1ba3a72-c0/diagnostics/9d61cb0e-2cb/loggers/6cad41a7"; 22488Requests[4326].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22489Requests[4326].Request.Path = "/subscriptions/809eac6c-701b-/resourceGroups/af78f886-9109-460/providers/Microsoft.ApiManagement/service/46f7f232-f7/diagnostics/8f89ecf4-de5/loggers/08d1c081"; 22492Requests[4327].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22493Requests[4327].Request.Path = "/subscriptions/3d848b09-fb1a-/resourceGroups/3a39eda7-43fb-49a/providers/Microsoft.ApiManagement/service/3978279a-03/groups/66e5aba/users/260a1"; 22496Requests[4328].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22497Requests[4328].Request.Path = "/subscriptions/2e7ec089-1ffe-/resourceGroups/1a76991f-204a-464/providers/Microsoft.ApiManagement/service/029f0db2-9a/groups/099c053/users/35b50"; 22500Requests[4329].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22501Requests[4329].Request.Path = "/subscriptions/529eb0c5-58e7-/resourceGroups/3232070b-256c-4c3/providers/Microsoft.ApiManagement/service/30a25078-a5/groups/e56f0ff/users/b72ef"; 22504Requests[4330].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22505Requests[4330].Request.Path = "/subscriptions/9765d347-8b91-/resourceGroups/21641c89-e593-47f/providers/Microsoft.ApiManagement/service/7bae0e71-ae/notifications/b2245f4a-3b36-45/recipientEmails/d2967"; 22508Requests[4331].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22509Requests[4331].Request.Path = "/subscriptions/0d038a42-cb6b-/resourceGroups/4311acd8-2372-4c0/providers/Microsoft.ApiManagement/service/59745d83-62/notifications/1b5e92ff-a0fe-4a/recipientEmails/80c1b"; 22512Requests[4332].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22513Requests[4332].Request.Path = "/subscriptions/c4cbb2d0-8d5f-/resourceGroups/d88535ec-f810-4d2/providers/Microsoft.ApiManagement/service/031e1a52-20/notifications/1400aed9-98b3-46/recipientEmails/6971f"; 22516Requests[4333].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22517Requests[4333].Request.Path = "/subscriptions/13130a41-2be8-/resourceGroups/923aa577-adbf-4ae/providers/Microsoft.ApiManagement/service/1f11acd3-bd/notifications/128b2b2d-551b-4b/recipientUsers/98ada"; 22520Requests[4334].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22521Requests[4334].Request.Path = "/subscriptions/151b89a5-fd5a-/resourceGroups/c6959186-23c3-411/providers/Microsoft.ApiManagement/service/81463d89-cf/notifications/6b68969c-000b-4d/recipientUsers/5e9f4"; 22524Requests[4335].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22525Requests[4335].Request.Path = "/subscriptions/efe97d9a-6533-/resourceGroups/c44c37bd-db4d-447/providers/Microsoft.ApiManagement/service/5e9337cf-b2/notifications/117fa284-9afd-4f/recipientUsers/82b35"; 22528Requests[4336].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22529Requests[4336].Request.Path = "/subscriptions/07c33d78-88e1-/resourceGroups/8e0afb6f-c9be-4de/providers/Microsoft.ApiManagement/service/45259e93-74/products/edee6945-/apis/574b4"; 22532Requests[4337].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22533Requests[4337].Request.Path = "/subscriptions/2e2f47c3-9af0-/resourceGroups/f0e47984-606e-485/providers/Microsoft.ApiManagement/service/bba152f6-33/products/711b25b3-/apis/687cd"; 22536Requests[4338].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22537Requests[4338].Request.Path = "/subscriptions/702d533e-946a-/resourceGroups/c135110f-e422-4b0/providers/Microsoft.ApiManagement/service/94067196-eb/products/e2b796e4-/apis/d81b1"; 22540Requests[4339].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22541Requests[4339].Request.Path = "/subscriptions/2821d6b9-98bb-/resourceGroups/46cdbbbe-e5a0-40f/providers/Microsoft.ApiManagement/service/eb70332a-03/products/b7bb9fee-/groups/69c20c2"; 22544Requests[4340].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22545Requests[4340].Request.Path = "/subscriptions/f1f82150-dabe-/resourceGroups/d87877a2-369a-4ee/providers/Microsoft.ApiManagement/service/3afc00e8-8d/products/dad5ea6d-/groups/a465f97"; 22548Requests[4341].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22549Requests[4341].Request.Path = "/subscriptions/64312b63-0289-/resourceGroups/4c32543d-17ef-4f0/providers/Microsoft.ApiManagement/service/d9fcce21-3f/products/e17ffd52-/groups/fa95cf7"; 22552Requests[4342].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22553Requests[4342].Request.Path = "/subscriptions/0ce37f16-e32a-/resourceGroups/3cfd8846-ae18-499/providers/Microsoft.ApiManagement/service/1df79e6f-3c/products/22d83510-/policies/1353bae7"; 22556Requests[4343].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22557Requests[4343].Request.Path = "/subscriptions/dd096144-35d7-/resourceGroups/01f20cac-01fa-49a/providers/Microsoft.ApiManagement/service/6f571c7e-a8/products/4b732021-/policies/a5a2ae4e"; 22560Requests[4344].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22561Requests[4344].Request.Path = "/subscriptions/f3a377b5-87f7-/resourceGroups/70d1ef16-8c13-49d/providers/Microsoft.ApiManagement/service/5454f3c4-d9/products/ee3f3ca3-/policies/6ca4a6cc"; 22564Requests[4345].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22565Requests[4345].Request.Path = "/subscriptions/620286ae-4d90-/resourceGroups/4fc3d8aa-e1b4-49b/providers/Microsoft.ApiManagement/service/9b2d58d8-0b/products/297050a0-/policies/8326bd1a"; 22568Requests[4346].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22569Requests[4346].Request.Path = "/subscriptions/1f9d6741-e2ab-/resourceGroups/cfded6a3-8cf2-48f/providers/Microsoft.ApiManagement/service/c991e006-08/products/f97fbb01-/tags/17604"; 22572Requests[4347].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 22573Requests[4347].Request.Path = "/subscriptions/319c2a91-b76e-/resourceGroups/7a95dd78-ecc6-4ca/providers/Microsoft.ApiManagement/service/a894c065-11/products/c086c8c8-/tags/02083"; 22576Requests[4348].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22577Requests[4348].Request.Path = "/subscriptions/f1d3b5f1-04dc-/resourceGroups/7ee152f5-ae29-4d8/providers/Microsoft.ApiManagement/service/30e00323-50/products/c06a2d7d-/tags/8c649"; 22580Requests[4349].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22581Requests[4349].Request.Path = "/subscriptions/bd00ba50-463c-/resourceGroups/800f02be-27fe-4b0/providers/Microsoft.ApiManagement/service/dd924dc7-06/products/11d84ff0-/tags/c1db0"; 22584Requests[4350].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22585Requests[4350].Request.Path = "/subscriptions/10156ece-3476-/resourceGroups/4c4f977f-b7ac-480/providers/Microsoft.ApiManagement/service/ca055d6f-0b/quotas/f0467e9c-a0a1-4/periods/f6beab4b-06ba-"; 22588Requests[4351].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22589Requests[4351].Request.Path = "/subscriptions/ccb70350-4936-/resourceGroups/da24846d-b0d8-4b7/providers/Microsoft.ApiManagement/service/f52fd071-f8/quotas/5d4fecc0-bdd8-4/periods/20b74e46-ab74-"; 22592Requests[4352].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22593Requests[4352].Request.Path = "/subscriptions/87668fa0-f701-/resourceGroups/24faa827-1305-45b/providers/Microsoft.Automation/automationAccounts/f8d9784b-db69-458f-93/compilationjobs/4ea6d/streams/5cb6e1e7-7d"; 22596Requests[4353].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22597Requests[4353].Request.Path = "/subscriptions/1b496e5e-88bd-/resourceGroups/6e5e9d99-d36f-46d/providers/Microsoft.Automation/automationAccounts/fb87dcee-2201-4688-80/jobs/b7aa4/streams/e8efb90e-e3"; 22600Requests[4354].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22601Requests[4354].Request.Path = "/subscriptions/35d42db3-aa4c-/resourceGroups/de197673-2f4a-4e2/providers/Microsoft.Automation/automationAccounts/9e20b6b3-b2ad-4dde-b9/modules/9486c622-d/activities/a784b204-4fa"; 22604Requests[4355].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22605Requests[4355].Request.Path = "/subscriptions/fb383b2d-cb50-/resourceGroups/86f41eaa-2994-480/providers/Microsoft.Automation/automationAccounts/85d5430a-f416-48c4-82/nodes/dd417b/reports/99f7535e"; 22608Requests[4356].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22609Requests[4356].Request.Path = "/subscriptions/72e7681e-afe8-/resourceGroups/af04ed61-54e9-4ca/providers/Microsoft.Automation/automationAccounts/763e482e-d8ae-48bf-87/sourceControls/2f77152a-4303-414/sourceControlSyncJobs/9896b835-6590-4111-9b2"; 22612Requests[4357].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22613Requests[4357].Request.Path = "/subscriptions/f5c8988c-dfcc-/resourceGroups/2231c03a-5d4b-441/providers/Microsoft.Automation/automationAccounts/3471dcdb-8a9e-4423-92/sourceControls/164b4ded-9250-4c7/sourceControlSyncJobs/a3bf6222-3e0b-4f68-aab"; 22616Requests[4358].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22617Requests[4358].Request.Path = "/subscriptions/fcfd7893-83df-/resourceGroups/cd374742-2791-488/providers/Microsoft.Batch/batchAccounts/e420e6b7-20/applications/5a5435b7-74a3/versions/209fa88"; 22620Requests[4359].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22621Requests[4359].Request.Path = "/subscriptions/fb1a33cc-aaee-/resourceGroups/07c7a323-4540-431/providers/Microsoft.Batch/batchAccounts/f5eec4bc-c7/applications/826c4754-b69b/versions/c4da47f"; 22624Requests[4360].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22625Requests[4360].Request.Path = "/subscriptions/cace4d43-5177-/resourceGroups/66a6d137-0cf1-4cd/providers/Microsoft.Batch/batchAccounts/66ac9b49-c2/applications/ed6c67ab-0500/versions/65feb66"; 22628Requests[4361].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22629Requests[4361].Request.Path = "/subscriptions/c7243f92-c2f3-/resourceGroups/5ce9bbac-782a-43e/providers/Microsoft.BatchAI/workspaces/e9427097-c028/experiments/f704066c-7db8-/jobs/4b9f561"; 22632Requests[4362].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22633Requests[4362].Request.Path = "/subscriptions/bea2215b-0a45-/resourceGroups/ae235a06-048e-4bb/providers/Microsoft.BatchAI/workspaces/823fba45-ddd7/experiments/1e6e9e28-fce2-/jobs/00bc81e"; 22636Requests[4363].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22637Requests[4363].Request.Path = "/subscriptions/25a4a196-9deb-/resourceGroups/34f42d78-f795-4b1/providers/Microsoft.BatchAI/workspaces/27ce25f1-5275/experiments/6b94db1a-275a-/jobs/4a334fd"; 22640Requests[4364].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22641Requests[4364].Request.Path = "/subscriptions/de4f112d-2188-/resourceGroups/b8bf6b7a-7cf7-40d/providers/Microsoft.Cdn/profiles/66733fd4-c9/endpoints/2bb68f63-7d5/customDomains/9ca6fc1d-bf16-47"; 22644Requests[4365].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22645Requests[4365].Request.Path = "/subscriptions/1ac88c51-a3ea-/resourceGroups/28b287bc-0ca8-43a/providers/Microsoft.Cdn/profiles/b01e7bc0-5c/endpoints/9a290ecb-95e/customDomains/94e84a36-3e28-4c"; 22648Requests[4366].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22649Requests[4366].Request.Path = "/subscriptions/877c493e-03c6-/resourceGroups/786d1b4c-a2ba-47b/providers/Microsoft.Cdn/profiles/636bf573-e6/endpoints/72ac1bdc-699/customDomains/431c1fdd-d772-48"; 22652Requests[4367].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22653Requests[4367].Request.Path = "/subscriptions/3f4d7750-8126-/resourceGroups/db676599-b3ba-4d9/providers/Microsoft.Cdn/profiles/a9aba429-6f/endpoints/dbef7e48-ba2/customDomains/c15fd34a-0e62-46"; 22656Requests[4368].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22657Requests[4368].Request.Path = "/subscriptions/b7d94508-a829-/resourceGroups/e9d0712c-154b-415/providers/Microsoft.Cdn/profiles/97934019-80/endpoints/27e53af0-28d/origins/3c3db66d-3"; 22660Requests[4369].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22661Requests[4369].Request.Path = "/subscriptions/f0383acc-ddff-/resourceGroups/a25c1ada-779b-422/providers/Microsoft.Cdn/profiles/d01ff87b-b8/endpoints/da5827eb-f6e/origins/1be6d6b2-1"; 22664Requests[4370].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22665Requests[4370].Request.Path = "/subscriptions/3d7f770a-e3f9-/resourceGroups/4583df72-618c-4dd/providers/Microsoft.Cdn/profiles/606afd8c-6b/endpoints/5fd24a00-6a8/origins/cb752370-0"; 22668Requests[4371].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22669Requests[4371].Request.Path = "/subscriptions/aecee748-817f-/resourceGroups/a464dc61-c0aa-403/providers/Microsoft.Cdn/profiles/0836fa78-30/endpoints/c3cf7adc-260/origins/d2791f4a-2"; 22672Requests[4372].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22673Requests[4372].Request.Path = "/subscriptions/b2e19f18-e3c6-/resourceGroups/b79f1d27-83c1-495/providers/Microsoft.Compute/galleries/65a5a3ee-c1/images/6d1c18af-8913-4e/versions/c8deadbf-6ed1-4886-875e"; 22676Requests[4373].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22677Requests[4373].Request.Path = "/subscriptions/170fc540-970c-/resourceGroups/c392aae3-5ef6-492/providers/Microsoft.Compute/galleries/119ad7f0-55/images/4ee2a8f3-5e6e-48/versions/c31cf077-77fc-442c-b668"; 22680Requests[4374].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22681Requests[4374].Request.Path = "/subscriptions/7ef1753f-4be5-/resourceGroups/04621af5-230f-469/providers/Microsoft.Compute/galleries/0050133f-84/images/863d9591-97ae-4a/versions/705911c3-47cb-4a0f-ae9f"; 22684Requests[4375].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22685Requests[4375].Request.Path = "/subscriptions/0b557ebd-b017-/resourceGroups/4916d78a-8bb2-41d/providers/microsoft.Compute/virtualMachineScaleSets/9de76e66-2804-4f25-91fb-34/virtualMachines/6ddc6e01-9b5e-4a1e-/networkInterfaces/dee08e48-87e5-430f-a"; 22688Requests[4376].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22689Requests[4376].Request.Path = "/subscriptions/c59109c6-9354-/resourceGroups/8ff303cd-b10e-49a/providers/Microsoft.ContainerRegistry/registries/f772bdf2-951/buildTasks/87460e6d-dccb/steps/d88eb8cb"; 22692Requests[4377].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22693Requests[4377].Request.Path = "/subscriptions/a72bb62c-479d-/resourceGroups/88d53526-1bcb-4be/providers/Microsoft.ContainerRegistry/registries/4586b30e-850/buildTasks/5bd5c678-36e8/steps/d4887131"; 22696Requests[4378].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22697Requests[4378].Request.Path = "/subscriptions/e21a2114-7b47-/resourceGroups/f877b5ed-123f-44a/providers/Microsoft.ContainerRegistry/registries/ba676020-a4b/buildTasks/0b3ac179-c754/steps/48f438a9"; 22700Requests[4379].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22701Requests[4379].Request.Path = "/subscriptions/dfa96d4c-191a-/resourceGroups/f2bdde56-69b3-4fb/providers/Microsoft.ContainerRegistry/registries/592ab436-2d9/buildTasks/c7ab3ac4-d330/steps/b0cb6f5e"; 22704Requests[4380].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22705Requests[4380].Request.Path = "/subscriptions/8040ce12-cd3e-/resourceGroups/93292649-51a6-453/providers/Microsoft.CustomerInsights/hubs/aac9066/connectors/dae306fd-fe4c/mappings/e4889a10-3b"; 22708Requests[4381].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22709Requests[4381].Request.Path = "/subscriptions/bd930bc4-1fe8-/resourceGroups/dd74914e-e6f8-405/providers/Microsoft.CustomerInsights/hubs/4cd3fc0/connectors/1982b550-7d5a/mappings/6844bbf8-a3"; 22712Requests[4382].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22713Requests[4382].Request.Path = "/subscriptions/e012df12-c69f-/resourceGroups/2947851e-a2e5-414/providers/Microsoft.CustomerInsights/hubs/9e7453c/connectors/0d0c73fd-8db6/mappings/86dc631d-fc"; 22716Requests[4383].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22717Requests[4383].Request.Path = "/subscriptions/aae6bb09-4448-/resourceGroups/1a6a8699-bcb8-4d9/providers/Microsoft.DataFactory/factories/98aa12e1-18/integrationRuntimes/6716e56c-2a6e-4e54-971/nodes/a7e8867e"; 22720Requests[4384].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22721Requests[4384].Request.Path = "/subscriptions/35753c21-7017-/resourceGroups/22d0e14d-1d8b-42f/providers/Microsoft.DataFactory/factories/1d2a807d-7a/integrationRuntimes/54a78c31-1e60-4536-afe/nodes/f40a5419"; 22724Requests[4385].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22725Requests[4385].Request.Path = "/subscriptions/210a82d9-df8d-/resourceGroups/b6dbd9eb-9ea1-409/providers/Microsoft.DataLakeAnalytics/accounts/634e4e8f-5a/storageAccounts/a32c4170-3d6f-48ef/containers/77df7014-02f6"; 22728Requests[4386].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22729Requests[4386].Request.Path = "/subscriptions/9eb6a51b-bb75-/resourceGroups/53e2b57d-be74-40d/providers/Microsoft.Devices/IotHubs/db22610d-0fd/eventHubEndpoints/18039d46-0ac3-45a4-9/ConsumerGroups/3659a"; 22732Requests[4387].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22733Requests[4387].Request.Path = "/subscriptions/11dc93ec-c6da-/resourceGroups/079c5553-0a1a-452/providers/Microsoft.Devices/IotHubs/61c5ea31-488/eventHubEndpoints/4b6a81ac-561a-4ab9-b/ConsumerGroups/a48b1"; 22736Requests[4388].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22737Requests[4388].Request.Path = "/subscriptions/46d3c8e0-291a-/resourceGroups/5ad1e39a-4b21-42c/providers/Microsoft.Devices/IotHubs/6ff96c89-877/eventHubEndpoints/3ac2445e-ee74-4217-9/ConsumerGroups/d9166"; 22740Requests[4389].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22741Requests[4389].Request.Path = "/subscriptions/2185bd6a-0f13-/resourceGroups/1d632f01-ddfb-495/providers/Microsoft.DevTestLab/labs/8110b0c/artifactsources/44cd9798-e4b1-4204/armtemplates/b18a2"; 22744Requests[4390].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22745Requests[4390].Request.Path = "/subscriptions/29cf2561-6066-/resourceGroups/c1117e1d-8c2e-485/providers/Microsoft.DevTestLab/labs/b6a9ed8/artifactsources/446134f0-36ce-4e6f/artifacts/31e7e"; 22748Requests[4391].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22749Requests[4391].Request.Path = "/subscriptions/30dace52-2c7f-/resourceGroups/208871a2-a748-477/providers/Microsoft.DevTestLab/labs/744545f/policysets/915c53e9-c1d8/policies/64030"; 22752Requests[4392].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22753Requests[4392].Request.Path = "/subscriptions/7e8eb124-f0a0-/resourceGroups/e7d8dceb-b2fc-401/providers/Microsoft.DevTestLab/labs/84c1a71/policysets/2e4a68a1-1acd/policies/3332e"; 22756Requests[4393].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22757Requests[4393].Request.Path = "/subscriptions/5cf0d26e-da40-/resourceGroups/5129db8d-1e64-4f5/providers/Microsoft.DevTestLab/labs/9a3705b/policysets/164e8031-57ea/policies/65928"; 22760Requests[4394].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22761Requests[4394].Request.Path = "/subscriptions/71246fdc-d470-/resourceGroups/05a1345b-1490-442/providers/Microsoft.DevTestLab/labs/6e019ac/policysets/f3305056-e8f1/policies/d8f14"; 22764Requests[4395].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22765Requests[4395].Request.Path = "/subscriptions/a9a7a1dc-c7eb-/resourceGroups/27ca4ac1-34dd-403/providers/Microsoft.DevTestLab/labs/df542c4/users/9c7c53f8/disks/2b935"; 22768Requests[4396].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22769Requests[4396].Request.Path = "/subscriptions/66e07458-9bf5-/resourceGroups/170df48c-1e8c-495/providers/Microsoft.DevTestLab/labs/7f7637a/users/a6c3b093/disks/d86fb"; 22772Requests[4397].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22773Requests[4397].Request.Path = "/subscriptions/07e38586-2b83-/resourceGroups/9735f5e1-e67d-4eb/providers/Microsoft.DevTestLab/labs/6d2c12c/users/160d1010/disks/40a8a"; 22776Requests[4398].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22777Requests[4398].Request.Path = "/subscriptions/9089a805-3477-/resourceGroups/bfac1388-7792-449/providers/Microsoft.DevTestLab/labs/5195230/users/fd2645b5/environments/08598"; 22780Requests[4399].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22781Requests[4399].Request.Path = "/subscriptions/2f8dc9ea-5aab-/resourceGroups/1fb4b269-49f7-416/providers/Microsoft.DevTestLab/labs/bd42b53/users/2d71af8c/environments/33b3f"; 22784Requests[4400].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22785Requests[4400].Request.Path = "/subscriptions/0ff2f1ec-ec91-/resourceGroups/b3e89b93-db08-43b/providers/Microsoft.DevTestLab/labs/03d5abf/users/fc1b0fcd/environments/1b990"; 22788Requests[4401].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22789Requests[4401].Request.Path = "/subscriptions/8bb11d9e-8b5a-/resourceGroups/16fe87c1-6a29-429/providers/Microsoft.DevTestLab/labs/c9a336c/users/b45f3994/secrets/bd2ac"; 22792Requests[4402].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22793Requests[4402].Request.Path = "/subscriptions/945daed6-c686-/resourceGroups/c1954ee5-41e7-49c/providers/Microsoft.DevTestLab/labs/4717f87/users/b1b37128/secrets/d4601"; 22796Requests[4403].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22797Requests[4403].Request.Path = "/subscriptions/fb8c5a9c-69dd-/resourceGroups/21c20fef-ec96-4f5/providers/Microsoft.DevTestLab/labs/60dc217/users/87a703b5/secrets/79767"; 22800Requests[4404].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22801Requests[4404].Request.Path = "/subscriptions/e13f5994-d706-/resourceGroups/9d4de131-4b62-457/providers/Microsoft.DevTestLab/labs/de839f2/virtualmachines/df0edf4f-6f59-4324/schedules/a06a4"; 22804Requests[4405].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22805Requests[4405].Request.Path = "/subscriptions/78e6ff0b-3c55-/resourceGroups/f6c4a64b-5815-4f6/providers/Microsoft.DevTestLab/labs/6c02510/virtualmachines/51d8297e-5aa2-446f/schedules/3a809"; 22808Requests[4406].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22809Requests[4406].Request.Path = "/subscriptions/4434b837-8346-/resourceGroups/67ac73ad-5178-40e/providers/Microsoft.DevTestLab/labs/0a1a400/virtualmachines/12a8e5eb-dfd2-4172/schedules/af8a1"; 22812Requests[4407].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22813Requests[4407].Request.Path = "/subscriptions/2c7d9df9-6677-/resourceGroups/5e16b834-136f-4a3/providers/Microsoft.DevTestLab/labs/9c73b3d/virtualmachines/0e68e578-fa5b-43e3/schedules/ea907"; 22816Requests[4408].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22817Requests[4408].Request.Path = "/subscriptions/946bc226-9629-/resourceGroups/ac28abd9-5bb1-479/providers/Microsoft.EventHub/namespaces/7a98f2d6-1688/disasterRecoveryConfigs/9a38e/AuthorizationRules/2716716e-ef7a-405a-a9"; 22820Requests[4409].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22821Requests[4409].Request.Path = "/subscriptions/a4e1a96c-4a2c-/resourceGroups/c57fdfda-57b1-4eb/providers/Microsoft.EventHub/namespaces/7346c05d-ff31/eventhubs/59d68e4d-a61/authorizationRules/4e07a53a-8ff5-4af5-af"; 22824Requests[4410].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22825Requests[4410].Request.Path = "/subscriptions/81943dbe-4f1e-/resourceGroups/4bd4163d-22b5-4c0/providers/Microsoft.EventHub/namespaces/e0e74e8a-db67/eventhubs/8efae918-4a4/authorizationRules/e3b4d1f3-5c57-4df6-89"; 22828Requests[4411].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22829Requests[4411].Request.Path = "/subscriptions/959f28da-3a87-/resourceGroups/a5d8b8d9-0ddd-4b8/providers/Microsoft.EventHub/namespaces/d82c3611-4f37/eventhubs/be717fe4-0c1/authorizationRules/881f5660-0e7f-4d6b-b0"; 22832Requests[4412].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22833Requests[4412].Request.Path = "/subscriptions/3e65f528-de7d-/resourceGroups/6904774f-2d34-482/providers/Microsoft.EventHub/namespaces/f6079328-72a5/eventhubs/b4e8ee4d-086/authorizationRules/fd777eb4-d971-4926-bc"; 22836Requests[4413].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22837Requests[4413].Request.Path = "/subscriptions/9b23fe0a-c8a0-/resourceGroups/3750505a-d06f-411/providers/Microsoft.EventHub/namespaces/35464de6-343e/eventhubs/c5df2c70-f33/consumergroups/cd527096-df33-40d"; 22840Requests[4414].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22841Requests[4414].Request.Path = "/subscriptions/2c19af94-7b7b-/resourceGroups/e8c8ee1b-b16b-4a7/providers/Microsoft.EventHub/namespaces/2efc130c-6073/eventhubs/8728bcd1-15c/consumergroups/75491a11-4e96-4e1"; 22844Requests[4415].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22845Requests[4415].Request.Path = "/subscriptions/4fda9977-0fe5-/resourceGroups/ea8facc6-1b73-426/providers/Microsoft.EventHub/namespaces/729d9b56-c8c0/eventhubs/1bd3f9c2-d8f/consumergroups/e3cf165f-6307-4ac"; 22848Requests[4416].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22849Requests[4416].Request.Path = "/subscriptions/f1a6e438-3075-/resourceGroups/d4555ef3-bfda-4d7/providers/Microsoft.Fabric.Admin/fabricLocations/eb21462c/logicalNetworks/855d5d9f-e906-/logicalSubnets/a81f0b86-78d9"; 22852Requests[4417].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22853Requests[4417].Request.Path = "/subscriptions/6cd48ff8-2ab9-/resourceGroups/b769bf33-9730-490/providers/Microsoft.Fabric.Admin/fabricLocations/dab288dd/storageSubSystems/a4f74405-a2a5-48/storagePools/0b23bdd9-6f"; 22856Requests[4418].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22857Requests[4418].Request.Path = "/subscriptions/987a4d23-fb09-/resourceGroups/c9343880-e495-4fa/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/90485390/serviceHealths/0c513afc-1ec9-45a5-a7/resourceHealths/f2543171-d8ee-49b2-943"; 22860Requests[4419].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22861Requests[4419].Request.Path = "/subscriptions/402f435f-2498-/resourceGroups/2d935771-9ffb-49d/providers/Microsoft.Logic/workflows/584b588b-afd/runs/0913653/actions/f51d5181-b"; 22864Requests[4420].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22865Requests[4420].Request.Path = "/subscriptions/59d4c9fd-19a1-/resourceGroups/b548b702-8a20-45e/providers/Microsoft.Logic/workflows/6c08758d-87d/runs/3ab00c8/operations/ee0edd86-69"; 22868Requests[4421].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22869Requests[4421].Request.Path = "/subscriptions/c1705c90-14d9-/resourceGroups/498269e8-ce9e-49c/providers/Microsoft.Logic/workflows/4cd8ea1e-928/triggers/7ae4f9d8-27/histories/dbed6ea2-75"; 22872Requests[4422].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 22873Requests[4422].Request.Path = "/subscriptions/1a064f63-4078-/resourceGroups/912e8cc4-731e-4aa/providers/Microsoft.MachineLearningExperimentation/accounts/7f8efee5-f3/workspaces/8654a7f9-5ba5/projects/ecd615ae-0c"; 22876Requests[4423].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22877Requests[4423].Request.Path = "/subscriptions/718fba67-c745-/resourceGroups/59f585d0-7a8f-47c/providers/Microsoft.MachineLearningExperimentation/accounts/8250ec98-2e/workspaces/4423d1ad-2c90/projects/35a3c507-2c"; 22880Requests[4424].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22881Requests[4424].Request.Path = "/subscriptions/659585a9-6fb8-/resourceGroups/fc96fefa-d043-4e1/providers/Microsoft.MachineLearningExperimentation/accounts/aa31afed-a1/workspaces/accbbd4c-7a11/projects/1f1c1331-98"; 22884Requests[4425].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22885Requests[4425].Request.Path = "/subscriptions/3380cc00-f610-/resourceGroups/f0bb00ca-b633-4ab/providers/Microsoft.MachineLearningExperimentation/accounts/d2fa309e-e3/workspaces/8f252a74-a972/projects/4ede368b-5a"; 22888Requests[4426].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22889Requests[4426].Request.Path = "/subscriptions/df128fac-11c7-/resourceGroups/e39f5749-b863-4e3/providers/Microsoft.Media/mediaservices/c00cf84f-80/liveEvents/55e1cbe9-312c/liveOutputs/fac36753-c599-"; 22892Requests[4427].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22893Requests[4427].Request.Path = "/subscriptions/c0fb3528-f034-/resourceGroups/e4c90a12-7031-421/providers/Microsoft.Media/mediaservices/61f703c5-50/liveEvents/5fac18b9-d0f0/liveOutputs/b004db3c-54fc-"; 22896Requests[4428].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22897Requests[4428].Request.Path = "/subscriptions/edb03389-b39b-/resourceGroups/554b845e-5a2f-42c/providers/Microsoft.Media/mediaservices/e3192b0c-6f/liveEvents/2e6a7962-5a86/liveOutputs/78fd2215-85b9-"; 22900Requests[4429].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22901Requests[4429].Request.Path = "/subscriptions/f56ee134-792d-/resourceGroups/a303eb81-634d-46c/providers/Microsoft.Media/mediaServices/bcd3acba-2d/transforms/48b6a1db-a45a/jobs/33122dc"; 22904Requests[4430].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22905Requests[4430].Request.Path = "/subscriptions/9f173b10-b8e2-/resourceGroups/a8ea9937-0745-43f/providers/Microsoft.Media/mediaServices/a404b8c4-df/transforms/74da470f-2783/jobs/4b90312"; 22908Requests[4431].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22909Requests[4431].Request.Path = "/subscriptions/1e013798-1175-/resourceGroups/aad44fd7-ce3e-464/providers/Microsoft.Media/mediaServices/2eed4e65-9a/transforms/def06628-948f/jobs/466c6b1"; 22912Requests[4432].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22913Requests[4432].Request.Path = "/subscriptions/ba160b96-6fe3-/resourceGroups/c639fb4a-ecda-403/providers/Microsoft.Migrate/projects/b3ed474e-0b/groups/4d77f8cb-/assessments/f5502f06-4723-"; 22916Requests[4433].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22917Requests[4433].Request.Path = "/subscriptions/08e5d772-ecc3-/resourceGroups/b3155527-2859-4cf/providers/Microsoft.Migrate/projects/99791d88-f3/groups/39526bc2-/assessments/6058bee5-10a6-"; 22920Requests[4434].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22921Requests[4434].Request.Path = "/subscriptions/5dbc883f-c99a-/resourceGroups/61c70c5a-2995-499/providers/Microsoft.Migrate/projects/855aef6c-6b/groups/36d72b82-/assessments/572893f1-abea-"; 22924Requests[4435].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22925Requests[4435].Request.Path = "/subscriptions/2755759a-5c65-/resourceGroups/de27c987-02e0-4e9/providers/Microsoft.Network/expressRouteCircuits/a27b900f-0c/peerings/0db4755b-44/arpTables/cb50151c-0"; 22928Requests[4436].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22929Requests[4436].Request.Path = "/subscriptions/725822f4-8941-/resourceGroups/8a7f0bff-42f2-47a/providers/Microsoft.Network/expressRouteCircuits/7d57f261-8b/peerings/c8f0c66c-64/connections/21fec69c-90c5-"; 22932Requests[4437].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22933Requests[4437].Request.Path = "/subscriptions/cf0f2d8d-fee3-/resourceGroups/eb7d39db-61f3-49d/providers/Microsoft.Network/expressRouteCircuits/fa46a525-72/peerings/508b439b-a4/connections/5f754b5e-69b8-"; 22936Requests[4438].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22937Requests[4438].Request.Path = "/subscriptions/577f43fc-2d2b-/resourceGroups/bddbab9b-f49f-4a4/providers/Microsoft.Network/expressRouteCircuits/76f4a05b-52/peerings/2db1285e-54/connections/9239eeb1-1fc6-"; 22940Requests[4439].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22941Requests[4439].Request.Path = "/subscriptions/b45bce2c-1fec-/resourceGroups/6dce34d5-1e67-418/providers/Microsoft.Network/expressRouteCircuits/48423cd1-bc/peerings/980a78fd-ef/routeTables/586636d7-2"; 22944Requests[4440].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22945Requests[4440].Request.Path = "/subscriptions/c41d4d65-2711-/resourceGroups/8c532d55-8165-463/providers/Microsoft.Network/expressRouteCircuits/fc0b9d98-09/peerings/f4f271b0-c9/routeTablesSummary/a0ba4238-a"; 22948Requests[4441].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22949Requests[4441].Request.Path = "/subscriptions/10072391-ae13-/resourceGroups/47fa6ed6-b47a-445/providers/Microsoft.Network/expressRouteCrossConnections/f32591b1-bc38-4f2b-/peerings/45f19d6d-02/arpTables/cae3d142-0"; 22952Requests[4442].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22953Requests[4442].Request.Path = "/subscriptions/4f27245e-5834-/resourceGroups/ec73d946-1d3e-463/providers/Microsoft.Network/expressRouteCrossConnections/8ba922a9-68b4-4c1e-/peerings/9f358cb1-a7/routeTables/c9b4c0f2-5"; 22956Requests[4443].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22957Requests[4443].Request.Path = "/subscriptions/e4dcd2a6-9a0e-/resourceGroups/e5cb2b97-7e19-498/providers/Microsoft.Network/expressRouteCrossConnections/dd7924e8-9dd8-4950-/peerings/81789a51-d1/routeTablesSummary/bd05ec03-f"; 22960Requests[4444].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22961Requests[4444].Request.Path = "/subscriptions/d1456a40-000f-/resourceGroups/d8b3b3f0-fb29-4fd/providers/Microsoft.NotificationHubs/namespaces/20e6d6c8-e2ef/notificationHubs/932a269c-9f2e-415b-/AuthorizationRules/a1206545-118c-456c-89"; 22964Requests[4445].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 22965Requests[4445].Request.Path = "/subscriptions/74b71b0c-d508-/resourceGroups/449ba751-8e3f-443/providers/Microsoft.NotificationHubs/namespaces/bdda7366-fd37/notificationHubs/06b7c755-ab99-4bff-/AuthorizationRules/2fb0604a-f907-4eae-9d"; 22968Requests[4446].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22969Requests[4446].Request.Path = "/subscriptions/e9cb26c9-8b17-/resourceGroups/ddd39437-7eb9-4b8/providers/Microsoft.NotificationHubs/namespaces/9e3fc399-3f24/notificationHubs/11fec0d7-21c1-483d-/AuthorizationRules/ca4140af-1580-480f-97"; 22972Requests[4447].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22973Requests[4447].Request.Path = "/subscriptions/66b51505-a5a7-/resourceGroups/4f261dfe-57a0-4e8/providers/Microsoft.NotificationHubs/namespaces/3e869de4-98d3/notificationHubs/48d76539-3a19-4464-/AuthorizationRules/6369a8da-6f81-4ffd-9b"; 22976Requests[4448].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22977Requests[4448].Request.Path = "/Subscriptions/cdd9e450-4f8f-/resourceGroups/c4281b30-0855-4e0/providers/Microsoft.RecoveryServices/vaults/ab22a6cd-7f8/replicationFabrics/81208aef-7/replicationLogicalNetworks/995ebd45-6700-4cd4"; 22980Requests[4449].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22981Requests[4449].Request.Path = "/Subscriptions/06897a2f-8da8-/resourceGroups/360e2d8f-0abe-413/providers/Microsoft.RecoveryServices/vaults/de5c2c26-404/replicationFabrics/adb14c00-2/replicationNetworks/d592b102-b1"; 22984Requests[4450].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22985Requests[4450].Request.Path = "/Subscriptions/1bea81fd-46a2-/resourceGroups/d2c8708f-144a-43a/providers/Microsoft.RecoveryServices/vaults/e3a41592-94e/replicationFabrics/cba0e37b-1/replicationProtectionContainers/ffb00a70-b986-4735-90ef"; 22988Requests[4451].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 22989Requests[4451].Request.Path = "/Subscriptions/d923dad7-53fc-/resourceGroups/82b4eec5-0ac8-4e8/providers/Microsoft.RecoveryServices/vaults/6f1a8e49-6c1/replicationFabrics/be193d53-9/replicationProtectionContainers/1b5155fb-3935-42e7-9901"; 22992Requests[4452].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 22993Requests[4452].Request.Path = "/Subscriptions/4c969d3f-0271-/resourceGroups/bd49011c-5c22-470/providers/Microsoft.RecoveryServices/vaults/81eb09be-bae/replicationFabrics/e4f77a51-3/replicationRecoveryServicesProviders/9a4eb051-cec"; 22996Requests[4453].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 22997Requests[4453].Request.Path = "/Subscriptions/53012660-8d69-/resourceGroups/189eb8c9-5f82-41d/providers/Microsoft.RecoveryServices/vaults/39754150-b8c/replicationFabrics/069622a4-7/replicationRecoveryServicesProviders/e4492308-e1d"; 23000Requests[4454].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23001Requests[4454].Request.Path = "/Subscriptions/44dc83ed-bcb1-/resourceGroups/42107cb1-cda4-47d/providers/Microsoft.RecoveryServices/vaults/25ed8e14-033/replicationFabrics/0d7a47da-c/replicationStorageClassifications/87a95ae6-abc9-41c3-858a-b"; 23004Requests[4455].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23005Requests[4455].Request.Path = "/Subscriptions/7285a7f9-65f8-/resourceGroups/38765f53-5317-496/providers/Microsoft.RecoveryServices/vaults/df48d950-4f7/replicationFabrics/23eb5ba8-d/replicationvCenters/2c01d786-65"; 23008Requests[4456].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23009Requests[4456].Request.Path = "/Subscriptions/3b55b13c-499f-/resourceGroups/c3e783ea-3448-4b0/providers/Microsoft.RecoveryServices/vaults/318f0100-295/replicationFabrics/88f610d0-6/replicationvCenters/67bd2ecc-66"; 23012Requests[4457].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23013Requests[4457].Request.Path = "/Subscriptions/9e7aec8b-fd5f-/resourceGroups/c88f27bb-e9fe-407/providers/Microsoft.RecoveryServices/vaults/a4f1b8f2-80f/replicationFabrics/f56c93cc-d/replicationvCenters/3d885b4a-24"; 23016Requests[4458].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23017Requests[4458].Request.Path = "/Subscriptions/8f3f220d-faa4-/resourceGroups/39513b82-e7ac-4a2/providers/Microsoft.RecoveryServices/vaults/35b914d7-955/replicationFabrics/a14ac938-0/replicationvCenters/cc36812c-11"; 23020Requests[4459].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23021Requests[4459].Request.Path = "/Subscriptions/858cb863-5245-/resourceGroups/992c7073-10c6-4ed/providers/Microsoft.RecoveryServices/vaults/88f00b9a-/backupFabrics/51fa5349-d/backupProtectionIntent/ad7a7a83-de86-4e"; 23024Requests[4460].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23025Requests[4460].Request.Path = "/Subscriptions/6951d392-6f19-/resourceGroups/ae7128bf-d8fc-4e8/providers/Microsoft.RecoveryServices/vaults/45c57af9-/backupFabrics/6322d600-e/operationResults/ad00d676-c6"; 23028Requests[4461].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23029Requests[4461].Request.Path = "/Subscriptions/2362be26-7c44-/resourceGroups/1b40273d-9f9f-405/providers/Microsoft.RecoveryServices/vaults/c5fd8ebc-/backupFabrics/33ac99fa-5/protectionContainers/a25b0104-fd77"; 23032Requests[4462].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23033Requests[4462].Request.Path = "/Subscriptions/2318d8c1-7746-/resourceGroups/18499df2-4e1e-4c8/providers/Microsoft.RecoveryServices/vaults/2f782516-/backupFabrics/37c77949-2/protectionContainers/e6443de0-9a9e"; 23036Requests[4463].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23037Requests[4463].Request.Path = "/Subscriptions/057606f5-d54c-/resourceGroups/ea7545ed-7b81-4e8/providers/Microsoft.RecoveryServices/vaults/cd6760a1-/backupFabrics/d8e28565-a/protectionContainers/87a422cb-e402"; 23040Requests[4464].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23041Requests[4464].Request.Path = "/Subscriptions/b59531b2-c13e-/resourceGroups/8ad5f788-513a-495/providers/Microsoft.RecoveryServices/vaults/d42a0ab5-/backupJobs/bb7ce57/operationResults/e5fce4ad-9a"; 23044Requests[4465].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23045Requests[4465].Request.Path = "/Subscriptions/d7926ea0-ea5c-/resourceGroups/05b922dc-bab1-411/providers/Microsoft.RecoveryServices/vaults/6e561c6c-/backupPolicies/3ee2f6e2-2/operationResults/867ff175-25"; 23048Requests[4466].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23049Requests[4466].Request.Path = "/Subscriptions/1eece1bc-3568-/resourceGroups/ffd748c0-3ea3-465/providers/Microsoft.RecoveryServices/vaults/51ed241e-/backupPolicies/69dcf757-0/operations/426449bd-4a"; 23052Requests[4467].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23053Requests[4467].Request.Path = "/subscriptions/47ac0eed-133d-/resourceGroups/4771e9d0-ce77-4d4/providers/Microsoft.Relay/namespaces/2d80e95e-0229/hybridConnections/380dff0e-98e0-414f-8/authorizationRules/65796472-ee4b-497d-90"; 23056Requests[4468].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23057Requests[4468].Request.Path = "/subscriptions/060c60eb-5321-/resourceGroups/1ed97bcf-49e5-400/providers/Microsoft.Relay/namespaces/b88dc137-522b/hybridConnections/da23e506-1f6b-43dc-8/authorizationRules/84af15c2-9204-4cb7-96"; 23060Requests[4469].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23061Requests[4469].Request.Path = "/subscriptions/5ee12e16-6331-/resourceGroups/37e0d680-c682-494/providers/Microsoft.Relay/namespaces/286f534b-3221/hybridConnections/e95f3417-559d-4482-9/authorizationRules/a181985e-2579-4176-99"; 23064Requests[4470].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23065Requests[4470].Request.Path = "/subscriptions/f45741cd-3102-/resourceGroups/abcdcc1a-b67e-41e/providers/Microsoft.Relay/namespaces/4905dbd2-09de/HybridConnections/ad2735fe-f5bf-4b3f-8/authorizationRules/e83152ec-3610-42c5-a5"; 23068Requests[4471].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23069Requests[4471].Request.Path = "/subscriptions/e80422ab-d73f-/resourceGroups/cc94b3e2-2373-4e9/providers/Microsoft.Relay/namespaces/7636200d-3c6f/wcfRelays/4cb6fe5b-/authorizationRules/a7889d2b-f498-47f0-8e"; 23072Requests[4472].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23073Requests[4472].Request.Path = "/subscriptions/14b85444-4a3c-/resourceGroups/e3a974b3-9d1d-437/providers/Microsoft.Relay/namespaces/0e3a1c58-298b/wcfRelays/0e4a9390-/authorizationRules/9f373eb1-71e6-42a1-bd"; 23076Requests[4473].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23077Requests[4473].Request.Path = "/subscriptions/c95c55de-2518-/resourceGroups/70188c2f-c06c-449/providers/Microsoft.Relay/namespaces/e910c926-e741/wcfRelays/7f089377-/authorizationRules/dd27602d-5481-47d7-95"; 23080Requests[4474].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23081Requests[4474].Request.Path = "/subscriptions/691e7b00-8613-/resourceGroups/99ee2718-fc86-431/providers/Microsoft.Relay/namespaces/758f80c6-f67c/WcfRelays/5f15e9a0-/authorizationRules/d9a4e8ff-5fc4-4bdd-bf"; 23084Requests[4475].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23085Requests[4475].Request.Path = "/subscriptions/9d40a130-998b-/resourceGroups/fbc43114-4f48-412/providers/Microsoft.ServiceBus/namespaces/36128f66-bbf4/disasterRecoveryConfigs/ef6dd/AuthorizationRules/5f591c39-4427-4b4e-89"; 23088Requests[4476].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23089Requests[4476].Request.Path = "/subscriptions/60ffb837-2b46-/resourceGroups/79b2d755-3a84-4bf/providers/Microsoft.ServiceBus/namespaces/f7c19a45-8f5a/eventhubs/94e83d7f-0b1/authorizationRules/9e560758-b77c-4035-b3"; 23092Requests[4477].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23093Requests[4477].Request.Path = "/subscriptions/d338c503-9167-/resourceGroups/3e201cdc-9bb5-49b/providers/Microsoft.ServiceBus/namespaces/225feba2-2292/queues/1549942b-/authorizationRules/2c5d65e1-dbc2-4a57-84"; 23096Requests[4478].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23097Requests[4478].Request.Path = "/subscriptions/3c113b2b-a005-/resourceGroups/4aeeaccb-74cf-49e/providers/Microsoft.ServiceBus/namespaces/36741172-a808/queues/67c96d4e-/authorizationRules/86514621-4f69-430d-97"; 23100Requests[4479].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23101Requests[4479].Request.Path = "/subscriptions/749d31c6-4628-/resourceGroups/47420dd3-d714-48d/providers/Microsoft.ServiceBus/namespaces/e9797fdd-827c/queues/475e01d3-/authorizationRules/ed208ace-5fee-43d1-b3"; 23104Requests[4480].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23105Requests[4480].Request.Path = "/subscriptions/41408cdb-3d2b-/resourceGroups/3e7d049b-6d85-48c/providers/Microsoft.ServiceBus/namespaces/e990282e-63fc/queues/49f42514-/authorizationRules/1eac5786-095b-4bd0-9b"; 23108Requests[4481].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23109Requests[4481].Request.Path = "/subscriptions/40274d98-85bc-/resourceGroups/cc15b62b-d4c8-433/providers/Microsoft.ServiceBus/namespaces/80ffe563-f895/topics/7416f8b7-/authorizationRules/09d754b3-0ab4-41c3-98"; 23112Requests[4482].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23113Requests[4482].Request.Path = "/subscriptions/7279b54c-97bd-/resourceGroups/34b07cc8-ef3d-4ec/providers/Microsoft.ServiceBus/namespaces/11f80720-5ac5/topics/03958773-/authorizationRules/222eae8f-13ef-45ad-90"; 23116Requests[4483].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23117Requests[4483].Request.Path = "/subscriptions/286509fe-8726-/resourceGroups/54405b4d-7dff-4df/providers/Microsoft.ServiceBus/namespaces/6ba95a96-90d0/topics/41563381-/authorizationRules/0c514c0b-990f-44ae-b5"; 23120Requests[4484].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23121Requests[4484].Request.Path = "/subscriptions/2292c893-7ef7-/resourceGroups/3e3b7a11-9ee9-427/providers/Microsoft.ServiceBus/namespaces/e5ade1df-5c42/topics/07630d75-/authorizationRules/d7ae4e81-e828-403b-a4"; 23124Requests[4485].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23125Requests[4485].Request.Path = "/subscriptions/ba8ce476-a8e1-/resourceGroups/7bb9eb81-4b02-442/providers/Microsoft.ServiceBus/namespaces/138f0ffd-ba8f/topics/1f3bd577-/subscriptions/c4d2d094-1af4-44"; 23128Requests[4486].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23129Requests[4486].Request.Path = "/subscriptions/4d7a7799-49c1-/resourceGroups/e7247d9a-900f-4e6/providers/Microsoft.ServiceBus/namespaces/adebda40-9173/topics/2f8e954f-/subscriptions/c3a6d85c-d7ad-4a"; 23132Requests[4487].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23133Requests[4487].Request.Path = "/subscriptions/be3969a8-dc8c-/resourceGroups/23694471-4f32-4b8/providers/Microsoft.ServiceBus/namespaces/41275aae-29ab/topics/644228ed-/subscriptions/edab250e-d193-46"; 23136Requests[4488].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23137Requests[4488].Request.Path = "/subscriptions/c9d62b93-78b9-/resourceGroups/928d366d-cb1a-4c0/providers/Microsoft.ServiceFabric/clusters/37805ab0-7e/applications/5d7a9b09-56ce-4/services/bee45205-6f"; 23140Requests[4489].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23141Requests[4489].Request.Path = "/subscriptions/5d82b7f2-be03-/resourceGroups/83f2d26a-71a4-42f/providers/Microsoft.ServiceFabric/clusters/b9e0c82c-39/applications/c300c11f-e79a-4/services/f5d48cdf-a0"; 23144Requests[4490].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23145Requests[4490].Request.Path = "/subscriptions/8bf33e4f-3674-/resourceGroups/65df01aa-57a4-4da/providers/Microsoft.ServiceFabric/clusters/bed2fde6-30/applications/cb8ee2b0-9b26-4/services/4417eded-ef"; 23148Requests[4491].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23149Requests[4491].Request.Path = "/subscriptions/ed0b04d5-f1ae-/resourceGroups/492b9b89-74ec-420/providers/Microsoft.ServiceFabric/clusters/2ff674df-95/applications/ed248691-24a8-4/services/3518bf5c-8f"; 23152Requests[4492].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23153Requests[4492].Request.Path = "/subscriptions/b65e91d1-c69d-/resourceGroups/0a5c715a-cbe4-4f3/providers/Microsoft.ServiceFabric/clusters/c40d08ee-a8/applicationTypes/d31ee81d-e8b0-4c98-/versions/56705f4"; 23156Requests[4493].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23157Requests[4493].Request.Path = "/subscriptions/cc18eb3e-4aaf-/resourceGroups/f2739850-355b-4d2/providers/Microsoft.ServiceFabric/clusters/2b642b9e-ab/applicationTypes/9be418c1-6103-4049-/versions/e686d77"; 23160Requests[4494].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23161Requests[4494].Request.Path = "/subscriptions/a97357bb-3d83-/resourceGroups/e8dcc9af-6501-443/providers/Microsoft.ServiceFabric/clusters/84618f76-15/applicationTypes/e77abe13-0447-47e9-/versions/ebac2cb"; 23164Requests[4495].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23165Requests[4495].Request.Path = "/subscriptions/22429bd9-ef1d-/resourceGroups/13629c96-ad68-44d/providers/Microsoft.Sql/servers/dcb528c3-1/databases/cdf2b4a9-e07/advisors/87cdc2e3-74"; 23168Requests[4496].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23169Requests[4496].Request.Path = "/subscriptions/5653ae2b-8f6f-/resourceGroups/bccea365-d82d-4d8/providers/Microsoft.Sql/servers/e87e951e-1/databases/35452763-24a/advisors/fdf89806-d9"; 23172Requests[4497].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23173Requests[4497].Request.Path = "/subscriptions/3f53d93e-5130-/resourceGroups/1cc5cbfb-b6c6-4ae/providers/Microsoft.Sql/servers/e110f26d-7/databases/f76d6f57-469/advisors/9a4fef69-f8"; 23176Requests[4498].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23177Requests[4498].Request.Path = "/subscriptions/fd1b8609-5f7d-/resourceGroups/d04b3e7f-ff6e-4c5/providers/Microsoft.Sql/servers/0bd40985-4/databases/3feaa4e1-3d3/auditingPolicies/c89abdc8-5cc9-4529-a585"; 23180Requests[4499].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23181Requests[4499].Request.Path = "/subscriptions/b0a01f5f-0c70-/resourceGroups/1bf22e71-6788-403/providers/Microsoft.Sql/servers/6ca633aa-9/databases/3c8cbcf8-463/auditingPolicies/8124d57e-2c60-43d3-90c5"; 23184Requests[4500].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23185Requests[4500].Request.Path = "/subscriptions/fb29fdf0-f7d8-/resourceGroups/2ec92452-92c3-4a0/providers/Microsoft.Sql/servers/a7813ec8-7/databases/be23f818-d57/auditingSettings/6bc25ec6-38fe-457d-9af"; 23188Requests[4501].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23189Requests[4501].Request.Path = "/subscriptions/81b672e5-d4da-/resourceGroups/7b43f0ac-23fb-46c/providers/Microsoft.Sql/servers/c08383a9-6/databases/a291c386-793/auditingSettings/624e1fcc-23c8-40d7-ae9"; 23192Requests[4502].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23193Requests[4502].Request.Path = "/subscriptions/c1974cdf-beba-/resourceGroups/6bcfdada-36ec-40f/providers/Microsoft.Sql/servers/2e129073-5/databases/f5e67cbb-009/backupLongTermRetentionPolicies/889d5159-76e6-4728-8d30-867071e68"; 23196Requests[4503].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23197Requests[4503].Request.Path = "/subscriptions/70f42522-13ca-/resourceGroups/8bdbd738-b587-420/providers/Microsoft.Sql/servers/42fe80e3-2/databases/1086ff63-62f/backupLongTermRetentionPolicies/67e26f48-af03-4745-947f-1eeb1725b"; 23200Requests[4504].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23201Requests[4504].Request.Path = "/subscriptions/9c61262a-e46d-/resourceGroups/f9c36fbf-1791-403/providers/Microsoft.Sql/servers/7851ae1d-b/databases/5c2e0556-1b3/backupShortTermRetentionPolicies/13ba7ed1-9"; 23204Requests[4505].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23205Requests[4505].Request.Path = "/subscriptions/88776d41-d196-/resourceGroups/431fe17b-b512-49c/providers/Microsoft.Sql/servers/7bff09b0-c/databases/b7f4ccbb-696/backupShortTermRetentionPolicies/4be324e4-e"; 23208Requests[4506].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23209Requests[4506].Request.Path = "/subscriptions/2c9d04eb-edd0-/resourceGroups/7e9b9090-c706-420/providers/Microsoft.Sql/servers/7b6de07a-1/databases/26af1f3c-f01/backupShortTermRetentionPolicies/195e1218-6"; 23212Requests[4507].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23213Requests[4507].Request.Path = "/subscriptions/49fc5f89-8998-/resourceGroups/5e7216a8-45f4-43e/providers/Microsoft.Sql/servers/ec9a3a69-6/databases/3fb1655b-01e/connectionPolicies/f277b1ad-8417-49e0-8"; 23216Requests[4508].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23217Requests[4508].Request.Path = "/subscriptions/ad036033-c32e-/resourceGroups/8b14a549-ea4a-44d/providers/Microsoft.Sql/servers/54397e5e-d/databases/0fcd8511-8db/connectionPolicies/a97b9f85-327b-45d2-9"; 23220Requests[4509].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23221Requests[4509].Request.Path = "/subscriptions/01e219d7-7ba3-/resourceGroups/586289ad-7a28-41f/providers/Microsoft.Sql/servers/8a322a70-c/databases/d7621faa-1b8/dataMaskingPolicies/36b63ef3-c40c-4c68-97"; 23224Requests[4510].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23225Requests[4510].Request.Path = "/subscriptions/be670cb0-f40c-/resourceGroups/d73d5631-9bac-423/providers/Microsoft.Sql/servers/fa93ebaa-c/databases/845e3ca0-e70/dataMaskingPolicies/07c8925c-3215-4858-82"; 23228Requests[4511].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23229Requests[4511].Request.Path = "/subscriptions/258c8a56-ac1f-/resourceGroups/42fc00e4-b852-441/providers/Microsoft.Sql/servers/1d7753dc-6/databases/02a0fd31-ced/dataWarehouseUserActivities/81c33476-b11a-447a-9814-29176"; 23232Requests[4512].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23233Requests[4512].Request.Path = "/subscriptions/c74d7c69-9aaa-/resourceGroups/56cacb96-f951-4d3/providers/Microsoft.Sql/servers/c8806a7d-8/databases/064c89e2-65c/extensions/7bc53efd-f90d"; 23236Requests[4513].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23237Requests[4513].Request.Path = "/subscriptions/2cbbef57-0474-/resourceGroups/19dd9497-1da0-4dc/providers/Microsoft.Sql/servers/a8c4cfc6-e/databases/9b60d6e6-b3d/geoBackupPolicies/9f9ec187-4dc6-48e8-"; 23240Requests[4514].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23241Requests[4514].Request.Path = "/subscriptions/99ad9b35-154b-/resourceGroups/5682f149-f5d5-482/providers/Microsoft.Sql/servers/b537b357-e/databases/faee1d23-1ac/geoBackupPolicies/e1bee0fe-f1c5-40e1-"; 23244Requests[4515].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23245Requests[4515].Request.Path = "/subscriptions/4dedea09-4f27-/resourceGroups/aaee8bf2-fa1f-43e/providers/Microsoft.Sql/servers/2c763e91-4/databases/7df93deb-fd9/replicationLinks/7cc377"; 23248Requests[4516].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23249Requests[4516].Request.Path = "/subscriptions/f2b6a1a9-81cb-/resourceGroups/2121e4c3-fd84-45c/providers/Microsoft.Sql/servers/870672d2-e/databases/3602174a-363/replicationLinks/098b45"; 23252Requests[4517].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23253Requests[4517].Request.Path = "/subscriptions/1308755e-0c21-/resourceGroups/f89597f3-f535-44e/providers/Microsoft.Sql/servers/7b91a1b9-2/databases/516f5853-22f/restorePoints/f42ea6dc-2361-4f"; 23256Requests[4518].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23257Requests[4518].Request.Path = "/subscriptions/39b49b16-0d55-/resourceGroups/f66d2eec-0c3a-4c6/providers/Microsoft.Sql/servers/4cfd0ea0-0/databases/e3628eac-877/restorePoints/0c46238a-339b-43"; 23260Requests[4519].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23261Requests[4519].Request.Path = "/subscriptions/51e4847d-0403-/resourceGroups/9f16b6b6-9b72-4ac/providers/Microsoft.Sql/servers/824c39d4-8/databases/9fc51aa9-4ce/securityAlertPolicies/c7920286-6399-4494-abf1"; 23264Requests[4520].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23265Requests[4520].Request.Path = "/subscriptions/54fc9a41-7b78-/resourceGroups/727093dc-cc6c-4a4/providers/Microsoft.Sql/servers/6f90a8f5-a/databases/c6e56975-243/securityAlertPolicies/dfd51533-bb6b-4b61-b2ce"; 23268Requests[4521].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23269Requests[4521].Request.Path = "/subscriptions/1167c9e6-20ba-/resourceGroups/b0d8d6e7-9fd5-443/providers/Microsoft.Sql/servers/baefe578-d/databases/6942b82c-9fd/serviceTierAdvisors/57578aff-ed17-441d-af3"; 23272Requests[4522].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23273Requests[4522].Request.Path = "/subscriptions/dd1d6216-cceb-/resourceGroups/1552b142-b2aa-400/providers/Microsoft.Sql/servers/0c5fa366-b/databases/d4291900-390/syncGroups/74f83a44-37e0"; 23276Requests[4523].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23277Requests[4523].Request.Path = "/subscriptions/dcb88a58-fa1a-/resourceGroups/8e434d35-27ed-416/providers/Microsoft.Sql/servers/d956a391-e/databases/0bbc995b-d46/syncGroups/4e309e41-8c64"; 23280Requests[4524].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23281Requests[4524].Request.Path = "/subscriptions/fa75bdbd-84a4-/resourceGroups/bcb45b89-b296-444/providers/Microsoft.Sql/servers/25da84cb-a/databases/2759d491-827/syncGroups/b47f1421-0393"; 23284Requests[4525].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23285Requests[4525].Request.Path = "/subscriptions/046f9886-55b3-/resourceGroups/ecd3d628-a690-411/providers/Microsoft.Sql/servers/fd529180-3/databases/c3d44f9b-6b8/syncGroups/0c6438bb-8fb9"; 23288Requests[4526].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23289Requests[4526].Request.Path = "/subscriptions/9ff977ab-9b5f-/resourceGroups/fd3abce9-0c39-497/providers/Microsoft.Sql/servers/0e22ac00-2/databases/c93d9985-6bd/transparentDataEncryption/7003a46b-a9ab-423b-9424-c448d"; 23292Requests[4527].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23293Requests[4527].Request.Path = "/subscriptions/e6253e97-aa3c-/resourceGroups/81b74a90-13b9-48f/providers/Microsoft.Sql/servers/5a9559cd-0/databases/3c745ee5-21b/transparentDataEncryption/8718aa71-6ca4-4128-b483-72050"; 23296Requests[4528].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23297Requests[4528].Request.Path = "/subscriptions/134403da-d180-/resourceGroups/6c7a4109-c70f-479/providers/Microsoft.Sql/servers/8eed49bc-e/databases/3c6e2eb1-515/vulnerabilityAssessments/1e232ed7-3aa2-4008-8b6c-83f"; 23300Requests[4529].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23301Requests[4529].Request.Path = "/subscriptions/f6fcc18e-6b57-/resourceGroups/224fc884-553f-4eb/providers/Microsoft.Sql/servers/bf7ffb5d-7/databases/d445f03e-915/vulnerabilityAssessments/210021ca-6b48-433e-a66a-d47"; 23304Requests[4530].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23305Requests[4530].Request.Path = "/subscriptions/9e70092f-a65b-/resourceGroups/ba976dee-a91d-4a9/providers/Microsoft.Sql/servers/2bc1c8e2-e/databases/e5bcafdd-5dc/vulnerabilityAssessments/4558f911-b93b-4f9a-9a2c-742"; 23308Requests[4531].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23309Requests[4531].Request.Path = "/subscriptions/777139d3-7d35-/resourceGroups/790983e3-b9f9-437/providers/Microsoft.Sql/servers/a0c5af0e-9/elasticPools/27114879-8c3d-4/databases/f945eb02-42d"; 23312Requests[4532].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23313Requests[4532].Request.Path = "/subscriptions/f6a8ecce-3c2a-/resourceGroups/ea088ef9-07b2-405/providers/Microsoft.Sql/servers/5f625b94-5/jobAgents/38d11e14-1e4/credentials/c8a4b146-1e53-"; 23316Requests[4533].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23317Requests[4533].Request.Path = "/subscriptions/82317178-bf09-/resourceGroups/be0fe157-1ab4-4bf/providers/Microsoft.Sql/servers/5b156814-9/jobAgents/325ad53f-b17/credentials/075f01dc-0cf2-"; 23320Requests[4534].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23321Requests[4534].Request.Path = "/subscriptions/9dbe350d-66d9-/resourceGroups/f33f0a87-db9d-4b6/providers/Microsoft.Sql/servers/ee3c3094-7/jobAgents/0812ebc3-4d3/credentials/530fa450-9cae-"; 23324Requests[4535].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23325Requests[4535].Request.Path = "/subscriptions/f1fc7b10-9b73-/resourceGroups/4c7fc6ed-e7f5-4eb/providers/Microsoft.Sql/servers/2454cd9a-6/jobAgents/08862a00-55e/jobs/eaab2d0"; 23328Requests[4536].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23329Requests[4536].Request.Path = "/subscriptions/f5e0ef43-82ce-/resourceGroups/7ebc2865-7808-4e3/providers/Microsoft.Sql/servers/557634c6-a/jobAgents/c8d0caa3-ef4/jobs/60aa1c8"; 23332Requests[4537].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23333Requests[4537].Request.Path = "/subscriptions/03b89e4d-43f3-/resourceGroups/c7f2be20-2929-40f/providers/Microsoft.Sql/servers/73bb82fa-e/jobAgents/96ba982f-0df/jobs/cc0ab9a"; 23336Requests[4538].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23337Requests[4538].Request.Path = "/subscriptions/eab6d186-ee37-/resourceGroups/13bb68af-72da-474/providers/Microsoft.Sql/servers/8520a5dd-a/jobAgents/1e7c51e8-788/targetGroups/c90d4c5c-c5a3-4"; 23340Requests[4539].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23341Requests[4539].Request.Path = "/subscriptions/5b5c0bc1-7f73-/resourceGroups/5516e4ae-f047-46e/providers/Microsoft.Sql/servers/2e1c142d-3/jobAgents/8193eff4-d27/targetGroups/626fde63-3295-4"; 23344Requests[4540].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23345Requests[4540].Request.Path = "/subscriptions/fdb6b865-4477-/resourceGroups/a55b014b-544a-4ac/providers/Microsoft.Sql/servers/1dd448ca-a/jobAgents/bf669473-ee0/targetGroups/c3bf3231-83b2-4"; 23348Requests[4541].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23349Requests[4541].Request.Path = "/subscriptions/23dfa115-fe08-/resourceGroups/55004a3a-086e-498/providers/Microsoft.Sql/servers/12af77cd-b/recommendedElasticPools/3be2fc56-e1bf-4e86-981e-27/databases/619a2d3a-7df"; 23352Requests[4542].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23353Requests[4542].Request.Path = "/subscriptions/e9b0098c-e553-/resourceGroups/aae93ab6-80f4-45a/providers/Microsoft.StorSimple/managers/9ed8a879-01/devices/c452ae90-d/backupPolicies/8806fa21-0eee-47"; 23356Requests[4543].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23357Requests[4543].Request.Path = "/subscriptions/134af5d9-03d2-/resourceGroups/6832e6a7-deb0-4e4/providers/Microsoft.StorSimple/managers/9fc73d39-e0/devices/fc568390-c/backupPolicies/f49606ad-594e-45"; 23360Requests[4544].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23361Requests[4544].Request.Path = "/subscriptions/bb9b3ea0-ef3c-/resourceGroups/146e7a23-dfaf-44a/providers/Microsoft.StorSimple/managers/b788d429-08/devices/357bb1fc-3/backupPolicies/f1ba325e-f118-4e"; 23364Requests[4545].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23365Requests[4545].Request.Path = "/subscriptions/1a53ca10-a3e9-/resourceGroups/fa6c5b18-bc34-421/providers/Microsoft.StorSimple/managers/e1bd4232-1e/devices/71125bd0-d/backups/e1d37bf4-a"; 23368Requests[4546].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23369Requests[4546].Request.Path = "/subscriptions/fc30bd36-b871-/resourceGroups/e3009f1e-aa7d-4f0/providers/Microsoft.StorSimple/managers/50859317-43/devices/771082e5-f/jobs/c43b6aa"; 23372Requests[4547].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23373Requests[4547].Request.Path = "/subscriptions/dd9b4fb1-1acb-/resourceGroups/7e0e75d1-c4de-466/providers/Microsoft.StorSimple/managers/1fd71c47-48/devices/70595bf1-c/volumeContainers/3ca52d5d-8218-459f-"; 23376Requests[4548].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23377Requests[4548].Request.Path = "/subscriptions/bf0eef84-787d-/resourceGroups/86949a1f-5fe8-4b9/providers/Microsoft.StorSimple/managers/aad30150-f1/devices/1816f18b-8/volumeContainers/7841a8cf-dbcc-46e9-"; 23380Requests[4549].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23381Requests[4549].Request.Path = "/subscriptions/2454e852-ad9f-/resourceGroups/61e37f65-da6d-4ab/providers/Microsoft.StorSimple/managers/8da5b4b4-03/devices/dc25aece-c/volumeContainers/3b8a133e-97eb-48a5-"; 23384Requests[4550].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23385Requests[4550].Request.Path = "/subscriptions/7c4c311e-255c-/resourcegroups/27c547c5-f201-494/providers/Microsoft.Update.Admin/updateLocations/a160f3b4-d0d9-/updates/db5b0d27-9/updateRuns/6b5f323"; 23388Requests[4551].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23389Requests[4551].Request.Path = "/subscriptions/8ccc44b2-7bbd-/resourceGroups/18599c76-ae04-4aa/providers/Microsoft.Web/serverfarms/9c34c/hybridConnectionNamespaces/3f5ee84c-981c/relays/65a5cee8-"; 23392Requests[4552].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23393Requests[4552].Request.Path = "/subscriptions/16b81bed-2a95-/resourceGroups/99dc0c0a-e2bb-447/providers/Microsoft.Web/serverfarms/1a3a1/hybridConnectionNamespaces/63a3458f-256c/relays/b103f3eb-"; 23396Requests[4553].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23397Requests[4553].Request.Path = "/subscriptions/02a28c4e-afe6-/resourceGroups/0c1722a5-2ff6-41f/providers/Microsoft.Web/serverfarms/91de0/virtualNetworkConnections/bb0d60b8/gateways/fd801e1a-97"; 23400Requests[4554].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23401Requests[4554].Request.Path = "/subscriptions/ab68a19c-a12d-/resourceGroups/8329e33a-1243-4d9/providers/Microsoft.Web/serverfarms/c4dae/virtualNetworkConnections/6a03d0f2/gateways/53428e36-bc"; 23404Requests[4555].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23405Requests[4555].Request.Path = "/subscriptions/bc1ec11d-4ebb-/resourceGroups/281e510e-d4c3-471/providers/Microsoft.Web/serverfarms/05ade/virtualNetworkConnections/d0311fae/routes/b09cda9f-"; 23408Requests[4556].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23409Requests[4556].Request.Path = "/subscriptions/0eca9e28-5da3-/resourceGroups/eacbecb1-598f-427/providers/Microsoft.Web/serverfarms/4cdc9/virtualNetworkConnections/66dd524d/routes/7490fcd3-"; 23412Requests[4557].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23413Requests[4557].Request.Path = "/subscriptions/1f101410-0c7b-/resourceGroups/22d110c7-4371-47e/providers/Microsoft.Web/serverfarms/2c0e6/virtualNetworkConnections/127d0852/routes/18f0f4c1-"; 23416Requests[4558].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23417Requests[4558].Request.Path = "/subscriptions/e66d3e7f-4e68-/resourceGroups/656a1d4a-84e0-41c/providers/Microsoft.Web/serverfarms/a9df7/virtualNetworkConnections/22fdfce8/routes/a3d8dcce-"; 23420Requests[4559].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23421Requests[4559].Request.Path = "/subscriptions/4bf9662f-1ae2-/resourceGroups/b1e9c924-31f2-459/providers/Microsoft.Web/sites/2f7cc/hybridConnectionNamespaces/e043d137-ff2a/relays/203f0589-"; 23424Requests[4560].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23425Requests[4560].Request.Path = "/subscriptions/71572216-2a7e-/resourceGroups/28e0c593-d566-405/providers/Microsoft.Web/sites/ca1c0/hybridConnectionNamespaces/96b5b856-f94f/relays/a36bcd34-"; 23428Requests[4561].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23429Requests[4561].Request.Path = "/subscriptions/065959b4-00aa-/resourceGroups/9184f02a-4537-4f0/providers/Microsoft.Web/sites/41c69/hybridConnectionNamespaces/29f1b5ac-d229/relays/a4ee2098-"; 23432Requests[4562].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23433Requests[4562].Request.Path = "/subscriptions/e9288c67-a224-/resourceGroups/769f7a44-c71e-4ca/providers/Microsoft.Web/sites/967e7/hybridConnectionNamespaces/a40df96a-af0b/relays/a09da9e0-"; 23436Requests[4563].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23437Requests[4563].Request.Path = "/subscriptions/16577e4a-8f68-/resourceGroups/daf73c0f-7e05-400/providers/Microsoft.Web/sites/0c601/instances/4c592637-8/deployments/3efa9"; 23440Requests[4564].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23441Requests[4564].Request.Path = "/subscriptions/a4a2f174-199b-/resourceGroups/8316df1c-8ab2-47e/providers/Microsoft.Web/sites/22c37/instances/13073901-1/deployments/77cab"; 23444Requests[4565].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23445Requests[4565].Request.Path = "/subscriptions/9aeff4d7-8b80-/resourceGroups/41dabbc3-26d6-469/providers/Microsoft.Web/sites/108f5/instances/2daac5cf-8/deployments/47b48"; 23448Requests[4566].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23449Requests[4566].Request.Path = "/subscriptions/86167d36-a41d-/resourceGroups/9d07b603-59ea-45a/providers/Microsoft.Web/sites/65ddd/instances/e4d7b9cc-e/processes/773de4a5-"; 23452Requests[4567].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23453Requests[4567].Request.Path = "/subscriptions/5bca078b-ec4a-/resourceGroups/10526fea-45fe-4bc/providers/Microsoft.Web/sites/e295b/instances/fe47870c-f/processes/cdb2697a-"; 23456Requests[4568].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23457Requests[4568].Request.Path = "/subscriptions/683d8a88-4531-/resourceGroups/9d1ac3dc-f3aa-4c0/providers/Microsoft.Web/sites/14408/processes/3d01fa6f-/modules/03254486-75"; 23460Requests[4569].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23461Requests[4569].Request.Path = "/subscriptions/dcb1def1-77a4-/resourceGroups/4e58ffb3-59da-4c7/providers/Microsoft.Web/sites/e3e4f/processes/ce118d36-/threads/853c4503"; 23464Requests[4570].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23465Requests[4570].Request.Path = "/subscriptions/4bd13842-f3f1-/resourceGroups/f830c583-26ca-486/providers/Microsoft.Web/sites/2e4f7/slots/ddcbc/backups/e695d36e"; 23468Requests[4571].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23469Requests[4571].Request.Path = "/subscriptions/e4b04022-13cf-/resourceGroups/56bb82ba-050e-414/providers/Microsoft.Web/sites/9ff49/slots/91118/backups/d8bf1ab9"; 23472Requests[4572].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23473Requests[4572].Request.Path = "/subscriptions/7290dbbe-a447-/resourceGroups/ecfe6357-cc78-43f/providers/Microsoft.Web/sites/a5075/slots/35a61/continuouswebjobs/77820268-d"; 23476Requests[4573].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23477Requests[4573].Request.Path = "/subscriptions/23fe0af1-bffa-/resourceGroups/76027531-555f-425/providers/Microsoft.Web/sites/ccd21/slots/1954e/continuouswebjobs/2369abb2-8"; 23480Requests[4574].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23481Requests[4574].Request.Path = "/subscriptions/2aa18cad-5f1c-/resourceGroups/6bcce4dd-dc29-497/providers/Microsoft.Web/sites/6da7a/slots/581ae/deployments/0935f"; 23484Requests[4575].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23485Requests[4575].Request.Path = "/subscriptions/f2c9e740-cbd0-/resourceGroups/677a1275-4e52-4f8/providers/Microsoft.Web/sites/f3e76/slots/ab59f/deployments/d6531"; 23488Requests[4576].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23489Requests[4576].Request.Path = "/subscriptions/f21c1bbe-c4d1-/resourceGroups/ccceb7f3-ccb0-4bc/providers/Microsoft.Web/sites/a6000/slots/918a6/deployments/fe983"; 23492Requests[4577].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23493Requests[4577].Request.Path = "/subscriptions/c8952bf5-94e9-/resourceGroups/e670e7aa-0b8a-40b/providers/Microsoft.Web/sites/b6679/slots/0926e/domainOwnershipIdentifiers/60455006-66f9-43e8-b085-43b2e"; 23496Requests[4578].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23497Requests[4578].Request.Path = "/subscriptions/5c88e16d-2f5e-/resourceGroups/18a0294f-2acb-4e9/providers/Microsoft.Web/sites/38fc2/slots/dd532/domainOwnershipIdentifiers/ba49226f-fc1f-4f7f-bb06-1eb4c"; 23500Requests[4579].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23501Requests[4579].Request.Path = "/subscriptions/1e5ba95b-1bc7-/resourceGroups/e4b9f1ce-0002-416/providers/Microsoft.Web/sites/91378/slots/3f42d/domainOwnershipIdentifiers/87b12425-9789-4517-bdfd-59057"; 23504Requests[4580].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23505Requests[4580].Request.Path = "/subscriptions/6148a252-3427-/resourceGroups/5cb2651a-3565-4f9/providers/Microsoft.Web/sites/261f9/slots/355de/domainOwnershipIdentifiers/b4b14643-0cb0-49f9-a8d3-7c3e3"; 23508Requests[4581].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23509Requests[4581].Request.Path = "/subscriptions/64b127a8-316e-/resourceGroups/bc4c8305-1058-4c8/providers/Microsoft.Web/sites/fd8a7/slots/55c52/functions/68884b4b-756"; 23512Requests[4582].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23513Requests[4582].Request.Path = "/subscriptions/79f8d6f3-f5c1-/resourceGroups/31dea9d0-6140-47e/providers/Microsoft.Web/sites/998a6/slots/1cc4d/functions/32ee21c8-b1a"; 23516Requests[4583].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23517Requests[4583].Request.Path = "/subscriptions/247c6684-df17-/resourceGroups/ce9f4bd7-4c49-441/providers/Microsoft.Web/sites/93437/slots/3d932/functions/8636d20c-380"; 23520Requests[4584].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23521Requests[4584].Request.Path = "/subscriptions/10ce481c-9799-/resourceGroups/f1e74413-3fb8-4a9/providers/Microsoft.Web/sites/2e87a/slots/aa8d4/hostNameBindings/3a60f5d5"; 23524Requests[4585].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23525Requests[4585].Request.Path = "/subscriptions/fbf9a11b-a558-/resourceGroups/c9cb330a-9e3b-461/providers/Microsoft.Web/sites/d29e1/slots/6e312/hostNameBindings/2a62bfc9"; 23528Requests[4586].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23529Requests[4586].Request.Path = "/subscriptions/e77eed08-7020-/resourceGroups/f99f5322-693b-43e/providers/Microsoft.Web/sites/1d139/slots/f0886/hostNameBindings/4187e3c1"; 23532Requests[4587].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23533Requests[4587].Request.Path = "/subscriptions/ece2b0d7-d41a-/resourceGroups/f574814d-2c41-4d9/providers/Microsoft.Web/sites/9f697/slots/3dc3f/hybridconnection/ff820818-b"; 23536Requests[4588].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23537Requests[4588].Request.Path = "/subscriptions/a59a0277-70bc-/resourceGroups/7dc8e73b-3595-443/providers/Microsoft.Web/sites/d9f43/slots/36556/hybridconnection/ec707d39-6"; 23540Requests[4589].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23541Requests[4589].Request.Path = "/subscriptions/b2c30c33-5d0d-/resourceGroups/079da6fb-df48-48d/providers/Microsoft.Web/sites/7d66b/slots/5fa7a/hybridconnection/b6ee9be8-d"; 23544Requests[4590].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23545Requests[4590].Request.Path = "/subscriptions/8451bce9-1425-/resourceGroups/f20c9b02-6922-47b/providers/Microsoft.Web/sites/c66fd/slots/e7b99/hybridconnection/e3f49a16-9"; 23548Requests[4591].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23549Requests[4591].Request.Path = "/subscriptions/f1a995f9-6699-/resourceGroups/a87649db-6846-4e4/providers/Microsoft.Web/sites/2446d/slots/5d3d0/networkFeatures/ce2d9"; 23552Requests[4592].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23553Requests[4592].Request.Path = "/subscriptions/cb235d84-8f4f-/resourceGroups/34c322e2-182f-4cf/providers/Microsoft.Web/sites/863ce/slots/d104e/operationresults/28e70d4d-af"; 23556Requests[4593].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23557Requests[4593].Request.Path = "/subscriptions/ed896b9e-0959-/resourceGroups/e3edc4be-3baa-49e/providers/Microsoft.Web/sites/3b1ad/slots/cd84a/premieraddons/740f6262-2506-45"; 23560Requests[4594].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23561Requests[4594].Request.Path = "/subscriptions/08f8cad7-ca9c-/resourceGroups/a4a453a6-3a10-438/providers/Microsoft.Web/sites/1567c/slots/1ff48/premieraddons/a96b5d2e-ef8c-4f"; 23564Requests[4595].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23565Requests[4595].Request.Path = "/subscriptions/4b1dc19b-9bdc-/resourceGroups/d8692c18-5ea9-446/providers/Microsoft.Web/sites/61cbe/slots/3dbb7/premieraddons/962e6a02-e883-42"; 23568Requests[4596].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23569Requests[4596].Request.Path = "/subscriptions/4fbf8013-daf3-/resourceGroups/0e147d81-c585-4e2/providers/Microsoft.Web/sites/e5337/slots/2c00b/processes/99376403-"; 23572Requests[4597].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23573Requests[4597].Request.Path = "/subscriptions/de888ba1-c339-/resourceGroups/b4d18007-7de7-464/providers/Microsoft.Web/sites/ffee2/slots/9b34e/processes/e558d153-"; 23576Requests[4598].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23577Requests[4598].Request.Path = "/subscriptions/b1c961c5-1fa0-/resourceGroups/37ac507c-c2e1-466/providers/Microsoft.Web/sites/b7ba7/slots/45df2/publicCertificates/852195db-f17d-4af9-8c"; 23580Requests[4599].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23581Requests[4599].Request.Path = "/subscriptions/19e868ba-2b60-/resourceGroups/cd81327d-118a-4fa/providers/Microsoft.Web/sites/1b622/slots/97e67/publicCertificates/d15b43c6-95fe-420b-95"; 23584Requests[4600].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23585Requests[4600].Request.Path = "/subscriptions/4150fd67-2add-/resourceGroups/474f5374-0d4f-4e0/providers/Microsoft.Web/sites/b6268/slots/01c72/publicCertificates/2500b811-c647-41ae-91"; 23588Requests[4601].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23589Requests[4601].Request.Path = "/subscriptions/be150fd5-da2e-/resourceGroups/67ec8879-58df-470/providers/Microsoft.Web/sites/0f85c/slots/ea767/siteextensions/3fb1c96b-1afd-4"; 23592Requests[4602].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23593Requests[4602].Request.Path = "/subscriptions/482f456f-dd99-/resourceGroups/5b65d08f-f0ad-46d/providers/Microsoft.Web/sites/830b3/slots/e74f3/siteextensions/33bfaa78-9423-4"; 23596Requests[4603].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23597Requests[4603].Request.Path = "/subscriptions/d29037ce-c7ba-/resourceGroups/21f0623c-a79c-46a/providers/Microsoft.Web/sites/6acfd/slots/7f6b3/siteextensions/dc5e107d-538a-4"; 23600Requests[4604].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23601Requests[4604].Request.Path = "/subscriptions/5359afd6-5d97-/resourceGroups/e4375b42-246d-45f/providers/Microsoft.Web/sites/5e954/slots/dc2a3/triggeredwebjobs/cfaebbdd-f"; 23604Requests[4605].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23605Requests[4605].Request.Path = "/subscriptions/ed6fcef2-1000-/resourceGroups/6b09c0ee-06c2-467/providers/Microsoft.Web/sites/bc0e9/slots/92a5f/triggeredwebjobs/95231cd5-6"; 23608Requests[4606].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23609Requests[4606].Request.Path = "/subscriptions/ff5ddeb0-5302-/resourceGroups/61450bef-1ac8-433/providers/Microsoft.Web/sites/2a6df/slots/a3bc0/virtualNetworkConnections/2fdab763"; 23612Requests[4607].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23613Requests[4607].Request.Path = "/subscriptions/785158fb-c47e-/resourceGroups/d02f0a9e-22cd-405/providers/Microsoft.Web/sites/d37fc/slots/73b8b/virtualNetworkConnections/220bf774"; 23616Requests[4608].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23617Requests[4608].Request.Path = "/subscriptions/9888e673-7dd5-/resourceGroups/404c35d1-9c15-405/providers/Microsoft.Web/sites/09ffc/slots/0768d/virtualNetworkConnections/a708b8fe"; 23620Requests[4609].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23621Requests[4609].Request.Path = "/subscriptions/29883260-e3b9-/resourceGroups/d175fa98-6a2c-447/providers/Microsoft.Web/sites/5c77b/slots/6f140/virtualNetworkConnections/cb4ce436"; 23624Requests[4610].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23625Requests[4610].Request.Path = "/subscriptions/5ba93901-2837-/resourceGroups/98cadafe-f685-4e2/providers/Microsoft.Web/sites/21a57/slots/b2a5c/webjobs/ab6406ac-8"; 23628Requests[4611].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23629Requests[4611].Request.Path = "/subscriptions/fe9f3f35-f557-/resourceGroups/61a650a7-900a-454/providers/Microsoft.Web/sites/e144a/triggeredwebjobs/54e7f94d-b/history/3609d"; 23632Requests[4612].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23633Requests[4612].Request.Path = "/subscriptions/7e77ecf3-c312-/resourceGroups/808b4175-5cb7-4db/providers/Microsoft.Web/sites/16300/virtualNetworkConnections/e96608d9/gateways/b90bfb7f-a8"; 23636Requests[4613].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23637Requests[4613].Request.Path = "/subscriptions/1f4c6c88-6d7a-/resourceGroups/f4645429-cac6-4e8/providers/Microsoft.Web/sites/345e4/virtualNetworkConnections/b71a6628/gateways/85141d67-f1"; 23640Requests[4614].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 23641Requests[4614].Request.Path = "/subscriptions/823f79b4-e70d-/resourceGroups/bf83f065-9947-472/providers/Microsoft.Web/sites/acb7b/virtualNetworkConnections/642a333f/gateways/3d7fba09-c4"; 23644Requests[4615].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23645Requests[4615].Request.Path = "/subscriptions/ed870972-db93-/resourceGroups/6539e7e4-c445-4b4/providers/Microsoft.Web/sites/e211bed1/diagnostics/aa0472c0-7975-4c4c/analyses/5d871c08-9ed"; 23648Requests[4616].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23649Requests[4616].Request.Path = "/subscriptions/20e51a72-3b29-/resourceGroups/390e9a83-cced-49b/providers/Microsoft.Web/sites/f37b756a/diagnostics/c4aaf014-4fa1-4970/detectors/1f8ac36e-c7b"; 23652Requests[4617].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23653Requests[4617].Request.Path = "/subscriptions/6e36d8b9-41e7-/resourceGroups/84d0d63d-1985-450/providers/Microsoft.Web/sites/2254cbdd/slots/c2e91/detectors/0dde1c70-f99"; 23656Requests[4618].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23657Requests[4618].Request.Path = "/subscriptions/7aaa83d3-e907-/resourceGroups/de61d3e3-0865-460/providers/Microsoft.Web/sites/c67b5a11/slots/02f73/diagnostics/64cdc8e5-5bca-4a7b"; 23660Requests[4619].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23661Requests[4619].Request.Path = "/subscriptions/2a316c13-2f75-/resourceGroups/901ad935-/providers/Microsoft.DataMigration/services/b6c2b86e-82/projects/26b49766-2e/tasks/39e5b158/cancel"; 23664Requests[4620].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23665Requests[4620].Request.Path = "/subscriptions/5e57a40c-bd9b-/resourceGroups/ed0859a2-a184-4a6/providers/Microsoft.ApiManagement/service/bb214a5e-cc/apis/9a587/diagnostics/043ed1c8-dc7/loggers"; 23668Requests[4621].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23669Requests[4621].Request.Path = "/subscriptions/cc0d592e-da8a-/resourceGroups/0ce03460-8044-4ef/providers/Microsoft.ApiManagement/service/9cdc6ec4-ae/apis/9fb0d/issues/e6abb7b/attachments"; 23672Requests[4622].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23673Requests[4622].Request.Path = "/subscriptions/678a1e0c-ad8e-/resourceGroups/56fa7705-4654-4b4/providers/Microsoft.ApiManagement/service/0558df17-7a/apis/ce611/issues/5e85a77/comments"; 23676Requests[4623].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23677Requests[4623].Request.Path = "/subscriptions/eccc38f2-de22-/resourceGroups/bf1a7e17-97d3-45c/providers/Microsoft.ApiManagement/service/bd721139-56/apis/7ba1c/operations/d814d534-5d/policies"; 23680Requests[4624].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 23681Requests[4624].Request.Path = "/subscriptions/4ea67935-f2df-/resourceGroups/5d960586-1088-423/providers/Microsoft.ApiManagement/service/7b5387a2-88/apis/a9bb2/operations/fe64242b-fc/policy"; 23684Requests[4625].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23685Requests[4625].Request.Path = "/subscriptions/70ac1d0e-d736-/resourceGroups/aa7f14bb-614d-4a4/providers/Microsoft.ApiManagement/service/eb195c97-37/apis/1309a/operations/718d032f-34/policy"; 23688Requests[4626].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 23689Requests[4626].Request.Path = "/subscriptions/26aaed21-205f-/resourceGroups/38a2df36-337e-487/providers/Microsoft.ApiManagement/service/e5d4adab-cf/apis/c7960/operations/4fa149e0-f3/policy"; 23692Requests[4627].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23693Requests[4627].Request.Path = "/subscriptions/c96856e6-5843-/resourceGroups/6f8771fc-556a-465/providers/Microsoft.ApiManagement/service/254a7370-9d/apis/af343/operations/67f710fb-9e/tags"; 23696Requests[4628].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23697Requests[4628].Request.Path = "/subscriptions/b49afa26-1213-/resourceGroups/636f271d-d773-49b/providers/Microsoft.Automation/automationAccounts/a862d37f-07b0-4073-83/modules/711981e7-d/objectDataTypes/c5c50511/fields"; 23700Requests[4629].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23701Requests[4629].Request.Path = "/subscriptions/a3a04081-cff3-/resourceGroups/ab362107-9b20-44a/providers/Microsoft.Automation/automationAccounts/77043c17-27b8-4964-bd/modules/c4eaab46-5/types/635a9ca7/fields"; 23704Requests[4630].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23705Requests[4630].Request.Path = "/subscriptions/884a48eb-4ed5-/resourceGroups/a09994e4-f847-480/providers/Microsoft.Automation/automationAccounts/92e8ac8a-c95b-42e8-8b/nodes/2b4d19/reports/1fe50df2/content"; 23708Requests[4631].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23709Requests[4631].Request.Path = "/subscriptions/678919d0-aa5c-/resourceGroups/dbcfbdae-92c4-455/providers/Microsoft.Automation/automationAccounts/026652d0-6071-43b7-8a/sourceControls/ae231b78-3d27-4d4/sourceControlSyncJobs/7563da3d-da1b-4a01-b51/streams"; 23712Requests[4632].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23713Requests[4632].Request.Path = "/subscriptions/784da95c-3596-/resourceGroups/fd6d9dfe-5916-438/providers/Microsoft.Batch/batchAccounts/cc73dcc0-12/applications/175de30a-8f25/versions/c8674c6/activate"; 23716Requests[4633].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23717Requests[4633].Request.Path = "/subscriptions/2b9d0055-af79-/resourceGroups/be52db09-8378-4de/providers/Microsoft.BatchAI/workspaces/643d8985-9881/experiments/1061cf2f-ae20-/jobs/7c9cf45/listOutputFiles"; 23720Requests[4634].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23721Requests[4634].Request.Path = "/subscriptions/0a445623-51c0-/resourceGroups/65c2df20-3fd0-4d7/providers/Microsoft.BatchAI/workspaces/956bcfb1-a170/experiments/59cce4c5-bb7d-/jobs/32225fe/listRemoteLoginInformation"; 23724Requests[4635].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23725Requests[4635].Request.Path = "/subscriptions/262ae6ab-a641-/resourceGroups/545fd887-56ce-4e1/providers/Microsoft.BatchAI/workspaces/f0da82e6-c0cf/experiments/76b98b18-f16f-/jobs/729e4af/terminate"; 23728Requests[4636].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23729Requests[4636].Request.Path = "/subscriptions/a9ff0280-b67f-/resourceGroups/09b0b288-ba02-4fd/providers/Microsoft.Cdn/profiles/ebdbcc77-0a/endpoints/5fa2ee94-1bf/customDomains/36742a7a-834f-45/disableCustomHttps"; 23732Requests[4637].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23733Requests[4637].Request.Path = "/subscriptions/fc12f3e0-ca95-/resourceGroups/499e19a5-c964-46e/providers/Microsoft.Cdn/profiles/2563cce7-28/endpoints/e60722c2-593/customDomains/6fc08f69-c1bc-4c/enableCustomHttps"; 23736Requests[4638].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23737Requests[4638].Request.Path = "/subscriptions/474c69ea-ca47-/resourceGroups/3ded1517-20b2-4fd/providers/microsoft.Compute/virtualMachineScaleSets/2d75a9f9-3b1e-43e8-866f-1a/virtualMachines/357ee815-0798-45e9-/networkInterfaces/0f99f9ea-e602-4966-9/ipConfigurations"; 23740Requests[4639].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23741Requests[4639].Request.Path = "/subscriptions/da1f0b6a-0d33-/resourceGroups/ff911d7b-276d-4e2/providers/Microsoft.ContainerRegistry/registries/2fb0e010-875/buildTasks/9bdd70a1-3b2d/steps/440ce127/listBuildArguments"; 23744Requests[4640].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23745Requests[4640].Request.Path = "/subscriptions/9157eee2-c8e2-/resourceGroups/0b88d096-3bad-433/providers/Microsoft.DataFactory/factories/7bbe89be-84/integrationRuntimes/ea860637-732a-4345-b0d/nodes/06a750ff/ipAddress"; 23748Requests[4641].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23749Requests[4641].Request.Path = "/subscriptions/41a69696-1fc2-/resourceGroups/8e610dfa-ffd9-4c5/providers/Microsoft.DataLakeAnalytics/accounts/1fd47faf-ed/storageAccounts/bfd221f9-2ec4-4f44/containers/d4d29c49-42c8/listSasTokens"; 23752Requests[4642].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23753Requests[4642].Request.Path = "/subscriptions/aae4c8d2-4807-/resourceGroups/e380f542-52b4-463/providers/Microsoft.DevTestLab/labs/edde0e1/artifactsources/472d0d3e-7bb9-4ec8/artifacts/6d6c0/generateArmTemplate"; 23756Requests[4643].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23757Requests[4643].Request.Path = "/subscriptions/0016b289-f138-/resourceGroups/62b144c9-49ea-40b/providers/Microsoft.DevTestLab/labs/cb81d45/users/31c3a41d/disks/eb9e8/attach"; 23760Requests[4644].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23761Requests[4644].Request.Path = "/subscriptions/125f8b06-eaa0-/resourceGroups/17da6220-2bb9-4c7/providers/Microsoft.DevTestLab/labs/21e03c7/users/dcb89229/disks/5abf3/detach"; 23764Requests[4645].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23765Requests[4645].Request.Path = "/subscriptions/7621f7c7-350e-/resourceGroups/0ef9b370-4142-4fc/providers/Microsoft.DevTestLab/labs/8acedc4/virtualmachines/906da87f-cba3-49aa/schedules/d3113/execute"; 23768Requests[4646].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23769Requests[4646].Request.Path = "/subscriptions/5b14cf5b-e3e9-/resourceGroups/8afb3ce0-f16b-49d/providers/Microsoft.DocumentDB/databaseAccounts/f2882873-07/databases/305f2a42-70/collections/17e331c1-55ce/metricDefinitions"; 23772Requests[4647].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23773Requests[4647].Request.Path = "/subscriptions/f23e7ead-6eac-/resourceGroups/17a4bdcf-eaaa-450/providers/Microsoft.DocumentDB/databaseAccounts/f9d2656e-7d/databases/d3ae8da4-f8/collections/a875001b-c083/metrics"; 23776Requests[4648].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23777Requests[4648].Request.Path = "/subscriptions/65e1a259-19ed-/resourceGroups/515e01fa-92ef-4a9/providers/Microsoft.DocumentDB/databaseAccounts/7c53955c-6f/databases/bc5cc661-00/collections/07279bcd-2a78/usages"; 23780Requests[4649].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23781Requests[4649].Request.Path = "/subscriptions/7c5edb0f-53f4-/resourceGroups/cf702679-907f-44b/providers/Microsoft.EventHub/namespaces/fffd0290-bc92/disasterRecoveryConfigs/010a8/AuthorizationRules/e2cd77a6-a86a-4ab5-8c/listKeys"; 23784Requests[4650].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23785Requests[4650].Request.Path = "/subscriptions/7963ed7e-3a99-/resourceGroups/a2474553-f861-4d0/providers/Microsoft.EventHub/namespaces/9141bc12-e6e6/eventhubs/22dae399-ce5/authorizationRules/be7d1081-a946-437b-94/ListKeys"; 23788Requests[4651].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23789Requests[4651].Request.Path = "/subscriptions/a3113c66-6749-/resourceGroups/01b773fb-c197-40d/providers/Microsoft.EventHub/namespaces/722d0e1b-76d7/eventhubs/c219d873-106/authorizationRules/119d43a2-a88e-4a82-b5/regenerateKeys"; 23792Requests[4652].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23793Requests[4652].Request.Path = "/subscriptions/5def1ca9-9971-/resourceGroups/10ef1a53-8979-4b4/providers/Microsoft.Fabric.Admin/fabricLocations/66dcf053/storageSubSystems/9ce69a39-68c5-47/storagePools/ad2a80b9-05/volumes"; 23796Requests[4653].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23797Requests[4653].Request.Path = "/subscriptions/63bbc153-b24f-/resourceGroups/14db5988-d13c-4eb/providers/Microsoft.Logic/workflows/fa5a2022-7c2/runs/ed19236/actions/75f1caec-8/listExpressionTraces"; 23800Requests[4654].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23801Requests[4654].Request.Path = "/subscriptions/2d178029-846d-/resourceGroups/b7c9baad-5d58-45a/providers/Microsoft.Logic/workflows/ffe9bfaa-7bb/runs/9ad51bd/actions/d8dc37e2-3/repetitions"; 23804Requests[4655].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23805Requests[4655].Request.Path = "/subscriptions/be93f2d2-54d5-/resourceGroups/595f1f7f-297f-400/providers/Microsoft.Logic/workflows/fec89924-c87/runs/13b51e1/actions/2a201158-3/scopeRepetitions"; 23808Requests[4656].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23809Requests[4656].Request.Path = "/subscriptions/5fbe9fd3-ae90-/resourceGroups/bac0d39d-4e54-4a1/providers/Microsoft.Logic/workflows/1a4772f1-7ea/triggers/1cc22dcf-b6/histories/5b88bcac-84/resubmit"; 23812Requests[4657].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23813Requests[4657].Request.Path = "/subscriptions/a53bdebb-dd89-/resourceGroups/5941e4e4-5c7f-46b/providers/Microsoft.Logic/workflows/7c38cf0f-62d/versions/0b4a2ded-/triggers/3e2876a5-ca/listCallbackUrl"; 23816Requests[4658].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23817Requests[4658].Request.Path = "/subscriptions/2ee476fa-07b2-/resourceGroups/9b77e36b-025b-415/providers/Microsoft.Media/mediaServices/8c0bca80-0d/transforms/78d35721-8f7d/jobs/b2fd2a9/cancelJob"; 23820Requests[4659].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23821Requests[4659].Request.Path = "/subscriptions/d0559ffd-fb60-/resourceGroups/3c43f589-fa33-4c7/providers/Microsoft.Migrate/projects/d04dd1a9-5d/groups/aac7f4e5-/assessments/03e5132b-633c-/assessedMachines"; 23824Requests[4660].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23825Requests[4660].Request.Path = "/subscriptions/6fdb25c9-d215-/resourceGroups/e13b4287-d454-4a4/providers/Microsoft.Migrate/projects/9b9e97ea-b5/groups/9caa0903-/assessments/5e8e41c0-9e7d-/downloadUrl"; 23828Requests[4661].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23829Requests[4661].Request.Path = "/subscriptions/65d7f796-ae90-/resourceGroups/353455e1-13ff-474/providers/Microsoft.NotificationHubs/namespaces/50c5512f-9aee/notificationHubs/82766c93-edc2-4826-/AuthorizationRules/ec2b873d-cc31-40fb-b5/listKeys"; 23832Requests[4662].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23833Requests[4662].Request.Path = "/subscriptions/f969b351-dd03-/resourceGroups/6e44ae2f-0ba2-4b3/providers/Microsoft.NotificationHubs/namespaces/25b57d62-45d8/notificationHubs/e6fcd064-568a-452e-/AuthorizationRules/ef99ffaa-84af-4f26-a4/regenerateKeys"; 23836Requests[4663].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23837Requests[4663].Request.Path = "/Subscriptions/6aba2340-370e-/resourceGroups/540e8d07-6a0f-4b7/providers/Microsoft.RecoveryServices/vaults/14da01ce-903/replicationFabrics/0ee159cc-7/replicationNetworks/39814117-ea/replicationNetworkMappings"; 23840Requests[4664].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23841Requests[4664].Request.Path = "/Subscriptions/c5e215e2-2479-/resourceGroups/c8f01c00-9b6b-4bd/providers/Microsoft.RecoveryServices/vaults/8f74172e-546/replicationFabrics/82a320ff-0/replicationProtectionContainers/ab4b1efb-44b8-4e45-be4f/discoverProtectableItem"; 23844Requests[4665].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23845Requests[4665].Request.Path = "/Subscriptions/8a2b05d1-81e4-/resourceGroups/0f282f9e-6ad2-4c1/providers/Microsoft.RecoveryServices/vaults/11b95254-473/replicationFabrics/c921516e-d/replicationProtectionContainers/3445708a-7acf-4ed9-8ea6/remove"; 23848Requests[4666].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23849Requests[4666].Request.Path = "/Subscriptions/c4491098-ca46-/resourceGroups/7a88d262-efb1-40a/providers/Microsoft.RecoveryServices/vaults/3245de85-fd3/replicationFabrics/739c6549-5/replicationProtectionContainers/0dbbb1ca-de0a-4cb2-9b24/replicationProtectableItems"; 23852Requests[4667].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23853Requests[4667].Request.Path = "/Subscriptions/822239b8-2ccf-/resourceGroups/0510ae5d-5328-454/providers/Microsoft.RecoveryServices/vaults/17defc1e-f9b/replicationFabrics/809eb86d-9/replicationProtectionContainers/d72128be-f428-4c62-9060/replicationProtectedItems"; 23856Requests[4668].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23857Requests[4668].Request.Path = "/Subscriptions/c2ada439-4963-/resourceGroups/30c2206b-9656-465/providers/Microsoft.RecoveryServices/vaults/0c3ea38b-872/replicationFabrics/c739e896-e/replicationProtectionContainers/c8b3c5a0-6c20-4e95-bf78/replicationProtectionContainerMappings"; 23860Requests[4669].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23861Requests[4669].Request.Path = "/Subscriptions/a3183be3-4daa-/resourceGroups/3052c27c-f8d1-4aa/providers/Microsoft.RecoveryServices/vaults/d8e2f4de-5b0/replicationFabrics/f04cd597-6/replicationProtectionContainers/e26674eb-ce54-4232-b8dc/switchprotection"; 23864Requests[4670].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23865Requests[4670].Request.Path = "/Subscriptions/d5df6584-3e8d-/resourceGroups/4b53d401-d181-439/providers/Microsoft.RecoveryServices/vaults/3b1c5728-7df/replicationFabrics/48a66a92-9/replicationRecoveryServicesProviders/70ae3a32-684/refreshProvider"; 23868Requests[4671].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23869Requests[4671].Request.Path = "/Subscriptions/cadf7c24-79a0-/resourceGroups/4d06de25-e340-47e/providers/Microsoft.RecoveryServices/vaults/768f1669-d24/replicationFabrics/e7cc6d57-9/replicationRecoveryServicesProviders/9db7ae9f-6be/remove"; 23872Requests[4672].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23873Requests[4672].Request.Path = "/Subscriptions/d7de5254-537d-/resourceGroups/e4ebbfab-0790-47a/providers/Microsoft.RecoveryServices/vaults/420b6dee-c7d/replicationFabrics/8fe510b9-5/replicationStorageClassifications/5578070c-4b45-4a38-a9a5-0/replicationStorageClassificationMappings"; 23876Requests[4673].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23877Requests[4673].Request.Path = "/Subscriptions/2070276f-b530-/resourceGroups/aa9d4eae-70a6-473/providers/Microsoft.RecoveryServices/vaults/29bfac61-/backupFabrics/0dcd26df-3/protectionContainers/cf529f27-790c/inquire"; 23880Requests[4674].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23881Requests[4674].Request.Path = "/Subscriptions/11a4b573-3108-/resourceGroups/08333068-d245-468/providers/Microsoft.RecoveryServices/vaults/1839bbfd-/backupFabrics/f5786d7f-7/protectionContainers/52c6c31a-1580/items"; 23884Requests[4675].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23885Requests[4675].Request.Path = "/subscriptions/911b869e-4422-/resourceGroups/8a924bad-2054-40f/providers/Microsoft.Relay/namespaces/6a7f006c-0fdf/hybridConnections/31ec8e46-7a8e-4294-a/authorizationRules/3a480abd-650b-46a2-a4/listKeys"; 23888Requests[4676].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23889Requests[4676].Request.Path = "/subscriptions/586e199e-a833-/resourceGroups/db6be129-11c7-492/providers/Microsoft.Relay/namespaces/e6862172-9893/hybridConnections/c2a3d948-6908-424b-b/authorizationRules/be4af6b3-539c-43d9-86/regenerateKeys"; 23892Requests[4677].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23893Requests[4677].Request.Path = "/subscriptions/83febe01-dafa-/resourceGroups/de5a1bb8-c4fb-4b6/providers/Microsoft.Relay/namespaces/2d8f8967-4f53/wcfRelays/6adce0eb-/authorizationRules/72f60aad-5d64-4521-98/listKeys"; 23896Requests[4678].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23897Requests[4678].Request.Path = "/subscriptions/a50358e1-50af-/resourceGroups/211a65af-7149-473/providers/Microsoft.Relay/namespaces/68749888-ca4b/wcfRelays/23195713-/authorizationRules/81428a13-822c-4e55-8e/regenerateKeys"; 23900Requests[4679].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23901Requests[4679].Request.Path = "/subscriptions/f102749f-6832-/resourceGroups/4f63ab82-a61a-4e7/providers/Microsoft.ServiceBus/namespaces/bd72599c-4cbf/disasterRecoveryConfigs/68f2c/AuthorizationRules/11c9058b-aeb9-49e5-82/listKeys"; 23904Requests[4680].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23905Requests[4680].Request.Path = "/subscriptions/839cf181-8d06-/resourceGroups/b160f93f-e36a-400/providers/Microsoft.ServiceBus/namespaces/cdb9fceb-bb98/queues/f34a7b32-/authorizationRules/87a47e56-9718-448c-97/ListKeys"; 23908Requests[4681].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23909Requests[4681].Request.Path = "/subscriptions/0780dc43-ac7f-/resourceGroups/1f8cdb8a-fcab-43b/providers/Microsoft.ServiceBus/namespaces/44521384-1e1f/queues/37b35271-/authorizationRules/16cbdb43-0e84-43e2-84/regenerateKeys"; 23912Requests[4682].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23913Requests[4682].Request.Path = "/subscriptions/e98d13d9-e4da-/resourceGroups/1f7d8474-1eec-499/providers/Microsoft.ServiceBus/namespaces/b82b1d83-1b6a/topics/9da93e08-/authorizationRules/0fc1395b-05f9-447c-b2/ListKeys"; 23916Requests[4683].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23917Requests[4683].Request.Path = "/subscriptions/9efcf109-3e5c-/resourceGroups/14c3fd92-161d-427/providers/Microsoft.ServiceBus/namespaces/e4577389-109c/topics/023f69bd-/authorizationRules/0502565c-2767-4592-82/regenerateKeys"; 23920Requests[4684].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23921Requests[4684].Request.Path = "/subscriptions/3bc075d7-cd8d-/resourceGroups/7049c115-2ec8-4e0/providers/Microsoft.ServiceBus/namespaces/e600c3cd-927d/topics/fc070140-/subscriptions/086d6001-65ed-40/rules"; 23924Requests[4685].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23925Requests[4685].Request.Path = "/subscriptions/aedeb6d2-21c0-/resourceGroups/34953713-7b7f-4ef/providers/Microsoft.Sql/servers/c4df2bd6-0/databases/4a169048-f2c/advisors/1a1b2c1a-ac/recommendedActions"; 23928Requests[4686].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23929Requests[4686].Request.Path = "/subscriptions/6fdbca7e-60c7-/resourceGroups/427c759e-1c49-429/providers/Microsoft.Sql/servers/0ed65828-c/databases/ccd709a5-dde/dataMaskingPolicies/f6d3e26e-cabc-4f1b-b0/rules"; 23932Requests[4687].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23933Requests[4687].Request.Path = "/subscriptions/19e9ce3c-e17a-/resourceGroups/418c3339-9395-46a/providers/Microsoft.Sql/servers/a0fcc753-b/databases/4873880d-b84/operations/5be1f5f6-7f/cancel"; 23936Requests[4688].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23937Requests[4688].Request.Path = "/subscriptions/36155b64-2246-/resourceGroups/7f86d35b-e628-421/providers/Microsoft.Sql/servers/129c692f-1/databases/7c5ff197-d8c/replicationLinks/af1d4d/failover"; 23940Requests[4689].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23941Requests[4689].Request.Path = "/subscriptions/5152d741-d7d7-/resourceGroups/cae16b1a-ebf3-416/providers/Microsoft.Sql/servers/cdbfdfbd-8/databases/56c862cb-0fc/replicationLinks/960110/forceFailoverAllowDataLoss"; 23944Requests[4690].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23945Requests[4690].Request.Path = "/subscriptions/81f519a6-d79b-/resourceGroups/c17a1d72-71e5-423/providers/Microsoft.Sql/servers/3092aef9-6/databases/2b413165-141/syncGroups/ba4934a6-6465/cancelSync"; 23948Requests[4691].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23949Requests[4691].Request.Path = "/subscriptions/34a145b0-828a-/resourceGroups/e87dfdb9-faac-4f8/providers/Microsoft.Sql/servers/a357d667-9/databases/01af54e7-0d4/syncGroups/22672162-3bf0/hubSchemas"; 23952Requests[4692].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23953Requests[4692].Request.Path = "/subscriptions/bc699320-8c2f-/resourceGroups/cf551b05-e8ca-455/providers/Microsoft.Sql/servers/1858f3da-0/databases/8d7aa38f-7b6/syncGroups/aa2b86d3-b72c/logs"; 23956Requests[4693].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23957Requests[4693].Request.Path = "/subscriptions/87fb2f4d-e98c-/resourceGroups/087d20c9-ec83-441/providers/Microsoft.Sql/servers/1bb5dbc5-6/databases/ed312cce-98d/syncGroups/f6fb9cbf-367c/refreshHubSchema"; 23960Requests[4694].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23961Requests[4694].Request.Path = "/subscriptions/a0a15705-7d50-/resourceGroups/1313bc11-6f88-4bc/providers/Microsoft.Sql/servers/9ed52a25-a/databases/0fb56c7d-94a/syncGroups/3b40c86b-6ed1/syncMembers"; 23964Requests[4695].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23965Requests[4695].Request.Path = "/subscriptions/bf546b78-a622-/resourceGroups/97a94277-9353-48a/providers/Microsoft.Sql/servers/b86952ec-5/databases/8533ff5f-b2d/syncGroups/bd10c679-03db/triggerSync"; 23968Requests[4696].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23969Requests[4696].Request.Path = "/subscriptions/9569b722-d1f5-/resourceGroups/fb14475a-e9b5-4ad/providers/Microsoft.Sql/servers/545b6131-d/databases/51735829-b1a/topQueries/4d60dbb/queryText"; 23972Requests[4697].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23973Requests[4697].Request.Path = "/subscriptions/015736d6-1004-/resourceGroups/36d23458-5aa0-459/providers/Microsoft.Sql/servers/1043a224-e/databases/688ef447-419/topQueries/2fc5629/statistics"; 23976Requests[4698].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23977Requests[4698].Request.Path = "/subscriptions/367e3302-5492-/resourceGroups/adafaa8e-26ae-4db/providers/Microsoft.Sql/servers/cd4fda18-5/databases/cb5add52-2de/transparentDataEncryption/916708db-379f-48b3-8cde-c7727/operationResults"; 23980Requests[4699].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23981Requests[4699].Request.Path = "/subscriptions/dfdf9316-9a28-/resourceGroups/80215e82-ca78-4d2/providers/Microsoft.Sql/servers/9dde9758-1/databases/ddd92c19-2d4/vulnerabilityAssessments/cda84e08-b380-46c8-a093-8b9/scans"; 23984Requests[4700].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23985Requests[4700].Request.Path = "/subscriptions/0d1ff1d2-8dd6-/resourceGroups/3240aed3-63fd-4b2/providers/Microsoft.Sql/servers/6606e035-8/elasticPools/6eaca3f4-4ceb-4/operations/6d221ba7-7d/cancel"; 23988Requests[4701].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23989Requests[4701].Request.Path = "/subscriptions/52206174-1433-/resourceGroups/0610659e-4e26-495/providers/Microsoft.Sql/servers/f1cd5251-6/jobAgents/bf9b650e-cca/jobs/6847231/executions"; 23992Requests[4702].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 23993Requests[4702].Request.Path = "/subscriptions/d9410692-ab84-/resourceGroups/5ca100f4-6a77-48a/providers/Microsoft.Sql/servers/29d26321-1/jobAgents/2fd617f5-495/jobs/67c2a19/start"; 23996Requests[4703].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 23997Requests[4703].Request.Path = "/subscriptions/cfa3a137-b6f3-/resourceGroups/862c4c6d-33ae-49f/providers/Microsoft.Sql/servers/ee23247d-c/jobAgents/feff4dd0-e0b/jobs/bd596a1/steps"; 24000Requests[4704].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24001Requests[4704].Request.Path = "/subscriptions/5f8915c5-d7d6-/resourceGroups/6c4c8822-fa4c-4e2/providers/Microsoft.Sql/servers/12655a71-8/jobAgents/e2affdca-717/jobs/947c517/versions"; 24004Requests[4705].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24005Requests[4705].Request.Path = "/subscriptions/7b3a2d90-0795-/resourceGroups/aa0cb78d-591a-413/providers/Microsoft.StorSimple/managers/f543da65-72/devices/52e059b0-3/backupPolicies/31bc03ee-7196-44/backup"; 24008Requests[4706].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24009Requests[4706].Request.Path = "/subscriptions/01949470-483c-/resourceGroups/0e8bcb27-db14-45f/providers/Microsoft.StorSimple/managers/2b512ffe-1f/devices/51fa0967-a/backupPolicies/6db23787-2e1c-4b/schedules"; 24012Requests[4707].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24013Requests[4707].Request.Path = "/subscriptions/072497e7-029f-/resourceGroups/d6515e9d-90c4-452/providers/Microsoft.StorSimple/managers/dcea5dc5-49/devices/b6ae51da-2/backups/58a77d65-c/restore"; 24016Requests[4708].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24017Requests[4708].Request.Path = "/subscriptions/739c4b9c-c235-/resourceGroups/f1723b6c-2e0f-4a8/providers/Microsoft.StorSimple/managers/17f08e31-7a/devices/81c97e26-b/hardwareComponentGroups/e6101485-0b3c-42dd-ba82-be/changeControllerPowerState"; 24020Requests[4709].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24021Requests[4709].Request.Path = "/subscriptions/662696f7-4e36-/resourceGroups/c1216f47-3765-495/providers/Microsoft.StorSimple/managers/a776a335-e1/devices/04c8f5db-8/jobs/93a0114/cancel"; 24024Requests[4710].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24025Requests[4710].Request.Path = "/subscriptions/f3649e35-4dfc-/resourceGroups/2cdd1271-b176-497/providers/Microsoft.StorSimple/managers/721b2c59-91/devices/9dfe2b85-0/volumeContainers/1c83dfc3-2b94-47fb-/metrics"; 24028Requests[4711].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24029Requests[4711].Request.Path = "/subscriptions/6620de1d-85da-/resourceGroups/bd9f7bd3-cfc7-4c2/providers/Microsoft.StorSimple/managers/ffb2c835-6f/devices/5d5961bc-2/volumeContainers/5f1bfdbd-049b-4951-/metricsDefinitions"; 24032Requests[4712].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24033Requests[4712].Request.Path = "/subscriptions/c0e4fdfb-01bf-/resourceGroups/42efb110-8322-433/providers/Microsoft.StorSimple/managers/77be429d-c0/devices/32a3424f-3/volumeContainers/2ebebbfa-8539-4d73-/volumes"; 24036Requests[4713].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24037Requests[4713].Request.Path = "/subscriptions/86b450fd-23cf-/resourcegroups/c4b95d5d-d6c8-43c/providers/Microsoft.Update.Admin/updateLocations/5304ee6c-ba34-/updates/00e5fa06-7/updateRuns/02499b7/rerun"; 24040Requests[4714].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24041Requests[4714].Request.Path = "/subscriptions/971d74a6-f0e9-/resourceGroups/5e6e2cac-2fd0-438/providers/microsoft.visualstudio/account/cda5a7d1-4d80-42/project/cb3a7963-e20/subContainers/51bb20ec-7de9-43/status"; 24044Requests[4715].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24045Requests[4715].Request.Path = "/subscriptions/abbccf32-0301-/resourceGroups/e55db8cf-51cf-49f/providers/Microsoft.Web/hostingEnvironments/9468c/workerPools/3c660201-dd20-/instances/fdf3659f/metricdefinitions"; 24048Requests[4716].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24049Requests[4716].Request.Path = "/subscriptions/2df5af01-8525-/resourceGroups/c711fd37-cad2-4c5/providers/Microsoft.Web/hostingEnvironments/b1df8/workerPools/461b2366-7fa2-/instances/ddcc8870/metrics"; 24052Requests[4717].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24053Requests[4717].Request.Path = "/subscriptions/e38db067-ea8f-/resourceGroups/5f3cbc7c-5cd1-4b8/providers/Microsoft.Web/serverfarms/c7309/hybridConnectionNamespaces/e202c0e2-3127/relays/82e4534d-/listKeys"; 24056Requests[4718].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24057Requests[4718].Request.Path = "/subscriptions/73e734d2-2eed-/resourceGroups/26d9a2a9-7244-44c/providers/Microsoft.Web/serverfarms/77482/hybridConnectionNamespaces/a4c782de-9565/relays/0ddb6212-/sites"; 24060Requests[4719].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24061Requests[4719].Request.Path = "/subscriptions/cc7a787c-804d-/resourceGroups/686d2d3b-bcb8-42d/providers/Microsoft.Web/sites/648c2/hybridConnectionNamespaces/e629aa62-2af1/relays/f8425431-/listKeys"; 24064Requests[4720].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24065Requests[4720].Request.Path = "/subscriptions/3f4aaa95-0a00-/resourceGroups/292d992e-12f9-4b3/providers/Microsoft.Web/sites/a37a8/instances/576a2278-6/processes/8c34d123-/dump"; 24068Requests[4721].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24069Requests[4721].Request.Path = "/subscriptions/7dbf9bd9-fab7-/resourceGroups/cdf64ec1-dde3-4a0/providers/Microsoft.Web/sites/49903/instances/7909d947-a/processes/7e207f2d-/modules"; 24072Requests[4722].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24073Requests[4722].Request.Path = "/subscriptions/a2c1f3b1-98f1-/resourceGroups/f401e095-5d4a-4f7/providers/Microsoft.Web/sites/f33cf/instances/8bfa4ad5-a/processes/2dbd8d47-/threads"; 24076Requests[4723].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24077Requests[4723].Request.Path = "/subscriptions/e63b8497-fa92-/resourceGroups/08625ecd-9a31-48f/providers/Microsoft.Web/sites/3b93b/slots/3a5f6/backups/c6f8a1ba/list"; 24080Requests[4724].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24081Requests[4724].Request.Path = "/subscriptions/10e44171-3574-/resourceGroups/a49523f9-0d5a-427/providers/Microsoft.Web/sites/ad3fc/slots/28b1d/backups/d097a76b/restore"; 24084Requests[4725].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24085Requests[4725].Request.Path = "/subscriptions/4eeef959-0aa4-/resourceGroups/cc65aaca-08a4-4ae/providers/Microsoft.Web/sites/fa177/slots/ab596/continuouswebjobs/987c1393-c/start"; 24088Requests[4726].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24089Requests[4726].Request.Path = "/subscriptions/9c01ed79-4b96-/resourceGroups/a0166bab-31da-4bb/providers/Microsoft.Web/sites/c4be1/slots/247a9/continuouswebjobs/d9d64be0-d/stop"; 24092Requests[4727].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24093Requests[4727].Request.Path = "/subscriptions/df2d8d91-66b8-/resourceGroups/7bac8d39-7716-469/providers/Microsoft.Web/sites/7e1c0/slots/d471f/deployments/ad62c/log"; 24096Requests[4728].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24097Requests[4728].Request.Path = "/subscriptions/938c682b-ab5c-/resourceGroups/a74630b8-5e8c-412/providers/Microsoft.Web/sites/f4a94/slots/d4326/functions/5a31c99c-386/listsecrets"; 24100Requests[4729].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24101Requests[4729].Request.Path = "/subscriptions/b5d60395-1f9b-/resourceGroups/1723f217-fa12-483/providers/Microsoft.Web/sites/c5c99/slots/748e5/instances/814ddb80-a/deployments"; 24104Requests[4730].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24105Requests[4730].Request.Path = "/subscriptions/b5259ddb-18eb-/resourceGroups/62b0a6e8-2a00-4d0/providers/Microsoft.Web/sites/502bb/slots/5985e/instances/96923854-8/processes"; 24108Requests[4731].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24109Requests[4731].Request.Path = "/subscriptions/7b7cc0e1-282b-/resourceGroups/c303567e-65cb-432/providers/Microsoft.Web/sites/3d550/slots/489e5/processes/67871ad8-/dump"; 24112Requests[4732].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24113Requests[4732].Request.Path = "/subscriptions/1578dbc0-fdd4-/resourceGroups/75f948dd-81a6-4fb/providers/Microsoft.Web/sites/175bf/slots/b0778/processes/8fc3cdf7-/modules"; 24116Requests[4733].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24117Requests[4733].Request.Path = "/subscriptions/d401ff72-7041-/resourceGroups/a14228c0-2e6c-4d2/providers/Microsoft.Web/sites/7ce52/slots/8d8f6/processes/23999d1b-/threads"; 24120Requests[4734].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24121Requests[4734].Request.Path = "/subscriptions/a5265d51-6c8d-/resourceGroups/69b94a40-d07d-465/providers/Microsoft.Web/sites/2cbbb/slots/9a78d/triggeredwebjobs/9862a73b-2/history"; 24124Requests[4735].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24125Requests[4735].Request.Path = "/subscriptions/7a4cc787-eb36-/resourceGroups/159e8375-52d5-482/providers/Microsoft.Web/sites/95ab2/slots/84be4/triggeredwebjobs/9acb76b5-0/run"; 24128Requests[4736].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24129Requests[4736].Request.Path = "/subscriptions/813f6259-46c3-/resourceGroups/7c22e7f5-187c-4df/providers/Microsoft.Web/sites/8c4c6acf/diagnostics/4fe196df-5460-4dbb/analyses/25f2a823-d9d/execute"; 24132Requests[4737].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24133Requests[4737].Request.Path = "/subscriptions/a75688e1-14dd-/resourceGroups/2a0184ae-ca5e-419/providers/Microsoft.Web/sites/9b2179fc/diagnostics/8cb065bd-f234-42d9/detectors/4a65baf6-9e9/execute"; 24136Requests[4738].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24137Requests[4738].Request.Path = "/subscriptions/6dbb2bbe-a30c-/resourceGroups/d352c478-968c-40e/providers/Microsoft.Web/sites/adbcb251/slots/2ccaa/diagnostics/5075d801-30b0-4af5/analyses"; 24140Requests[4739].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24141Requests[4739].Request.Path = "/subscriptions/d363edf9-84a5-/resourceGroups/b950f4b0-3a7d-4bc/providers/Microsoft.Web/sites/7c42d520/slots/f8a74/diagnostics/a07a5ffe-2432-4ae5/detectors"; 24144Requests[4740].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24145Requests[4740].Request.Path = "/subscriptions/9b72213d-36ac-/resourceGroups/c7ab163f-db23-400/providers/Microsoft.DocumentDB/databaseAccounts/ab8566e6-09/databases/c2ffb20e-0d/collections/dec3f44d-822a/partitions/metrics"; 24148Requests[4741].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24149Requests[4741].Request.Path = "/subscriptions/3b0351f3-aaf0-/resourceGroups/aab01426-9090-449/providers/Microsoft.DocumentDB/databaseAccounts/d348dddd-8b/databases/464544c1-9b/collections/7aaa1004-ba61/partitions/usages"; 24152Requests[4742].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24153Requests[4742].Request.Path = "/subscriptions/937c34b3-6b48-/resourceGroups/ad343e0c-8a6e-484/providers/Microsoft.DocumentDB/databaseAccounts/c8e854a7-9a/sourceRegion/693e51cf-639/targetRegion/2f47c2d0-ed4/percentile/metrics"; 24156Requests[4743].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24157Requests[4743].Request.Path = "/subscriptions/59bc0d98-3608-/resourceGroups/4abfb1c5-f1cd-478/providers/Microsoft.Web/sites/f8b1d/slots/66dff/instances/d7d3c1c9-7/extensions/MSDeploy"; 24160Requests[4744].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24161Requests[4744].Request.Path = "/subscriptions/a782917a-8cb2-/resourceGroups/89364626-1fd4-4bd/providers/Microsoft.Web/sites/a938a/slots/8fca2/instances/71cbb791-4/extensions/MSDeploy"; 24164Requests[4745].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24165Requests[4745].Request.Path = "/subscriptions/18621338-a8f2-/resourceGroups/e437fea3-9687-4c4/providers/Microsoft.Web/sites/05d79/slots/b5d2f/instances/0512666b-a/extensions/MSDeploy/log"; 24168Requests[4746].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24169Requests[4746].Request.Path = "/subscriptions/349cc4f8-65db-/resourceGroups/971713cf-c863-44a/providers/Microsoft.ApiManagement/service/fbf1680a-b9/apis/fa151/diagnostics/e43877d6-cf2/loggers/4a3439f7"; 24172Requests[4747].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24173Requests[4747].Request.Path = "/subscriptions/eb53272f-ac6a-/resourceGroups/f8290dc4-819a-448/providers/Microsoft.ApiManagement/service/dbc8cac1-cc/apis/91d27/diagnostics/34790a10-dce/loggers/b91dd92d"; 24176Requests[4748].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24177Requests[4748].Request.Path = "/subscriptions/c1b45f81-eaee-/resourceGroups/64bd37ce-22b5-433/providers/Microsoft.ApiManagement/service/ba64efeb-29/apis/604e4/diagnostics/80d460eb-01a/loggers/3bf428ad"; 24180Requests[4749].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24181Requests[4749].Request.Path = "/subscriptions/e7437b56-9aac-/resourceGroups/8ec3e2b0-5cc1-492/providers/Microsoft.ApiManagement/service/7f9f4427-ef/apis/d24e6/issues/e8e0801/attachments/d876621d-da9"; 24184Requests[4750].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24185Requests[4750].Request.Path = "/subscriptions/72e3928c-00ef-/resourceGroups/1eab03e0-d78d-423/providers/Microsoft.ApiManagement/service/d7639d3e-66/apis/e5a4e/issues/1494765/attachments/673601ad-71b"; 24188Requests[4751].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24189Requests[4751].Request.Path = "/subscriptions/a4d600b5-d027-/resourceGroups/a27f5cfb-f8e1-47a/providers/Microsoft.ApiManagement/service/02139296-37/apis/8a245/issues/ef5d77b/attachments/1b162378-b2c"; 24192Requests[4752].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24193Requests[4752].Request.Path = "/subscriptions/908eb58a-6183-/resourceGroups/cd6d16a9-f7cb-4aa/providers/Microsoft.ApiManagement/service/d704c8dc-7f/apis/74b95/issues/924cc6e/attachments/dd66a33e-a4a"; 24196Requests[4753].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24197Requests[4753].Request.Path = "/subscriptions/62554447-6185-/resourceGroups/d7abf8f2-81bb-429/providers/Microsoft.ApiManagement/service/9970ab4d-8d/apis/77bb6/issues/3dd36f6/comments/40785c63-"; 24200Requests[4754].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24201Requests[4754].Request.Path = "/subscriptions/803be9e1-35e1-/resourceGroups/0591e801-df6d-40f/providers/Microsoft.ApiManagement/service/087675fa-33/apis/815fb/issues/a97b609/comments/3828b636-"; 24204Requests[4755].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24205Requests[4755].Request.Path = "/subscriptions/8fe9ad48-d441-/resourceGroups/11df3a8f-2bfb-450/providers/Microsoft.ApiManagement/service/e50b4f64-59/apis/23f73/issues/d786dcf/comments/caefd52a-"; 24208Requests[4756].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24209Requests[4756].Request.Path = "/subscriptions/91526a03-da36-/resourceGroups/10cdcd17-c920-463/providers/Microsoft.ApiManagement/service/4657e0d1-28/apis/ec72c/issues/1340396/comments/0f440a54-"; 24212Requests[4757].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24213Requests[4757].Request.Path = "/subscriptions/08287950-64d1-/resourceGroups/8df4e939-f4fb-462/providers/Microsoft.ApiManagement/service/57dd4d64-33/apis/59d78/operations/36a278ea-80/policies/e2a68346"; 24216Requests[4758].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24217Requests[4758].Request.Path = "/subscriptions/78d8485e-20ea-/resourceGroups/e75b983c-6d26-407/providers/Microsoft.ApiManagement/service/8c76a1bd-42/apis/feaae/operations/5c5098ff-fb/policies/eca3df56"; 24220Requests[4759].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24221Requests[4759].Request.Path = "/subscriptions/23359b2b-d635-/resourceGroups/edc14e4a-34b4-469/providers/Microsoft.ApiManagement/service/573d1b0e-06/apis/bbeb3/operations/f446cb42-64/policies/797ba76f"; 24224Requests[4760].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24225Requests[4760].Request.Path = "/subscriptions/46806f56-7bae-/resourceGroups/ba7c65ab-340e-47a/providers/Microsoft.ApiManagement/service/8f26d53c-e4/apis/a4f7b/operations/1b30fc01-8f/policies/901c129a"; 24228Requests[4761].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24229Requests[4761].Request.Path = "/subscriptions/21cf600e-7b2e-/resourceGroups/c52f0599-b7c6-4a4/providers/Microsoft.ApiManagement/service/d9562c9f-42/apis/08e9a/operations/f4c419f3-dd/tags/bde47"; 24232Requests[4762].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24233Requests[4762].Request.Path = "/subscriptions/70dd1520-06fc-/resourceGroups/b4f08660-4781-43b/providers/Microsoft.ApiManagement/service/937757ee-44/apis/4b4f1/operations/1e456995-c2/tags/31d8b"; 24236Requests[4763].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24237Requests[4763].Request.Path = "/subscriptions/ff0ed774-547e-/resourceGroups/8424b4e2-8693-4e3/providers/Microsoft.ApiManagement/service/3ae9a88f-c8/apis/e3e79/operations/827c0b9f-17/tags/5e7a8"; 24240Requests[4764].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24241Requests[4764].Request.Path = "/subscriptions/3ab04dd8-983d-/resourceGroups/813707af-c2b2-494/providers/Microsoft.ApiManagement/service/a50343d1-72/apis/d9a02/operations/6c901e09-c7/tags/62c6f"; 24244Requests[4765].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24245Requests[4765].Request.Path = "/subscriptions/9a06d9ec-a4b0-/resourceGroups/72387a38-81c7-43b/providers/Microsoft.Automation/automationAccounts/90c17807-5b47-47a8-91/sourceControls/19846e35-9793-47e/sourceControlSyncJobs/eede4b06-cac1-4343-80f/streams/0c6144b2"; 24248Requests[4766].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24249Requests[4766].Request.Path = "/subscriptions/45e854b1-eb16-/resourceGroups/ec2f3c8c-4305-456/providers/microsoft.Compute/virtualMachineScaleSets/20b8565d-6dd6-4b27-b25b-4b/virtualMachines/9c4848f2-3cd0-4d34-/networkInterfaces/d613c5b7-c1a0-4442-a/ipConfigurations/d047a990-2e09-4e5d-"; 24252Requests[4767].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24253Requests[4767].Request.Path = "/subscriptions/23810bd9-bcb4-/resourceGroups/a0c1d8f9-ae8b-446/providers/Microsoft.Fabric.Admin/fabricLocations/aff278f7/storageSubSystems/99414968-964d-4a/storagePools/2c0bfbc5-3e/volumes/6ed7e6"; 24256Requests[4768].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24257Requests[4768].Request.Path = "/subscriptions/eb2184a2-d88d-/resourceGroups/2207a5da-edc0-434/providers/Microsoft.Logic/workflows/365f0614-aa7/runs/beedc89/actions/66b52a1b-5/repetitions/0d1f91c1-4400-"; 24260Requests[4769].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24261Requests[4769].Request.Path = "/subscriptions/97bf43c4-f607-/resourceGroups/1869fdc8-697a-46c/providers/Microsoft.Logic/workflows/63db5d76-225/runs/4199f86/actions/c841bc87-d/scopeRepetitions/2b9be8c2-a690-"; 24264Requests[4770].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24265Requests[4770].Request.Path = "/subscriptions/71b5a0a7-f519-/resourceGroups/aa57f075-6f9d-4cb/providers/Microsoft.Migrate/projects/e07c74e1-77/groups/cfa5cd2d-/assessments/2a3ed42b-b698-/assessedMachines/009782ae-ba87-4f38-"; 24268Requests[4771].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24269Requests[4771].Request.Path = "/Subscriptions/6b595f74-b1d8-/resourceGroups/6821f2ec-db69-4c5/providers/Microsoft.RecoveryServices/vaults/6682e677-f5e/replicationFabrics/2371e549-9/replicationNetworks/8de96dca-10/replicationNetworkMappings/30398f66-c05b-402b"; 24272Requests[4772].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24273Requests[4772].Request.Path = "/Subscriptions/2a556a7e-3983-/resourceGroups/b15e9a5b-4375-403/providers/Microsoft.RecoveryServices/vaults/1e921340-fcf/replicationFabrics/c7fb4169-c/replicationNetworks/604f556a-bc/replicationNetworkMappings/606ef4cb-37b1-4fb8"; 24276Requests[4773].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24277Requests[4773].Request.Path = "/Subscriptions/043cf461-72ec-/resourceGroups/58bff61b-26d4-4eb/providers/Microsoft.RecoveryServices/vaults/f36af61e-7fd/replicationFabrics/3acdc4e4-b/replicationNetworks/1675be78-e1/replicationNetworkMappings/f790f9bb-9d17-4df6"; 24280Requests[4774].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24281Requests[4774].Request.Path = "/Subscriptions/49bccff9-535c-/resourceGroups/a999a17d-1b85-405/providers/Microsoft.RecoveryServices/vaults/6c673dbf-47c/replicationFabrics/02ac9fbd-f/replicationNetworks/f13b955b-a1/replicationNetworkMappings/d6423d9a-7201-4efa"; 24284Requests[4775].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24285Requests[4775].Request.Path = "/Subscriptions/ac8eb8e4-0adc-/resourceGroups/91d8a396-65e9-431/providers/Microsoft.RecoveryServices/vaults/1ae7bfe4-8ac/replicationFabrics/4bc939f8-4/replicationProtectionContainers/0f1fdf89-7915-40b4-a422/replicationProtectableItems/59bc86f2-77af-4527-"; 24288Requests[4776].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24289Requests[4776].Request.Path = "/Subscriptions/79b2b752-2549-/resourceGroups/53c00112-8b0a-492/providers/Microsoft.RecoveryServices/vaults/0853cda0-a0a/replicationFabrics/1a95ba06-d/replicationProtectionContainers/b34cb868-ec87-4ad4-ad42/replicationProtectedItems/92c8b96d-34ce-49a0-81a6-1cc"; 24292Requests[4777].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24293Requests[4777].Request.Path = "/Subscriptions/8de5eee2-df89-/resourceGroups/ed8a4fea-1e61-482/providers/Microsoft.RecoveryServices/vaults/a201ecce-6ab/replicationFabrics/6b21ffa8-c/replicationProtectionContainers/bf3e219e-21be-44b8-9ded/replicationProtectedItems/593a2bb1-fe17-4e75-896e-d93"; 24296Requests[4778].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24297Requests[4778].Request.Path = "/Subscriptions/62097457-bcfc-/resourceGroups/c7fbf5ae-49ec-4df/providers/Microsoft.RecoveryServices/vaults/203943eb-b0a/replicationFabrics/37f50b7a-0/replicationProtectionContainers/f1aedb60-277f-40a9-8336/replicationProtectedItems/fc7fdb4a-e4ba-40dc-86fd-aee"; 24300Requests[4779].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24301Requests[4779].Request.Path = "/Subscriptions/6c4ad7f2-cf36-/resourceGroups/717d6d32-d3c3-46e/providers/Microsoft.RecoveryServices/vaults/0f9a0da6-91d/replicationFabrics/dc14e1e5-5/replicationProtectionContainers/8425814a-8e35-4551-afb0/replicationProtectedItems/8d7b10f5-eeff-4c4b-a345-5c6"; 24304Requests[4780].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24305Requests[4780].Request.Path = "/Subscriptions/ba0c93fc-6bbe-/resourceGroups/b0e78a5e-9119-446/providers/Microsoft.RecoveryServices/vaults/a2b7ca10-4cf/replicationFabrics/f4cfa232-9/replicationProtectionContainers/b1197ebd-be52-4021-91b5/replicationProtectionContainerMappings/19607196-0b"; 24308Requests[4781].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24309Requests[4781].Request.Path = "/Subscriptions/bb94f09f-baad-/resourceGroups/c15c718a-1104-4b1/providers/Microsoft.RecoveryServices/vaults/d9eccc8b-5a4/replicationFabrics/f7b53597-a/replicationProtectionContainers/ac840670-55ab-4fbe-ab58/replicationProtectionContainerMappings/5d37306a-07"; 24312Requests[4782].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24313Requests[4782].Request.Path = "/Subscriptions/dec90b2a-8352-/resourceGroups/20c00ee7-77ed-40d/providers/Microsoft.RecoveryServices/vaults/6be70a94-902/replicationFabrics/3bf284c0-6/replicationProtectionContainers/72a3c813-45fa-4511-a488/replicationProtectionContainerMappings/b47dd0a9-07"; 24316Requests[4783].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24317Requests[4783].Request.Path = "/Subscriptions/b0fc73a1-dfbb-/resourceGroups/9e8d7ef5-3007-4b7/providers/Microsoft.RecoveryServices/vaults/90b86383-471/replicationFabrics/56187d73-0/replicationProtectionContainers/6f8239ed-8381-4ee0-99b8/replicationProtectionContainerMappings/ac261d5d-ae"; 24320Requests[4784].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24321Requests[4784].Request.Path = "/Subscriptions/2b5ee1f2-39f8-/resourceGroups/8a6a16b5-22f8-4fa/providers/Microsoft.RecoveryServices/vaults/37176276-15d/replicationFabrics/7b767eff-7/replicationStorageClassifications/3983546d-e668-436d-b20a-4/replicationStorageClassificationMappings/899cc569-870d-4a52-a191-c4960c23"; 24324Requests[4785].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24325Requests[4785].Request.Path = "/Subscriptions/78879967-ff1e-/resourceGroups/b2e57593-9b74-4a0/providers/Microsoft.RecoveryServices/vaults/18268024-aea/replicationFabrics/875d2adf-b/replicationStorageClassifications/0f5bb834-4870-4acb-8fde-a/replicationStorageClassificationMappings/cfc9e271-f491-46a8-b696-e4812312"; 24328Requests[4786].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24329Requests[4786].Request.Path = "/Subscriptions/5ae21222-235e-/resourceGroups/9fefa080-f1bd-4a8/providers/Microsoft.RecoveryServices/vaults/62a5fd23-7c9/replicationFabrics/182cb9bd-1/replicationStorageClassifications/fd2b16de-0a34-46ea-ac12-2/replicationStorageClassificationMappings/e6e327bd-91f3-4d4d-86e0-9a4a6843"; 24332Requests[4787].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24333Requests[4787].Request.Path = "/Subscriptions/71b8736e-c3a3-/resourceGroups/c13f7d77-4980-4e9/providers/Microsoft.RecoveryServices/vaults/3edb4673-/backupFabrics/b4907fbf-0/protectionContainers/0b5d4ea1-84a1/operationResults/dbafe023-6d"; 24336Requests[4788].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24337Requests[4788].Request.Path = "/Subscriptions/9a5abdc2-a0a6-/resourceGroups/17e214b3-63c8-484/providers/Microsoft.RecoveryServices/vaults/da31c54e-/backupFabrics/9175981a-a/protectionContainers/d660d6a2-bad9/protectedItems/b1b7571f-6df1-424"; 24340Requests[4789].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24341Requests[4789].Request.Path = "/Subscriptions/c2ddd589-91ce-/resourceGroups/0d93ae75-6f27-422/providers/Microsoft.RecoveryServices/vaults/944782a8-/backupFabrics/7ca58500-b/protectionContainers/c9b8934b-d4fd/protectedItems/3e14e5a6-82e4-40a"; 24344Requests[4790].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24345Requests[4790].Request.Path = "/Subscriptions/a530fe7d-7c32-/resourceGroups/4a5b22e4-44b2-478/providers/Microsoft.RecoveryServices/vaults/1bc128b5-/backupFabrics/2acd5452-8/protectionContainers/5eb79be0-4671/protectedItems/28c806d7-b139-424"; 24348Requests[4791].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24349Requests[4791].Request.Path = "/subscriptions/97db8f5b-48d6-/resourceGroups/ef930052-a068-4de/providers/Microsoft.ServiceBus/namespaces/efeff548-78cc/topics/2680bc0d-/subscriptions/439b98bb-f836-45/rules/73b0a692"; 24352Requests[4792].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24353Requests[4792].Request.Path = "/subscriptions/d8af0f05-b327-/resourceGroups/5ad74fb5-a521-492/providers/Microsoft.ServiceBus/namespaces/d5fe154a-dd2d/topics/3339e92b-/subscriptions/650f6463-61a5-46/rules/ef206d80"; 24356Requests[4793].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24357Requests[4793].Request.Path = "/subscriptions/44b2b4ce-4f3d-/resourceGroups/a49f6dc1-6391-41b/providers/Microsoft.ServiceBus/namespaces/b551e3bf-23bd/topics/54c06f23-/subscriptions/ef154e8f-ec12-42/rules/440897a6"; 24360Requests[4794].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24361Requests[4794].Request.Path = "/subscriptions/73ec4a74-67b4-/resourceGroups/2b940701-46af-43a/providers/Microsoft.Sql/servers/c7e2d90b-a/databases/a088558f-ae3/advisors/2e6f9664-e4/recommendedActions/34e851b4-fac2-4546-b6"; 24364Requests[4795].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24365Requests[4795].Request.Path = "/subscriptions/376c56af-1487-/resourceGroups/c382c76b-0ee9-41f/providers/Microsoft.Sql/servers/cfe48345-d/databases/038f791e-b1f/advisors/b93e0292-92/recommendedActions/41108aaa-f2ae-4b72-ba"; 24368Requests[4796].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24369Requests[4796].Request.Path = "/subscriptions/c9d9d28a-021c-/resourceGroups/f894975a-0e58-48d/providers/Microsoft.Sql/servers/05be334b-a/databases/cf790ead-1a3/dataMaskingPolicies/897bae0c-7508-4864-85/rules/e9324a59-b78c-4227-"; 24372Requests[4797].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24373Requests[4797].Request.Path = "/subscriptions/2fa78db8-d5b7-/resourceGroups/d416534f-4ae8-4f3/providers/Microsoft.Sql/servers/5f88e82f-4/databases/f69a8411-19e/syncGroups/a8d1a670-ac00/syncMembers/d32ccc06-6f91-"; 24376Requests[4798].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24377Requests[4798].Request.Path = "/subscriptions/40f00e02-0659-/resourceGroups/597aac6d-f163-4f4/providers/Microsoft.Sql/servers/c531e127-a/databases/0a5baf1a-c1b/syncGroups/caeda551-8ac2/syncMembers/ffb5b963-3a1d-"; 24380Requests[4799].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24381Requests[4799].Request.Path = "/subscriptions/d91e89d1-9d90-/resourceGroups/f49f3d35-6eec-442/providers/Microsoft.Sql/servers/a4b01af2-4/databases/7e70bcfe-105/syncGroups/5cb207b9-2923/syncMembers/b51ba749-263f-"; 24384Requests[4800].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24385Requests[4800].Request.Path = "/subscriptions/ca961892-8b53-/resourceGroups/510f30fe-6b70-4b8/providers/Microsoft.Sql/servers/10041bff-f/databases/60994ec9-65b/syncGroups/df3735c6-3e49/syncMembers/1cc8c056-3402-"; 24388Requests[4801].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24389Requests[4801].Request.Path = "/subscriptions/4f41ccc0-84da-/resourceGroups/7e2dde4e-ed72-41b/providers/Microsoft.Sql/servers/925b8fae-8/databases/575b5d13-9dc/vulnerabilityAssessments/58789906-aac5-468b-bf1b-5de/scans/e18a4c"; 24392Requests[4802].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24393Requests[4802].Request.Path = "/subscriptions/f53d3a27-1ef3-/resourceGroups/ec0f177d-8830-430/providers/Microsoft.Sql/servers/7d731589-0/jobAgents/058eee1e-469/jobs/b427ec9/executions/fbda9f09-bca9-"; 24396Requests[4803].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24397Requests[4803].Request.Path = "/subscriptions/6ae5ba09-8b24-/resourceGroups/c13e8391-7d17-45e/providers/Microsoft.Sql/servers/66221e4e-f/jobAgents/9710ba81-d1a/jobs/f53584e/executions/dc6b219f-275c-"; 24400Requests[4804].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24401Requests[4804].Request.Path = "/subscriptions/fd7a1b76-12c8-/resourceGroups/b63e7400-5b66-41a/providers/Microsoft.Sql/servers/e7e3b6e7-4/jobAgents/375caab9-a43/jobs/cb65e84/steps/a1ea464f"; 24404Requests[4805].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24405Requests[4805].Request.Path = "/subscriptions/95f68017-e940-/resourceGroups/990063cc-2fe1-4d5/providers/Microsoft.Sql/servers/51eecd7b-4/jobAgents/c9f81f26-5e1/jobs/ecd43c7/steps/aebbf41a"; 24408Requests[4806].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24409Requests[4806].Request.Path = "/subscriptions/98ce4ee9-0526-/resourceGroups/f11ce16d-a6bd-44b/providers/Microsoft.Sql/servers/d0e29a8e-4/jobAgents/e35017d8-397/jobs/999a791/steps/af8560be"; 24412Requests[4807].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24413Requests[4807].Request.Path = "/subscriptions/708aff9f-3700-/resourceGroups/02f45450-06f5-42f/providers/Microsoft.Sql/servers/b407da56-0/jobAgents/391e52d2-a6d/jobs/6bc62c8/versions/37c4fc55-8"; 24416Requests[4808].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24417Requests[4808].Request.Path = "/subscriptions/4c575d98-2650-/resourceGroups/f3b4dd44-e573-4c1/providers/Microsoft.StorSimple/managers/11b9d896-f7/devices/04997e7e-3/backupPolicies/10a3a1b9-cda7-4e/schedules/15ce7dcc-94fe-4947"; 24420Requests[4809].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24421Requests[4809].Request.Path = "/subscriptions/49bb5418-e965-/resourceGroups/e1f9448f-3024-4ac/providers/Microsoft.StorSimple/managers/5b312fb2-47/devices/0e809be6-2/backupPolicies/5fdd3ca0-bd69-49/schedules/a3f8996a-57fa-4a04"; 24424Requests[4810].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24425Requests[4810].Request.Path = "/subscriptions/4a07387a-af87-/resourceGroups/170dce8f-2329-454/providers/Microsoft.StorSimple/managers/424beed7-4a/devices/cb69a133-c/backupPolicies/17ea77cf-e3e0-46/schedules/508353d2-9d1d-4e7e"; 24428Requests[4811].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24429Requests[4811].Request.Path = "/subscriptions/a2ea88f9-edb1-/resourceGroups/597a02f4-8419-42f/providers/Microsoft.StorSimple/managers/ae0380f6-44/devices/4205de57-6/volumeContainers/4ba4ceac-90b5-462e-/volumes/f519884e-e"; 24432Requests[4812].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24433Requests[4812].Request.Path = "/subscriptions/94757334-5599-/resourceGroups/47188b23-a522-4b3/providers/Microsoft.StorSimple/managers/8e0989fd-04/devices/9b3cec79-9/volumeContainers/5b69a90b-4435-4ec1-/volumes/a5c330c9-7"; 24436Requests[4813].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24437Requests[4813].Request.Path = "/subscriptions/3c9d12ec-897e-/resourceGroups/0b48bd88-50f8-448/providers/Microsoft.StorSimple/managers/494a827d-c1/devices/6d1a5414-8/volumeContainers/81f79809-b22c-4103-/volumes/81fd1341-6"; 24440Requests[4814].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24441Requests[4814].Request.Path = "/subscriptions/8a078c61-6c17-/resourceGroups/52afe7b7-2f8d-47b/providers/Microsoft.Web/sites/a43a4/instances/5447bff2-c/processes/4b25f0df-/modules/1f5aa9d6-02"; 24444Requests[4815].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24445Requests[4815].Request.Path = "/subscriptions/abbff461-fca9-/resourceGroups/91407f23-28f1-49d/providers/Microsoft.Web/sites/9bbe3/instances/3be43f67-e/processes/db9c1465-/threads/c13f6c14"; 24448Requests[4816].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24449Requests[4816].Request.Path = "/subscriptions/eafb02ae-1716-/resourceGroups/37625667-e739-496/providers/Microsoft.Web/sites/4eab2/slots/b40d6/hybridConnectionNamespaces/060bccea-6698/relays/aa1d153b-"; 24452Requests[4817].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24453Requests[4817].Request.Path = "/subscriptions/2d71cf6d-2149-/resourceGroups/16dc7dd9-c2c9-476/providers/Microsoft.Web/sites/c8e0b/slots/af50e/hybridConnectionNamespaces/c9e7dbb2-d64a/relays/bb6f5a31-"; 24456Requests[4818].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24457Requests[4818].Request.Path = "/subscriptions/e8c4db44-ea5b-/resourceGroups/8fa6d9b4-5e04-47b/providers/Microsoft.Web/sites/6ef23/slots/5a7bb/hybridConnectionNamespaces/9d62485a-3f97/relays/aca868ed-"; 24460Requests[4819].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24461Requests[4819].Request.Path = "/subscriptions/c40ca2d3-cacc-/resourceGroups/90d30358-c462-475/providers/Microsoft.Web/sites/d4889/slots/85cb6/hybridConnectionNamespaces/0bb279cf-bc5f/relays/e762274d-"; 24464Requests[4820].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24465Requests[4820].Request.Path = "/subscriptions/890be397-d1a7-/resourceGroups/40bae2f8-63ac-4f0/providers/Microsoft.Web/sites/1043f/slots/9f673/instances/22bc6fa7-2/deployments/d4426"; 24468Requests[4821].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24469Requests[4821].Request.Path = "/subscriptions/9f004f96-9f53-/resourceGroups/9a7b3d2d-17ed-45c/providers/Microsoft.Web/sites/d21b5/slots/9a6e6/instances/ae57de8c-4/deployments/3bb75"; 24472Requests[4822].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24473Requests[4822].Request.Path = "/subscriptions/9c7e2ebe-1257-/resourceGroups/45cb9235-4f6b-4ee/providers/Microsoft.Web/sites/652d7/slots/d65e1/instances/a1c7f891-b/deployments/4b8fc"; 24476Requests[4823].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24477Requests[4823].Request.Path = "/subscriptions/1958c56a-26b9-/resourceGroups/cf0b3452-b20e-456/providers/Microsoft.Web/sites/eb90c/slots/54309/instances/80b12fad-3/processes/151c7b95-"; 24480Requests[4824].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24481Requests[4824].Request.Path = "/subscriptions/9e876ab8-dd90-/resourceGroups/073a4a9a-9749-481/providers/Microsoft.Web/sites/b89ea/slots/53832/instances/56907340-b/processes/841708bb-"; 24484Requests[4825].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24485Requests[4825].Request.Path = "/subscriptions/d165113a-bfc6-/resourceGroups/8ef73b11-3521-4db/providers/Microsoft.Web/sites/e00e7/slots/9908d/processes/b895a65e-/modules/edf94b3f-32"; 24488Requests[4826].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24489Requests[4826].Request.Path = "/subscriptions/0947f890-3f06-/resourceGroups/eb06a483-cb6e-496/providers/Microsoft.Web/sites/ebcae/slots/bde95/processes/1cd701d1-/threads/77be9a1d"; 24492Requests[4827].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24493Requests[4827].Request.Path = "/subscriptions/a41079f3-09e7-/resourceGroups/cf18c677-4c7d-4d7/providers/Microsoft.Web/sites/9839d/slots/aa192/triggeredwebjobs/36a82f84-3/history/6af3e"; 24496Requests[4828].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24497Requests[4828].Request.Path = "/subscriptions/2961fefc-8f08-/resourceGroups/6c15d8f0-147f-462/providers/Microsoft.Web/sites/94f45/slots/69d5c/virtualNetworkConnections/3da4e381/gateways/204e5334-4a"; 24500Requests[4829].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24501Requests[4829].Request.Path = "/subscriptions/92cf3f63-a7c1-/resourceGroups/5c39e6ee-fc73-4a7/providers/Microsoft.Web/sites/0d12e/slots/1300c/virtualNetworkConnections/7a3f3fae/gateways/785fd984-59"; 24504Requests[4830].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24505Requests[4830].Request.Path = "/subscriptions/34b95a08-5a3b-/resourceGroups/c9452f2c-9256-4f8/providers/Microsoft.Web/sites/93282/slots/51822/virtualNetworkConnections/11f12acf/gateways/7c44d343-81"; 24508Requests[4831].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24509Requests[4831].Request.Path = "/subscriptions/7ba531ed-0577-/resourceGroups/7e107482-dc1c-4f8/providers/Microsoft.Web/sites/e743ea08/slots/b5c93/diagnostics/6332ba08-eb13-41a1/analyses/2ed07335-6fd"; 24512Requests[4832].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24513Requests[4832].Request.Path = "/subscriptions/5793b54c-a8d1-/resourceGroups/6568837e-daea-48d/providers/Microsoft.Web/sites/cf6e3dc4/slots/053cf/diagnostics/64088a0c-d775-4412/detectors/0a1196b0-68c"; 24516Requests[4833].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24517Requests[4833].Request.Path = "/subscriptions/5719f8eb-19e3-/resourceGroups/f3f7eaea-8b45-49d/providers/Microsoft.Compute/virtualMachineScaleSets/d6c05dd2-8c9e-4eb0-9854-e4/virtualMachines/21052090-0956-4e12-/networkInterfaces/7299d819-7942-4449-8/ipconfigurations/126f4822-f783-4cfe-/publicipaddresses"; 24520Requests[4834].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24521Requests[4834].Request.Path = "/subscriptions/8493053c-a43e-/resourceGroups/5108a04e-fb23-45d/providers/Microsoft.DocumentDB/databaseAccounts/920f6a78-24/databases/6606f3ac-f3/collections/21492caa-3aca/partitionKeyRangeId/e2ec81c9-690b-4951-/metrics"; 24524Requests[4835].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24525Requests[4835].Request.Path = "/subscriptions/fa23b440-cde6-/resourceGroups/3ac3f357-ea35-4bb/providers/Microsoft.DocumentDB/databaseAccounts/bb099ccb-99/region/b95170/databases/9358c243-d1/collections/f8319173-129b/metrics"; 24528Requests[4836].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24529Requests[4836].Request.Path = "/subscriptions/9a10741e-5e81-/resourceGroups/87148a37-dddf-4b1/providers/Microsoft.Logic/workflows/b3971922-c19/runs/37bf951/actions/28e826f6-4/repetitions/1df14005-6c15-/listExpressionTraces"; 24532Requests[4837].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24533Requests[4837].Request.Path = "/Subscriptions/06a9d255-63c1-/resourceGroups/3372e527-ee65-444/providers/Microsoft.RecoveryServices/vaults/472b2bb0-6d8/replicationFabrics/935e0409-3/replicationProtectionContainers/e4ad0836-5785-462a-b5cd/replicationProtectedItems/cf09f006-4f5b-4c3f-b806-04b/applyRecoveryPoint"; 24536Requests[4838].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24537Requests[4838].Request.Path = "/Subscriptions/7bf46ca9-b485-/resourceGroups/3a791acb-f68c-488/providers/Microsoft.RecoveryServices/vaults/e86013d8-58c/replicationFabrics/55ce84c4-1/replicationProtectionContainers/1266bd4e-a7c4-44c6-99ff/replicationProtectedItems/cda9006e-c050-4860-8b38-19e/failoverCommit"; 24540Requests[4839].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24541Requests[4839].Request.Path = "/Subscriptions/bd884819-fa9e-/resourceGroups/bbca13f0-b68b-4ab/providers/Microsoft.RecoveryServices/vaults/9ad5e7be-d4c/replicationFabrics/ff25d36d-2/replicationProtectionContainers/73f12a2a-cd31-49fa-ad71/replicationProtectedItems/4d37a1f0-c2bf-4646-bfdd-ea2/plannedFailover"; 24544Requests[4840].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24545Requests[4840].Request.Path = "/Subscriptions/a5874b40-cd5a-/resourceGroups/2f958594-c9e0-443/providers/Microsoft.RecoveryServices/vaults/60853498-ff4/replicationFabrics/c6607b47-a/replicationProtectionContainers/37fabbd3-a073-4ab9-ace9/replicationProtectedItems/17fde4c4-9509-47f5-abc8-a6d/recoveryPoints"; 24548Requests[4841].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24549Requests[4841].Request.Path = "/Subscriptions/5234711b-4c71-/resourceGroups/27668957-2e12-4d6/providers/Microsoft.RecoveryServices/vaults/49bf29f0-f7a/replicationFabrics/58a9b4c9-0/replicationProtectionContainers/906c42ae-9d2b-411c-8233/replicationProtectedItems/d9477925-a2fa-4fb6-8a1b-022/remove"; 24552Requests[4842].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24553Requests[4842].Request.Path = "/Subscriptions/369324aa-5d60-/resourceGroups/5b4598a8-cc65-480/providers/Microsoft.RecoveryServices/vaults/cbde71b3-9c2/replicationFabrics/742af5ba-7/replicationProtectionContainers/a8bb5594-203b-4e6d-a674/replicationProtectedItems/0469fdd4-2251-4e5a-aca2-e6c/repairReplication"; 24556Requests[4843].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24557Requests[4843].Request.Path = "/Subscriptions/c02cd31b-0bd2-/resourceGroups/ec7643c6-922e-4bb/providers/Microsoft.RecoveryServices/vaults/aabd013a-0f7/replicationFabrics/96d82f71-c/replicationProtectionContainers/8dd50f84-673e-4165-afe8/replicationProtectedItems/2b6c41fc-b4aa-48c7-a84e-3d5/reProtect"; 24560Requests[4844].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24561Requests[4844].Request.Path = "/Subscriptions/4925dd24-4fe0-/resourceGroups/72babfdc-d340-43f/providers/Microsoft.RecoveryServices/vaults/f8d53323-8a8/replicationFabrics/79687da8-b/replicationProtectionContainers/2e5f383e-9d41-4e10-a2ea/replicationProtectedItems/36fcfc28-ea41-491f-a325-6c9/targetComputeSizes"; 24564Requests[4845].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24565Requests[4845].Request.Path = "/Subscriptions/0055cb9b-7477-/resourceGroups/baedbf5d-1c87-47b/providers/Microsoft.RecoveryServices/vaults/54451b6a-9ef/replicationFabrics/4c6522ff-2/replicationProtectionContainers/e212d6d7-b9a1-46f1-905d/replicationProtectedItems/b2536090-337d-445d-b482-faa/testFailover"; 24568Requests[4846].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24569Requests[4846].Request.Path = "/Subscriptions/2c76d4e2-f8ba-/resourceGroups/f0509552-9342-41d/providers/Microsoft.RecoveryServices/vaults/797bccfd-2c0/replicationFabrics/aab360ea-9/replicationProtectionContainers/f55d641d-7473-465f-acc2/replicationProtectedItems/76600e51-f200-4c0f-a08e-56f/testFailoverCleanup"; 24572Requests[4847].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24573Requests[4847].Request.Path = "/Subscriptions/0521897f-d743-/resourceGroups/e0377fe2-13b0-40f/providers/Microsoft.RecoveryServices/vaults/3d6412f1-96e/replicationFabrics/754ed692-e/replicationProtectionContainers/8821d830-2a9d-4367-b870/replicationProtectedItems/35d09198-4d7f-4abe-af86-fb5/unplannedFailover"; 24576Requests[4848].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24577Requests[4848].Request.Path = "/Subscriptions/d35ce5a1-5d9c-/resourceGroups/6922c242-aa34-498/providers/Microsoft.RecoveryServices/vaults/42ad79f5-4ea/replicationFabrics/d62420df-f/replicationProtectionContainers/06988a8b-4c66-45b7-b204/replicationProtectedItems/1eab4382-a197-4eba-9544-e3c3/updateMobilityService"; 24580Requests[4849].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24581Requests[4849].Request.Path = "/Subscriptions/23d6c3e9-42c9-/resourceGroups/3e22bd06-53f7-4c9/providers/Microsoft.RecoveryServices/vaults/9cbf8b80-059/replicationFabrics/154daa53-4/replicationProtectionContainers/7cf4eee0-0111-453a-aefd/replicationProtectionContainerMappings/55c3a270-e2/remove"; 24584Requests[4850].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24585Requests[4850].Request.Path = "/Subscriptions/eda502e5-a57e-/resourceGroups/73463db3-4ae0-477/providers/Microsoft.RecoveryServices/vaults/f5ba8f50-/backupFabrics/6e691bbd-f/protectionContainers/cbce33c7-2019/protectedItems/ebb0f08a-316f-45f/backup"; 24588Requests[4851].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24589Requests[4851].Request.Path = "/Subscriptions/30fd09a3-f6e6-/resourceGroups/f5a848ed-b29b-4cf/providers/Microsoft.RecoveryServices/vaults/b38d137f-/backupFabrics/1c36bf69-0/protectionContainers/7f1e8d95-f6fc/protectedItems/65ffece2-bed7-422/recoveryPoints"; 24592Requests[4852].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24593Requests[4852].Request.Path = "/subscriptions/391905e8-5b5c-/resourceGroups/65fa04d8-a129-4e8/providers/Microsoft.Sql/servers/f695a6d9-8/databases/768fdab0-0e6/syncGroups/c3c11c75-d91e/syncMembers/993829c5-5604-/refreshSchema"; 24596Requests[4853].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24597Requests[4853].Request.Path = "/subscriptions/a9de817e-aa31-/resourceGroups/c02b12fb-f101-41c/providers/Microsoft.Sql/servers/b663e1ca-1/databases/37fd3552-e95/syncGroups/a2f155ab-c374/syncMembers/10ebd1a2-510a-/schemas"; 24600Requests[4854].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24601Requests[4854].Request.Path = "/subscriptions/254629fc-0aed-/resourceGroups/6601a249-4318-49c/providers/Microsoft.Sql/servers/df9f9ca5-2/databases/7437d02b-39d/vulnerabilityAssessments/3abea3c2-e452-4f89-a98c-41f/scans/ca7dc8/export"; 24604Requests[4855].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24605Requests[4855].Request.Path = "/subscriptions/7d665301-90f0-/resourceGroups/9a78037f-535d-40d/providers/Microsoft.Sql/servers/402f0144-5/databases/9cc25988-13a/vulnerabilityAssessments/1ee62042-be63-44d6-8e91-3b3/scans/2da038/initiateScan"; 24608Requests[4856].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24609Requests[4856].Request.Path = "/subscriptions/d5f266b8-ec93-/resourceGroups/a6ee57c4-819b-408/providers/Microsoft.Sql/servers/9eefd1dc-f/jobAgents/ad097ac8-fcf/jobs/cceae22/executions/fb66d8da-ad40-/cancel"; 24612Requests[4857].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24613Requests[4857].Request.Path = "/subscriptions/17a70741-bd70-/resourceGroups/b1ebdbe7-649c-45c/providers/Microsoft.Sql/servers/c554d2dd-0/jobAgents/b7a99cca-38c/jobs/bcd8be8/executions/c9717eeb-a348-/steps"; 24616Requests[4858].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24617Requests[4858].Request.Path = "/subscriptions/221f9c17-42b7-/resourceGroups/a9f262a7-469d-489/providers/Microsoft.Sql/servers/701f2745-3/jobAgents/4a7c771e-6bf/jobs/7a8ad07/executions/4f24d083-f5f4-/targets"; 24620Requests[4859].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24621Requests[4859].Request.Path = "/subscriptions/471396e4-9005-/resourceGroups/afdfeefc-d0b5-42b/providers/Microsoft.Sql/servers/d6d97589-5/jobAgents/295a02b2-761/jobs/086d48f/versions/e64e88c8-f/steps"; 24624Requests[4860].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24625Requests[4860].Request.Path = "/subscriptions/be3b8470-f6bb-/resourceGroups/d3310dcb-22ee-482/providers/Microsoft.StorSimple/managers/42575ffb-ce/devices/19211621-6/backups/4a9eb60c-b/elements/f5dfe0c7-ecd3-4f0/clone"; 24628Requests[4861].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24629Requests[4861].Request.Path = "/subscriptions/0f681e4e-4aec-/resourceGroups/86180793-3a84-444/providers/Microsoft.StorSimple/managers/58e707fd-74/devices/1bb11b4c-6/volumeContainers/b60c591a-6c77-407a-/volumes/36cc19a4-5/metrics"; 24632Requests[4862].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24633Requests[4862].Request.Path = "/subscriptions/960e4030-42cb-/resourceGroups/c51c2fc2-f368-4e7/providers/Microsoft.StorSimple/managers/f1229633-2e/devices/29f44f10-1/volumeContainers/e42ecc84-0bf1-465a-/volumes/3bf2b779-b/metricsDefinitions"; 24636Requests[4863].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24637Requests[4863].Request.Path = "/subscriptions/f864bdcf-c08a-/resourceGroups/118bc2d3-8a91-46f/providers/Microsoft.Web/sites/ba4aa/slots/c8ec1/hybridConnectionNamespaces/ad5c59b0-82b3/relays/691cd166-/listKeys"; 24640Requests[4864].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24641Requests[4864].Request.Path = "/subscriptions/385ca42d-1776-/resourceGroups/2ec6e320-7ace-4eb/providers/Microsoft.Web/sites/de1b9/slots/0add9/instances/3efb17b4-b/processes/2cbbf3ac-/dump"; 24644Requests[4865].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24645Requests[4865].Request.Path = "/subscriptions/12049df9-b7a6-/resourceGroups/43946189-b4a8-491/providers/Microsoft.Web/sites/106d7/slots/cdc1b/instances/e19d537d-4/processes/75b77b12-/modules"; 24648Requests[4866].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24649Requests[4866].Request.Path = "/subscriptions/7c4a0603-26c9-/resourceGroups/d779ffc0-d8ac-4ee/providers/Microsoft.Web/sites/bfada/slots/68aa6/instances/9897619f-5/processes/1491907d-/threads"; 24652Requests[4867].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24653Requests[4867].Request.Path = "/subscriptions/6623a93c-6409-/resourceGroups/3a03e4e1-eddf-408/providers/Microsoft.Web/sites/6aa1156d/slots/bfff4/diagnostics/9246b672-9302-4bcd/analyses/49c587b0-905/execute"; 24656Requests[4868].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24657Requests[4868].Request.Path = "/subscriptions/e0ace841-a12f-/resourceGroups/7ff9f836-ecb4-4fb/providers/Microsoft.Web/sites/7b5f856f/slots/9b370/diagnostics/093d3e3c-7e80-4e21/detectors/9c766090-bab/execute"; 24660Requests[4869].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24661Requests[4869].Request.Path = "/subscriptions/a5f05d2f-3755-/resourceGroups/b843e1fd-5fb1-426/providers/Microsoft.DocumentDB/databaseAccounts/f9db29f8-39/region/706dfc/databases/e6fdd70e-46/collections/a799ba5c-f4e9/partitions/metrics"; 24664Requests[4870].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24665Requests[4870].Request.Path = "/subscriptions/89dbf06e-76e5-/resourceGroups/2a120179-6370-46d/providers/Microsoft.Compute/virtualMachineScaleSets/f8d9fa6a-7972-4d5e-a464-0f/virtualMachines/1a16a298-4444-4a73-/networkInterfaces/e17d736a-a873-4e39-9/ipconfigurations/18143609-5069-4cac-/publicipaddresses/37df828d-4687-4a98-"; 24668Requests[4871].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24669Requests[4871].Request.Path = "/Subscriptions/3806ba8d-6fe6-/resourceGroups/cccf1195-0e3f-4bf/providers/Microsoft.RecoveryServices/vaults/224e6d4f-508/replicationFabrics/b6e62e75-a/replicationProtectionContainers/77e0293e-f836-4797-afcf/replicationProtectedItems/dc38c64b-1de5-4d8d-8897-5b5/recoveryPoints/350010e2-47d4-41c"; 24672Requests[4872].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24673Requests[4872].Request.Path = "/Subscriptions/12f9e1e0-fc71-/resourceGroups/777e9730-c029-4b9/providers/Microsoft.RecoveryServices/vaults/40cfe16a-/backupFabrics/b38da414-e/protectionContainers/e8df9145-af18/protectedItems/7106a542-06b9-469/operationResults/6f7e0af0-c4"; 24676Requests[4873].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24677Requests[4873].Request.Path = "/Subscriptions/a8af64fb-188b-/resourceGroups/1cc7036f-1674-447/providers/Microsoft.RecoveryServices/vaults/3abfc3d1-/backupFabrics/2c41fbf5-d/protectionContainers/71e03a13-61f5/protectedItems/fa9f1784-e53a-4fb/operationsStatus/384df979-21"; 24680Requests[4874].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24681Requests[4874].Request.Path = "/Subscriptions/84249155-b565-/resourceGroups/5c5eb050-f66e-4dc/providers/Microsoft.RecoveryServices/vaults/554c716f-/backupFabrics/d477250b-9/protectionContainers/21aaf720-1d84/protectedItems/7d5c013b-ded9-4da/recoveryPoints/ff870c43-1942-4"; 24684Requests[4875].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24685Requests[4875].Request.Path = "/subscriptions/07d89ad1-f8f4-/resourceGroups/e9efc4c6-5a1d-459/providers/Microsoft.Sql/servers/05327fb6-4/databases/b6eedbb4-9a5/vulnerabilityAssessments/0963956d-34a5-4fd1-bd65-47b/rules/b0ffba/baselines/4e02e82b-4fd"; 24688Requests[4876].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24689Requests[4876].Request.Path = "/subscriptions/8981a5f0-309f-/resourceGroups/ad4ea3de-8624-451/providers/Microsoft.Sql/servers/87d23fdf-f/databases/074239fa-13a/vulnerabilityAssessments/dc25b714-3e44-4f3d-a189-a56/rules/7dfdee/baselines/78ff578e-cdd"; 24692Requests[4877].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24693Requests[4877].Request.Path = "/subscriptions/34a0e23d-f356-/resourceGroups/e19d4e60-ba47-414/providers/Microsoft.Sql/servers/a5053f18-c/databases/babac6c1-c6c/vulnerabilityAssessments/e21ec65a-7d3a-47a1-995e-b81/rules/d1fe58/baselines/a3b69a42-ca2"; 24696Requests[4878].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24697Requests[4878].Request.Path = "/subscriptions/03bdd021-4758-/resourceGroups/f1d12e65-1f76-4c3/providers/Microsoft.Sql/servers/0ff0eed4-2/jobAgents/d60db8ac-c67/jobs/3b79001/executions/8e915fd8-edfc-/steps/85ef4722"; 24700Requests[4879].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24701Requests[4879].Request.Path = "/subscriptions/98372c8a-1723-/resourceGroups/7e3fe31c-dbcf-4d8/providers/Microsoft.Sql/servers/c476c371-d/jobAgents/7858cb68-271/jobs/46a59ea/versions/add685f5-4/steps/0fa82558"; 24704Requests[4880].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24705Requests[4880].Request.Path = "/subscriptions/01371cab-3f2e-/resourceGroups/202e84e8-2506-473/providers/Microsoft.Web/sites/b650c/slots/87367/instances/6527d2b7-c/processes/27591635-/modules/e6bc387f-99"; 24708Requests[4881].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24709Requests[4881].Request.Path = "/subscriptions/3cce76a4-2821-/resourceGroups/dd2bf3bb-191b-454/providers/Microsoft.Web/sites/351b6/slots/08e5c/instances/92c1b10a-e/processes/39e953e6-/threads/2c598ac2"; 24712Requests[4882].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24713Requests[4882].Request.Path = "/subscriptions/4974afa0-f7b0-/resourceGroups/f6a0d7d4-d2c4-432/providers/Microsoft.DocumentDB/databaseAccounts/409aa4c6-bf/region/30f974/databases/d0a22e97-a2/collections/18ab21c1-f23c/partitionKeyRangeId/cb467676-7311-4c41-/metrics"; 24716Requests[4883].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24717Requests[4883].Request.Path = "/Subscriptions/8404eb86-f9bc-/resourceGroups/88ad4779-9e35-490/providers/Microsoft.RecoveryServices/vaults/c6ed18c4-/backupFabrics/fac88ee8-7/protectionContainers/660682c8-aed8/protectedItems/bb7119a5-16fc-455/recoveryPoints/77155fb5-a789-4/provisionInstantItemRecovery"; 24720Requests[4884].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24721Requests[4884].Request.Path = "/Subscriptions/7903a5bf-51c7-/resourceGroups/c0546013-9d9d-42c/providers/Microsoft.RecoveryServices/vaults/769cdf0e-/backupFabrics/9023c526-8/protectionContainers/52dadd72-4e94/protectedItems/20d7a386-1efe-45a/recoveryPoints/5b401f2b-d755-4/restore"; 24724Requests[4885].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24725Requests[4885].Request.Path = "/Subscriptions/294899c1-8115-/resourceGroups/64c9c200-6e05-4a3/providers/Microsoft.RecoveryServices/vaults/9cec4132-/backupFabrics/84e887eb-b/protectionContainers/ad9d7103-ea2b/protectedItems/b95a72c5-c8ca-457/recoveryPoints/32b692e1-3a06-4/revokeInstantItemRecovery"; 24728Requests[4886].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24729Requests[4886].Request.Path = "/subscriptions/8ef05ee2-781c-/resourceGroups/78f9c373-a686-404/providers/Microsoft.Sql/servers/312f41ef-2/jobAgents/2e8ab256-37e/jobs/9d1a102/executions/df235d4e-6b52-/steps/8216ce10/targets"; 24732Requests[4887].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24733Requests[4887].Request.Path = "/subscriptions/47175220-f905-/resourceGroups/f31cbd83-463c-475/providers/Microsoft.Sql/servers/93e39bd7-a/jobAgents/692bd4f0-7da/jobs/e2acbe3/executions/2d417930-bdba-/steps/60d9cd32/targets/bc2c470e"; 24736Requests[4888].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24737Requests[4888].Request.Path = "/subscriptions/10516263-3f7e-/resourceGroups/1bf8d1fa-8d07-491/providers/Microsoft.ApiManagement/service/8abe0ca6-f3/quotas/fdc8f7ad-68ea-4/c4f6b972-57e7-"; 24740Requests[4889].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24741Requests[4889].Request.Path = "/subscriptions/139989cd-4c93-/resourceGroups/7329f758-a676-43b/providers/Microsoft.ApiManagement/service/ce71dc48-0b/quotas/09113d7e-b53b-4/b84538da-c0f7-"; 24744Requests[4890].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24745Requests[4890].Request.Path = "/subscriptions/bebbca39-7129-/resourceGroups/ef380694-998a-4f2/providers/Microsoft.Security/locations/6286daec-c5/alerts/9ffca175-/7efdabd8-b923-4889-9f"; 24748Requests[4891].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24749Requests[4891].Request.Path = "/subscriptions/6ee130bd-d040-/resourceGroups/618ad18a-c334-461/providers/Microsoft.Security/locations/8577d61f-7e/jitNetworkAccessPolicies/9882efd6-85ce-4f32-8284-be/c61f90c6-a4d2-4269-987c-12d977d8"; 24752Requests[4892].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 24753Requests[4892].Request.Path = "/subscriptions/4f0fda55-2e6d-/resourceGroups/81831a56-1777-474/providers/Microsoft.Security/locations/5c01f027-1a/tasks/f6d95d99/130cf9c8-3fa2-40c2-9"; 24756Requests[4893].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24757Requests[4893].Request.Path = "/subscriptions/781d1560-c2b2-/resourceGroups/efb28a26-02cc-4ab/providers/microsoft.insights/components/b8e7b533-031/e62635a6-"; 24760Requests[4894].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24761Requests[4894].Request.Path = "/subscriptions/6460ce03-3a13-/resourceGroups/56caf886-83db-463/providers/Microsoft.Network/dnsZones/16b2c706/1178a933-3"; 24764Requests[4895].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24765Requests[4895].Request.Path = "/subscriptions/e7295fec-c8d2-/resourceGroups/2a3fbd09-de1c-4f8/providers/microsoft.insights/components/95fcaeb6-dbc/d800ae67-/item"; 24768Requests[4896].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24769Requests[4896].Request.Path = "/subscriptions/98fde1ef-5349-/resourceGroups/7aa9f7db-3064-487/providers/microsoft.insights/components/7a308ab3-f78/08d3cf9d-/item"; 24772Requests[4897].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24773Requests[4897].Request.Path = "/subscriptions/fa32c24a-af64-/resourceGroups/3e1dfba9-695c-434/providers/microsoft.insights/components/f312f7b4-0dc/f2e2defe-/item"; 24776Requests[4898].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24777Requests[4898].Request.Path = "/subscriptions/93df41b3-fc67-/resourceGroups/d520b710-03ae-48a/providers/Microsoft.Network/dnsZones/ce35f393/541714ab-1/fb26f6de-64fc-42bd-83"; 24780Requests[4899].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24781Requests[4899].Request.Path = "/subscriptions/965c9a6b-569a-/resourceGroups/196bb97b-64f0-412/providers/Microsoft.Network/dnsZones/6babb5bd/618803f9-3/5fbccdb7-2dd4-4bdf-84"; 24784Requests[4900].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24785Requests[4900].Request.Path = "/subscriptions/cdbc08bb-e60c-/resourceGroups/a8bd0da5-1e37-4a9/providers/Microsoft.Network/dnsZones/c4dcb792/599675bc-c/501d9ae8-eea3-473c-a0"; 24788Requests[4901].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24789Requests[4901].Request.Path = "/subscriptions/aac7f575-2574-/resourceGroups/360fd650-0c06-4df/providers/Microsoft.Network/dnsZones/80a15c4c/21658587-3/eb04c2c0-42b8-4393-8b"; 24792Requests[4902].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24793Requests[4902].Request.Path = "/subscriptions/2b0b8b47-272a-/resourceGroups/c4cfd748-836f-40a/providers/Microsoft.Network/trafficmanagerprofiles/95da7bfe-8a/e57a6b8c-ebc/5d3607df-b75"; 24796Requests[4903].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24797Requests[4903].Request.Path = "/subscriptions/30aa405c-daed-/resourceGroups/05e61d9d-633f-42e/providers/Microsoft.Network/trafficmanagerprofiles/285791ed-46/d067f0ee-bd8/1408e0ed-fc3"; 24800Requests[4904].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24801Requests[4904].Request.Path = "/subscriptions/3a5e0092-20bc-/resourceGroups/ff3263fc-17c8-4f0/providers/Microsoft.Network/trafficmanagerprofiles/e05c26bf-17/a0ce2c72-951/623e9e51-c90"; 24804Requests[4905].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24805Requests[4905].Request.Path = "/subscriptions/5868afd5-497e-/resourceGroups/d1387aed-7d24-4ef/providers/Microsoft.Network/trafficmanagerprofiles/12a07228-c3/aa803c65-465/f895e1f3-6fc"; 24808Requests[4906].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24809Requests[4906].Request.Path = "/apis/513f5/operations/82d8cbc5-8e/policies/ce1cf724"; 24812Requests[4907].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24813Requests[4907].Request.Path = "/apis/241b2/operations/b8a899d7-cf/policies/b439928c"; 24816Requests[4908].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24817Requests[4908].Request.Path = "/apis/fb89b/operations/477c1598-f6/policies/dbe60b1a"; 24820Requests[4909].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24821Requests[4909].Request.Path = "/apps/8d0ce/versions/d95f8dde-/closedlists/e790e7da-d"; 24824Requests[4910].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24825Requests[4910].Request.Path = "/apps/33ee0/versions/fdf9052c-/closedlists/bdcf2d17-9"; 24828Requests[4911].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24829Requests[4911].Request.Path = "/apps/f71af/versions/72848dbc-/closedlists/d8365b20-d"; 24832Requests[4912].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24833Requests[4912].Request.Path = "/apps/08c50/versions/430dba37-/closedlists/f98200ba-3"; 24836Requests[4913].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24837Requests[4913].Request.Path = "/apps/11190/versions/28869cce-/compositeentities/0a063510-"; 24840Requests[4914].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24841Requests[4914].Request.Path = "/apps/79c0c/versions/6b0c5e98-/compositeentities/06ee5ee4-"; 24844Requests[4915].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24845Requests[4915].Request.Path = "/apps/c9593/versions/0a7d01df-/compositeentities/06efb9fc-"; 24848Requests[4916].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24849Requests[4916].Request.Path = "/apps/bb9c7/versions/4476452c-/customprebuiltdomains/a854413c-0"; 24852Requests[4917].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24853Requests[4917].Request.Path = "/apps/fb8e9/versions/190c27d8-/entities/c6cb4815"; 24856Requests[4918].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24857Requests[4918].Request.Path = "/apps/83c5d/versions/1231a7c7-/entities/5a855ffe"; 24860Requests[4919].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24861Requests[4919].Request.Path = "/apps/e1f0f/versions/9021c575-/entities/f4250272"; 24864Requests[4920].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24865Requests[4920].Request.Path = "/apps/01fcd/versions/4d12d914-/examples/7912fbb1-"; 24868Requests[4921].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24869Requests[4921].Request.Path = "/apps/2f459/versions/5ecb7b06-/hierarchicalentities/a1ec199f-"; 24872Requests[4922].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24873Requests[4922].Request.Path = "/apps/ccb5c/versions/6bdc7397-/hierarchicalentities/8ad2c293-"; 24876Requests[4923].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24877Requests[4923].Request.Path = "/apps/a9c06/versions/97497c94-/hierarchicalentities/57dfd669-"; 24880Requests[4924].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24881Requests[4924].Request.Path = "/apps/1dc7e/versions/1f2523be-/intents/54cb2658"; 24884Requests[4925].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24885Requests[4925].Request.Path = "/apps/56167/versions/20a9a4b4-/intents/ac15f564"; 24888Requests[4926].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24889Requests[4926].Request.Path = "/apps/afb3f/versions/4e632218-/intents/15fb0650"; 24892Requests[4927].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24893Requests[4927].Request.Path = "/apps/7b893/versions/7c7090bf-/patternanyentities/98457a87"; 24896Requests[4928].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24897Requests[4928].Request.Path = "/apps/deb56/versions/f0261165-/patternanyentities/f455956e"; 24900Requests[4929].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24901Requests[4929].Request.Path = "/apps/5886f/versions/44c1838a-/patternanyentities/78469290"; 24904Requests[4930].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24905Requests[4930].Request.Path = "/apps/8a120/versions/cfafadc1-/patternrules/c20cc4bd-"; 24908Requests[4931].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24909Requests[4931].Request.Path = "/apps/62ef2/versions/d006d772-/patternrules/f9d3478b-"; 24912Requests[4932].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24913Requests[4932].Request.Path = "/apps/0aca5/versions/0973ee92-/patterns/14e1d8d3-"; 24916Requests[4933].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24917Requests[4933].Request.Path = "/apps/5f1c7/versions/f81ffbf4-/patterns/f77ececd-"; 24920Requests[4934].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24921Requests[4934].Request.Path = "/apps/881e8/versions/eb3cdb2f-/patterns/6410c0e8-"; 24924Requests[4935].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24925Requests[4935].Request.Path = "/apps/87459/versions/231abce1-/phraselists/f74a2608-b9e"; 24928Requests[4936].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24929Requests[4936].Request.Path = "/apps/e9901/versions/bdfb8075-/phraselists/09d5483f-343"; 24932Requests[4937].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24933Requests[4937].Request.Path = "/apps/ebe37/versions/4966c96b-/phraselists/1ac342f9-617"; 24936Requests[4938].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24937Requests[4938].Request.Path = "/apps/ab712/versions/455e7e97-/prebuilts/b7b8747e-7"; 24940Requests[4939].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24941Requests[4939].Request.Path = "/apps/cbe09/versions/92caa256-/prebuilts/f40b3c83-7"; 24944Requests[4940].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24945Requests[4940].Request.Path = "/apps/45afa/versions/d0f204aa-/regexentities/4f610950-454b"; 24948Requests[4941].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24949Requests[4941].Request.Path = "/apps/799b0/versions/ede12146-/regexentities/50ee8a63-87f9"; 24952Requests[4942].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24953Requests[4942].Request.Path = "/apps/d79e9/versions/c3ee5796-/regexentities/b1455842-1804"; 24956Requests[4943].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24957Requests[4943].Request.Path = "/jobs/2a3fc/tasks/7780a6/files/a9cec738"; 24960Requests[4944].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24961Requests[4944].Request.Path = "/jobs/78da7/tasks/949653/files/8d67c742"; 24964Requests[4945].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24965Requests[4945].Request.Path = "/jobs/204f4/tasks/172563/files/2fee5574"; 24968Requests[4946].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24969Requests[4946].Request.Path = "/persongroups/857e54fc-4350/persons/5b186435/persistedFaces/977982f4-190f-4"; 24972Requests[4947].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24973Requests[4947].Request.Path = "/persongroups/aa14cb16-af27/persons/f7b0f457/persistedFaces/bb539487-2023-4"; 24976Requests[4948].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 24977Requests[4948].Request.Path = "/persongroups/67d72e12-48c3/persons/93bd0ecb/persistedFaces/afe882c4-f74d-4"; 24980Requests[4949].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 24981Requests[4949].Request.Path = "/pools/fc4e31/nodes/c4c148/files/f3928014"; 24984Requests[4950].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24985Requests[4950].Request.Path = "/pools/d687bd/nodes/e2c6e6/files/fc34c099"; 24988Requests[4951].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 24989Requests[4951].Request.Path = "/pools/6f9a58/nodes/5c6fc8/files/6f691424"; 24992Requests[4952].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 24993Requests[4952].Request.Path = "/pools/d0224b/nodes/d031bf/users/f7f0d225"; 24996Requests[4953].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 24997Requests[4953].Request.Path = "/pools/d55a60/nodes/f42add/users/6c156708"; 25000Requests[4954].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25001Requests[4954].Request.Path = "/subscriptions/59118636-503f-/tagNames/4bf538c/tagValues/39540536"; 25004Requests[4955].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25005Requests[4955].Request.Path = "/subscriptions/54d7bf4e-6836-/tagNames/3020c6f/tagValues/cd00b0fb"; 25008Requests[4956].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25009Requests[4956].Request.Path = "/apps/9cfcd/versions/b058858b-/closedlists/6769ebd7-6/sublists"; 25012Requests[4957].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25013Requests[4957].Request.Path = "/apps/ac654/versions/4168564a-/closedlists/08a8d948/roles"; 25016Requests[4958].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25017Requests[4958].Request.Path = "/apps/4770d/versions/f554c2a5-/closedlists/46782ea8/roles"; 25020Requests[4959].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25021Requests[4959].Request.Path = "/apps/e358a/versions/dbe3f466-/compositeentities/f4b37cbe-/children"; 25024Requests[4960].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25025Requests[4960].Request.Path = "/apps/4ff32/versions/a02f5a8c-/compositeentities/49b935f0-/roles"; 25028Requests[4961].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25029Requests[4961].Request.Path = "/apps/6f1c7/versions/88ea8074-/compositeentities/976cfeb6-/roles"; 25032Requests[4962].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25033Requests[4962].Request.Path = "/apps/9f1aa/versions/4edca212-/customprebuiltentities/b9a9e93f/roles"; 25036Requests[4963].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25037Requests[4963].Request.Path = "/apps/27086/versions/1275fbea-/customprebuiltentities/008b3d43/roles"; 25040Requests[4964].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25041Requests[4964].Request.Path = "/apps/2fedd/versions/2973e55e-/entities/71306ee8/roles"; 25044Requests[4965].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25045Requests[4965].Request.Path = "/apps/32345/versions/843aa7ba-/entities/3ca2fbb7/roles"; 25048Requests[4966].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25049Requests[4966].Request.Path = "/apps/109cd/versions/dc33f23d-/entities/eb481b08/suggest"; 25052Requests[4967].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25053Requests[4967].Request.Path = "/apps/44756/versions/6612fa28-/hierarchicalentities/659112ae-/children"; 25056Requests[4968].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25057Requests[4968].Request.Path = "/apps/503a4/versions/3f96ae06-/hierarchicalentities/77d26a1c-/roles"; 25060Requests[4969].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25061Requests[4969].Request.Path = "/apps/4b384/versions/6fc4ea30-/hierarchicalentities/142f7935-/roles"; 25064Requests[4970].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25065Requests[4970].Request.Path = "/apps/d427b/versions/09389cc8-/intents/77698b76/patternrules"; 25068Requests[4971].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25069Requests[4971].Request.Path = "/apps/51949/versions/b42f1245-/intents/68a76c06/suggest"; 25072Requests[4972].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25073Requests[4972].Request.Path = "/apps/cc8a9/versions/371f1203-/models/635ea29/examples"; 25076Requests[4973].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25077Requests[4973].Request.Path = "/apps/1986b/versions/827ede0e-/patternanyentities/32a3e3ff/explicitlist"; 25080Requests[4974].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25081Requests[4974].Request.Path = "/apps/2d14b/versions/facb0c8c-/patternanyentities/3f381cab/explicitlist"; 25084Requests[4975].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25085Requests[4975].Request.Path = "/apps/d8769/versions/e878fb2a-/patternanyentities/2f72569a/roles"; 25088Requests[4976].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25089Requests[4976].Request.Path = "/apps/9716f/versions/56fa8516-/patternanyentities/36176239/roles"; 25092Requests[4977].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25093Requests[4977].Request.Path = "/apps/32dca/versions/1a1c13d9-/prebuilts/90a7c512/roles"; 25096Requests[4978].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25097Requests[4978].Request.Path = "/apps/a7377/versions/31cb93b4-/prebuilts/93f1a619/roles"; 25100Requests[4979].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25101Requests[4979].Request.Path = "/apps/a1a07/versions/a50b7579-/regexentities/9118f3a1/roles"; 25104Requests[4980].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25105Requests[4980].Request.Path = "/apps/4ce26/versions/77350f22-/regexentities/1d3ec769/roles"; 25108Requests[4981].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25109Requests[4981].Request.Path = "/subscriptions/fe9bdacb-e66f-/resourcegroups/8ae62abb-8c61-434/deployments/931fea78-c988-/operations"; 25112Requests[4982].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25113Requests[4982].Request.Path = "/subscriptions/47a153ca-ebcf-/providers/43a986b4-ef9d-43a3-8d1/policyAssignments/80593655-3c52-4b2f-9/providers/Microsoft.PolicyInsights/policyEvents/6e99d422-76ee-4729-b/queryResults"; 25116Requests[4983].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25117Requests[4983].Request.Path = "/subscriptions/74dff5c6-eff2-/providers/0b394798-f9ca-4acc-85e/policyAssignments/f6900f5c-f118-4174-8/providers/Microsoft.PolicyInsights/policyStates/0371ca15-aab0-4940-a/queryResults"; 25120Requests[4984].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25121Requests[4984].Request.Path = "/subscriptions/b538566f-7407-/providers/8d33d38d-6c2f-41c3-9e9/policyAssignments/08edf96a-d6d1-45b5-b/providers/Microsoft.PolicyInsights/policyStates/874eb626-5bcf-46d2-a580-024/summarize"; 25124Requests[4985].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25125Requests[4985].Request.Path = "/subscriptions/906a30e2-8c52-/providers/d143741c-1a4f-4ae9-bbd/policyDefinitions/3430f279-4d2d-4b71-b/providers/Microsoft.PolicyInsights/policyEvents/4b28cc10-4da1-4c37-8/queryResults"; 25128Requests[4986].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25129Requests[4986].Request.Path = "/subscriptions/9183f628-d864-/providers/4df7c50a-e8c1-4e27-88b/policyDefinitions/42a71756-ac96-4478-9/providers/Microsoft.PolicyInsights/policyStates/7b1ec2b6-2573-4f95-8/queryResults"; 25132Requests[4987].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25133Requests[4987].Request.Path = "/subscriptions/83916afc-86c1-/providers/8a9a4fdc-f1b4-4a7b-ae6/policyDefinitions/be9c98dc-070c-4dc7-b/providers/Microsoft.PolicyInsights/policyStates/ddc5f035-2103-4691-8057-dd5/summarize"; 25136Requests[4988].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25137Requests[4988].Request.Path = "/subscriptions/5b55e841-40d0-/providers/f142c058-e8f9-426e-867/policySetDefinitions/7da31f86-3b8b-4ff0-a744/providers/Microsoft.PolicyInsights/policyEvents/1e4a3e58-f94a-409f-b/queryResults"; 25140Requests[4989].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25141Requests[4989].Request.Path = "/subscriptions/931f2f60-7e15-/providers/4beb2864-79e3-480e-83f/policySetDefinitions/48336faf-c7ee-4e10-8eb3/providers/Microsoft.PolicyInsights/policyStates/16dc7ac7-db30-4880-b/queryResults"; 25144Requests[4990].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25145Requests[4990].Request.Path = "/subscriptions/60ff1159-889b-/providers/eb349cb7-c1d1-47fc-bd0/policySetDefinitions/29825e44-1752-406f-acaf/providers/Microsoft.PolicyInsights/policyStates/3696f01b-8a8d-42d2-b616-105/summarize"; 25148Requests[4991].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25149Requests[4991].Request.Path = "/apps/edc59/versions/551a1c27-/closedlists/8c2412a8-2/sublists/83875052-"; 25152Requests[4992].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25153Requests[4992].Request.Path = "/apps/08ffc/versions/c9e12ad1-/closedlists/a95a45ca-3/sublists/068e5721-"; 25156Requests[4993].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25157Requests[4993].Request.Path = "/apps/cc09a/versions/d70e2332-/closedlists/ce5ebbe3/roles/de9e81"; 25160Requests[4994].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25161Requests[4994].Request.Path = "/apps/75a08/versions/78ff5008-/closedlists/d6ddc1b9/roles/e927c4"; 25164Requests[4995].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25165Requests[4995].Request.Path = "/apps/c9296/versions/2dbf6652-/closedlists/67a399ce/roles/806005"; 25168Requests[4996].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25169Requests[4996].Request.Path = "/apps/20482/versions/91038f78-/compositeentities/072206ac-/children/575d7e4d"; 25172Requests[4997].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25173Requests[4997].Request.Path = "/apps/79452/versions/afe535c2-/compositeentities/ea8ea533-/roles/693ea1"; 25176Requests[4998].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25177Requests[4998].Request.Path = "/apps/be496/versions/b9da6808-/compositeentities/36a34b7d-/roles/f52586"; 25180Requests[4999].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25181Requests[4999].Request.Path = "/apps/f00b3/versions/53fd696b-/compositeentities/efb6b767-/roles/3f387b"; 25184Requests[5000].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25185Requests[5000].Request.Path = "/apps/6bd08/versions/d98f0c88-/customprebuiltentities/478cea50/roles/d480dc"; 25188Requests[5001].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25189Requests[5001].Request.Path = "/apps/3a9ae/versions/0f6b151f-/customprebuiltentities/8ba5a3c3/roles/45b9c2"; 25192Requests[5002].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25193Requests[5002].Request.Path = "/apps/f6b28/versions/49b2bab7-/customprebuiltentities/4c0d2e36/roles/0f5d03"; 25196Requests[5003].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25197Requests[5003].Request.Path = "/apps/f4cbe/versions/afe14ea6-/entities/28e6c2de/roles/80ea17"; 25200Requests[5004].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25201Requests[5004].Request.Path = "/apps/1a09d/versions/e29a2af3-/entities/e1ef95cb/roles/0a6ad2"; 25204Requests[5005].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25205Requests[5005].Request.Path = "/apps/3a82b/versions/825992db-/entities/b7865a80/roles/bfb58a"; 25208Requests[5006].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25209Requests[5006].Request.Path = "/apps/46897/versions/532f9544-/hierarchicalentities/c05328c7-/children/9fc4adce"; 25212Requests[5007].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25213Requests[5007].Request.Path = "/apps/51dea/versions/160a594c-/hierarchicalentities/90a57acb-/children/84c0c425"; 25216Requests[5008].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25217Requests[5008].Request.Path = "/apps/a7215/versions/03a0207e-/hierarchicalentities/251ba12d-/children/8608e422"; 25220Requests[5009].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25221Requests[5009].Request.Path = "/apps/baa14/versions/2ec5e49c-/hierarchicalentities/fa5b7395-/roles/884d6d"; 25224Requests[5010].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25225Requests[5010].Request.Path = "/apps/bf0d3/versions/70695e1b-/hierarchicalentities/1d6ada09-/roles/498a98"; 25228Requests[5011].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25229Requests[5011].Request.Path = "/apps/d0b43/versions/230196c4-/hierarchicalentities/c0b9543c-/roles/853491"; 25232Requests[5012].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25233Requests[5012].Request.Path = "/apps/1af84/versions/33e6b9c1-/patternanyentities/28d5a5d6/explicitlist/60557e"; 25236Requests[5013].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25237Requests[5013].Request.Path = "/apps/6bc14/versions/ed5af8f8-/patternanyentities/b1244dcd/explicitlist/1f1f1b"; 25240Requests[5014].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25241Requests[5014].Request.Path = "/apps/b3a3d/versions/3f2f37ab-/patternanyentities/5f6976c0/explicitlist/b53473"; 25244Requests[5015].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25245Requests[5015].Request.Path = "/apps/ec879/versions/7b54beb5-/patternanyentities/b4710f47/roles/0f4614"; 25248Requests[5016].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25249Requests[5016].Request.Path = "/apps/e3169/versions/af95ed6f-/patternanyentities/821e3388/roles/956530"; 25252Requests[5017].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25253Requests[5017].Request.Path = "/apps/d5d21/versions/14145059-/patternanyentities/7a38066f/roles/ca4430"; 25256Requests[5018].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25257Requests[5018].Request.Path = "/apps/83814/versions/bac094a9-/prebuilts/b3f4d3c7/roles/49be97"; 25260Requests[5019].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25261Requests[5019].Request.Path = "/apps/c6959/versions/cb5e283a-/prebuilts/43017212/roles/0a6127"; 25264Requests[5020].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25265Requests[5020].Request.Path = "/apps/f0057/versions/296d2204-/prebuilts/6e326b95/roles/bf9296"; 25268Requests[5021].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25269Requests[5021].Request.Path = "/apps/6bb20/versions/0b280ee7-/regexentities/ef17de58/roles/c874d3"; 25272Requests[5022].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25273Requests[5022].Request.Path = "/apps/021e8/versions/884491da-/regexentities/1497ccb5/roles/95490f"; 25276Requests[5023].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25277Requests[5023].Request.Path = "/apps/56bbd/versions/fac60968-/regexentities/38b5feb8/roles/d206af"; 25280Requests[5024].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25281Requests[5024].Request.Path = "/subscriptions/13b8699a-bcd4-/resourcegroups/39ecad98-cc84-431/deployments/a8fb576e-68e9-/operations/568a987e-52"; 25284Requests[5025].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25285Requests[5025].Request.Path = "/subscriptions/dedf2b20-f675-/resourcegroups/078dbccb-9ce1-4ee/providers/cf160766-6383-460e-94c/policyAssignments/601aca92-da9e-4798-8/providers/Microsoft.PolicyInsights/policyEvents/d62eb140-909d-47d2-b/queryResults"; 25288Requests[5026].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25289Requests[5026].Request.Path = "/subscriptions/7810f743-b958-/resourcegroups/067b2667-bfb4-498/providers/41a8bed7-da8a-4294-8ec/policyAssignments/0db46310-7e9a-4da0-9/providers/Microsoft.PolicyInsights/policyStates/ccf8b029-97ff-4c39-9/queryResults"; 25292Requests[5027].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25293Requests[5027].Request.Path = "/subscriptions/717927d0-dcbe-/resourcegroups/cf41613e-1c56-40b/providers/cc9c586f-3e1e-4df7-964/policyAssignments/a9048424-5989-42b4-a/providers/Microsoft.PolicyInsights/policyStates/b743ddc3-5159-48a2-aa7b-abc/summarize"; 25296Requests[5028].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25297Requests[5028].Request.Path = "/subscriptions/1e3d2345-23ff-/resourceGroups/c34bd6e6-4530-45c/providers/f4778a3a-046c-4a2/ef4a3056-425d-4f/86159148-52a/providers/Microsoft.EventGrid/eventSubscriptions"; 25300Requests[5029].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25301Requests[5029].Request.Path = "/subscriptions/aa61dfbd-2f53-/resourceGroups/f61158ad-c233-4a6/providers/5776c647-43a3-45b/44086290-2050-45/b29c60a9-07a/providers/Microsoft.EventGrid/eventTypes"; 25304Requests[5030].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25305Requests[5030].Request.Path = "/subscriptions/1a4ccbe3-87f9-/resourcegroups/088e9732-d42a-42a/providers/3035e168-62e/de772962-480/458a2354-592/providers/Microsoft.OperationsManagement/ManagementAssociations/f5283bb4-813a-4bb2-a850-f"; 25308Requests[5031].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25309Requests[5031].Request.Path = "/subscriptions/8fb9e951-546d-/resourcegroups/f30da3ef-f202-4d8/providers/ee4a562c-c62/e350d53c-f0a/3caa805c-d78/providers/Microsoft.OperationsManagement/ManagementAssociations/113a7ef4-7dfe-4810-b3dd-2"; 25312Requests[5032].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25313Requests[5032].Request.Path = "/subscriptions/36e108db-8e05-/resourcegroups/71638b37-01b5-4c0/providers/2e9073ec-f55/21a666b2-420/0c17f98d-7e5/providers/Microsoft.OperationsManagement/ManagementAssociations/6e2cddd5-0fc6-474d-b939-1"; 25316Requests[5033].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25317Requests[5033].Request.Path = "/subscriptions/74438ae1-fbdd-/resourcegroups/ab836d16-b3c5-471/providers/0d7c7b8d-db05-45a8-8b71-1/9ed702db-16ad-43c1/f139f812-713/af1f81f1-903"; 25320Requests[5034].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25321Requests[5034].Request.Path = "/subscriptions/43dea823-907e-/resourcegroups/155ad3fc-2e75-4f7/providers/de9a1b74-e4e1-4d71-9c12-7/c6811194-c174-4ffe/a2d577b1-8db/d7ecebb8-760"; 25324Requests[5035].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25325Requests[5035].Request.Path = "/subscriptions/439e900d-4744-/resourcegroups/5e82e31e-ec5d-4ea/providers/529335f9-2845-4bc1-bf2a-6/b06cc901-3097-4c74/e063a8ac-b59/bff8051c-fd2"; 25328Requests[5036].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25329Requests[5036].Request.Path = "/subscriptions/36fc7f98-7327-/resourcegroups/d2ba89fa-e76a-4a9/providers/6bd39142-324a-4cb6-b3ee-c/d43e1ed1-a760-4c67/a6face59-553/d6a1a244-813"; 25332Requests[5037].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 25333Requests[5037].Request.Path = "/subscriptions/069c0934-25b6-/resourcegroups/5dd81c92-f5ee-407/providers/e1d26ff3-179a-4c50-891c-9/582ebc06-162e-46c1/8aa73949-24e/3badcda8-e9e"; 25336Requests[5038].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25337Requests[5038].Request.Path = "/subscriptions/1219a54f-e6ac-/resourcegroups/362c2331-7ea0-47d/providers/2adeacbc-d255-43d5-b359-f/db78dbf6-bbb3-4897/9bf7b68b-a8d/018850fa-627/providers/Microsoft.Authorization/locks"; 25340Requests[5039].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25341Requests[5039].Request.Path = "/subscriptions/83abee65-fdac-/resourcegroups/eb294e02-c047-4d6/providers/59f2401d-fa6f-470f-8822-3/5f573675-b2f1-4683/8a2661c5-7cb/ff79db51-cf2/providers/Microsoft.Authorization/permissions"; 25344Requests[5040].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25345Requests[5040].Request.Path = "/subscriptions/7e361294-0a1f-/resourcegroups/40e8159f-4d7f-4da/providers/0fd28ae8-39f7-4df0-b0c5-4/9b12dda7-e61b-4ca8/bf092504-ee6/0ce51f44-616/providers/Microsoft.Authorization/policyAssignments"; 25348Requests[5041].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25349Requests[5041].Request.Path = "/subscriptions/b178324c-582e-/resourcegroups/dee9ffb4-c4e4-40d/providers/e9dc806d-71e9-47d2-af6d-2/7b44ac52-5162-42c6/0dc29e96-686/5229078b-aa2/providers/Microsoft.Authorization/roleAssignments"; 25352Requests[5042].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25353Requests[5042].Request.Path = "/subscriptions/c442eebe-78dd-/resourcegroups/d65b0944-1a30-411/providers/c54766cd-a5cd-462c-a4cc-3/0ef5349f-0b1b-4dbf/3f249cab-19c/8f91892f-fda/providers/Microsoft.Authorization/locks/55162ea5"; 25356Requests[5043].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25357Requests[5043].Request.Path = "/subscriptions/1c30caf9-dac1-/resourcegroups/7e7ae60e-9e89-448/providers/5426257f-8edc-405c-994a-5/b9504741-9b13-4d16/2913b624-1a9/523b979d-e3d/providers/Microsoft.Authorization/locks/84b12a2b"; 25360Requests[5044].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25361Requests[5044].Request.Path = "/subscriptions/0ea6ef70-10d4-/resourcegroups/d63e828f-fb2a-4ec/providers/54a56cf4-28a6-4f07-aab2-2/7c859222-abfb-47db/36264697-da9/4d00ee65-59b/providers/Microsoft.Authorization/locks/f808e468"; 25364Requests[5045].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25365Requests[5045].Request.Path = "/apps/a7ff8/events/bd4e75ce-/f4d58eb"; 25368Requests[5046].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25369Requests[5046].Request.Path = "/certificates/bccd0cd0-3781-47/989d355c-33d4-4c88-"; 25372Requests[5047].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25373Requests[5047].Request.Path = "/certificates/6cfef54f-17ed-4f/cb190d66-974b-4b36-"; 25376Requests[5048].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25377Requests[5048].Request.Path = "/keys/aaa01248/55d587b4-e3"; 25380Requests[5049].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25381Requests[5049].Request.Path = "/keys/6439a236/534e6909-3c"; 25384Requests[5050].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25385Requests[5050].Request.Path = "/quotas/00809cfe-6030-4/9a95d29f-1dac-"; 25388Requests[5051].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25389Requests[5051].Request.Path = "/quotas/624d8259-5166-4/fa9dd3b7-5e5f-"; 25392Requests[5052].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25393Requests[5052].Request.Path = "/secrets/1859a1e2-67/4435e75a-b8fc-"; 25396Requests[5053].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25397Requests[5053].Request.Path = "/secrets/ca624bcd-b6/a23372d7-fa68-"; 25400Requests[5054].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25401Requests[5054].Request.Path = "/keys/6813d254/69f2e5df-b5/decrypt"; 25404Requests[5055].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25405Requests[5055].Request.Path = "/keys/61b89e0f/282e27ea-23/encrypt"; 25408Requests[5056].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25409Requests[5056].Request.Path = "/keys/a349c59c/9f616fd8-82/sign"; 25412Requests[5057].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25413Requests[5057].Request.Path = "/keys/a74e6ac5/b142ac41-7c/unwrapkey"; 25416Requests[5058].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25417Requests[5058].Request.Path = "/keys/905a052f/12a9ab53-45/verify"; 25420Requests[5059].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25421Requests[5059].Request.Path = "/keys/4dc2a804/a934a0ac-05/wrapkey"; 25424Requests[5060].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25425Requests[5060].Request.Path = "/eb9c0"; 25428Requests[5061].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25429Requests[5061].Request.Path = "/a040db6f-8992-42a3-b45a"; 25432Requests[5062].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25433Requests[5062].Request.Path = "/9b53836f-a86e-4445-9d33"; 25436Requests[5063].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25437Requests[5063].Request.Path = "/b5c159a7-25f1-4b1a-8fc9"; 25440Requests[5064].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25441Requests[5064].Request.Path = "/df936d60-9832"; 25444Requests[5065].Request.Method = HttpMethods.GetCanonicalizedValue("HEAD"); 25445Requests[5065].Request.Path = "/c39de944-4"; 25448Requests[5066].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25449Requests[5066].Request.Path = "/26e97936-/image"; 25452Requests[5067].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25453Requests[5067].Request.Path = "/e448d1db-/url"; 25456Requests[5068].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25457Requests[5068].Request.Path = "/6cca6ee6/applications"; 25460Requests[5069].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25461Requests[5069].Request.Path = "/d613f0b5/applications"; 25464Requests[5070].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25465Requests[5070].Request.Path = "/533dcddd/domains"; 25468Requests[5071].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25469Requests[5071].Request.Path = "/5566b187/getObjectsByObjectIds"; 25472Requests[5072].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25473Requests[5072].Request.Path = "/206424ea/groups"; 25476Requests[5073].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25477Requests[5073].Request.Path = "/55892cc8/groups"; 25480Requests[5074].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25481Requests[5074].Request.Path = "/bae8bf34/isMemberOf"; 25484Requests[5075].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25485Requests[5075].Request.Path = "/a1c1ed4d/me"; 25488Requests[5076].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25489Requests[5076].Request.Path = "/d2c050a6/servicePrincipals"; 25492Requests[5077].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25493Requests[5077].Request.Path = "/faf07559/servicePrincipals"; 25496Requests[5078].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25497Requests[5078].Request.Path = "/758073a8/users"; 25500Requests[5079].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25501Requests[5079].Request.Path = "/d90b419c/users"; 25504Requests[5080].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25505Requests[5080].Request.Path = "/2c7ad1ba-/image/nostore"; 25508Requests[5081].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25509Requests[5081].Request.Path = "/0f8cedac-/url/nostore"; 25512Requests[5082].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25513Requests[5082].Request.Path = "/d3a508a0-c9/providers/microsoft.insights/calculatebaseline"; 25516Requests[5083].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25517Requests[5083].Request.Path = "/b2ef4c78-e8/providers/microsoft.insights/diagnosticSettings"; 25520Requests[5084].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25521Requests[5084].Request.Path = "/8d9e6aa1-dc/providers/microsoft.insights/diagnosticSettingsCategories"; 25524Requests[5085].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25525Requests[5085].Request.Path = "/d28d406c-8c/providers/microsoft.insights/metricDefinitions"; 25528Requests[5086].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25529Requests[5086].Request.Path = "/4f593faf-73/providers/microsoft.insights/metrics"; 25532Requests[5087].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25533Requests[5087].Request.Path = "/52668213-21/providers/Microsoft.ResourceHealth/availabilityStatuses"; 25536Requests[5088].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25537Requests[5088].Request.Path = "/7b91c/providers/Microsoft.Authorization/policyAssignments"; 25540Requests[5089].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25541Requests[5089].Request.Path = "/34ac8/providers/Microsoft.Authorization/roleAssignments"; 25544Requests[5090].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25545Requests[5090].Request.Path = "/09f60/providers/Microsoft.Authorization/roleDefinitions"; 25548Requests[5091].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25549Requests[5091].Request.Path = "/89a71/providers/Microsoft.Consumption/reservationDetails"; 25552Requests[5092].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25553Requests[5092].Request.Path = "/584cd/providers/Microsoft.Consumption/reservationSummaries"; 25556Requests[5093].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25557Requests[5093].Request.Path = "/9d134/providers/Microsoft.Consumption/usageDetails"; 25560Requests[5094].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25561Requests[5094].Request.Path = "/44360/providers/Microsoft.Resources/links"; 25564Requests[5095].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25565Requests[5095].Request.Path = "/058d9/providers/Microsoft.Security/compliances"; 25568Requests[5096].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25569Requests[5096].Request.Path = "/34aa56a1-6d/providers/microsoft.insights/diagnosticSettings/service"; 25572Requests[5097].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25573Requests[5097].Request.Path = "/f63a3420-03/providers/microsoft.insights/diagnosticSettings/service"; 25576Requests[5098].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25577Requests[5098].Request.Path = "/5a213cea-b4/providers/microsoft.insights/diagnosticSettings/service"; 25580Requests[5099].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25581Requests[5099].Request.Path = "/83c8ebd4-5f/providers/Microsoft.ResourceHealth/availabilityStatuses/current"; 25584Requests[5100].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25585Requests[5100].Request.Path = "/48463/providers/Microsoft.PolicyInsights/policyEvents/$metadata"; 25588Requests[5101].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25589Requests[5101].Request.Path = "/0f498/providers/Microsoft.PolicyInsights/policyStates/$metadata"; 25592Requests[5102].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25593Requests[5102].Request.Path = "/f051d5af-96/providers/Microsoft.Advisor/recommendations/f49c417e-2dc8-43"; 25596Requests[5103].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25597Requests[5103].Request.Path = "/21326800-61/providers/microsoft.insights/baseline/750728ba-a"; 25600Requests[5104].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25601Requests[5104].Request.Path = "/9cb3c23f-b5/providers/microsoft.insights/diagnosticSettings/35e09"; 25604Requests[5105].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25605Requests[5105].Request.Path = "/b6d270a7-06/providers/microsoft.insights/diagnosticSettings/35694"; 25608Requests[5106].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25609Requests[5106].Request.Path = "/c8132eff-ed/providers/microsoft.insights/diagnosticSettings/2c90e"; 25612Requests[5107].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25613Requests[5107].Request.Path = "/3ffd64f3-4c/providers/microsoft.insights/diagnosticSettingsCategories/59308"; 25616Requests[5108].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25617Requests[5108].Request.Path = "/a47b3/providers/Microsoft.Authorization/locks/436eb91a"; 25620Requests[5109].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25621Requests[5109].Request.Path = "/dfdea/providers/Microsoft.Authorization/locks/7443d6f4"; 25624Requests[5110].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25625Requests[5110].Request.Path = "/717ce/providers/Microsoft.Authorization/locks/32c03016"; 25628Requests[5111].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25629Requests[5111].Request.Path = "/29986/providers/Microsoft.Authorization/policyAssignments/e5f7dc9b-a02d-47b0-a"; 25632Requests[5112].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25633Requests[5112].Request.Path = "/7a993/providers/Microsoft.Authorization/policyAssignments/0cb7396d-d47f-4b18-8"; 25636Requests[5113].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25637Requests[5113].Request.Path = "/220cc/providers/Microsoft.Authorization/policyAssignments/09dd5597-76f9-40da-8"; 25640Requests[5114].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25641Requests[5114].Request.Path = "/0cb0e/providers/Microsoft.Authorization/roleAssignments/944179c6-5164-404c"; 25644Requests[5115].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25645Requests[5115].Request.Path = "/9f9e8/providers/Microsoft.Authorization/roleAssignments/9ae5aea9-b398-4bf6"; 25648Requests[5116].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25649Requests[5116].Request.Path = "/414f5/providers/Microsoft.Authorization/roleAssignments/59b5cef8-3d43-44ff"; 25652Requests[5117].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25653Requests[5117].Request.Path = "/fd6a3/providers/Microsoft.Authorization/roleDefinitions/1dee4cfb-41aa-48"; 25656Requests[5118].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25657Requests[5118].Request.Path = "/88962/providers/Microsoft.Authorization/roleDefinitions/95550e91-14a6-4a"; 25660Requests[5119].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25661Requests[5119].Request.Path = "/68123/providers/Microsoft.Authorization/roleDefinitions/6d249402-6f53-4c"; 25664Requests[5120].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25665Requests[5120].Request.Path = "/a5f62/providers/Microsoft.EventGrid/eventSubscriptions/594e6f54-6e92-44f2-93"; 25668Requests[5121].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25669Requests[5121].Request.Path = "/f5473/providers/Microsoft.EventGrid/eventSubscriptions/4fa85313-8d9f-467c-b1"; 25672Requests[5122].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25673Requests[5122].Request.Path = "/4c645/providers/Microsoft.EventGrid/eventSubscriptions/4634fbc5-d96b-4ef5-a7"; 25676Requests[5123].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25677Requests[5123].Request.Path = "/84698/providers/Microsoft.EventGrid/eventSubscriptions/eb84cc63-1e01-4817-84"; 25680Requests[5124].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25681Requests[5124].Request.Path = "/94e21/providers/Microsoft.Security/compliances/f7cbc736-c908-"; 25684Requests[5125].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25685Requests[5125].Request.Path = "/1554af9e-5/providers/Microsoft.PolicyInsights/policyEvents/50033f1d-85d8-4297-9/queryResults"; 25688Requests[5126].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25689Requests[5126].Request.Path = "/83810c7b-b/providers/Microsoft.PolicyInsights/policyStates/1fca322a-7854-490d-8/queryResults"; 25692Requests[5127].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25693Requests[5127].Request.Path = "/53aec485-7/providers/Microsoft.PolicyInsights/policyStates/805ced9d-bbbf-46d2-a3d7-44c/summarize"; 25696Requests[5128].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25697Requests[5128].Request.Path = "/48939/providers/Microsoft.EventGrid/eventSubscriptions/ee3d2958-3b99-4bb0-a2/getFullUrl"; 25700Requests[5129].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25701Requests[5129].Request.Path = "/6f497c14-d5/providers/Microsoft.Advisor/recommendations/5e7f13b8-6a2c-44/suppressions/e23e5"; 25704Requests[5130].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 25705Requests[5130].Request.Path = "/7cb414a5-ff/providers/Microsoft.Advisor/recommendations/44db4e18-5fc9-49/suppressions/b0dea"; 25708Requests[5131].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25709Requests[5131].Request.Path = "/d1e793b7-e3/providers/Microsoft.Advisor/recommendations/781d6f78-9eb7-45/suppressions/886d9"; 25712Requests[5132].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25713Requests[5132].Request.Path = "/19d78960/applications/ebf6b10b-e112-480b-"; 25716Requests[5133].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25717Requests[5133].Request.Path = "/bc2205fb/applications/fcb65994-aa4c-41f6-"; 25720Requests[5134].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25721Requests[5134].Request.Path = "/44e7851b/applications/c3b0e039-5bef-4291-"; 25724Requests[5135].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25725Requests[5135].Request.Path = "/0b5ab206/domains/46d06d5b-f"; 25728Requests[5136].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25729Requests[5136].Request.Path = "/c0177e65/groups/c600cde6"; 25732Requests[5137].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25733Requests[5137].Request.Path = "/fe8b0cba/groups/9c9bf526"; 25736Requests[5138].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25737Requests[5138].Request.Path = "/256857f2/servicePrincipals/566cc761"; 25740Requests[5139].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25741Requests[5139].Request.Path = "/861f668b/servicePrincipals/6fb90b06"; 25744Requests[5140].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25745Requests[5140].Request.Path = "/fb1866c5/users/f63284b7-54bc"; 25748Requests[5141].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25749Requests[5141].Request.Path = "/b5ba8659/users/2df785f3-6b69"; 25752Requests[5142].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25753Requests[5142].Request.Path = "/d3d0692e/users/1b2b55f4-2810"; 25756Requests[5143].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25757Requests[5143].Request.Path = "/18a12f9e-/images/d830eae/regionproposals"; 25760Requests[5144].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25761Requests[5144].Request.Path = "/a5f6ef50/applications/ba5c1d90-878c-42e0-/keyCredentials"; 25764Requests[5145].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25765Requests[5145].Request.Path = "/a34c9ef6/applications/09614e73-905f-477d-/keyCredentials"; 25768Requests[5146].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25769Requests[5146].Request.Path = "/ab97efeb/applications/f768000c-c7a0-4fe1-/owners"; 25772Requests[5147].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25773Requests[5147].Request.Path = "/e8c9fff6/applications/8d89ff6e-fed5-499c-/passwordCredentials"; 25776Requests[5148].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25777Requests[5148].Request.Path = "/b1393c92/applications/fc50cf9b-5cca-415b-/passwordCredentials"; 25780Requests[5149].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25781Requests[5149].Request.Path = "/695dfecf/groups/8354343e/getMemberGroups"; 25784Requests[5150].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25785Requests[5150].Request.Path = "/8008a9c8/groups/85722fdf/members"; 25788Requests[5151].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25789Requests[5151].Request.Path = "/8a5b0e45/servicePrincipals/9f620f11/keyCredentials"; 25792Requests[5152].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25793Requests[5152].Request.Path = "/1511f972/servicePrincipals/0c774cb3/keyCredentials"; 25796Requests[5153].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25797Requests[5153].Request.Path = "/5d9f79bd/servicePrincipals/386a4838/owners"; 25800Requests[5154].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 25801Requests[5154].Request.Path = "/351b58e4/servicePrincipals/fa316d04/passwordCredentials"; 25804Requests[5155].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 25805Requests[5155].Request.Path = "/5456a10f/servicePrincipals/171c0d9d/passwordCredentials"; 25808Requests[5156].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25809Requests[5156].Request.Path = "/5ac48b33/users/3fa883ab/getMemberGroups"; 25812Requests[5157].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25813Requests[5157].Request.Path = "/4d828b45/applications/f6b9b435-fce7-4e14-/$links/owners"; 25816Requests[5158].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 25817Requests[5158].Request.Path = "/39b6b141/groups/6cf0f0bc-b1db/$links/members"; 25820Requests[5159].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 25821Requests[5159].Request.Path = "/67fb987d/groups/04d01a8c-6135/$links/members/71b75dbe-0076-";
Matching\MatcherGithubBenchmarkBase.generated.cs (486)
267Requests[0].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 268Requests[0].Request.Path = "/emojis"; 271Requests[1].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 272Requests[1].Request.Path = "/events"; 275Requests[2].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 276Requests[2].Request.Path = "/feeds"; 279Requests[3].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 280Requests[3].Request.Path = "/gists"; 283Requests[4].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 284Requests[4].Request.Path = "/gists"; 287Requests[5].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 288Requests[5].Request.Path = "/issues"; 291Requests[6].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 292Requests[6].Request.Path = "/markdown"; 295Requests[7].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 296Requests[7].Request.Path = "/meta"; 299Requests[8].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 300Requests[8].Request.Path = "/notifications"; 303Requests[9].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 304Requests[9].Request.Path = "/notifications"; 307Requests[10].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 308Requests[10].Request.Path = "/rate_limit"; 311Requests[11].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 312Requests[11].Request.Path = "/repositories"; 315Requests[12].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 316Requests[12].Request.Path = "/user"; 319Requests[13].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 320Requests[13].Request.Path = "/user"; 323Requests[14].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 324Requests[14].Request.Path = "/users"; 327Requests[15].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 328Requests[15].Request.Path = "/gists/public"; 331Requests[16].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 332Requests[16].Request.Path = "/gists/starred"; 335Requests[17].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 336Requests[17].Request.Path = "/gitignore/templates"; 339Requests[18].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 340Requests[18].Request.Path = "/markdown/raw"; 343Requests[19].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 344Requests[19].Request.Path = "/search/code"; 347Requests[20].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 348Requests[20].Request.Path = "/search/issues"; 351Requests[21].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 352Requests[21].Request.Path = "/search/repositories"; 355Requests[22].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 356Requests[22].Request.Path = "/search/users"; 359Requests[23].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 360Requests[23].Request.Path = "/user/emails"; 363Requests[24].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 364Requests[24].Request.Path = "/user/emails"; 367Requests[25].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 368Requests[25].Request.Path = "/user/emails"; 371Requests[26].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 372Requests[26].Request.Path = "/user/followers"; 375Requests[27].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 376Requests[27].Request.Path = "/user/following"; 379Requests[28].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 380Requests[28].Request.Path = "/user/issues"; 383Requests[29].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 384Requests[29].Request.Path = "/user/keys"; 387Requests[30].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 388Requests[30].Request.Path = "/user/keys"; 391Requests[31].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 392Requests[31].Request.Path = "/user/orgs"; 395Requests[32].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 396Requests[32].Request.Path = "/user/repos"; 399Requests[33].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 400Requests[33].Request.Path = "/user/repos"; 403Requests[34].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 404Requests[34].Request.Path = "/user/starred"; 407Requests[35].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 408Requests[35].Request.Path = "/user/subscriptions"; 411Requests[36].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 412Requests[36].Request.Path = "/user/teams"; 415Requests[37].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 416Requests[37].Request.Path = "/legacy/repos/search/7651dbb"; 419Requests[38].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 420Requests[38].Request.Path = "/legacy/user/email/04193"; 423Requests[39].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 424Requests[39].Request.Path = "/legacy/user/search/83cd044"; 427Requests[40].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 428Requests[40].Request.Path = "/legacy/issues/search/2badf/dc2f3c98-c/2d6bc/61d4c54"; 431Requests[41].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 432Requests[41].Request.Path = "/gitignore/templates/e4789e94"; 435Requests[42].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 436Requests[42].Request.Path = "/notifications/threads/54db8"; 439Requests[43].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 440Requests[43].Request.Path = "/notifications/threads/a9ccb"; 443Requests[44].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 444Requests[44].Request.Path = "/user/following/5a73d521"; 447Requests[45].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 448Requests[45].Request.Path = "/user/following/77cb2864"; 451Requests[46].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 452Requests[46].Request.Path = "/user/following/91b65e36"; 455Requests[47].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 456Requests[47].Request.Path = "/user/keys/27092"; 459Requests[48].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 460Requests[48].Request.Path = "/user/keys/a0882"; 463Requests[49].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 464Requests[49].Request.Path = "/notifications/threads/0b0be/subscription"; 467Requests[50].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 468Requests[50].Request.Path = "/notifications/threads/9b0d8/subscription"; 471Requests[51].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 472Requests[51].Request.Path = "/notifications/threads/8a23f/subscription"; 475Requests[52].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 476Requests[52].Request.Path = "/user/starred/ec9c4/16da5"; 479Requests[53].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 480Requests[53].Request.Path = "/user/starred/59cdd/1bec4"; 483Requests[54].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 484Requests[54].Request.Path = "/user/starred/14da3/8c4b5"; 487Requests[55].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 488Requests[55].Request.Path = "/user/subscriptions/b6bea/ba79d"; 491Requests[56].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 492Requests[56].Request.Path = "/user/subscriptions/83c9a/b83ce"; 495Requests[57].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 496Requests[57].Request.Path = "/user/subscriptions/10903/f415b"; 499Requests[58].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 500Requests[58].Request.Path = "/gists/c78b2"; 503Requests[59].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 504Requests[59].Request.Path = "/gists/7316d"; 507Requests[60].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 508Requests[60].Request.Path = "/gists/dac3c"; 511Requests[61].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 512Requests[61].Request.Path = "/orgs/f93c4"; 515Requests[62].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 516Requests[62].Request.Path = "/orgs/278c1"; 519Requests[63].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 520Requests[63].Request.Path = "/teams/14c0dc"; 523Requests[64].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 524Requests[64].Request.Path = "/teams/71f13b"; 527Requests[65].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 528Requests[65].Request.Path = "/teams/ca53db"; 531Requests[66].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 532Requests[66].Request.Path = "/users/fa9c6dc9"; 535Requests[67].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 536Requests[67].Request.Path = "/gists/2f9f8/comments"; 539Requests[68].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 540Requests[68].Request.Path = "/gists/618f7/comments"; 543Requests[69].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 544Requests[69].Request.Path = "/gists/6313c/forks"; 547Requests[70].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 548Requests[70].Request.Path = "/gists/9034d/star"; 551Requests[71].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 552Requests[71].Request.Path = "/gists/b571d/star"; 555Requests[72].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 556Requests[72].Request.Path = "/gists/83ab8/star"; 559Requests[73].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 560Requests[73].Request.Path = "/orgs/9be14/events"; 563Requests[74].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 564Requests[74].Request.Path = "/orgs/b014e/issues"; 567Requests[75].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 568Requests[75].Request.Path = "/orgs/a4856/members"; 571Requests[76].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 572Requests[76].Request.Path = "/orgs/764a9/public_members"; 575Requests[77].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 576Requests[77].Request.Path = "/orgs/7749d/repos"; 579Requests[78].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 580Requests[78].Request.Path = "/orgs/2289c/repos"; 583Requests[79].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 584Requests[79].Request.Path = "/orgs/42198/teams"; 587Requests[80].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 588Requests[80].Request.Path = "/orgs/5d0bc/teams"; 591Requests[81].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 592Requests[81].Request.Path = "/teams/b8f729/members"; 595Requests[82].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 596Requests[82].Request.Path = "/teams/03b619/repos"; 599Requests[83].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 600Requests[83].Request.Path = "/users/999f39df/events"; 603Requests[84].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 604Requests[84].Request.Path = "/users/bbecc307/followers"; 607Requests[85].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 608Requests[85].Request.Path = "/users/9127792b/gists"; 611Requests[86].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 612Requests[86].Request.Path = "/users/a81cf3db/keys"; 615Requests[87].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 616Requests[87].Request.Path = "/users/575556d6/orgs"; 619Requests[88].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 620Requests[88].Request.Path = "/users/0ef07cfe/received_events"; 623Requests[89].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 624Requests[89].Request.Path = "/users/fa4901d4/repos"; 627Requests[90].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 628Requests[90].Request.Path = "/users/7a88b2ac/starred"; 631Requests[91].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 632Requests[91].Request.Path = "/users/4d8b04d1/subscriptions"; 635Requests[92].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 636Requests[92].Request.Path = "/users/73e28d52/received_events/public"; 639Requests[93].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 640Requests[93].Request.Path = "/users/f98f2363/events/orgs/51c95"; 643Requests[94].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 644Requests[94].Request.Path = "/gists/f8720/comments/b56cd8ff-"; 647Requests[95].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 648Requests[95].Request.Path = "/gists/40327/comments/11594715-"; 651Requests[96].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 652Requests[96].Request.Path = "/gists/fb063/comments/1da04881-"; 655Requests[97].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 656Requests[97].Request.Path = "/orgs/15419/members/9d03051d"; 659Requests[98].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 660Requests[98].Request.Path = "/orgs/3cbe7/members/4045509c"; 663Requests[99].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 664Requests[99].Request.Path = "/orgs/72f1a/public_members/6163704c"; 667Requests[100].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 668Requests[100].Request.Path = "/orgs/bae66/public_members/c1aef66c"; 671Requests[101].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 672Requests[101].Request.Path = "/orgs/d8648/public_members/2319ad3d"; 675Requests[102].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 676Requests[102].Request.Path = "/teams/262658/members/5dac9fc5"; 679Requests[103].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 680Requests[103].Request.Path = "/teams/430633/members/795406c6"; 683Requests[104].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 684Requests[104].Request.Path = "/teams/7e9f66/members/919df774"; 687Requests[105].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 688Requests[105].Request.Path = "/teams/b34a3b/memberships/33fdb8ad"; 691Requests[106].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 692Requests[106].Request.Path = "/teams/a0f9ea/memberships/dcb115d9"; 695Requests[107].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 696Requests[107].Request.Path = "/teams/e43785/memberships/2f601a63"; 699Requests[108].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 700Requests[108].Request.Path = "/users/44263c00/following/a7887e00-7"; 703Requests[109].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 704Requests[109].Request.Path = "/teams/451dd6/repos/7b326/00b51"; 707Requests[110].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 708Requests[110].Request.Path = "/teams/b01088/repos/41fc2/f54bc"; 711Requests[111].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 712Requests[111].Request.Path = "/teams/91eed9/repos/189dd/35f6c"; 715Requests[112].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 716Requests[112].Request.Path = "/repos/c8d69/5a51a"; 719Requests[113].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 720Requests[113].Request.Path = "/repos/a6b70/56c66"; 723Requests[114].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 724Requests[114].Request.Path = "/repos/ba9a3/cad23"; 727Requests[115].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 728Requests[115].Request.Path = "/networks/fcaf8/84422/events"; 731Requests[116].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 732Requests[116].Request.Path = "/repos/673e0/f8701/assignees"; 735Requests[117].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 736Requests[117].Request.Path = "/repos/a0209/62a33/branches"; 739Requests[118].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 740Requests[118].Request.Path = "/repos/9bb2b/64afd/collaborators"; 743Requests[119].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 744Requests[119].Request.Path = "/repos/88841/14fcf/comments"; 747Requests[120].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 748Requests[120].Request.Path = "/repos/c3a42/f3621/commits"; 751Requests[121].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 752Requests[121].Request.Path = "/repos/c97ea/02516/contributors"; 755Requests[122].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 756Requests[122].Request.Path = "/repos/0e145/74ac8/deployments"; 759Requests[123].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 760Requests[123].Request.Path = "/repos/98ad0/1b957/deployments"; 763Requests[124].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 764Requests[124].Request.Path = "/repos/024a2/1eb41/downloads"; 767Requests[125].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 768Requests[125].Request.Path = "/repos/d5cad/f8231/events"; 771Requests[126].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 772Requests[126].Request.Path = "/repos/d371c/72b82/forks"; 775Requests[127].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 776Requests[127].Request.Path = "/repos/f0086/e005d/forks"; 779Requests[128].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 780Requests[128].Request.Path = "/repos/3a68f/edfc1/hooks"; 783Requests[129].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 784Requests[129].Request.Path = "/repos/4f5aa/5f2cd/hooks"; 787Requests[130].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 788Requests[130].Request.Path = "/repos/5a7bb/3f08b/issues"; 791Requests[131].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 792Requests[131].Request.Path = "/repos/38084/699f9/issues"; 795Requests[132].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 796Requests[132].Request.Path = "/repos/764dd/f916c/keys"; 799Requests[133].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 800Requests[133].Request.Path = "/repos/cb0f8/a2bf4/keys"; 803Requests[134].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 804Requests[134].Request.Path = "/repos/669bb/04383/labels"; 807Requests[135].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 808Requests[135].Request.Path = "/repos/8d707/02782/labels"; 811Requests[136].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 812Requests[136].Request.Path = "/repos/b5333/4a0e6/languages"; 815Requests[137].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 816Requests[137].Request.Path = "/repos/c7d7a/1e2d3/merges"; 819Requests[138].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 820Requests[138].Request.Path = "/repos/04ef4/de9d2/milestones"; 823Requests[139].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 824Requests[139].Request.Path = "/repos/a6a19/65d59/milestones"; 827Requests[140].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 828Requests[140].Request.Path = "/repos/3f065/88c9f/notifications"; 831Requests[141].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 832Requests[141].Request.Path = "/repos/1f9f5/58bc1/notifications"; 835Requests[142].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 836Requests[142].Request.Path = "/repos/b5cf9/09870/pulls"; 839Requests[143].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 840Requests[143].Request.Path = "/repos/9d7c9/73349/pulls"; 843Requests[144].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 844Requests[144].Request.Path = "/repos/681e6/51b96/readme"; 847Requests[145].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 848Requests[145].Request.Path = "/repos/995e7/0fc05/releases"; 851Requests[146].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 852Requests[146].Request.Path = "/repos/70706/4db75/releases"; 855Requests[147].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 856Requests[147].Request.Path = "/repos/ed8e4/2ac9a/stargazers"; 859Requests[148].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 860Requests[148].Request.Path = "/repos/2ce98/61a4f/subscribers"; 863Requests[149].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 864Requests[149].Request.Path = "/repos/8e47e/73aea/subscription"; 867Requests[150].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 868Requests[150].Request.Path = "/repos/89a1e/ff66d/subscription"; 871Requests[151].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 872Requests[151].Request.Path = "/repos/4ef88/cea09/subscription"; 875Requests[152].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 876Requests[152].Request.Path = "/repos/15949/8ac47/tags"; 879Requests[153].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 880Requests[153].Request.Path = "/repos/dae74/c0aa0/teams"; 883Requests[154].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 884Requests[154].Request.Path = "/repos/1f052/3f5dd/watchers"; 887Requests[155].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 888Requests[155].Request.Path = "/repos/3813a/cd329/git/blobs"; 891Requests[156].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 892Requests[156].Request.Path = "/repos/3190b/d3733/git/commits"; 895Requests[157].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 896Requests[157].Request.Path = "/repos/b5096/6079c/git/refs"; 899Requests[158].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 900Requests[158].Request.Path = "/repos/1047a/b3551/git/refs"; 903Requests[159].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 904Requests[159].Request.Path = "/repos/5af5c/8e748/git/tags"; 907Requests[160].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 908Requests[160].Request.Path = "/repos/d6e7d/015bf/git/trees"; 911Requests[161].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 912Requests[161].Request.Path = "/repos/e720a/8355c/issues/comments"; 915Requests[162].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 916Requests[162].Request.Path = "/repos/521c1/6efee/issues/events"; 919Requests[163].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 920Requests[163].Request.Path = "/repos/8a335/9b409/pulls/comments"; 923Requests[164].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 924Requests[164].Request.Path = "/repos/e8356/20c39/stats/code_frequency"; 927Requests[165].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 928Requests[165].Request.Path = "/repos/0272d/2c8c3/stats/commit_activity"; 931Requests[166].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 932Requests[166].Request.Path = "/repos/7073c/cb35a/stats/contributors"; 935Requests[167].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 936Requests[167].Request.Path = "/repos/86066/0134f/stats/participation"; 939Requests[168].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 940Requests[168].Request.Path = "/repos/b8add/8d26a/stats/punch_card"; 943Requests[169].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 944Requests[169].Request.Path = "/repos/6ea45/b6794/git/blobs/5c33fac"; 947Requests[170].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 948Requests[170].Request.Path = "/repos/cb558/705ee/git/commits/171b566"; 951Requests[171].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 952Requests[171].Request.Path = "/repos/8345e/91f8c/git/refs/b5e99"; 955Requests[172].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 956Requests[172].Request.Path = "/repos/3192a/5c61a/git/refs/60e61"; 959Requests[173].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 960Requests[173].Request.Path = "/repos/09c5f/76bd4/git/refs/16c1b"; 963Requests[174].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 964Requests[174].Request.Path = "/repos/49157/59ca0/git/tags/183d0ef"; 967Requests[175].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 968Requests[175].Request.Path = "/repos/a20a3/cd8cd/git/trees/1a6c7ca"; 971Requests[176].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 972Requests[176].Request.Path = "/repos/67d82/01158/issues/comments/b7d4fa80-"; 975Requests[177].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 976Requests[177].Request.Path = "/repos/d1159/092ba/issues/comments/4f2d0804-"; 979Requests[178].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 980Requests[178].Request.Path = "/repos/f1531/7ae3a/issues/comments/e3bf963c-"; 983Requests[179].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 984Requests[179].Request.Path = "/repos/57816/f1144/issues/events/081002b"; 987Requests[180].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 988Requests[180].Request.Path = "/repos/56ad9/b972d/pulls/comments/942cbd65-"; 991Requests[181].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 992Requests[181].Request.Path = "/repos/ed712/2c9ee/pulls/comments/a6a82a40-"; 995Requests[182].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 996Requests[182].Request.Path = "/repos/f447b/83a3c/pulls/comments/546f821d-"; 999Requests[183].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1000Requests[183].Request.Path = "/repos/7d270/354b6/releases/assets/28c26"; 1003Requests[184].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1004Requests[184].Request.Path = "/repos/89d11/4446a/releases/assets/85ca4"; 1007Requests[185].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1008Requests[185].Request.Path = "/repos/1007a/dea4d/releases/assets/a791d"; 1011Requests[186].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1012Requests[186].Request.Path = "/repos/19707/4461f/assignees/1b0f6997"; 1015Requests[187].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1016Requests[187].Request.Path = "/repos/b52e7/f3620/branches/53b3b2"; 1019Requests[188].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 1020Requests[188].Request.Path = "/repos/89924/ab7d1/collaborators/d9e5f"; 1023Requests[189].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1024Requests[189].Request.Path = "/repos/75619/6718d/collaborators/b3f56"; 1027Requests[190].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1028Requests[190].Request.Path = "/repos/860b7/f702b/collaborators/b501c"; 1031Requests[191].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1032Requests[191].Request.Path = "/repos/24eb6/d74db/comments/67f29b88-"; 1035Requests[192].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1036Requests[192].Request.Path = "/repos/56f6e/b594f/comments/333ad754-"; 1039Requests[193].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1040Requests[193].Request.Path = "/repos/1936e/266d9/comments/32f61601-"; 1043Requests[194].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1044Requests[194].Request.Path = "/repos/bf0c5/04d97/commits/8f2cd44"; 1047Requests[195].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1048Requests[195].Request.Path = "/repos/50be2/cb7dc/contents/ca557"; 1051Requests[196].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1052Requests[196].Request.Path = "/repos/0d9fe/35d38/contents/6c1b5"; 1055Requests[197].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 1056Requests[197].Request.Path = "/repos/91795/2625e/contents/b9b80"; 1059Requests[198].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1060Requests[198].Request.Path = "/repos/d6d50/39fb7/downloads/214cb182-a"; 1063Requests[199].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1064Requests[199].Request.Path = "/repos/20bbe/b4263/downloads/d65ce00c-d"; 1067Requests[200].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1068Requests[200].Request.Path = "/repos/b838e/a0ce0/hooks/1e7f13"; 1071Requests[201].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1072Requests[201].Request.Path = "/repos/3be3d/23c37/hooks/f9ad9a"; 1075Requests[202].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1076Requests[202].Request.Path = "/repos/2c3a4/bb9af/hooks/84ffe1"; 1079Requests[203].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1080Requests[203].Request.Path = "/repos/cfcc9/2afa8/issues/9ea5f8"; 1083Requests[204].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1084Requests[204].Request.Path = "/repos/9618e/f75de/issues/54bede"; 1087Requests[205].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1088Requests[205].Request.Path = "/repos/581a6/d7149/keys/9f082"; 1091Requests[206].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1092Requests[206].Request.Path = "/repos/c8f51/b1a21/keys/83bf2"; 1095Requests[207].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1096Requests[207].Request.Path = "/repos/8f89a/70673/labels/c8963"; 1099Requests[208].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1100Requests[208].Request.Path = "/repos/7fbdf/8ead3/labels/fa2d6"; 1103Requests[209].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1104Requests[209].Request.Path = "/repos/9fa74/e74bc/labels/772b0"; 1107Requests[210].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1108Requests[210].Request.Path = "/repos/09fd5/3e300/milestones/976fc4"; 1111Requests[211].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1112Requests[211].Request.Path = "/repos/1435a/d9b7e/milestones/9f0a34"; 1115Requests[212].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1116Requests[212].Request.Path = "/repos/3c95f/84454/milestones/549440"; 1119Requests[213].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1120Requests[213].Request.Path = "/repos/eeb3d/51b0c/pulls/ad7440"; 1123Requests[214].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1124Requests[214].Request.Path = "/repos/5f14f/457de/pulls/cd4607"; 1127Requests[215].Request.Method = HttpMethods.GetCanonicalizedValue("PATCH"); 1128Requests[215].Request.Path = "/repos/11832/78737/releases/959f7"; 1131Requests[216].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1132Requests[216].Request.Path = "/repos/ccb9f/de1bc/releases/ad071"; 1135Requests[217].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1136Requests[217].Request.Path = "/repos/f15aa/e63b6/releases/1369d"; 1139Requests[218].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1140Requests[218].Request.Path = "/repos/7452e/dcd51/statuses/b478e"; 1143Requests[219].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1144Requests[219].Request.Path = "/repos/d30d7/fe97d/statuses/62682"; 1147Requests[220].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1148Requests[220].Request.Path = "/repos/227bd/07245/commits/a6c05/status"; 1151Requests[221].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1152Requests[221].Request.Path = "/repos/b55dd/cf212/commits/ad1d5c8/comments"; 1155Requests[222].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1156Requests[222].Request.Path = "/repos/77112/723f5/commits/14b857c/comments"; 1159Requests[223].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1160Requests[223].Request.Path = "/repos/c22d7/a0574/deployments/61d58/statuses"; 1163Requests[224].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1164Requests[224].Request.Path = "/repos/286ce/dca61/deployments/184d0/statuses"; 1167Requests[225].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1168Requests[225].Request.Path = "/repos/7f5a4/2398d/hooks/266f33/tests"; 1171Requests[226].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1172Requests[226].Request.Path = "/repos/99172/650ce/issues/924319/comments"; 1175Requests[227].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1176Requests[227].Request.Path = "/repos/de2d1/af156/issues/b5697c/comments"; 1179Requests[228].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1180Requests[228].Request.Path = "/repos/d8ae8/f45f3/issues/275689/events"; 1183Requests[229].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1184Requests[229].Request.Path = "/repos/7a71d/c9cbc/issues/ec14d8/labels"; 1187Requests[230].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1188Requests[230].Request.Path = "/repos/01a16/e4c7a/issues/7d2ede/labels"; 1191Requests[231].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 1192Requests[231].Request.Path = "/repos/24669/5fa5c/issues/255b9b/labels"; 1195Requests[232].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1196Requests[232].Request.Path = "/repos/75c85/698e1/issues/9a1cde/labels"; 1199Requests[233].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1200Requests[233].Request.Path = "/repos/9e801/94a85/milestones/5803ca/labels"; 1203Requests[234].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1204Requests[234].Request.Path = "/repos/992d0/3d73f/pulls/6b0862/comments"; 1207Requests[235].Request.Method = HttpMethods.GetCanonicalizedValue("POST"); 1208Requests[235].Request.Path = "/repos/78a07/d7376/pulls/131151/comments"; 1211Requests[236].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1212Requests[236].Request.Path = "/repos/4dd6e/584c9/pulls/937b3d/commits"; 1215Requests[237].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1216Requests[237].Request.Path = "/repos/d442a/baba7/pulls/15f0a9/files"; 1219Requests[238].Request.Method = HttpMethods.GetCanonicalizedValue("PUT"); 1220Requests[238].Request.Path = "/repos/7a478/342f4/pulls/784bbf/merge"; 1223Requests[239].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1224Requests[239].Request.Path = "/repos/0b7c9/15aaa/pulls/aed5dd/merge"; 1227Requests[240].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1228Requests[240].Request.Path = "/repos/923b1/a897d/releases/2e13f/assets"; 1231Requests[241].Request.Method = HttpMethods.GetCanonicalizedValue("DELETE"); 1232Requests[241].Request.Path = "/repos/2ed7f/43848/issues/c67851/labels/498e1"; 1235Requests[242].Request.Method = HttpMethods.GetCanonicalizedValue("GET"); 1236Requests[242].Request.Path = "/repos/21a74/f36c8/805b0492-b723-/680ad";
Matching\MatcherSingleEntryBenchmark.cs (1)
26Requests[0].Request.Path = "/plaintext";
Matching\TrivialMatcher.cs (2)
27var path = httpContext.Request.Path.Value; 31httpContext.Request.RouteValues = new RouteValueDictionary();
src\Http\Routing\test\UnitTests\Matching\BarebonesMatcher.cs (4)
24var path = httpContext.Request.Path.Value; 30httpContext.Request.RouteValues = new RouteValueDictionary(); 115if (TryMatch(httpContext.Request.Path.Value)) 118httpContext.Request.RouteValues = new RouteValueDictionary();
src\Http\Routing\test\UnitTests\Matching\RouteMatcher.cs (1)
27httpContext.Request.RouteValues = routeContext.RouteData.Values;
src\Http\Routing\test\UnitTests\Matching\TreeRouterMatcher.cs (1)
28httpContext.Request.RouteValues = routeContext.RouteData.Values;
Microsoft.AspNetCore.Routing.Tests (124)
DefaultLinkGeneratorTest.cs (19)
139httpContext.Request.Scheme = "http"; 140httpContext.Request.Host = new HostString("example.com"); 272httpContext.Request.Scheme = "http"; 273httpContext.Request.Host = new HostString("example.com"); 367httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 414httpContext.Request.Scheme = "http"; 415httpContext.Request.Host = new HostString("example.com"); 416httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 439httpContext.Request.Scheme = "http"; 440httpContext.Request.Host = new HostString("example.com"); 463httpContext.Request.Scheme = "http"; 464httpContext.Request.Host = new HostString("example.com"); 487httpContext.Request.PathBase = "/Foo"; 510httpContext.Request.Scheme = "http"; 511httpContext.Request.Host = new HostString("example.com"); 512httpContext.Request.PathBase = "/Foo"; 538httpContext.Request.PathBase = "/Foo"; 634httpContext.Request.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index" }); 673httpContext.Request.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index", });
EndpointRoutingMiddlewareFormOptionsTest.cs (12)
31httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 32httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes("foo=bar")); 44var _ = httpContext.Request.Form; // Trigger the form feature. 63httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 64httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes("foo=bar")); 78var _ = httpContext.Request.Form; // Trigger the form feature. 103httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 104httpContext.Request.Body = new MemoryStream("foo=bar"u8.ToArray()); 116var _ = httpContext.Request.Form; // Trigger the form feature. 135httpContext.Request.ContentType = "application/x-www-form-urlencoded"; 136httpContext.Request.Body = new MemoryStream(Encoding.UTF8.GetBytes("foo=bar")); 152var _ = httpContext.Request.Form; // Trigger the form feature.
LinkGeneratorEndpointNameExtensionsTest.cs (6)
27httpContext.Request.RouteValues = new RouteValueDictionary(new { p = "5", }); 28httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 77httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 128httpContext.Request.Scheme = "http"; 129httpContext.Request.Host = new HostString("example.com"); 130httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?");
LinkGeneratorRouteValuesAddressExtensionsTest.cs (9)
33httpContext.Request.RouteValues = new RouteValueDictionary(new { action = "Index", }); 34httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 91httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 150httpContext.Request.Scheme = "http"; 151httpContext.Request.Host = new HostString("example.com"); 152httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?"); 182httpContext.Request.Scheme = "http"; 183httpContext.Request.Host = new HostString("example.com"); 184httpContext.Request.PathBase = new PathString("/Foo/Bar?encodeme?");
Matching\BarebonesMatcher.cs (4)
24var path = httpContext.Request.Path.Value; 30httpContext.Request.RouteValues = new RouteValueDictionary(); 115if (TryMatch(httpContext.Request.Path.Value)) 118httpContext.Request.RouteValues = new RouteValueDictionary();
Matching\DfaMatcherTest.cs (30)
73httpContext.Request.Path = "/1"; 94httpContext.Request.Path = "/One"; 123httpContext.Request.Path = path; 149httpContext.Request.Path = "/"; 158httpContext.Request.RouteValues.OrderBy(kvp => kvp.Key), 188httpContext.Request.Path = "/Login/Index"; 214httpContext.Request.Path = "/Home/Index/123"; 223httpContext.Request.RouteValues.OrderBy(kvp => kvp.Key), 263httpContext.Request.Path = path; 271Assert.Equal("TestAction", httpContext.Request.RouteValues["action"]); 272Assert.Equal("TestController", httpContext.Request.RouteValues["controller"]); 273Assert.Equal("17", httpContext.Request.RouteValues["id"]); 298httpContext.Request.Path = "/Home/Index/123"; 306httpContext.Request.Path = "/Login/Index/123"; 332httpContext.Request.Path = "/ConventionalTransformerRoute/conventional-transformer/Index"; 341httpContext.Request.RouteValues.OrderBy(kvp => kvp.Key), 568context.Request.Path = requestPath; 592httpContext.Request.Path = "/TestController"; 601httpContext.Request.RouteValues.OrderBy(kvp => kvp.Key), 630httpContext.Request.Path = "/Teams"; 676httpContext.Request.Path = "/Teams"; 722httpContext.Request.Path = "/Teams"; 769httpContext.Request.Path = "/Teams"; 791httpContext.Request.Path = "/"; 821httpContext.Request.Path = "/One"; 861httpContext.Request.Path = "/One"; 903httpContext.Request.Path = "/One"; 972httpContext.Request.Path = "/test/17"; 1007httpContext.Request.Path = "/test/17"; 1056httpContext.Request.Path = "/test/17";
Matching\MatcherAssert.cs (2)
66var actualValues = httpContext.Request.RouteValues; 100$"but matched with values: {FormatRouteValues(httpContext.Request.RouteValues)}.");
Matching\RouteMatcher.cs (1)
27httpContext.Request.RouteValues = routeContext.RouteData.Values;
Matching\TreeRouterMatcher.cs (1)
28httpContext.Request.RouteValues = routeContext.RouteData.Values;
RequestDelegateRouteBuilderExtensionsTest.cs (32)
26{ b => { b.MapDelete("api/{id}", NullHandler); }, c => { c.Request.Method = "DELETE"; } }, 27{ b => { b.MapMiddlewareDelete("api/{id}", app => { }); }, c => { c.Request.Method = "DELETE"; } }, 28{ b => { b.MapGet("api/{id}", NullHandler); }, c => { c.Request.Method = "GET"; } }, 29{ b => { b.MapMiddlewareGet("api/{id}", app => { }); }, c => { c.Request.Method = "GET"; } }, 30{ b => { b.MapPost("api/{id}", NullHandler); }, c => { c.Request.Method = "POST"; } }, 31{ b => { b.MapMiddlewarePost("api/{id}", app => { }); }, c => { c.Request.Method = "POST"; } }, 32{ b => { b.MapPut("api/{id}", NullHandler); }, c => { c.Request.Method = "PUT"; } }, 33{ b => { b.MapMiddlewarePut("api/{id}", app => { }); }, c => { c.Request.Method = "PUT"; } }, 35{ b => { b.MapVerb("PUT", "api/{id}", NullHandler); }, c => { c.Request.Method = "PUT"; } }, 36{ b => { b.MapMiddlewareVerb("PUT", "api/{id}", app => { }); }, c => { c.Request.Method = "PUT"; } }, 51context.HttpContext.Request.Path = new PathString("/api/5"); 74{ b => { b.MapDelete("api/{id}", NullHandler); }, c => { c.Request.Method = "GET"; } }, 75{ b => { b.MapMiddlewareDelete("api/{id}", app => { }); }, c => { c.Request.Method = "PUT"; } }, 76{ b => { b.MapDelete("api/{id}/extra", NullHandler); }, c => { c.Request.Method = "DELETE"; } }, 77{ b => { b.MapMiddlewareDelete("api/{id}/extra", app => { }); }, c => { c.Request.Method = "DELETE"; } }, 78{ b => { b.MapGet("api/{id}", NullHandler); }, c => { c.Request.Method = "PUT"; } }, 79{ b => { b.MapMiddlewareGet("api/{id}", app => { }); }, c => { c.Request.Method = "POST"; } }, 80{ b => { b.MapGet("api/{id}/extra", NullHandler); }, c => { c.Request.Method = "GET"; } }, 81{ b => { b.MapMiddlewareGet("api/{id}/extra", app => { }); }, c => { c.Request.Method = "GET"; } }, 82{ b => { b.MapPost("api/{id}", NullHandler); }, c => { c.Request.Method = "MEH"; } }, 83{ b => { b.MapMiddlewarePost("api/{id}", app => { }); }, c => { c.Request.Method = "DELETE"; } }, 84{ b => { b.MapPost("api/{id}/extra", NullHandler); }, c => { c.Request.Method = "POST"; } }, 85{ b => { b.MapMiddlewarePost("api/{id}/extra", app => { }); }, c => { c.Request.Method = "POST"; } }, 86{ b => { b.MapPut("api/{id}", NullHandler); }, c => { c.Request.Method = "BLEH"; } }, 87{ b => { b.MapMiddlewarePut("api/{id}", app => { }); }, c => { c.Request.Method = "HEAD"; } }, 88{ b => { b.MapPut("api/{id}/extra", NullHandler); }, c => { c.Request.Method = "PUT"; } }, 89{ b => { b.MapMiddlewarePut("api/{id}/extra", app => { }); }, c => { c.Request.Method = "PUT"; } }, 91{ b => { b.MapVerb("PUT", "api/{id}", NullHandler); }, c => { c.Request.Method = "POST"; } }, 92{ b => { b.MapMiddlewareVerb("PUT", "api/{id}", app => { }); }, c => { c.Request.Method = "HEAD"; } }, 93{ b => { b.MapVerb("PUT", "api/{id}/extra", NullHandler); }, c => { c.Request.Method = "PUT"; } }, 94{ b => { b.MapMiddlewareVerb("PUT", "api/{id}/extra", app => { }); }, c => { c.Request.Method = "PUT"; } }, 109context.HttpContext.Request.Path = new PathString("/api/5");
RouteCollectionTest.cs (2)
610context.SetupGet(c => c.Request).Returns(request.Object); 667context.SetupGet(c => c.Request).Returns(request.Object);
RouterMiddlewareTest.cs (3)
41Assert.Single(context.Request.RouteValues); 43Assert.True(context.Request.RouteValues.ContainsKey("id")); 45Assert.Equal("10", context.Request.RouteValues["id"]);
RouteTest.cs (1)
594context.SetupGet(c => c.Request).Returns(request.Object);
TestObjects\TestMatcher.cs (1)
20c.Request.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index" });
Tree\TreeRouterTest.cs (1)
1992context.SetupGet(c => c.Request).Returns(request.Object);
Microsoft.AspNetCore.Security.Microbenchmarks (1)
ChunkingCookieManagerBenchmark.cs (1)
36_httpContext.Request.Headers["Cookie"] = new[]
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (148)
DelegateTests.cs (1)
152await httpContext.Request.Body.CopyToAsync(memoryStream);
Http2Tests.cs (29)
37Assert.False(httpContext.Request.CanHaveBody()); 118Assert.True(HttpMethods.Equals(method, httpContext.Request.Method)); 119Assert.False(httpContext.Request.CanHaveBody()); 120Assert.Null(httpContext.Request.ContentLength); 121Assert.False(httpContext.Request.Headers.ContainsKey(HeaderNames.TransferEncoding)); 168Assert.True(HttpMethods.Equals(method, httpContext.Request.Method)); 169Assert.True(httpContext.Request.CanHaveBody()); 170Assert.Equal(11, httpContext.Request.ContentLength); 171Assert.False(httpContext.Request.Headers.ContainsKey(HeaderNames.TransferEncoding)); 172return httpContext.Request.Body.CopyToAsync(httpContext.Response.Body); 232Assert.True(HttpMethods.Equals(method, httpContext.Request.Method)); 233Assert.True(httpContext.Request.CanHaveBody()); 234Assert.Null(httpContext.Request.ContentLength); 236Assert.Equal("chunked", httpContext.Request.Headers.TransferEncoding); 237return httpContext.Request.Body.CopyToAsync(httpContext.Response.Body); 616Assert.Equal("HTTP/1.1", httpContext.Request.Protocol); 638Assert.Equal("HTTP/2", httpContext.Request.Protocol); 661Assert.Equal("HTTP/2", httpContext.Request.Protocol); 703Assert.Equal("HTTP/2", httpContext.Request.Protocol); 750Assert.Equal("HTTP/2", httpContext.Request.Protocol); 800Assert.Equal("HTTP/2", httpContext.Request.Protocol); 852Assert.Equal("HTTP/2", httpContext.Request.Protocol); 855var readTask = httpContext.Request.Body.ReadAsync(new byte[10], 0, 10); 898Assert.Equal("HTTP/2", httpContext.Request.Protocol); 902var read = await httpContext.Request.Body.ReadAsync(new byte[10], 0, 10); 905var readTask = httpContext.Request.Body.ReadAsync(new byte[10], 0, 10); 947Assert.Equal("HTTP/2", httpContext.Request.Protocol); 951var read = await httpContext.Request.Body.ReadAsync(new byte[10], 0, 10); 954var readTask = httpContext.Request.Body.ReadAsync(new byte[10], 0, 10);
Http3Tests.cs (10)
30Assert.True(httpContext.Request.IsHttps); 31await httpContext.Response.WriteAsync(httpContext.Request.Protocol); 56Assert.True(httpContext.Request.IsHttps); 59await httpContext.Response.WriteAsync(httpContext.Request.Protocol); 96Assert.True(httpContext.Request.IsHttps); 99await httpContext.Response.WriteAsync(httpContext.Request.Protocol); 133Assert.True(httpContext.Request.IsHttps); 134await httpContext.Response.WriteAsync(httpContext.Request.Protocol); 162Assert.True(httpContext.Request.IsHttps); 190Assert.True(httpContext.Request.IsHttps);
HttpsTests.cs (1)
57var input = await new StreamReader(httpContext.Request.Body).ReadToEndAsync();
RequestBodyLimitTests.cs (43)
29Assert.Equal(11, httpContext.Request.ContentLength); 31int read = httpContext.Request.Body.Read(input, 0, input.Length); 51Assert.True(httpContext.Request.CanHaveBody()); 52Assert.Equal(11, httpContext.Request.ContentLength); 54int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 73Assert.Equal(11, httpContext.Request.ContentLength); 75int read = httpContext.Request.Body.EndRead(httpContext.Request.Body.BeginRead(input, 0, input.Length, null, null)); 96Assert.Null(httpContext.Request.ContentLength); 98int read = httpContext.Request.Body.Read(input, 0, input.Length); 118Assert.True(httpContext.Request.CanHaveBody()); 119Assert.Null(httpContext.Request.ContentLength); 121int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 140Assert.Null(httpContext.Request.ContentLength); 142int read = httpContext.Request.Body.EndRead(httpContext.Request.Body.BeginRead(input, 0, input.Length, null, null)); 163Assert.Equal(11, httpContext.Request.ContentLength); 165var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.Read(input, 0, input.Length)); 168ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.Read(input, 0, input.Length)); 188Assert.Equal(11, httpContext.Request.ContentLength); 190var ex = Assert.Throws<BadHttpRequestException>(() => { var t = httpContext.Request.Body.ReadAsync(input, 0, input.Length); }); 193ex = Assert.Throws<BadHttpRequestException>(() => { var t = httpContext.Request.Body.ReadAsync(input, 0, input.Length); }); 213Assert.Equal(11, httpContext.Request.ContentLength); 215var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.BeginRead(input, 0, input.Length, null, null)); 218ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.BeginRead(input, 0, input.Length, null, null)); 239Assert.Null(httpContext.Request.ContentLength); 241var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.Read(input, 0, input.Length)); 244ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.Read(input, 0, input.Length)); 264Assert.Null(httpContext.Request.ContentLength); 266var ex = await Assert.ThrowsAsync<BadHttpRequestException>(() => httpContext.Request.Body.ReadAsync(input, 0, input.Length)); 269ex = await Assert.ThrowsAsync<BadHttpRequestException>(() => httpContext.Request.Body.ReadAsync(input, 0, input.Length)); 288Assert.Null(httpContext.Request.ContentLength); 290var body = httpContext.Request.Body; 316Assert.Null(httpContext.Request.ContentLength); 318int read = httpContext.Request.Body.Read(input, 0, input.Length); 321var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.Request.Body.Read(input, 0, input.Length)); 342Assert.Null(httpContext.Request.ContentLength); 344int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 347var ex = await Assert.ThrowsAsync<BadHttpRequestException>(() => httpContext.Request.Body.ReadAsync(input, 0, input.Length)); 368Assert.Equal(12, httpContext.Request.ContentLength); 370int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 392Assert.Null(httpContext.Request.ContentLength); 394int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length);
RequestBodyTests.cs (49)
29Assert.True(httpContext.Request.CanHaveBody()); 32int read = httpContext.Request.Body.Read(input, 0, input.Length); 49Assert.True(httpContext.Request.CanHaveBody()); 52int read = httpContext.Request.Body.Read(input, 0, 0); 54read = httpContext.Request.Body.Read(input, 0, input.Length); 71Assert.True(httpContext.Request.CanHaveBody()); 73int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 89Assert.True(httpContext.Request.CanHaveBody()); 91int read = await httpContext.Request.Body.ReadAsync(input, 0, 0); 93read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 110int read = httpContext.Request.Body.EndRead(httpContext.Request.Body.BeginRead(input, 0, input.Length, null, null)); 129Assert.Throws<ArgumentNullException>("buffer", () => httpContext.Request.Body.Read(null, 0, 1)); 130Assert.Throws<ArgumentOutOfRangeException>("offset", () => httpContext.Request.Body.Read(input, -1, 1)); 131Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.Request.Body.Read(input, input.Length + 1, 1)); 132Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.Request.Body.Read(input, 10, -1)); 133Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.Request.Body.Read(input, 1, input.Length)); 134Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.Request.Body.Read(input, 0, input.Length + 1)); 152int read = httpContext.Request.Body.Read(input, 0, input.Length); 155read = httpContext.Request.Body.Read(input, 0, input.Length); 173int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 176read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 192int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 194read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 214var newContentLength = httpContext.Request.ContentLength + 1000; 215httpContext.Request.ContentLength = newContentLength; 216Assert.Equal(newContentLength, httpContext.Request.ContentLength); 219foreach (var header in httpContext.Request.Headers) 229int read = await httpContext.Request.Body.ReadAsync(input, 0, input.Length); 261httpContext.Request.Headers[HeaderNames.ContentLength] = "123"; 262CheckHeadersCount(HeaderNames.ContentLength, 1, httpContext.Request); 263Assert.Equal(123, httpContext.Request.ContentLength); 264httpContext.Request.Headers[HeaderNames.ContentLength] = "456"; 265CheckHeadersCount(HeaderNames.ContentLength, 1, httpContext.Request); 266Assert.Equal(456, httpContext.Request.ContentLength); 267httpContext.Request.Headers[HeaderNames.ContentLength] = StringValues.Empty; 268CheckHeadersCount(HeaderNames.ContentLength, 0, httpContext.Request); 269Assert.Null(httpContext.Request.ContentLength); 270Assert.Equal("", httpContext.Request.Headers[HeaderNames.ContentLength].ToString()); 271httpContext.Request.ContentLength = 789; 272CheckHeadersCount(HeaderNames.ContentLength, 1, httpContext.Request); 273Assert.Equal(789, httpContext.Request.ContentLength); 276httpContext.Request.Headers["Custom-Header"] = "foo"; 277CheckHeadersCount("Custom-Header", 1, httpContext.Request); 278httpContext.Request.Headers["Custom-Header"] = "bar"; 279CheckHeadersCount("Custom-Header", 1, httpContext.Request); 280httpContext.Request.Headers["Custom-Header"] = StringValues.Empty; 281CheckHeadersCount("Custom-Header", 0, httpContext.Request); 282Assert.Equal("", httpContext.Request.Headers["Custom-Header"].ToString());
RequestHeaderTests.cs (8)
24var requestHeaders = httpContext.Request.Headers; 43var requestHeaders = httpContext.Request.Headers; 89var requestHeaders = httpContext.Request.Headers; 108var requestHeaders = httpContext.Request.Headers; 131var requestHeaders = httpContext.Request.Headers; 154var requestHeaders = httpContext.Request.Headers; 186var requestHeaders = httpContext.Request.Headers; 213var requestHeaders = httpContext.Request.Headers;
RequestTests.cs (2)
48Assert.False(httpContext.Request.CanHaveBody()); 534await httpContext.Request.Body.ReadAsync(new byte[10]).DefaultTimeout();
ResponseCachingTests.cs (1)
416var status = int.Parse(httpContext.Request.Path.Value.Substring(1), CultureInfo.InvariantCulture);
ResponseTests.cs (1)
224var readTask = httpContext.Request.Body.ReadAsync(new byte[10]);
ResponseTrailersTests.cs (2)
27Assert.Equal("HTTP/1.1", httpContext.Request.Protocol); 45Assert.Equal("HTTP/2", httpContext.Request.Protocol);
ServerTests.cs (1)
133var input = await new StreamReader(httpContext.Request.Body).ReadToEndAsync();
Microsoft.AspNetCore.Server.IIS (2)
IISServerOptions.cs (1)
16/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>
src\Shared\RazorViews\BaseView.cs (1)
83Request = Context.Request;
Microsoft.AspNetCore.Server.IISIntegration (7)
IISMiddleware.cs (7)
103if (!string.Equals(_pairingToken, httpContext.Request.Headers[MSAspNetCoreToken], StringComparison.Ordinal)) 111if (HttpMethods.IsPost(httpContext.Request.Method) && 112httpContext.Request.Path.Equals(ANCMRequestPath) && 113string.Equals(ANCMShutdownEventHeaderValue, httpContext.Request.Headers[MSAspNetCoreEvent], StringComparison.OrdinalIgnoreCase)) 121if (Debugger.IsAttached && string.Equals("DEBUG", httpContext.Request.Method, StringComparison.OrdinalIgnoreCase)) 137var header = httpContext.Request.Headers[MSAspNetCoreClientCert]; 172var tokenHeader = context.Request.Headers[MSAspNetCoreWinAuthToken];
Microsoft.AspNetCore.Server.IISIntegration.Tests (2)
IISMiddlewareTests.cs (2)
370requestPathBase = context.Request.PathBase.Value; 371requestPath = context.Request.Path.Value;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
KestrelServerOptions.cs (1)
113/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (6)
src\Servers\Kestrel\shared\test\TestApp.cs (6)
16var request = httpContext.Request; 18var buffer = new byte[httpContext.Request.ContentLength ?? 0]; 29var request = httpContext.Request; 46var request = httpContext.Request; 48var buffer = new byte[httpContext.Request.ContentLength ?? 0]; 63var request = httpContext.Request;
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (2)
InMemoryTransportBenchmark.cs (1)
251if (httpContext.Request.Path.StartsWithSegments(_path, StringComparison.Ordinal))
NamedPipesTransportBenchmark.cs (1)
149if (httpContext.Request.Path.StartsWithSegments(_path, StringComparison.Ordinal))
Microsoft.AspNetCore.Session (1)
SessionMiddleware.cs (1)
64var cookieValue = context.Request.Cookies[_options.Cookie.Name!];
Microsoft.AspNetCore.Session.Tests (12)
SessionTests.cs (12)
176if (context.Request.Path == new PathString("/first")) 225if (context.Request.Path == new PathString("/first")) 231else if (context.Request.Path == new PathString("/second")) 237else if (context.Request.Path == new PathString("/third")) 284if (context.Request.Path == new PathString("/first")) 290else if (context.Request.Path == new PathString("/second")) 296else if (context.Request.Path == new PathString("/third")) 393if (context.Request.Path == new PathString("/first")) 399else if (context.Request.Path == new PathString("/second")) 458if (context.Request.Path == new PathString("/AddDataToSession")) 463else if (context.Request.Path == new PathString("/AccessSessionData")) 468else if (context.Request.Path == new PathString("/DoNotAccessSessionData"))
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (7)
HeaderUserIdProvider.cs (1)
13return connection.GetHttpContext()?.Request?.Headers?[HeaderName];
Hubs.cs (3)
64var headers = context.Request.Headers; 76return Context.GetHttpContext().Request.Cookies[cookieName]; 101return Context.GetHttpContext()?.Request?.Protocol ?? "unknown";
Startup.cs (3)
86if (context.Request.Path.Value.EndsWith("/negotiate", StringComparison.Ordinal)) 126url = $"{context.Request.Scheme}://{context.Request.Host}/authorizedHub",
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
Startup.cs (1)
44var userNameHeader = connection.GetHttpContext().Request.Headers["UserName"];
Microsoft.AspNetCore.SignalR.Tests (3)
HttpHeaderConnectionHandler.cs (1)
23var headers = connection.Features.Get<IHttpContextFeature>().HttpContext.Request.Headers;
HubConnectionHandlerTestUtils\Hubs.cs (1)
1461string id = Context.GetHttpContext()?.Request.Query["client"] ?? string.Empty;
Startup.cs (1)
107var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.Request.Query["user"]) };
Microsoft.AspNetCore.SpaProxy (1)
SpaProxyMiddleware.cs (1)
46if (context.Request.Path.Equals(new Uri(_options.Value.ServerUrl).LocalPath))
Microsoft.AspNetCore.SpaServices.Extensions (8)
Proxying\ConditionalProxyMiddleware.cs (1)
45if (context.Request.Path.StartsWithSegments(_pathPrefix) || _pathPrefixIsRoot)
Proxying\SpaProxy.cs (6)
73+ context.Request.Path 74+ context.Request.QueryString); 131var request = context.Request; 170if ((HttpProtocol.IsHttp2(context.Request.Protocol) || HttpProtocol.IsHttp3(context.Request.Protocol)) 220foreach (var headerEntry in context.Request.Headers)
SpaDefaultPageMiddleware.cs (1)
30context.Request.Path = options.DefaultPage;
Microsoft.AspNetCore.StaticAssets (7)
Development\StaticAssetDevelopmentRuntimeHandler.cs (2)
187Log.StaticAssetNotFoundInManifest(logger, ctx.Request.Path); 195var fileInfo = environment.WebRootFileProvider.GetFileInfo(ctx.Request.Path);
src\Shared\RangeHelper\RangeHelper.cs (3)
18/// Provides a parser for the Range Header in an <see cref="HttpContext.Request"/>. 23/// Returns the normalized form of the requested range if the Range Header in the <see cref="HttpContext.Request"/> is valid. 40var rawRangeHeader = context.Request.Headers.Range;
StaticAssetsInvoker.cs (2)
134if (HttpMethods.IsHead(context.Request.Method)) 257_request = context.Request;
Microsoft.AspNetCore.StaticFiles (18)
DefaultFilesMiddleware.cs (4)
52&& Helpers.IsGetOrHeadMethod(context.Request.Method) 69if (_options.RedirectToAppendTrailingSlash && !Helpers.PathEndsInSlash(context.Request.Path)) 75context.Request.Path = new PathString(Helpers.GetPathValueWithSlash(context.Request.Path) + defaultFile);
DirectoryBrowserMiddleware.cs (2)
65&& Helpers.IsGetOrHeadMethod(context.Request.Method) 71if (_options.RedirectToAppendTrailingSlash && !Helpers.PathEndsInSlash(context.Request.Path))
Helpers.cs (2)
44var request = context.Request; 51var path = context.Request.Path;
HtmlDirectoryFormatter.cs (3)
42if (HttpMethods.IsHead(context.Request.Method)) 48PathString requestPath = context.Request.PathBase + context.Request.Path;
src\Shared\RangeHelper\RangeHelper.cs (3)
18/// Provides a parser for the Range Header in an <see cref="HttpContext.Request"/>. 23/// Returns the normalized form of the requested range if the Range Header in the <see cref="HttpContext.Request"/> is valid. 40var rawRangeHeader = context.Request.Headers.Range;
StaticFileContext.cs (1)
53_request = context.Request;
StaticFileMiddleware.cs (2)
66_logger.RequestMethodNotSupported(context.Request.Method); 90return Helpers.IsGetOrHeadMethod(context.Request.Method);
StaticFilesEndpointRouteBuilderExtensions.cs (1)
188context.Request.Path = "/" + filePath;
Microsoft.AspNetCore.StaticFiles.FunctionalTests (3)
src\Shared\RangeHelper\RangeHelper.cs (3)
18/// Provides a parser for the Range Header in an <see cref="HttpContext.Request"/>. 23/// Returns the normalized form of the requested range if the Range Header in the <see cref="HttpContext.Request"/> is valid. 40var rawRangeHeader = context.Request.Headers.Range;
Microsoft.AspNetCore.StaticFiles.Tests (5)
DefaultFilesMiddlewareTests.cs (5)
70app.Run(context => context.Response.WriteAsync(context.Request.Path.Value)); 95return context.Response.WriteAsync(context.Request.Path.Value); 112app.Run(context => context.Response.WriteAsync(context.Request.Path.Value)); 152app.Run(context => context.Response.WriteAsync(context.Request.Path.Value)); 218app.Run(context => context.Response.WriteAsync(context.Request.Path.Value));
Microsoft.AspNetCore.TestHost (9)
ClientHandler.cs (1)
112var req = context.Request;
HttpContextBuilder.cs (3)
39var request = _httpContext.Request; 92if (HttpProtocol.IsHttp2(_httpContext.Request.Protocol) || 93HttpProtocol.IsHttp3(_httpContext.Request.Protocol))
TestServer.cs (2)
132/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>. The default value is <see langword="false" />. 214var request = context.Request;
TestServerOptions.cs (1)
14/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="HttpContext.Request"/> and <see cref="HttpContext.Response"/>. The default value is <see langword="false" />.
WebSocketClient.cs (2)
60var request = context.Request; 94ConfigureRequest?.Invoke(context.Request);
Microsoft.AspNetCore.TestHost.Tests (65)
ClientHandlerTests.cs (26)
50Assert.Equal(HttpProtocol.Http11, context.Request.Protocol); 51Assert.Equal("GET", context.Request.Method); 52Assert.Equal("https", context.Request.Scheme); 53Assert.Equal("/A/Path", context.Request.PathBase.Value); 54Assert.Equal("/and/file.txt", context.Request.Path.Value); 55Assert.Equal("?and=query", context.Request.QueryString.Value); 56Assert.NotNull(context.Request.Body); 57Assert.NotNull(context.Request.Headers); 62Assert.Equal("example.com", context.Request.Host.Value); 100Assert.Equal("", context.Request.PathBase.Value); 101Assert.Equal("/", context.Request.Path.Value); 115var actualResult = context.Request.Headers.UserAgent; 132Assert.True(context.Request.CanHaveBody()); 133Assert.Equal(contentBytes.LongLength, context.Request.ContentLength); 134Assert.False(context.Request.Headers.ContainsKey(HeaderNames.TransferEncoding)); 149Assert.False(context.Request.CanHaveBody()); 150Assert.Null(context.Request.ContentLength); 151Assert.False(context.Request.Headers.ContainsKey(HeaderNames.TransferEncoding)); 165Assert.True(context.Request.CanHaveBody()); 166Assert.Null(context.Request.ContentLength); 167Assert.Equal("chunked", context.Request.Headers.TransferEncoding); 182Assert.True(context.Request.CanHaveBody()); 183Assert.Null(context.Request.ContentLength); 184Assert.Equal("chunked", context.Request.Headers.TransferEncoding); 285context.Request.QueryString = new QueryString("?and=something"); 353int read = await context.Request.Body.ReadAsync(new byte[100], 0, 100);
HttpContextBuilderTests.cs (18)
25c.Request.Method = HttpMethods.Post; 26c.Request.Path = "/and/file.txt"; 27c.Request.QueryString = new QueryString("?and=query"); 31Assert.Equal(HttpProtocol.Http11, context.Request.Protocol); 32Assert.Equal("POST", context.Request.Method); 33Assert.Equal("https", context.Request.Scheme); 34Assert.Equal("example.com", context.Request.Host.Value); 35Assert.Equal("/A/Path", context.Request.PathBase.Value); 36Assert.Equal("/and/file.txt", context.Request.Path.Value); 37Assert.Equal("?and=query", context.Request.QueryString.Value); 38Assert.Null(context.Request.CanHaveBody()); 39Assert.NotNull(context.Request.Body); 40Assert.NotNull(context.Request.Headers); 56c.Request.Headers.UserAgent = userAgent; 59var actualResult = context.Request.Headers.UserAgent; 70c.Request.Path = "/"; 73Assert.Equal("", context.Request.PathBase.Value); 74Assert.Equal("/", context.Request.Path.Value);
TestClientTests.cs (14)
47Assert.Equal("", ctx.Request.PathBase.Value); 48Assert.Equal("/", ctx.Request.Path.Value); 69Assert.Equal("", ctx.Request.PathBase.Value); 70Assert.Equal("/", ctx.Request.Path.Value); 90var content = await new StreamReader(ctx.Request.Body).ReadToEndAsync(); 110await ctx.Response.WriteAsync(await new StreamReader(ctx.Request.Body).ReadToEndAsync() + " POST Response"); 184var requestString = await new StreamReader(ctx.Request.Body).ReadToEndAsync(); 280var serverLength = await ctx.Request.Body.ReadAsync(serverBuffer); 288await ctx.Request.Body.ReadAsync(serverBuffer); 412var pendingReadTask = ctx.Request.Body.ReadAsync(new byte[1024], 0, 1024); 582Assert.False(ctx.Request.Headers.ContainsKey(HeaderNames.SecWebSocketProtocol)); 946protocol = ctx.Request.Protocol; 972protocol = ctx.Request.Protocol; 999protocol = ctx.Request.Protocol;
TestServerTests.cs (2)
214using (var sr = new StreamReader(context.Request.Body)) 784ctx.Response.WriteAsync(ctx.Request.Headers.Host);
WebSocketClientTests.cs (5)
27if (ctx.Request.Path.StartsWithSegments("/connect")) 29capturedScheme = ctx.Request.Scheme; 30capturedHost = ctx.Request.Host.Value; 31capturedPath = ctx.Request.Path; 65if (ctx.Request.Path.StartsWithSegments("/connect"))
Microsoft.AspNetCore.Tests (4)
WebApplicationTests.cs (3)
1447Assert.Equal("https", context.Request.Scheme); 1584if (context.Request.Path == "/old") 1586context.Request.Path = "/new";
WebHostTests.cs (1)
74Assert.Equal("https", context.Request.Scheme);
Microsoft.AspNetCore.WebSockets (8)
WebSocketMiddleware.cs (8)
68var originHeader = context.Request.Headers.Origin; 116_isH2WebSocket = CheckSupportedWebSocketRequestH2(_context.Request.Method, _connectFeature.Protocol, _context.Request.Headers); 121_isWebSocketRequest = CheckSupportedWebSocketRequest(_context.Request.Method, _context.Request.Headers); 163HandshakeHelpers.GenerateResponseHeaders(!_isH2WebSocket, _context.Request.Headers, subProtocol, _context.Response.Headers); 168var ext = _context.Request.Headers.SecWebSocketExtensions; 172foreach (var extension in _context.Request.Headers.GetCommaSeparatedValues(HeaderNames.SecWebSocketExtensions))
Microsoft.AspNetCore.WebSockets.Tests (9)
Http2WebSocketTests.cs (3)
39httpContext.Request.Method = HttpMethods.Connect; 45httpContext.Request.Headers.SecWebSocketVersion = Constants.Headers.SupportedVersion; 46httpContext.Request.Headers.SecWebSocketProtocol = "p1, p2";
WebSocketMiddlewareTests.cs (6)
40Assert.Equal("alpha, bravo, charlie", context.Request.Headers["Sec-WebSocket-Protocol"]); 728Assert.Same(HeaderNames.Upgrade, context.Request.Headers.Connection.ToString()); 729Assert.Same(Constants.Headers.UpgradeWebSocket, context.Request.Headers.Upgrade.ToString()); 730Assert.Same(Constants.Headers.SupportedVersion, context.Request.Headers.SecWebSocketVersion.ToString()); 748Assert.Equal("Upgrade, keep-alive", context.Request.Headers.Connection.ToString()); 749Assert.Equal("websocket, example", context.Request.Headers.Upgrade.ToString());
MiddlewareAnalysisSample (2)
Startup.cs (2)
60if (context.Request.Path == "/") 103Console.WriteLine($"MiddlewareStarting: {name}; {httpContext.Request.Path}");
MinimalFormSample (1)
Program.cs (1)
56var form = await context.Request.ReadFormAsync();
Mvc.RoutingWebSite (19)
Controllers\ContactController.cs (2)
20return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme)); 25return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme));
Controllers\LG1Controller.cs (11)
19return _linkGenerator.GetPathByAction(HttpContext, values: QueryToRouteValues(HttpContext.Request.Query)); 27values: QueryToRouteValues(HttpContext.Request.Query)); 36values: QueryToRouteValues(HttpContext.Request.Query)); 41var values = QueryToRouteValues(HttpContext.Request.Query); 56values: QueryToRouteValues(HttpContext.Request.Query)); 64values: QueryToRouteValues(HttpContext.Request.Query)); 69var values = QueryToRouteValues(HttpContext.Request.Query); 84values: QueryToRouteValues(HttpContext.Request.Query), 93values: QueryToRouteValues(HttpContext.Request.Query)); 103values: QueryToRouteValues(HttpContext.Request.Query), 109var values = QueryToRouteValues(HttpContext.Request.Query);
Controllers\LinkParserController.cs (1)
20var parsed = _linkParser.ParsePathByEndpointName("default", HttpContext.Request.Path);
Controllers\LoginController.cs (2)
20return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme)); 25return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.Request.Scheme));
QueryStringConstraint.cs (1)
10return httpContext.Request.Query["allowed"].ToString() == "true";
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27var query = _actionContext.HttpContext.Request.Query; 43actualUrl = _actionContext.HttpContext.Request.Path.Value,
NativeIISSample (6)
Startup.cs (6)
40await context.Response.WriteAsync("Scheme: " + context.Request.Scheme + Environment.NewLine); 41await context.Response.WriteAsync("Host: " + context.Request.Headers["Host"] + Environment.NewLine); 42await context.Response.WriteAsync("PathBase: " + context.Request.PathBase.Value + Environment.NewLine); 43await context.Response.WriteAsync("Path: " + context.Request.Path.Value + Environment.NewLine); 44await context.Response.WriteAsync("Query: " + context.Request.QueryString.Value + Environment.NewLine); 65foreach (var header in context.Request.Headers)
NegotiateAuthSample (1)
Startup.cs (1)
58await context.Response.WriteAsync($"Authenticated? {user.IsAuthenticated}, Name: {user.Name}, Protocol: {context.Request.Protocol}");
OpenIdConnectSample (10)
Startup.cs (10)
34var userAgent = httpContext.Request.Headers["User-Agent"].ToString(); 151if (context.Request.Path.Equals("/signedout")) 161if (context.Request.Path.Equals("/signout")) 172if (context.Request.Path.Equals("/signout-remote")) 183if (context.Request.Path.Equals("/access-denied-from-remote")) 193if (context.Request.Path.Equals("/Account/AccessDenied")) 198await res.WriteAsync($"<h1>Access Denied for user {HtmlEncode(context.User.Identity.Name)} to resource '{HtmlEncode(context.Request.Query["ReturnUrl"])}'</h1>"); 229if (context.Request.Path.Equals("/restricted") && !user.Identities.Any(identity => identity.HasClaim("special", "true"))) 235if (context.Request.Path.Equals("/refresh")) 293if (context.Request.Path.Equals("/login-challenge"))
OutputCachingSample (2)
Startup.cs (2)
12options.AddBasePolicy(builder => builder.With(c => c.HttpContext.Request.Path.StartsWithSegments("/js")).Expire(TimeSpan.FromDays(1))); 13options.AddBasePolicy(builder => builder.With(c => c.HttpContext.Request.Path.StartsWithSegments("/js")).NoCache());
PathSchemeSelection (1)
Startup.cs (1)
33return ctx.Request.Path.StartsWithSegments("/api") ? "Api" : null;
QueueSharing (1)
Program.cs (1)
67await context.Response.WriteAsync("Hello world from " + context.Request.Host + " at " + DateTime.Now);
RazorPagesWebSite (2)
Pages\ShortCircuitPageAtAuthFilter.cshtml.cs (1)
21return httpContext.Request.Query.TryGetValue("target", out var expectedTargetName)
Pages\ShortCircuitPageAtPageFilter.cshtml.cs (1)
21return httpContext.Request.Query.TryGetValue("target", out var expectedTargetName)
RequestDecompressionSample (1)
Startup.cs (1)
23using var reader = new StreamReader(context.Request.Body);
RewriteSample (2)
Startup.cs (2)
36return context.Response.WriteAsync($"Rewritten Url: {context.Request.Path + context.Request.QueryString}");
RoutingSandbox (1)
UseRouterStartup.cs (1)
24var request = httpContext.Request;
RoutingWebSite (2)
UseEndpointRoutingStartup.cs (1)
161endpoints.MapGet("api/get/{id}", (context) => context.Response.WriteAsync($"{name} - API Get {context.Request.RouteValues["id"]}"));
UseRouterStartup.cs (1)
24var request = httpContext.Request;
SelfHostServer (1)
Startup.cs (1)
31await context.Response.WriteAsync("Hello world from " + context.Request.Host + " at " + DateTime.Now);
ServerComparison.TestSites (5)
StartupNtlmAuthentication.cs (3)
50if (context.Request.Path.Equals("/Anonymous")) 55if (context.Request.Path.Equals("/Restricted")) 67if (context.Request.Path.Equals("/Forbidden"))
StartupResponseCompression.cs (2)
48if (context.Request.Path.Value == "/") 54body = "Not Implemented: " + context.Request.Path;
SignalR.Client.FunctionalTestApp (17)
Startup.cs (13)
76var request = context.HttpContext.Request; 122var originHeader = context.Request.Headers.Origin; 129var requestMethod = context.Request.Headers.AccessControlRequestMethod; 135var requestHeaders = context.Request.Headers.AccessControlRequestHeaders; 142if (HttpMethods.IsOptions(context.Request.Method)) 154if (context.Request.Path.StartsWithSegments("/echoredirect")) 156var url = context.Request.Path.ToString(); 158url += context.Request.QueryString.ToString(); 168if (context.Request.Path.StartsWithSegments("/redirect")) 170var newUrl = context.Request.Query["baseUrl"] + "/testHub?numRedirects=" + Interlocked.Increment(ref _numRedirects); 179if (context.Request.Path.Value.Contains("/negotiate")) 183if (context.Request.IsHttps) 203if (context.Request.Path.StartsWithSegments("/bad-negotiate"))
TestHub.cs (4)
42return int.Parse(Context.GetHttpContext().Request.Query["numRedirects"], CultureInfo.InvariantCulture); 134return Context.GetHttpContext().Request.Headers["Content-Type"]; 139return Context.GetHttpContext().Request.Headers[headerName]; 144var cookies = Context.GetHttpContext().Request.Cookies;
SignalRSamples (6)
Hubs\Chat.cs (2)
12var name = Context.GetHttpContext().Request.Query["name"]; 18var name = Context.GetHttpContext().Request.Query["name"];
Hubs\DynamicChat.cs (2)
12var name = Context.GetHttpContext().Request.Query["name"]; 18var name = Context.GetHttpContext().Request.Query["name"];
Hubs\HubTChat.cs (2)
12var name = Context.GetHttpContext().Request.Query["name"]; 18var name = Context.GetHttpContext().Request.Query["name"];
SocialSample (2)
Startup.cs (2)
250var authType = context.Request.Query["authscheme"]; 416await response.WriteAsync("An remote failure has occurred: " + context.Request.Query["FailureMessage"] + "<br>");
SocialWeather (1)
PersistentConnectionLifeTimeManager.cs (1)
23var format = connection.GetHttpContext().Request.Query["formatType"].ToString();
Sockets.BindTests (1)
src\Servers\Kestrel\test\BindTests\AddressRegistrationTests.cs (1)
1189return context.Response.WriteAsync(context.Request.GetDisplayUrl());
Sockets.FunctionalTests (19)
src\Servers\Kestrel\shared\test\TestApp.cs (6)
16var request = httpContext.Request; 18var buffer = new byte[httpContext.Request.ContentLength ?? 0]; 29var request = httpContext.Request; 46var request = httpContext.Request; 48var buffer = new byte[httpContext.Request.ContentLength ?? 0]; 63var request = httpContext.Request;
src\Servers\Kestrel\test\FunctionalTests\Http2\HandshakeTests.cs (2)
76return context.Response.WriteAsync("hello world " + context.Request.Protocol); 104return context.Response.WriteAsync("hello world " + context.Request.Protocol);
src\Servers\Kestrel\test\FunctionalTests\Http2\ShutdownTests.cs (3)
79return context.Response.WriteAsync("hello world " + context.Request.Protocol); 136await context.Response.WriteAsync("hello world " + context.Request.Protocol); 190await context.Response.WriteAsync("hello world " + context.Request.Protocol);
src\Servers\Kestrel\test\FunctionalTests\MaxRequestBufferSizeTests.cs (2)
348bytesRead += await context.Request.Body.ReadAsync(buffer, bytesRead, buffer.Length - bytesRead); 354if (await context.Request.Body.ReadAsync(new byte[1], 0, 1) != 0)
src\Servers\Kestrel\test\FunctionalTests\RequestTests.cs (4)
90while ((received = await context.Request.Body.ReadAsync(receivedBytes, 0, receivedBytes.Length)) > 0) 550await context.Request.Body.ReadAsync(new byte[1], 0, 1); 846var request = httpContext.Request; 1045await context.Request.Body.CopyToAsync(Stream.Null);
src\Servers\Kestrel\test\FunctionalTests\ResponseTests.cs (2)
215var request = httpContext.Request; 769await context.Request.Body.CopyToAsync(context.Response.Body);
StaticFilesAuth (2)
Startup.cs (2)
123var fileSystemPath = GetFileSystemPath(files, context.Request.Path); 135context.Request.Path);
StatusCodePagesSample (6)
Startup.cs (6)
35var requestedStatusCode = context.Request.Query["statuscode"]; 42var disableStatusCodePages = context.Request.Query["disableStatusCodePages"]; 67builder.AppendLine("An error occurred, Status Code: " + HtmlEncoder.Default.Encode(context.Request.Path.ToString().Substring(1)) + "<br>"); 68var referrer = context.Request.Headers["referer"]; 85HtmlEncoder.Default.Encode(context.Request.PathBase.ToString()) + "/missingpage/\">" + 86HtmlEncoder.Default.Encode(context.Request.PathBase.ToString()) + "/missingpage/</a><br>");
VersioningWebSite (3)
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27var query = _actionContext.HttpContext.Request.Query; 43actualUrl = _actionContext.HttpContext.Request.Path.Value,
VersionRangeValidator.cs (1)
28return ProcessRequest(context.RouteContext.HttpContext.Request);
Wasm.Performance.Driver (6)
BenchmarkResultsStartup.cs (1)
22var result = await JsonSerializer.DeserializeAsync<BenchmarkResult>(context.Request.Body, new JsonSerializerOptions
src\Components\WebAssembly\DevServer\src\Server\Startup.cs (5)
38if (ctx.Request.Path.StartsWithSegments("/_framework") && !ctx.Request.Path.StartsWithSegments("/_framework/blazor.server.js") && !ctx.Request.Path.StartsWithSegments("/_framework/blazor.web.js")) 40string fileExtension = Path.GetExtension(ctx.Request.Path); 89if (context.Request.PathBase == pathBase)
WebTransportInteractiveSampleApp (1)
Program.cs (1)
47if (context.Request.Path.Value?.Equals("/certificate.js") ?? false)
WsFedSample (6)
Startup.cs (6)
46if (context.Request.Path.Equals("/signedout")) 56if (context.Request.Path.Equals("/signout")) 67if (context.Request.Path.Equals("/signout-remote")) 78if (context.Request.Path.Equals("/Account/AccessDenied")) 82await context.Response.WriteAsync($"<h1>Access Denied for user {HtmlEncode(context.User.Identity.Name)} to resource '{HtmlEncode(context.Request.Query["ReturnUrl"])}'</h1>"); 110if (context.Request.Path.Equals("/restricted") && !user.Identities.Any(identity => identity.HasClaim("special", "true")))