1 override of Request
Microsoft.AspNetCore.Http (1)
DefaultHttpContext.cs (1)
142
public override HttpRequest
Request
=> _request;
14098 references to Request
Aspire.Dashboard (13)
Authentication\OtlpApiKey\OtlpApiKeyAuthenticationHandler.cs (1)
26
if (Context.
Request
.Headers.TryGetValue(ApiKeyHeaderName, out var apiKey))
DashboardWebApplication.cs (1)
342
if (context.
Request
.Path.Equals(TargetLocationInterceptor.ResourcesPath, StringComparisons.UrlPath))
Model\BrowserSecurityHeadersMiddleware.cs (1)
69
context.Response.Headers.ContentSecurityPolicy = context.
Request
.IsHttps
Model\ValidateTokenMiddleware.cs (5)
29
if (context.
Request
.Path.Equals("/login", StringComparisons.UrlPath))
37
else if (context.
Request
.Query.TryGetValue("t", out var value) && _options.CurrentValue.Frontend.AuthMode == FrontendAuthMode.BrowserToken)
50
var qs = HttpUtility.ParseQueryString(context.
Request
.QueryString.ToString());
59
context.Response.Redirect($"{context.
Request
.Path}{newQuerystring}");
71
if (context.
Request
.Query.TryGetValue("returnUrl", out var returnUrl))
Otlp\Http\OtlpHttpEndpointsBuilder.cs (5)
113
switch (GetKnownContentType(context.
Request
.ContentType, out var charSet))
148
switch (GetKnownContentType(httpContext.
Request
.ContentType, out _))
184
result = await httpContext.
Request
.BodyReader.ReadAsync().ConfigureAwait(false);
205
httpContext.
Request
.BodyReader.AdvanceTo(result.Buffer.Start, result.Buffer.End);
215
httpContext.
Request
.BodyReader.AdvanceTo(result.Buffer.End);
AutobahnTestApp (4)
Startup.cs (4)
31
var wsScheme = context.
Request
.IsHttps ? "wss" : "ws";
32
var wsUrl = $"{wsScheme}://{context.
Request
.Host.Host}:{context.
Request
.Host.Port}{context.
Request
.Path}";
AzureAppServicesHostingStartupSample (8)
Startup.cs (8)
14
logger.LogDebug("Received request: " + context.
Request
.Method + " " + context.
Request
.Path);
21
await context.Response.WriteAsync("Scheme: " + context.
Request
.Scheme + Environment.NewLine);
22
await context.Response.WriteAsync("Host: " + context.
Request
.Headers.Host + Environment.NewLine);
23
await context.Response.WriteAsync("PathBase: " + context.
Request
.PathBase.Value + Environment.NewLine);
24
await context.Response.WriteAsync("Path: " + context.
Request
.Path.Value + Environment.NewLine);
25
await context.Response.WriteAsync("Query: " + context.
Request
.QueryString.Value + Environment.NewLine);
40
foreach (var header in context.
Request
.Headers)
AzureAppServicesSample (8)
Startup.cs (8)
25
logger.LogDebug("Received request: " + context.
Request
.Method + " " + context.
Request
.Path);
32
await context.Response.WriteAsync("Scheme: " + context.
Request
.Scheme + Environment.NewLine);
33
await context.Response.WriteAsync("Host: " + context.
Request
.Headers.Host + Environment.NewLine);
34
await context.Response.WriteAsync("PathBase: " + context.
Request
.PathBase.Value + Environment.NewLine);
35
await context.Response.WriteAsync("Path: " + context.
Request
.Path.Value + Environment.NewLine);
36
await context.Response.WriteAsync("Query: " + context.
Request
.QueryString.Value + Environment.NewLine);
51
foreach (var header in context.
Request
.Headers)
BasicWebSite (9)
Filters\TestExceptionFilter.cs (1)
13
if (context.HttpContext.
Request
.Query.TryGetValue("handleException", out var handleException))
RequestIdMiddleware.cs (1)
24
var requestId = context.
Request
.Headers.RequestId;
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27
var query = _actionContext.HttpContext.
Request
.Query;
43
actualUrl = _actionContext.HttpContext.
Request
.Path.Value,
StartupRequestLimitSize.cs (2)
27
httpContext.
Request
.Body = new RequestBodySizeCheckingStream(
28
httpContext.
Request
.Body,
StartupWhereReadingRequestBodyThrows.cs (1)
23
context.
Request
.Body = new ThrowingStream();
StartupWithoutEndpointRouting.cs (2)
67
client.BaseAddress = new Uri($"{httpContext.
Request
.Scheme}://{httpContext.
Request
.Host}");
Binding.Http.IntegrationTests (1)
MtomBindingTestHelper.cs (1)
56
while (await context.
Request
.Body.ReadAsync(buffer, 0, 8192) != 0) { }
blazor-devserver (6)
Server\Startup.cs (6)
38
if (ctx.
Request
.Path.StartsWithSegments("/_framework/blazor.boot.json"))
42
else if (applyCopHeaders && ctx.
Request
.Path.StartsWithSegments("/_framework") && !ctx.
Request
.Path.StartsWithSegments("/_framework/blazor.server.js") && !ctx.
Request
.Path.StartsWithSegments("/_framework/blazor.web.js"))
44
var fileExtension = Path.GetExtension(ctx.
Request
.Path);
93
if (context.
Request
.PathBase == pathBase)
Certificate.Optional.Sample (2)
Startup.cs (2)
49
return context.Response.WriteAsync($"Hello {context.User.Identity.Name} at {context.
Request
.Host}");
54
return context.Response.WriteAsync($"Hello {context.User.Identity.Name} at {context.
Request
.Host}. Try /auth");
ControllersFromServicesClassLibrary (2)
ControllerWithConstructorInjection.cs (1)
33
ActionContext.HttpContext.
Request
.Headers["Test-Header"]);
QueryValueService.cs (1)
19
return _context.
Request
.Query["value"];
CookiePolicySample (14)
Startup.cs (14)
19
options.CheckConsentNeeded = context => context.
Request
.PathBase.Equals("/NeedsConsent");
39
var path = context.
Request
.Path;
80
var cookies = context.
Request
.Cookies;
84
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/\">Home</a><br>\r\n");
85
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/Login\">Login</a><br>\r\n");
86
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/Logout\">Logout</a><br>\r\n");
87
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/CreateTempCookie\">Create Temp Cookie</a><br>\r\n");
88
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/RemoveTempCookie\">Remove Temp Cookie</a><br>\r\n");
89
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/CreateEssentialCookie\">Create Essential Cookie</a><br>\r\n");
90
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/RemoveEssentialCookie\">Remove Essential Cookie</a><br>\r\n");
91
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/GrantConsent\">Grant Consent</a><br>\r\n");
92
await response.WriteAsync($"<a href=\"{context.
Request
.PathBase}/WithdrawConsent\">Withdraw Consent</a><br>\r\n");
94
await response.WriteAsync($"<a href=\"/NeedsConsent{context.
Request
.Path}\">Needs Consent</a><br>\r\n");
95
await response.WriteAsync($"<a href=\"/NeedsNoConsent{context.
Request
.Path}\">Needs No Consent</a><br>\r\n");
CorsMiddlewareWebSite (3)
EchoMiddleware.cs (3)
28
var path = context.
Request
.PathBase + context.
Request
.Path + context.
Request
.QueryString;
DefaultBuilder.SampleApp (2)
Startup.cs (2)
19
await context.Response.WriteAsync($"Hello from {context.
Request
.GetDisplayUrl()}\r\n");
23
foreach (var header in context.
Request
.Headers)
DeveloperExceptionPageSample (1)
Startup.cs (1)
19
context.
Request
.RouteValues = new RouteValueDictionary(new
FormatterWebSite (1)
StringInputFormatter.cs (1)
22
var request = context.HttpContext.
Request
;
GenericHostWebSite (2)
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27
var query = _actionContext.HttpContext.
Request
.Query;
43
actualUrl = _actionContext.HttpContext.
Request
.Path.Value,
HeaderPropagationSample (5)
Startup.cs (5)
65
foreach (var header in context.
Request
.Headers)
75
var uri = UriHelper.BuildAbsolute(context.
Request
.Scheme, context.
Request
.Host, context.
Request
.PathBase, "/forwarded");
91
foreach (var header in context.
Request
.Headers)
HostFilteringSample (1)
Startup.cs (1)
46
return context.Response.WriteAsync("Hello World! " + context.
Request
.Host);
HotAddSample (5)
Startup.cs (5)
39
var toAdd = context.
Request
.Query["add"];
54
await context.Response.WriteAsync("<br><a href=\"" + context.
Request
.PathBase.ToUriComponent() + "\">back</a>");
65
var toRemove = context.
Request
.Query["remove"];
78
await context.Response.WriteAsync("<br><a href=\"" + context.
Request
.PathBase.ToUriComponent() + "\">back</a>");
95
await context.Response.WriteAsync("<form action=\"" + context.
Request
.PathBase.ToUriComponent() + "\" method=\"GET\">");
Http2SampleApp (1)
Startup.cs (1)
23
return context.Response.WriteAsync("Hello World! " + context.
Request
.Protocol);
Http3SampleApp (2)
Startup.cs (2)
23
var length = await context.
Request
.Body.ReadAsync(memory);
26
await context.Response.WriteAsync($"Hello World! {context.
Request
.Protocol} {context.Connection.ClientCertificate?.Subject}");
HttpLogging.Sample (3)
SampleHttpLoggingInterceptor.cs (3)
13
if (!logContext.HttpContext.
Request
.Path.StartsWithSegments("/api"))
41
foreach (var header in logContext.HttpContext.
Request
.Headers)
85
logContext.AddParameter(nameof(logContext.HttpContext.
Request
.Path), "RedactedPath");
HttpOverridesSample (3)
Startup.cs (3)
21
foreach (var header in context.
Request
.Headers)
25
await context.Response.WriteAsync($"Method: {context.
Request
.Method}\r\n");
26
await context.Response.WriteAsync($"Scheme: {context.
Request
.Scheme}\r\n");
HttpStress (4)
Program.cs (4)
474
await context.
Request
.Body.CopyToAsync(s);
481
await context.
Request
.Body.CopyToAsync(context.Response.Body);
487
while ((await context.
Request
.Body.ReadAsync(buffer)) != 0)
501
await context.
Request
.Body.CopyToAsync(Stream.Null);
IIS.Microbenchmarks (1)
PlaintextBenchmark.cs (1)
56
if (httpContext.
Request
.Path.StartsWithSegments(_path, StringComparison.Ordinal))
IIS.Tests (18)
ClientDisconnectTests.cs (4)
115
await ctx.
Request
.Body.ReadAsync(data);
196
var task = ctx.
Request
.Body.ReadAsync(data, cancellationTokenSource.Token);
243
await ctx.
Request
.Body.ReadAsync(data);
293
var task = ctx.
Request
.Body.ReadAsync(data);
HttpBodyControlFeatureTests.cs (1)
39
ctx.
Request
.Body.Read(new byte[10]);
MaxRequestBodySizeTests.cs (11)
36
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
78
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
114
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
141
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
167
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
190
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
214
await ctx.
Request
.Body.ReadAsync(new byte[2000]);
246
Assert.Equal(1, await ctx.
Request
.Body.ReadAsync(buffer, 0, 1));
284
var num = await ctx.
Request
.Body.ReadAsync(new byte[2000]);
325
async () => await ctx.
Request
.Body.ReadAsync(buffer, 0, 1));
327
async () => await ctx.
Request
.Body.ReadAsync(buffer, 0, 1));
ResponseAbortTests.cs (1)
78
await ctx.
Request
.Body.ReadAsync(a);
TestServerTest.cs (1)
26
path = ctx.
Request
.Path.ToString();
IISSample (8)
Startup.cs (8)
39
logger.LogDebug("Received request: " + context.
Request
.Method + " " + context.
Request
.Path);
46
await context.Response.WriteAsync("Scheme: " + context.
Request
.Scheme + Environment.NewLine);
47
await context.Response.WriteAsync("Host: " + context.
Request
.Headers["Host"] + Environment.NewLine);
48
await context.Response.WriteAsync("PathBase: " + context.
Request
.PathBase.Value + Environment.NewLine);
49
await context.Response.WriteAsync("Path: " + context.
Request
.Path.Value + Environment.NewLine);
50
await context.Response.WriteAsync("Query: " + context.
Request
.QueryString.Value + Environment.NewLine);
67
foreach (var header in context.
Request
.Headers)
InMemory.FunctionalTests (327)
BadHttpRequestTests.cs (5)
166
receivedHost = context.
Request
.Headers.Host;
214
await context.
Request
.Body.ReadAsync(new byte[1], 0, 1);
390
await using (var server = new TestServer(context => context.
Request
.Body.DrainAsync(default), new TestServiceContext(LoggerFactory, metrics: new KestrelMetrics(testMeterFactory)) { DiagnosticSource = diagListener }))
456
await using (var server = new TestServer(context => context.
Request
.Body.DrainAsync(default), new TestServiceContext(LoggerFactory, metrics: new KestrelMetrics(testMeterFactory)) { DiagnosticSource = diagListener }))
531
await using (var server = new TestServer(context => context.
Request
.Body.DrainAsync(default), new TestServiceContext(LoggerFactory, metrics: new KestrelMetrics(testMeterFactory)) { DiagnosticSource = diagListener }))
ChunkedRequestTests.cs (20)
23
var request = httpContext.
Request
;
40
var request = httpContext.
Request
;
59
var request = httpContext.
Request
;
177
var request = httpContext.
Request
;
233
var request = httpContext.
Request
;
361
var request = httpContext.
Request
;
498
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) != 0)
542
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) != 0)
583
var request = httpContext.
Request
;
664
var request = httpContext.
Request
;
708
var request = httpContext.
Request
;
863
var readTask = httpContext.
Request
.Body.CopyToAsync(Stream.Null);
914
var request = httpContext.
Request
;
921
var requestTask = httpContext.
Request
.BodyReader.ReadAsync();
923
httpContext.
Request
.BodyReader.CancelPendingRead();
970
var request = httpContext.
Request
;
977
httpContext.
Request
.BodyReader.Complete();
1019
var request = httpContext.
Request
;
1083
var request = httpContext.
Request
;
1090
httpContext.
Request
.BodyReader.Complete(new Exception());
ChunkedResponseTests.cs (1)
89
httpContext.
Request
.Protocol = "HTTP/2"; // Doesn't support chunking. This change should be ignored.
Http2\Http2ConnectionTests.cs (9)
1168
var read = await context.
Request
.Body.ReadAsync(new byte[10], 0, 10);
1387
var readResult = await context.
Request
.BodyReader.ReadAsync();
1390
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1391
readResult = await context.
Request
.BodyReader.ReadAsync();
1394
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1396
readResult = await context.
Request
.BodyReader.ReadAsync();
1401
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.End);
5660
var result = await context.
Request
.BodyReader.ReadAsync().DefaultTimeout();
5663
context.
Request
.BodyReader.AdvanceTo(result.Buffer.Start, result.Buffer.End);
Http2\Http2KeepAliveTests.cs (2)
279
await c.
Request
.Body.FlushAsync();
333
await c.
Request
.Body.FlushAsync();
Http2\Http2StreamTests.cs (58)
185
Assert.True(HttpMethods.Equals(method, context.
Request
.Method));
186
Assert.True(context.
Request
.CanHaveBody());
187
Assert.Equal(11, context.
Request
.ContentLength);
188
Assert.False(context.
Request
.Headers.ContainsKey(HeaderNames.TransferEncoding));
189
return context.
Request
.BodyReader.CopyToAsync(context.Response.BodyWriter);
236
Assert.True(HttpMethods.Equals(method, context.
Request
.Method));
237
Assert.True(context.
Request
.CanHaveBody());
238
Assert.Null(context.
Request
.ContentLength);
239
Assert.False(context.
Request
.Headers.ContainsKey(HeaderNames.TransferEncoding));
240
return context.
Request
.BodyReader.CopyToAsync(context.Response.BodyWriter);
360
context.Response.Headers["path"] = context.
Request
.Path.Value;
361
context.Response.Headers["query"] = context.
Request
.QueryString.Value;
406
Assert.Equal(expected, context.
Request
.Path.Value);
479
Assert.Equal(scheme, context.
Request
.Scheme);
480
Assert.False(context.
Request
.Headers.ContainsKey(InternalHeaderNames.Scheme));
878
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
880
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
908
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
910
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
956
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
960
read = await context.
Request
.Body.ReadAsync(buffer, total, buffer.Length - total);
998
var readResult = await context.
Request
.BodyReader.ReadAsync();
1001
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1002
readResult = await context.
Request
.BodyReader.ReadAsync();
1006
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.End);
1042
var readResult = await context.
Request
.BodyReader.ReadAsync();
1044
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.End);
1050
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
1054
read = await context.
Request
.Body.ReadAsync(buffer, total, buffer.Length - total);
1151
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
1186
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
1221
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
1257
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
1281
var readResult = await context.
Request
.BodyReader.ReadAsync();
1284
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1285
readResult = await context.
Request
.BodyReader.ReadAsync();
1289
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.End);
1291
readResult = await context.
Request
.BodyReader.ReadAsync();
1867
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
1869
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
1912
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
1953
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
1955
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
1997
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
2058
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
2114
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2117
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
3251
var readTask = context.
Request
.Body.ReadAsync(new byte[100], 0, 100).DefaultTimeout();
3293
var read = await context.
Request
.Body.ReadAsync(new byte[100], 0, 100).DefaultTimeout();
3294
var readTask = context.
Request
.Body.ReadAsync(new byte[100], 0, 100).DefaultTimeout();
3429
var thrownExTask = Assert.ThrowsAnyAsync<OperationCanceledException>(() => context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length));
3454
var thrownExTask = Assert.ThrowsAnyAsync<OperationCanceledException>(() => context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length));
5527
var requestBodyTask = context.
Request
.BodyReader.ReadAsync();
5546
await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.
Request
.BodyReader.ReadAsync());
5693
var requestBodyTask = context.
Request
.BodyReader.ReadAsync();
5714
await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.
Request
.BodyReader.ReadAsync());
5782
Assert.Equal("£", context.
Request
.Headers["X-Test"]);
5827
Assert.Equal("£", context.
Request
.Headers["X-Test"]);
Http2\Http2TestBase.cs (27)
191
_receivedRequestFields.Method = context.
Request
.Method;
192
_receivedRequestFields.Scheme = context.
Request
.Scheme;
193
_receivedRequestFields.Path = context.
Request
.Path.Value;
195
_receivedRequestFields.Authority = context.
Request
.Host.Value;
196
foreach (var header in context.
Request
.Headers)
206
Assert.True(context.
Request
.SupportsTrailers(), "SupportsTrailers");
207
Assert.False(context.
Request
.CheckTrailersAvailable(), "SupportsTrailers");
212
await context.
Request
.Body.CopyToAsync(ms);
215
Assert.True(context.
Request
.SupportsTrailers(), "SupportsTrailers");
216
Assert.True(context.
Request
.CheckTrailersAvailable(), "SupportsTrailers");
218
_receivedRequestFields.Method = context.
Request
.Method;
219
_receivedRequestFields.Scheme = context.
Request
.Scheme;
220
_receivedRequestFields.Path = context.
Request
.Path.Value;
222
foreach (var header in context.
Request
.Headers)
241
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
254
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
265
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
334
var expectedBytes = int.Parse(context.
Request
.Path.Value.Substring(1), CultureInfo.InvariantCulture);
341
received += await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
344
var stalledReadTask = context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
354
Assert.False(context.
Request
.CanHaveBody());
355
Assert.False(context.
Request
.Headers.ContainsKey(InternalHeaderNames.Method));
356
context.Response.Headers["Method"] = context.
Request
.Method;
363
Assert.False(context.
Request
.Headers.ContainsKey(InternalHeaderNames.Authority));
364
context.Response.Headers.Host = context.
Request
.Headers.Host;
371
Assert.False(context.
Request
.Headers.ContainsKey(InternalHeaderNames.Path));
372
context.Response.Headers["path"] = context.
Request
.Path.ToString();
Http2\Http2TimeoutTests.cs (1)
337
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
Http2\Http2WebSocketTests.cs (33)
24
Assert.Equal(HttpMethods.Connect, context.
Request
.Method);
26
Assert.False(context.
Request
.Headers.TryGetValue(":protocol", out var _));
27
Assert.Equal("http", context.
Request
.Scheme);
28
Assert.Equal("/chat", context.
Request
.Path.Value);
29
Assert.Equal("server.example.com", context.
Request
.Host.Value);
30
Assert.Equal("chat, superchat", context.
Request
.Headers.WebSocketSubProtocols);
31
Assert.Equal("permessage-deflate", context.
Request
.Headers.SecWebSocketExtensions);
32
Assert.Equal("13", context.
Request
.Headers.SecWebSocketVersion);
33
Assert.Equal("http://www.example.com", context.
Request
.Headers.Origin);
35
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1]));
86
Assert.Equal(HttpMethods.Connect, context.
Request
.Method);
88
Assert.False(context.
Request
.Headers.TryGetValue(":protocol", out var _));
89
Assert.Equal("http", context.
Request
.Scheme);
90
Assert.Equal("/chat", context.
Request
.Path.Value);
91
Assert.Equal("server.example.com", context.
Request
.Host.Value);
92
Assert.Equal("chat, superchat", context.
Request
.Headers.WebSocketSubProtocols);
93
Assert.Equal("permessage-deflate", context.
Request
.Headers.SecWebSocketExtensions);
94
Assert.Equal("13", context.
Request
.Headers.SecWebSocketVersion);
95
Assert.Equal("http://www.example.com", context.
Request
.Headers.Origin);
97
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1]));
162
Assert.Equal(HttpMethods.Connect, context.
Request
.Method);
164
Assert.False(context.
Request
.Headers.TryGetValue(":protocol", out var _));
165
Assert.Equal("http", context.
Request
.Scheme);
166
Assert.Equal("/chat", context.
Request
.Path.Value);
167
Assert.Equal("server.example.com", context.
Request
.Host.Value);
168
Assert.Equal("chat, superchat", context.
Request
.Headers.WebSocketSubProtocols);
169
Assert.Equal("permessage-deflate", context.
Request
.Headers.SecWebSocketExtensions);
170
Assert.Equal("13", context.
Request
.Headers.SecWebSocketVersion);
171
Assert.Equal("http://www.example.com", context.
Request
.Headers.Origin);
173
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1]));
455
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1]));
464
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1]));
601
Assert.Equal(HttpMethods.Connect, context.
Request
.Method);
Http2\TlsTests.cs (1)
47
return context.Response.WriteAsync("hello world " + context.
Request
.Protocol);
Http3\Http3ConnectionTests.cs (6)
44
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
84
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
145
receivedHeaders = context.
Request
.Headers[HeaderNames.Cookie];
147
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
426
contentType = context.
Request
.ContentType;
427
authority = context.
Request
.Host.Value;
Http3\Http3StreamTests.cs (30)
208
context.Response.Headers["path"] = context.
Request
.Path.Value;
209
context.Response.Headers["query"] = context.
Request
.QueryString.Value;
243
Assert.Equal(expected, context.
Request
.Path.Value);
303
Assert.Equal(scheme, context.
Request
.Scheme);
559
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
561
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
588
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
592
read = await context.
Request
.Body.ReadAsync(buffer, total, buffer.Length - total);
622
var readResult = await context.
Request
.BodyReader.ReadAsync();
625
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
626
readResult = await context.
Request
.BodyReader.ReadAsync();
630
context.
Request
.BodyReader.AdvanceTo(readResult.Buffer.End);
1769
var requestBodyTask = context.
Request
.BodyReader.ReadAsync();
1788
await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.
Request
.BodyReader.ReadAsync());
1896
var requestBodyTask = context.
Request
.BodyReader.ReadAsync();
1917
await Assert.ThrowsAsync<ConnectionAbortedException>(async () => await context.
Request
.BodyReader.ReadAsync());
1983
await c.
Request
.Body.DrainAsync(default);
1985
testValue = c.
Request
.GetTrailer("TestName");
2057
await c.
Request
.Body.ReadAsync(data);
2063
c.
Request
.GetTrailer("TestName");
2508
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2510
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2546
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
2581
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2583
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2618
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
2671
while (await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0) { }
2719
var read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2722
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
2834
readCount += await context.
Request
.Body.ReadAsync(buffer.AsMemory(readCount, 100 - readCount));
Http3\Http3TestBase.cs (7)
68
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
76
var expectedBytes = int.Parse(context.
Request
.Path.Value.Substring(1), CultureInfo.InvariantCulture);
83
received += await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
86
var stalledReadTask = context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length);
96
context.Response.Headers["Method"] = context.
Request
.Method;
103
context.Response.Headers["path"] = context.
Request
.Path.ToString();
111
context.Response.Headers.Host = context.
Request
.Headers.Host;
Http3\Http3TimeoutTests.cs (1)
434
while ((received = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length)) > 0)
HttpsConnectionMiddlewareTests.cs (3)
1035
var body = await new StreamReader(context.
Request
.Body).ReadToEndAsync();
1118
await using (var server = new TestServer(context => context.Response.WriteAsync(context.
Request
.Scheme), new TestServiceContext(LoggerFactory), ConfigureListenOptions))
1486
var request = httpContext.
Request
;
KeepAliveTimeoutTests.cs (4)
266
if (httpContext.
Request
.Path == "/longrunning")
270
else if (httpContext.
Request
.Path == "/upgrade")
279
else if (httpContext.
Request
.Path == "/consume")
282
while (await httpContext.
Request
.Body.ReadAsync(buffer, 0, buffer.Length) > 0)
KestrelMetricsTests.cs (4)
174
var result = await context.
Request
.BodyReader.ReadAsync();
407
await c.
Request
.Body.ReadUntilEndAsync();
921
var request = httpContext.
Request
;
923
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
MaxRequestBodySizeTests.cs (18)
33
Assert.True(context.
Request
.CanHaveBody());
38
async () => await context.
Request
.Body.ReadAsync(buffer, 0, 1));
79
using (var stream = new StreamReader(context.
Request
.Body))
126
using (var stream = new StreamReader(context.
Request
.Body))
181
async () => await context.
Request
.Body.ReadAsync(buffer, 0, 1));
221
Assert.Equal(1, await context.
Request
.Body.ReadAsync(buffer, 0, 1));
223
Assert.Equal(0, await context.
Request
.Body.ReadAsync(buffer, 0, 1));
251
await using (var server = new TestServer(context => context.
Request
.Body.CopyToAsync(Stream.Null),
291
Assert.Equal(1, await context.
Request
.Body.ReadAsync(buffer, 0, 1));
378
async () => await context.
Request
.Body.ReadAsync(buffer, 0, 1));
380
async () => await context.
Request
.Body.ReadAsync(buffer, 0, 1));
431
count = await context.
Request
.Body.ReadAsync(buffer, 0, 11);
476
count = await context.
Request
.Body.ReadAsync(buffer, offset, 11 - offset);
481
Assert.Equal("trailing-value", context.
Request
.GetTrailer("Trailing-Header").ToString());
528
count = await context.
Request
.Body.ReadAsync(buffer, 0, 11);
539
count = await context.
Request
.Body.ReadAsync(buffer, 0, 11);
591
async () => await context.
Request
.Body.ReadAsync(buffer, 0, 1));
593
async () => await context.
Request
.Body.ReadAsync(buffer, 0, 1));
RequestBodyTimeoutTests.cs (2)
58
var readTask = context.
Request
.Body.ReadAsync(new byte[1], 0, 1);
168
var readTask = context.
Request
.Body.ReadAsync(new byte[1], 0, 1);
RequestHeadersTimeoutTests.cs (1)
160
await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1);
RequestTargetProcessingTests.cs (4)
24
Assert.Equal("/\u0041\u030A/B/\u0041\u030A", context.
Request
.Path.Value);
102
Assert.Empty(context.
Request
.Path.Value);
103
Assert.Empty(context.
Request
.PathBase.Value);
104
Assert.Empty(context.
Request
.QueryString.Value);
RequestTests.cs (63)
32
if (context.
Request
.Body is MemoryStream)
42
context.
Request
.Body = new MemoryStream();
95
context.
Request
.Body = mockStream.Object;
96
var data = await context.
Request
.BodyReader.ReadAsync();
121
await context.
Request
.Body.FillEntireBufferAsync(data, cts.Token).DefaultTimeout();
135
var task = context.
Request
.Body.ReadAsync(data, 0, data.Length, cts.Token);
237
pathTcs.TrySetResult(context.
Request
.Path);
238
queryTcs.TrySetResult(context.
Request
.Query);
925
Assert.Equal(0, await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1).DefaultTimeout());
970
var readResult = await httpContext.
Request
.BodyReader.ReadAsync().AsTask().DefaultTimeout();
1017
var readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1020
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.End);
1049
var readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1052
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1053
readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1055
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1084
var readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1087
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1091
readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1093
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1127
await httpContext.
Request
.BodyReader.CopyToAsync(ms1);
1128
await httpContext.
Request
.BodyReader.CopyToAsync(ms2);
1184
var readResult = await ReadAtLeastAsync(httpContext.
Request
.BodyReader, numBytes: 3);
1188
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1191
readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1192
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1196
readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1200
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1201
readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1238
var readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1240
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Start, readResult.Buffer.End);
1242
readResult = await httpContext.
Request
.BodyReader.ReadAsync();
1243
httpContext.
Request
.BodyReader.AdvanceTo(readResult.Buffer.Slice(1).Start, readResult.Buffer.End);
1398
if (context.
Request
.Body != lastStream)
1400
lastStream = context.
Request
.Body;
1403
if (context.
Request
.Headers != lastRequestHeaders)
1405
lastRequestHeaders = context.
Request
.Headers;
1415
await context.
Request
.Body.CopyToAsync(ms);
1698
var ioEx = Assert.Throws<InvalidOperationException>(() => context.
Request
.Body.Read(new byte[1], 0, 1));
1701
var ioEx2 = Assert.Throws<InvalidOperationException>(() => context.
Request
.Body.CopyTo(Stream.Null));
1706
offset += await context.
Request
.Body.ReadAsync(buffer, offset, 5 - offset);
1709
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1], 0, 1));
1749
offset += context.
Request
.Body.Read(buffer, offset, 5 - offset);
1752
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1], 0, 1));
1791
var ioEx = Assert.Throws<InvalidOperationException>(() => context.
Request
.Body.Read(new byte[1], 0, 1));
1794
var ioEx2 = Assert.Throws<InvalidOperationException>(() => context.
Request
.Body.CopyTo(Stream.Null));
1798
var length = await context.
Request
.Body.FillBufferUntilEndAsync(buffer).DefaultTimeout();
1839
offset += context.
Request
.Body.Read(buffer, offset, 5 - offset);
1842
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[1], 0, 1));
1873
await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1);
1906
var request = httpContext.
Request
;
1913
var requestTask = httpContext.
Request
.BodyReader.ReadAsync();
1915
httpContext.
Request
.BodyReader.CancelPendingRead();
1956
var request = httpContext.
Request
;
1963
httpContext.
Request
.BodyReader.Complete();
2000
var request = httpContext.
Request
;
2005
httpContext.
Request
.BodyReader.Complete();
2041
var request = httpContext.
Request
;
2048
httpContext.
Request
.BodyReader.Complete(new Exception());
2084
customHeaderValue = context.
Request
.Headers["X-CustomHeader"];
2085
contentTypeHeaderValue = context.
Request
.ContentType;
2201
Assert.Equal("£", context.
Request
.Headers["X-Test"]);
2294
Assert.Equal("£", context.
Request
.Headers["X-Test"]);
ResponseTests.cs (10)
344
await context.
Request
.Body.ReadAsync(new byte[1], 0, 1);
361
await context.
Request
.Body.ReadAsync(new byte[1], 0, 1);
487
async () => await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1));
1541
await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1);
2039
return httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1);
2109
return httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1);
2155
await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1);
2260
Assert.Equal(0, await httpContext.
Request
.Body.ReadAsync(new byte[1], 0, 1).DefaultTimeout());
2327
var request = httpContext.
Request
;
2376
var request = httpContext.
Request
;
src\Servers\Kestrel\shared\test\TestApp.cs (6)
16
var request = httpContext.
Request
;
18
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
29
var request = httpContext.
Request
;
46
var request = httpContext.
Request
;
48
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
63
var request = httpContext.
Request
;
UpgradeTests.cs (11)
77
var read = await context.
Request
.Body.ReadAsync(buffer, 0, 128).DefaultTimeout();
165
if (HttpMethods.IsPost(context.
Request
.Method))
168
Assert.Equal(1, context.
Request
.ContentLength);
169
Assert.Equal(1, await context.
Request
.Body.ReadAsync(new byte[10], 0, 10));
200
if (HttpMethods.IsPost(context.
Request
.Method))
202
Assert.Equal(0, context.
Request
.ContentLength);
204
Assert.Equal(0, await context.
Request
.Body.ReadAsync(new byte[10], 0, 10));
234
Assert.Null(context.
Request
.ContentLength);
236
if (HttpMethods.IsPost(context.
Request
.Method))
239
Assert.Equal("chunked", context.
Request
.Headers.TransferEncoding);
241
var length = await context.
Request
.Body.FillBufferUntilEndAsync(new byte[100]);
InProcessWebSite (119)
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.cs (113)
112
await ctx.Response.WriteAsync(ctx.
Request
.Protocol);
217
await ctx.Response.WriteAsync(Environment.GetEnvironmentVariable(ctx.
Request
.Query["name"].ToString()));
222
var varName = ctx.
Request
.Query["q"];
223
var newValue = ctx.
Request
.Query["v"];
268
return ctx.Response.WriteAsync($"PathBase: {ctx.
Request
.PathBase.Value}; Path: {ctx.
Request
.Path.Value}");
275
Assert.Equal("GET", ctx.
Request
.Method);
276
ctx.
Request
.Method = "test";
277
Assert.Equal("test", ctx.
Request
.Method);
279
Assert.Equal("http", ctx.
Request
.Scheme);
280
ctx.
Request
.Scheme = "test";
281
Assert.Equal("test", ctx.
Request
.Scheme);
283
Assert.Equal("/FeatureCollectionSetRequestFeatures", ctx.
Request
.PathBase);
284
ctx.
Request
.PathBase = "/base";
285
Assert.Equal("/base", ctx.
Request
.PathBase);
287
Assert.Equal("/path", ctx.
Request
.Path);
288
ctx.
Request
.Path = "/path";
289
Assert.Equal("/path", ctx.
Request
.Path);
291
Assert.Equal("?query", ctx.
Request
.QueryString.Value);
292
ctx.
Request
.QueryString = QueryString.Empty;
293
Assert.Equal("", ctx.
Request
.QueryString.Value);
295
Assert.Equal("HTTP/1.1", ctx.
Request
.Protocol);
296
ctx.
Request
.Protocol = "HTTP/1.0";
297
Assert.Equal("HTTP/1.0", ctx.
Request
.Protocol);
299
Assert.NotNull(ctx.
Request
.Headers);
304
Assert.NotNull(ctx.
Request
.Body);
306
ctx.
Request
.Body = body;
307
Assert.Same(body, ctx.
Request
.Body);
392
feature.ReasonPhrase = ctx.
Request
.Query["reason"];
393
feature.StatusCode = int.Parse(ctx.
Request
.Query["code"], CultureInfo.InvariantCulture);
394
if (ctx.
Request
.Query["writeBody"] == "True")
396
await ctx.Response.WriteAsync(ctx.
Request
.Query["body"]);
402
if (ctx.
Request
.Path.Value.StartsWith("/Path", StringComparison.Ordinal))
404
await ctx.Response.WriteAsync(ctx.
Request
.Path.Value);
407
if (ctx.
Request
.Path.Value.StartsWith("/Query", StringComparison.Ordinal))
409
await ctx.Response.WriteAsync(ctx.
Request
.QueryString.Value);
418
if (int.TryParse(ctx.
Request
.Query["length"], out var length))
467
if ((string[])ctx.
Request
.Headers[headerName] != Array.Empty<string>())
471
if (ctx.
Request
.Headers.TryGetValue(headerName, out var headerValue) || (string[])headerValue is not null)
478
ctx.
Request
.Headers.Add(headerName, "test");
479
ctx.
Request
.Headers[headerName] = default;
480
ctx.
Request
.Headers.Add(headerName, "test");
481
ctx.
Request
.Headers[headerName] = StringValues.Empty;
482
ctx.
Request
.Headers.Add(headerName, "test");
487
ctx.
Request
.Headers.Add(headerName, "test");
492
ctx.
Request
.Headers[headerName] = default;
519
if (ctx.
Request
.Path.Equals("/SetStatusCodeAfterWrite"))
533
else if (ctx.
Request
.Path.Equals("/SetHeaderAfterWrite"))
562
var result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, 1);
565
result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, 1);
575
var result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, 4096);
578
result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, 4096);
589
await ctx.
Request
.Body.ReadAsync(readBuffer, 0, 1);
631
var result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, readBuffer.Length);
635
result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, readBuffer.Length);
644
var result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, readBuffer.Length);
649
result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, readBuffer.Length);
658
if (ctx.
Request
.Headers.TryGetValue("Response-Content-Type", out var contentType))
666
var reader = new StreamReader(ctx.
Request
.Body);
690
if (ctx.
Request
.Headers.TryGetValue("Response-Content-Type", out var contentType))
698
var reader = new StreamReader(ctx.
Request
.Body);
719
count += await ctx.
Request
.Body.ReadAsync(data, count, data.Length - count);
726
using (var reader = new StreamReader(ctx.
Request
.Body))
737
var result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, readBuffer.Length);
744
result = await ctx.
Request
.Body.ReadAsync(readBuffer, 0, readBuffer.Length);
768
await ctx.
Request
.Body.CopyToAsync(ctx.Response.Body);
774
await ctx.
Request
.Body.ReadAsync(buffer, 0, 6);
775
await ctx.
Request
.Body.ReadAsync(buffer, 6, 5);
783
if (ctx.
Request
.Path.StartsWithSegments("/NullBuffer"))
787
await ctx.
Request
.Body.ReadAsync(null, 0, 0);
794
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidOffsetSmall"))
798
await ctx.
Request
.Body.ReadAsync(new byte[1], -1, 0);
805
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidOffsetLarge"))
809
await ctx.
Request
.Body.ReadAsync(new byte[1], 2, 0);
816
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountSmall"))
820
await ctx.
Request
.Body.ReadAsync(new byte[1], 0, -1);
827
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountLarge"))
831
await ctx.
Request
.Body.ReadAsync(new byte[1], 0, -1);
838
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountWithOffset"))
842
await ctx.
Request
.Body.ReadAsync(new byte[3], 1, 3);
857
if (ctx.
Request
.Path.StartsWithSegments("/NullBuffer"))
859
count = await ctx.
Request
.Body.ReadAsync(null, 0, 0);
861
else if (ctx.
Request
.Path.StartsWithSegments("/NullBufferPost"))
863
count = await ctx.
Request
.Body.ReadAsync(null, 0, 0);
865
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountZeroRead"))
867
count = await ctx.
Request
.Body.ReadAsync(new byte[1], 0, 0);
869
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountZeroReadPost"))
871
count = await ctx.
Request
.Body.ReadAsync(new byte[1], 0, 0);
881
if (ctx.
Request
.Path.StartsWithSegments("/InvalidOffsetSmall"))
892
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidOffsetLarge"))
903
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountSmall"))
914
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountLarge"))
925
else if (ctx.
Request
.Path.StartsWithSegments("/InvalidCountWithOffset"))
942
if (ctx.
Request
.Path.StartsWithSegments("/NullBuffer"))
946
else if (ctx.
Request
.Path.StartsWithSegments("/NullBufferPost"))
987
ctx.
Request
.Headers.ContentLength = ctx.
Request
.Path.Value.Length;
988
return ctx.Response.WriteAsync(ctx.
Request
.Path.Value);
1067
ctx.Response.WriteAsync("Scheme:" + ctx.
Request
.Scheme + "; Original:" + ctx.
Request
.Headers["x-original-proto"]);
1069
public Task Path(HttpContext ctx) => ctx.Response.WriteAsync(ctx.
Request
.Path.Value);
1071
public Task Query(HttpContext ctx) => ctx.Response.WriteAsync(ctx.
Request
.QueryString.Value);
1114
File.Delete(context.
Request
.Headers["ANCMRHPath"]);
1122
return context.Response.WriteAsync(context.
Request
.Headers["ANCMRHPath"]);
1146
var value = context.
Request
.Headers["foo"];
1153
var value = context.
Request
.Headers["foo"];
1165
Assert.True(ctx.
Request
.Headers.ContainsKey("Transfer-Encoding"));
1166
Assert.Equal("gzip, chunked", ctx.
Request
.Headers["Transfer-Encoding"]);
1183
Assert.True(ctx.
Request
.Headers.ContainsKey("Transfer-Encoding"));
1184
Assert.Equal("gzip, chunked", ctx.
Request
.Headers["Transfer-Encoding"]);
1185
Assert.False(ctx.
Request
.Headers.ContainsKey("Content-Length"));
1186
Assert.True(ctx.
Request
.Headers.ContainsKey("X-Content-Length"));
1187
Assert.Equal("5", ctx.
Request
.Headers["X-Content-Length"]);
src\Servers\IIS\IIS\test\testassets\InProcessWebSite\Startup.WebSockets.cs (2)
49
Assert.Equal(0, await context.
Request
.Body.ReadAsync(singleByteArray, 0, 1));
114
string key = context.
Request
.Headers[Constants.Headers.SecWebSocketKey].ToString();
src\Servers\IIS\IIS\test\testassets\shared\WebSockets\TestStartup.cs (4)
52
if (context.
Request
.Path.StartsWithSegments(requestDelegate.Key, out var matchedPath, out var remainingPath))
54
var pathBase = context.
Request
.PathBase;
55
context.
Request
.PathBase = pathBase.Add(matchedPath);
56
context.
Request
.Path = remainingPath;
Interop.FunctionalTests (36)
H2SpecTests.cs (1)
152
await context.
Request
.Body.CopyToAsync(Stream.Null);
Http2WebSocketInteropTests.cs (1)
61
Assert.Equal(expectedVersion, context.
Request
.Protocol);
Http3\Http3RequestTests.cs (17)
328
contentType = context.
Request
.ContentType;
329
authority = context.
Request
.Host.Value;
331
var data = await context.
Request
.Body.ReadUntilEndAsync();
403
var body = context.
Request
.Body;
466
var body = context.
Request
.Body;
549
readAsyncTask.SetResult(context.
Request
.Body.ReadAsync(new byte[1024]).AsTask());
710
var body = context.
Request
.Body;
893
requestHeaders.Add(context.
Request
.Headers.ToDictionary(k => k.Key, k => k.Value, StringComparer.OrdinalIgnoreCase));
982
var requestBody = context.
Request
.Body;
1075
var requestBody = context.
Request
.Body;
1173
var requestBody = context.
Request
.Body;
1353
await context.
Request
.BodyReader.ReadAtLeastAsync(TestData.Length);
1468
request1HeaderValue = context.
Request
.Headers.UserAgent;
1472
request2HeaderValue = context.
Request
.Headers.UserAgent;
1756
switch (context.
Request
.Path.ToString())
2005
var readTask = context.
Request
.Body.ReadUntilEndAsync();
2116
var data = await context.
Request
.Body.ReadUntilEndAsync();
HttpClientHttp2InteropTests.cs (17)
81
await context.
Request
.BodyReader.CopyToAsync(context.Response.BodyWriter).DefaultTimeout();
167
await context.
Request
.BodyReader.CopyToAsync(context.Response.BodyWriter).DefaultTimeout();
269
var reader = context.
Request
.BodyReader;
328
var reader = context.
Request
.BodyReader;
416
using var streamReader = new StreamReader(context.
Request
.Body);
715
using var streamReader = new StreamReader(context.
Request
.Body);
763
var count = await context.
Request
.Body.ReadAsync(new byte[11], 0, 11);
774
using var streamReader = new StreamReader(context.
Request
.Body);
823
var readTask = context.
Request
.Body.ReadAsync(new byte[11], 0, 11);
869
await ReadStreamHelloWorld(context.
Request
.Body);
870
var readTask = context.
Request
.Body.ReadAsync(new byte[11], 0, 11);
1039
Assert.Equal(oneKbString + i, context.
Request
.Headers["header" + i]);
1148
Assert.Equal(oneKbString + i, context.
Request
.Headers["header" + i]);
1505
read = await context.
Request
.Body.ReadAsync(buffer, 0, buffer.Length).DefaultTimeout();
1558
Assert.Equal("點.看", context.
Request
.Host.Host);
1559
return 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)
137
var encoding = context.GetHttpContext().
Request
.Headers.SingleOrDefault(h => string.Equals(h.Key, "grpc-encoding", StringComparison.OrdinalIgnoreCase)).Value.SingleOrDefault();
JwtBearerSample (2)
Startup.cs (2)
73
if (HttpMethods.IsPost(context.
Request
.Method))
75
var reader = new StreamReader(context.
Request
.Body);
JwtSample (1)
Startup.cs (1)
79
var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.
Request
.Query["user"]) };
Kestrel.SampleApp (3)
ClientCertBufferingFeature.cs (3)
61
if (!_context.
Request
.Body.CanSeek)
63
_context.
Request
.EnableBuffering();
66
var body = _context.
Request
.Body;
LargeResponseApp (1)
Startup.cs (1)
25
var path = context.
Request
.Path;
LocalizationSample (1)
Startup.cs (1)
34
if (context.
Request
.Path.Value.EndsWith("favicon.ico", StringComparison.Ordinal))
Microsoft.AspNetCore.Antiforgery (10)
AntiforgeryMiddleware.cs (1)
25
var method = context.
Request
.Method;
Internal\DefaultAntiforgery.cs (3)
94
var method = httpContext.
Request
.Method;
163
else if (!httpContext.
Request
.HasFormContentType)
258
if (_options.Cookie.SecurePolicy == CookieSecurePolicy.Always && !context.
Request
.IsHttps)
Internal\DefaultAntiforgeryTokenStore.cs (6)
26
var requestCookie = httpContext.
Request
.Cookies[_options.Cookie.Name!];
40
var cookieToken = httpContext.
Request
.Cookies[_options.Cookie.Name!];
47
requestToken = httpContext.
Request
.Headers[_options.HeaderName];
51
if (requestToken.Count == 0 && httpContext.
Request
.HasFormContentType && !_options.SuppressReadingTokenFromFormBody)
58
form = await httpContext.
Request
.ReadFormAsync();
92
var pathBase = httpContext.
Request
.PathBase.ToString();
Microsoft.AspNetCore.Antiforgery.Test (39)
DefaultAntiforgeryTest.cs (6)
637
context.HttpContext.
Request
.Method = "POST";
677
context.HttpContext.
Request
.Method = "POST";
716
context.HttpContext.
Request
.Method = httpMethod;
753
context.HttpContext.
Request
.Method = httpMethod;
898
context.HttpContext.
Request
.ContentType = "application/json";
924
context.HttpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
DefaultAntiforgeryTokenStoreTest.cs (33)
78
httpContext.
Request
.Form = FormCollection.Empty;
101
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
102
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
106
httpContext.
Request
.Headers.Add("header-name", "header-value");
130
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
131
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
159
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
160
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
164
httpContext.
Request
.Headers.Add("header-name", "header-value");
189
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
190
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
217
httpContext.
Request
.ContentType = "application/json";
218
httpContext.
Request
.Headers.Add("header-name", "header-value");
221
httpContext.
Request
.Form = null!;
245
httpContext.
Request
.ContentType = "application/json";
248
httpContext.
Request
.Form = null!;
272
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
273
httpContext.
Request
.Form = FormCollection.Empty;
299
httpContext.Setup(r => r.
Request
.Cookies).Returns(Mock.Of<IRequestCookieCollection>());
300
httpContext.SetupGet(r => r.
Request
.HasFormContentType).Returns(true);
301
httpContext.Setup(r => r.
Request
.ReadFormAsync(It.IsAny<CancellationToken>())).Throws(ioException);
324
httpContext.Setup(r => r.
Request
.Cookies).Returns(Mock.Of<IRequestCookieCollection>());
325
httpContext.SetupGet(r => r.
Request
.HasFormContentType).Returns(true);
326
httpContext.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)
515
context.
Request
.Headers.Cookie = $"{cookieName}={cookieValue}";
Microsoft.AspNetCore.Authentication (5)
AuthenticationHandler.cs (1)
40
get => Context.
Request
;
AuthenticationMiddleware.cs (2)
44
OriginalPath = context.
Request
.Path,
45
OriginalPathBase = context.
Request
.PathBase
Events\BaseContext.cs (1)
48
public HttpRequest Request => HttpContext.
Request
;
RequestPathBaseCookieBuilder.cs (1)
28
var originalPathBase = context.Features.Get<IAuthenticationFeature>()?.OriginalPathBase ?? context.
Request
.PathBase;
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateAuthenticationHandler.cs (1)
51
if (!Context.
Request
.IsHttps)
Microsoft.AspNetCore.Authentication.Cookies (3)
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (3)
95
var requestCookies = context.
Request
.Cookies;
161
var requestCookies = context.
Request
.Cookies;
236
var requestCookies = context.
Request
.Cookies;
Microsoft.AspNetCore.Authentication.Negotiate.Test (12)
EventTests.cs (3)
444
Assert.Equal("HTTP/1.1", context.
Request
.Protocol); // Not HTTP/2
461
context.
Request
.Path = path;
464
context.
Request
.Headers.Authorization = authorizationHeader;
NegotiateHandlerTests.cs (9)
273
if (context.
Request
.Path.Equals("/error"))
409
Assert.Equal("HTTP/1.1", context.
Request
.Protocol);
416
Assert.Equal("HTTP/2", context.
Request
.Protocol);
429
Assert.Equal("HTTP/1.1", context.
Request
.Protocol); // Not HTTP/2
443
Assert.Equal("HTTP/1.1", context.
Request
.Protocol); // Not HTTP/2
455
Assert.Equal("HTTP/1.1", context.
Request
.Protocol); // Not HTTP/2
484
context.
Request
.Protocol = http2 ? "HTTP/2" : "HTTP/1.1";
485
context.
Request
.Path = path;
488
context.
Request
.Headers.Authorization = authorizationHeader;
Microsoft.AspNetCore.Authentication.Test (37)
CertificateTests.cs (1)
820
var request = context.
Request
;
CookieTests.cs (3)
1158
Assert.Equal(new PathString("/base"), context.
Request
.PathBase);
1710
if (context.
Request
.Path == "/signin")
1817
var req = context.
Request
;
DynamicSchemeTests.cs (1)
139
var req = context.
Request
;
GoogleTests.cs (5)
168
var req = context.
Request
;
220
var req = context.
Request
;
272
var req = context.
Request
;
349
var req = context.
Request
;
1154
var req = context.
Request
;
JwtBearerTests.cs (8)
1174
if (context.
Request
.Path == new PathString("/checkforerrors"))
1183
else if (context.
Request
.Path == new PathString("/oauth"))
1204
else if (context.
Request
.Path == new PathString("/token"))
1209
else if (context.
Request
.Path == new PathString("/unauthorized"))
1215
else if (context.
Request
.Path == new PathString("/forbidden"))
1220
else if (context.
Request
.Path == new PathString("/signIn"))
1224
else if (context.
Request
.Path == new PathString("/signOut"))
1228
else if (context.
Request
.Path == new PathString("/expiration"))
JwtBearerTests_Handler.cs (8)
1233
if (context.
Request
.Path == new PathString("/checkforerrors"))
1242
else if (context.
Request
.Path == new PathString("/oauth"))
1263
else if (context.
Request
.Path == new PathString("/token"))
1268
else if (context.
Request
.Path == new PathString("/unauthorized"))
1274
else if (context.
Request
.Path == new PathString("/forbidden"))
1279
else if (context.
Request
.Path == new PathString("/signIn"))
1283
else if (context.
Request
.Path == new PathString("/signOut"))
1287
else if (context.
Request
.Path == new PathString("/expiration"))
MicrosoftAccountTests.cs (1)
365
var req = context.
Request
;
OpenIdConnect\OpenIdConnectEventTests.cs (1)
28
private readonly RequestDelegate AppWritePath = context => context.Response.WriteAsync(context.
Request
.Path);
OpenIdConnect\OpenIdConnectEventTests_Handler.cs (1)
28
private readonly RequestDelegate AppWritePath = context => context.Response.WriteAsync(context.
Request
.Path);
OpenIdConnect\TestServerBuilder.cs (1)
72
var req = context.
Request
;
PolicyTests.cs (2)
349
p.ForwardDefaultSelector = c => c.
Request
.QueryString.Value.Substring(1);
472
var req = context.
Request
;
TwitterTests.cs (1)
545
var req = context.
Request
;
WsFederation\WsFederationTest.cs (2)
346
context.HttpContext.
Request
.Path = new PathString("/AuthenticationFailed");
384
var authProperties = new AuthenticationProperties() { RedirectUri = context.
Request
.GetEncodedUrl() };
WsFederation\WsFederationTest_Handler.cs (2)
342
context.HttpContext.
Request
.Path = new PathString("/AuthenticationFailed");
380
var authProperties = new AuthenticationProperties() { RedirectUri = context.
Request
.GetEncodedUrl() };
Microsoft.AspNetCore.Components.Endpoints (17)
Builder\OpaqueRedirection.cs (1)
68
if (!httpContext.
Request
.Query.TryGetValue("url", out var protectedUrl))
RazorComponentEndpointInvoker.cs (7)
81
form: result.HandlerName != null && context.
Request
.HasFormContentType ? await context.
Request
.ReadFormAsync() : null);
162
var processPost = HttpMethods.IsPost(context.
Request
.Method) &&
170
if (context.
Request
.ContentType is not null && MediaTypeHeaderValue.TryParse(context.
Request
.ContentType, out var type))
233
await context.
Request
.ReadFormAsync();
245
if (context.
Request
.Form.TryGetValue("_handler", out var value))
Rendering\EndpointHtmlRenderer.cs (2)
80
navigationManager?.Initialize(GetContextBaseUri(httpContext.
Request
), GetFullUri(httpContext.
Request
));
Rendering\EndpointHtmlRenderer.Prerendering.cs (2)
209
else if (IsPossibleExternalDestination(httpContext.
Request
, navigationException.Location)
210
&& IsProgressivelyEnhancedNavigation(httpContext.
Request
))
Rendering\EndpointHtmlRenderer.Streaming.cs (5)
29
if (IsProgressivelyEnhancedNavigation(httpContext.
Request
))
97
!IsProgressivelyEnhancedNavigation(httpContext.
Request
))
151
var isEnhancedNavigation = IsProgressivelyEnhancedNavigation(_httpContext.
Request
);
230
if (string.Equals(httpContext.
Request
.Method, "POST", StringComparison.OrdinalIgnoreCase))
235
if (IsProgressivelyEnhancedNavigation(httpContext.
Request
))
Microsoft.AspNetCore.Components.Endpoints.Tests (5)
EndpointHtmlRendererTest.cs (5)
1657
context.
Request
.Scheme = "http";
1658
context.
Request
.Host = new HostString("localhost");
1659
context.
Request
.PathBase = "/base";
1660
context.
Request
.Path = "/path";
1661
context.
Request
.QueryString = QueryString.FromUriComponent("?query=value");
Microsoft.AspNetCore.Components.Server (3)
CircuitDisconnectMiddleware.cs (3)
34
if (!HttpMethods.IsPost(context.
Request
.Method))
56
if (!context.
Request
.HasFormContentType)
61
var form = await context.
Request
.ReadFormAsync();
Microsoft.AspNetCore.Components.WebAssembly.Server (10)
ComponentsWebAssemblyApplicationBuilderExtensions.cs (2)
42
builder.MapWhen(ctx => ctx.
Request
.Path.StartsWithSegments(pathPrefix, out var rest) && rest.StartsWithSegments("/_framework") &&
109
var requestPath = fileContext.Context.
Request
.Path;
ContentEncodingNegotiator.cs (4)
41
var accept = context.
Request
.Headers.AcceptEncoding;
90
context.
Request
.Path = context.
Request
.Path + extension;
117
_webHostEnvironment.WebRootFileProvider.GetFileInfo(context.
Request
.Path + extension).Exists;
TargetPickerUi.cs (2)
114
var request = context.
Request
;
267
var request = context.
Request
;
WebAssemblyNetDebugProxyAppBuilderExtensions.cs (2)
25
var queryParams = HttpUtility.ParseQueryString(context.
Request
.QueryString.Value!);
40
var requestPath = context.
Request
.Path.ToString();
Microsoft.AspNetCore.CookiePolicy (2)
ResponseCookiesWrapper.cs (2)
56
var cookie = Context.
Request
.Cookies[Options.ConsentCookie.Name!];
240
if (Context.
Request
.IsHttps && !options.Secure)
Microsoft.AspNetCore.CookiePolicy.Test (19)
CookieChunkingTests.cs (9)
87
context.
Request
.Headers["Cookie"] = new[]
118
context.
Request
.Headers["Cookie"] = new[]
149
context.
Request
.Headers["Cookie"] = new[]
170
context.
Request
.Headers["Cookie"] = new[]
190
context.
Request
.Headers["Cookie"] = new[]
211
context.
Request
.Headers.Append("Cookie", "TestCookie=chunks-7;TestCookieC1=1;TestCookieC2=2;TestCookieC3=3;TestCookieC4=4;TestCookieC5=5;TestCookieC6=6;TestCookieC7=7");
233
context.
Request
.Headers.Append("Cookie", "TestCookie=chunks-7;TestCookieC1=1;TestCookieC2=2");
251
context.
Request
.Headers.Append("Cookie", "TestCookie=chunks-7;TestCookieC1=1;TestCookieC2=2;TestCookieC4=4");
270
httpContext.
Request
.Headers["Cookie"] = new[]
CookieConsentTests.cs (7)
132
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=yes";
155
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=yes";
178
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=IAmATeapot";
286
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=yes";
378
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=yes";
427
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=yes";
463
requestContext.
Request
.Headers.Cookie = ".AspNet.Consent=yes";
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (3)
95
var requestCookies = context.
Request
.Cookies;
161
var requestCookies = context.
Request
.Cookies;
236
var requestCookies = context.
Request
.Cookies;
Microsoft.AspNetCore.Cors (7)
Infrastructure\CorsMiddleware.cs (3)
107
if (!context.
Request
.Headers.ContainsKey(CorsConstants.Origin))
118
var isOptionsRequest = HttpMethods.IsOptions(context.
Request
.Method);
120
var isCorsPreflightRequest = isOptionsRequest && context.
Request
.Headers.ContainsKey(CorsConstants.AccessControlRequestMethod);
Infrastructure\CorsService.cs (4)
68
var requestHeaders = context.
Request
.Headers;
71
var isOptionsRequest = HttpMethods.IsOptions(context.
Request
.Method);
99
var headers = context.
Request
.Headers;
119
new[] { result.IsPreflightRequest ? headers.AccessControlRequestMethod.ToString() : context.
Request
.Method } :
Microsoft.AspNetCore.Diagnostics (20)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (6)
91
Path = httpContext.
Request
.Path.ToString(),
202
var headers = httpContext.
Request
.GetTypedHeaders();
242
foreach (var pair in httpContext.
Request
.Headers)
265
headers: httpContext.
Request
.Headers,
266
path: httpContext.
Request
.Path.ToString(),
362
var request = context.
Request
;
ExceptionHandler\ExceptionHandlerMiddlewareImpl.cs (3)
141
var originalPath = context.
Request
.Path;
144
context.
Request
.Path = _options.ExceptionHandlingPath;
228
context.
Request
.Path = originalPath;
src\Shared\Diagnostics\BaseView.cs (1)
64
Request = Context.
Request
;
src\Shared\RazorViews\BaseView.cs (1)
83
Request = Context.
Request
;
StatusCodePage\StatusCodePagesExtensions.cs (8)
102
context.HttpContext.Response.Redirect(context.HttpContext.
Request
.PathBase + location);
175
var originalPath = context.HttpContext.
Request
.Path;
176
var originalQueryString = context.HttpContext.
Request
.QueryString;
183
OriginalPathBase = context.HttpContext.
Request
.PathBase.Value!,
195
context.HttpContext.
Request
.Path = newPath;
196
context.HttpContext.
Request
.QueryString = newQueryString;
210
context.HttpContext.
Request
.QueryString = originalQueryString;
211
context.HttpContext.
Request
.Path = originalPath;
WelcomePage\WelcomePageMiddleware.cs (1)
40
HttpRequest request = context.
Request
;
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (7)
DatabaseDeveloperPageExceptionFilter.cs (1)
81
Model = new DatabaseErrorPageModel(dbException, contextDetails, _options, errorContext.HttpContext.
Request
.PathBase)
DatabaseErrorPageMiddleware.cs (1)
104
Model = new DatabaseErrorPageModel(exception, new DatabaseContextDetails[] { details }, _options, httpContext.
Request
.PathBase)
MigrationsEndPointMiddleware.cs (3)
55
if (context.
Request
.Path.Equals(_options.Path))
65
_logger.RequestPathMatched(context.
Request
.Path);
97
var form = await context.
Request
.ReadFormAsync();
src\Shared\Diagnostics\BaseView.cs (1)
64
Request = Context.
Request
;
src\Shared\RazorViews\BaseView.cs (1)
83
Request = 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)
713
context.Connection.LocalPort = context.
Request
.Host.Port.Value;
751
context.Connection.LocalPort = context.
Request
.Host.Port.Value;
789
context.Connection.LocalPort = context.
Request
.Host.Port.Value;
825
context.Connection.LocalPort = context.
Request
.Host.Port.Value;
869
context.Connection.LocalPort = context.
Request
.Host.Port.Value;
Microsoft.AspNetCore.Diagnostics.Middleware (6)
Logging\HttpLoggingRedactionInterceptor.cs (4)
67
var request = context.
Request
;
68
if (_excludePathStartsWith.Length != 0 && ShouldExcludePath(context.
Request
.Path.Value!))
81
logContext.AddParameter(HttpLoggingTagNames.Host, context.
Request
.Host.Value);
129
_requestHeadersReader.Read(context.
Request
.Headers, logContext.Parameters);
Logging\RequestHeadersLogEnricher.cs (2)
51
if (_httpContextAccessor.HttpContext?.
Request
== null)
56
var request = _httpContextAccessor.HttpContext.
Request
;
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (10)
Logging\AcceptanceTests.cs (5)
61
await context.
Request
.Body.DrainAsync(default);
63
if (context.
Request
.QueryString.HasValue)
65
if (context.
Request
.QueryString.Value!.Contains("status"))
70
if (context.
Request
.QueryString.Value!.Contains("body"))
87
await context.
Request
.Body.DrainAsync(default).ConfigureAwait(false);
Logging\RequestHeadersEnricherTests.cs (5)
47
httpContextMock.SetupGet(c => c.
Request
.Headers).Returns(headers);
48
httpContextMock.SetupGet(c => c.
Request
.HttpContext).Returns(httpContextMock.Object);
233
httpContextMock.SetupGet(c => c.
Request
).Returns((HttpRequest)null!);
256
httpContextMock.SetupGet(c => c.
Request
.Headers).Throws(new ObjectDisposedException(""));
257
httpContextMock.SetupGet(c => c.
Request
.HttpContext).Returns(httpContextMock.Object);
Microsoft.AspNetCore.Diagnostics.Tests (12)
ExceptionHandlerMiddlewareTest.cs (3)
86
httpContext.
Request
.RouteValues["John"] = "Doe";
91
Assert.Empty(context.
Request
.RouteValues);
108
httpContext.
Request
.RouteValues["John"] = "Doe";
StatusCodeMiddlewareTest.cs (9)
44
await httpContext.Response.WriteAsync(httpContext.
Request
.QueryString.Value);
50
throw new InvalidOperationException($"Invalid input provided. {context.
Request
.Path}");
85
var beforeNext = context.
Request
.QueryString;
87
var afterNext = context.
Request
.QueryString;
108
httpContext.
Request
.QueryString.Value
148
Assert.Empty(context.
Request
.RouteValues);
158
httpContext.
Request
.RouteValues["John"] = "Doe";
170
httpContext.
Request
.QueryString.Value
214
httpContext.
Request
.RouteValues["John"] = "Doe";
Microsoft.AspNetCore.Grpc.JsonTranscoding (13)
Internal\JsonRequestHelpers.cs (8)
205
GrpcServerLog.UnsupportedRequestContentType(serverCallContext.Logger, serverCallContext.HttpContext.
Request
.ContentType);
206
throw 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.");
209
var (stream, usesTranscodingStream) = GetStream(serverCallContext.HttpContext.
Request
.Body, serverCallContext.RequestEncoding);
282
var routeValue = serverCallContext.HttpContext.
Request
.RouteValues[parameterDescriptor.Key];
289
foreach (var item in serverCallContext.HttpContext.
Request
.Query)
322
var contentType = serverCallContext.HttpContext.
Request
.ContentType;
341
var contentLength = serverCallContext.HttpContext.
Request
.ContentLength.GetValueOrDefault();
348
using var fs = new FileBufferingReadStream(serverCallContext.HttpContext.
Request
.Body, memoryThreshold);
Internal\JsonTranscodingRouteAdapter.cs (2)
149
values[i] = context.
Request
.RouteValues[variableParts[i]];
160
context.
Request
.RouteValues[fullPath] = finalValue;
Internal\JsonTranscodingServerCallContext.cs (3)
51
IsJsonRequestContent = JsonRequestHelpers.HasJsonContentType(HttpContext.
Request
, out var charset);
64
protected override string HostCore => HttpContext.
Request
.Host.Value ?? string.Empty;
147
foreach (var header in HttpContext.
Request
.Headers)
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (2)
UnaryServerCallHandlerTests.cs (2)
1603
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
1620
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
Microsoft.AspNetCore.HeaderParsing (1)
HeaderParsingFeature.cs (1)
139
if (feature.Context!.
Request
.Headers.TryGetValue(header.Name, out var values))
Microsoft.AspNetCore.HeaderParsing.Tests (13)
HeaderParsingExtensionsTests.cs (5)
96
var feature = context.
Request
.GetHeaderParsing();
100
Assert.Equal(feature, context.
Request
.GetHeaderParsing());
110
context.
Request
.Headers["Date"] = date;
112
Assert.True(context.
Request
.TryGetHeaderValue(dateHeaderKey, out var parsedDate, out var result));
116
Assert.True(context.
Request
.TryGetHeaderValue(dateHeaderKey, out parsedDate));
HeaderParsingFeatureTests.cs (8)
49
Context.
Request
.Headers["Date"] = date;
67
Context.
Request
.Headers["Date"] = currentDate;
68
Context.
Request
.Headers["Test"] = futureDate;
90
Context.
Request
.Headers["Date"] = date;
139
Context.
Request
.Headers["Date"] = "Not a date.";
178
Context.
Request
.Headers[firstHeaderKey.Name] = DateTimeOffset.Now.ToString("R", CultureInfo.InvariantCulture);
179
Context.
Request
.Headers[thirdHeaderKey.Name] = DateTimeOffset.Now.ToString("R", CultureInfo.InvariantCulture);
196
Context.
Request
.Headers[HeaderNames.CacheControl] = "max-age=604800";
Microsoft.AspNetCore.HeaderPropagation (1)
HeaderPropagationMiddleware.cs (1)
71
context.
Request
.Headers.TryGetValue(entry.InboundHeaderName, out var value);
Microsoft.AspNetCore.HostFiltering (3)
HostFilteringMiddleware.cs (3)
84
var 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)
59
ctx.
Request
.Headers.Remove(HeaderNames.Host);
65
Assert.False(c.
Request
.Headers.TryGetValue(HeaderNames.Host, out var host));
100
ctx.
Request
.Headers.Host = "";
106
Assert.True(c.
Request
.Headers.TryGetValue(HeaderNames.Host, out var host));
157
ctx.
Request
.Headers.Host = hosturl;
209
ctx.
Request
.Headers.Host = hosturl;
248
ctx.
Request
.Headers.Host = currentHost;
Microsoft.AspNetCore.Hosting (30)
Internal\HostingApplicationDiagnostics.cs (15)
64
context.MetricsTagsFeature.Method = httpContext.
Request
.Method;
65
context.MetricsTagsFeature.Protocol = httpContext.
Request
.Protocol;
66
context.MetricsTagsFeature.Scheme = httpContext.
Request
.Scheme;
334
[DynamicDependency(nameof(HttpContext.
Request
), typeof(HttpContext))]
355
[DynamicDependency(nameof(HttpContext.
Request
), typeof(HttpContext))]
378
_eventSource.RequestStart(httpContext.
Request
.Method, httpContext.
Request
.Path);
384
_metrics.RequestStart(httpContext.
Request
.Scheme, httpContext.
Request
.Method);
392
var headers = httpContext.
Request
.Headers;
444
[DynamicDependency(nameof(HttpContext.
Request
), typeof(HttpContext))]
519
_path = (httpContext.
Request
.PathBase.HasValue
520
? httpContext.
Request
.PathBase + httpContext.
Request
.Path
521
: httpContext.
Request
.Path).ToString();
Internal\HostingRequestFinishedLog.cs (2)
30
var request = _context.HttpContext.
Request
;
64
var request = _context.HttpContext.
Request
;
Internal\HostingRequestStartingLog.cs (1)
40
_request = httpContext.
Request
;
Internal\HostingRequestUnhandledLog.cs (11)
23
0 => new KeyValuePair<string, object?>(nameof(_httpContext.
Request
.Method), _httpContext.
Request
.Method),
24
1 => new KeyValuePair<string, object?>(nameof(_httpContext.
Request
.Scheme), _httpContext.
Request
.Scheme),
25
2 => new KeyValuePair<string, object?>(nameof(_httpContext.
Request
.Host), _httpContext.
Request
.Host),
26
3 => new KeyValuePair<string, object?>(nameof(_httpContext.
Request
.PathBase), _httpContext.
Request
.PathBase),
27
4 => new KeyValuePair<string, object?>(nameof(_httpContext.
Request
.Path), _httpContext.
Request
.Path),
42
var request = _httpContext.
Request
;
src\Shared\RazorViews\BaseView.cs (1)
83
Request = Context.
Request
;
Microsoft.AspNetCore.Hosting.Tests (2)
Internal\HostingRequestStartLogTests.cs (1)
28
mockContext.Setup(context => context.
Request
).Returns(mockRequest.Object);
WebHostTests.cs (1)
946
capturedRequest = 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)
56
if (!string.IsNullOrEmpty(context.
Request
.Method))
58
sb.Append(context.
Request
.Method);
61
GetRequestUrl(sb, context.
Request
, includeQueryString: false);
62
if (!string.IsNullOrEmpty(context.
Request
.Protocol))
65
sb.Append(context.
Request
.Protocol);
67
if (!string.IsNullOrEmpty(context.
Request
.ContentType))
70
sb.Append(context.
Request
.ContentType);
Microsoft.AspNetCore.Http.Abstractions.Tests (24)
MapPathMiddlewareTests.cs (18)
15
context.Items["test.PathBase"] = context.
Request
.PathBase.Value;
16
context.Items["test.Path"] = context.
Request
.Path.Value;
63
Assert.Equal(basePath, context.
Request
.PathBase.Value);
64
Assert.Equal(requestPath, context.
Request
.Path.Value);
152
Assert.Equal(basePath, context.
Request
.PathBase.Value);
153
Assert.Equal(requestPath, context.
Request
.Path.Value);
174
Assert.Equal(basePath, context.
Request
.PathBase.Value);
175
Assert.Equal(requestPath, context.
Request
.Path.Value);
196
Assert.Equal(string.Empty, context.
Request
.PathBase.Value);
197
Assert.Equal("/route1/subroute1", context.
Request
.Path.Value);
202
Assert.Equal(string.Empty, context.
Request
.PathBase.Value);
203
Assert.Equal("/route2", context.
Request
.Path.Value);
208
Assert.Equal(string.Empty, context.
Request
.PathBase.Value);
209
Assert.Equal("/route2/subroute2", context.
Request
.Path.Value);
214
Assert.Equal(string.Empty, context.
Request
.PathBase.Value);
215
Assert.Equal("/route2/subroute2/subsub2", context.
Request
.Path.Value);
241
context.
Request
.PathBase = new PathString(basePath);
242
context.
Request
.Path = new PathString(requestPath);
UsePathBaseExtensionsTests.cs (6)
215
context.Items["test.Path"] = context.
Request
.Path;
216
context.Items["test.PathBase"] = context.
Request
.PathBase;
226
Assert.Equal(pathBase, requestContext.
Request
.PathBase.Value);
227
Assert.Equal(requestPath, requestContext.
Request
.Path.Value);
233
context.
Request
.PathBase = new PathString(pathBase);
234
context.
Request
.Path = new PathString(requestPath);
Microsoft.AspNetCore.Http.Connections (10)
Internal\HttpConnectionDispatcher.cs (10)
79
if (HttpMethods.IsPost(context.
Request
.Method))
84
else if (HttpMethods.IsGet(context.
Request
.Method) || HttpMethods.IsConnect(context.
Request
.Method))
89
else if (HttpMethods.IsDelete(context.
Request
.Method))
108
if (HttpMethods.IsPost(context.
Request
.Method))
131
var headers = context.
Request
.GetTypedHeaders();
341
if (context.
Request
.Query.TryGetValue("NegotiateVersion", out var queryStringVersion))
368
if (options.AllowStatefulReconnects == true && context.
Request
.Query.TryGetValue("UseStatefulReconnect", out var useStatefulReconnectValue))
447
private static StringValues GetConnectionToken(HttpContext context) => context.
Request
.Query["id"];
488
await context.
Request
.Body.CopyToAsync(connection.ApplicationStream, bufferSize);
Microsoft.AspNetCore.Http.Connections.Tests (10)
HttpConnectionDispatcherTests.cs (10)
816
Assert.Equal(3, connectionHttpContext.
Request
.Query.Count);
817
Assert.Equal("value", connectionHttpContext.
Request
.Query["another"]);
819
Assert.Equal(3, connectionHttpContext.
Request
.Headers.Count);
820
Assert.Equal("h1", connectionHttpContext.
Request
.Headers["header1"]);
821
Assert.Equal("h2", connectionHttpContext.
Request
.Headers["header2"]);
822
Assert.Equal("h3", connectionHttpContext.
Request
.Headers["header3"]);
3242
var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.
Request
.Query["user"]) };
3306
new Claim(ClaimTypes.NameIdentifier, context.
Request
.Query["user"])
3404
var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.
Request
.Query["user"]) };
3758
context.
Request
.Headers["Accept"] = "text/event-stream";
Microsoft.AspNetCore.Http.Extensions (10)
DefaultProblemDetailsWriter.cs (1)
29
var acceptHeader = httpContext.
Request
.Headers.Accept.GetList<MediaTypeHeaderValue>();
HttpRequestJsonExtensions.cs (2)
319
return (httpContext.
Request
.Body, false);
322
var inputStream = Encoding.CreateTranscodingStream(httpContext.
Request
.Body, encoding, Encoding.UTF8, leaveOpen: true);
RequestDelegateFactory.cs (7)
92
private static readonly MemberExpression HttpRequestExpr = Expression.Property(HttpContextExpr, typeof(HttpContext).GetProperty(nameof(HttpContext.
Request
))!);
1387
if (!httpContext.
Request
.HasJsonContentType())
1389
Log.UnexpectedJsonContentType(httpContext, httpContext.
Request
.ContentType, throwOnBadRequest);
1395
bodyValue = await httpContext.
Request
.ReadFromJsonAsync(jsonTypeInfo);
1518
if (!httpContext.
Request
.HasFormContentType)
1520
Log.UnexpectedNonFormContentType(httpContext, httpContext.
Request
.ContentType, throwOnBadRequest);
1527
formValue = await httpContext.
Request
.ReadFormAsync();
Microsoft.AspNetCore.Http.Extensions.Tests (311)
ParameterBindingMethodCacheTests.cs (4)
1082
if (!int.TryParse(context.
Request
.Headers.ETag, out var val))
1098
if (!int.TryParse(context.
Request
.Headers.ETag, out var val))
1117
if (!int.TryParse(context.
Request
.Headers.ETag, out var val))
1130
if (!int.TryParse(context.
Request
.Headers.ETag, out var val))
RequestDelegateFactoryTests.cs (11)
420
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
441
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
457
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
480
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
498
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
514
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
533
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
546
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
564
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
3545
var body = await JsonSerializer.DeserializeAsync<JsonTodo>(context.
Request
.Body);
3546
context.
Request
.Body.Position = 0;
RequestDelegateGenerator\CompileTimeCreationTests.cs (7)
147
httpContext.
Request
.RouteValues["id"] = i.ToString(CultureInfo.InvariantCulture);
410
httpContext.
Request
.QueryString = QueryString.Create("value", endpoint.DisplayName);
525
httpContext.
Request
.QueryString = httpContext.
Request
.QueryString.Add(QueryString.Create(value, value));
528
httpContext.
Request
.Headers[value] = value;
531
httpContext.
Request
.RouteValues[value] = value;
780
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTestBase.cs (3)
223
httpContext.
Request
.Headers["Content-Type"] = "application/json";
227
httpContext.
Request
.Body = stream;
228
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
RequestDelegateGenerator\RequestDelegateCreationTests.Arrays.cs (41)
36
httpContext.
Request
.QueryString = new QueryString("?p=1&p=1");
57
httpContext.
Request
.Headers.Add("p", new StringValues(new string[] { "1", "1" }));
78
httpContext.
Request
.Headers.Add("p", new StringValues(new string[] { "1", "1" }));
99
httpContext.
Request
.Headers.Add("p", new StringValues(new string[] { "1", "1" }));
172
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
197
httpContext.
Request
.QueryString = new QueryString("?p=1&p=1");
218
httpContext.
Request
.QueryString = new QueryString("?p=Item1&p=Item2");
239
httpContext.
Request
.QueryString = new QueryString("?p=Item1&p=Item2");
280
httpContext.
Request
.QueryString = new QueryString("?p=&p=");
301
httpContext.
Request
.QueryString = new QueryString("?p=Item1&p=Item2");
322
httpContext.
Request
.QueryString = new QueryString("?p=Item1&p=Item2");
344
httpContext.
Request
.QueryString = new QueryString("?p=a&p=b&p=c");
387
httpContext.
Request
.QueryString = new QueryString("?p=a&p=b&p=c");
430
httpContext.
Request
.QueryString = new QueryString("?p=0&p=1&p=2");
473
httpContext.
Request
.QueryString = new QueryString("?p=0&p=1&p=2");
516
httpContext.
Request
.QueryString = new QueryString("?p=0&p=1&p=2");
559
httpContext.
Request
.QueryString = new QueryString("?p=0&p=1&p=2");
601
httpContext.
Request
.QueryString = new QueryString("?p=Item1&p=Item2");
623
httpContext.
Request
.Headers["Content-Type"] = "application/json";
626
httpContext.
Request
.Body = stream;
627
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
628
httpContext.
Request
.QueryString = new QueryString("?p=ValueFromQueryString");
650
httpContext.
Request
.Headers["Content-Type"] = "application/json";
653
httpContext.
Request
.Body = stream;
654
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
655
httpContext.
Request
.QueryString = new QueryString("?p=ValueFromQueryString");
677
httpContext.
Request
.Headers["Content-Type"] = "application/json";
680
httpContext.
Request
.Body = stream;
681
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
682
httpContext.
Request
.QueryString = new QueryString("?p=ValueFromQueryString");
704
httpContext.
Request
.Headers["Content-Type"] = "application/json";
707
httpContext.
Request
.Body = stream;
708
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
709
httpContext.
Request
.QueryString = new QueryString("?p=ValueFromQueryString");
731
httpContext.
Request
.Headers["Content-Type"] = "application/json";
734
httpContext.
Request
.Body = stream;
735
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
736
httpContext.
Request
.QueryString = new QueryString("?p=ValueFromQueryString");
760
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
765
httpContext.
Request
.Headers["Custom"] = new(new[] { "4", "5", "6" });
767
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTests.AsParameters.cs (11)
28
httpContext.
Request
.RouteValues["value"] = originalRouteParam.ToString(NumberFormatInfo.InvariantInfo);
68
httpContext.
Request
.Query = query;
96
httpContext.
Request
.Headers[customHeaderName] = originalHeaderParam.ToString(NumberFormatInfo.InvariantInfo);
200
httpContext.
Request
.RouteValues[paramName] = originalRouteParam.ToString(NumberFormatInfo.InvariantInfo);
280
httpContext.
Request
.RouteValues[nameof(ParameterListWithReadOnlyProperties.Value)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo);
281
httpContext.
Request
.RouteValues[nameof(ParameterListWithReadOnlyProperties.ConstantValue)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo);
282
httpContext.
Request
.RouteValues[nameof(ParameterListWithReadOnlyProperties.ReadOnlyValue)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo);
283
httpContext.
Request
.RouteValues[nameof(ParameterListWithReadOnlyProperties.PrivateSetValue)] = routeParamValue.ToString(NumberFormatInfo.InvariantInfo);
313
httpContext.
Request
.RouteValues[nameof(SampleParameterList.Foo)] = foo.ToString(NumberFormatInfo.InvariantInfo);
314
httpContext.
Request
.RouteValues[nameof(AdditionalSampleParameterList.Bar)] = bar.ToString(NumberFormatInfo.InvariantInfo);
340
httpContext.
Request
.Headers.Referer = uriValue;
RequestDelegateGenerator\RequestDelegateCreationTests.BindAsync.cs (12)
57
httpContext.
Request
.Headers.Referer = "https://example.org";
78
httpContext.
Request
.Headers.Referer = "https://example.org";
178
httpContext.
Request
.Headers.Referer = "https://example.org";
195
httpContext.
Request
.Headers.Referer = "https://example.org";
213
httpContext.
Request
.Body = stream;
215
httpContext.
Request
.Headers["Content-Type"] = "application/json";
216
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
233
httpContext.
Request
.Headers.Referer = "https://example.org";
269
httpContext.
Request
.Body = stream;
271
httpContext.
Request
.Headers["Content-Type"] = "application/json";
272
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
289
httpContext.
Request
.Headers.Referer = "https://example.org";
RequestDelegateGenerator\RequestDelegateCreationTests.cs (15)
213
httpContext.
Request
.Headers["headerValue"] = requestData;
431
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
436
httpContext.
Request
.Headers.Referer = "https://example.org";
457
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
462
httpContext.
Request
.Headers.Referer = "https://example.org";
483
httpContext.
Request
.Method = "GET";
504
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
509
httpContext.
Request
.Headers.Referer = "https://example.org";
529
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
534
httpContext.
Request
.Headers.Referer = "https://example.org";
554
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
559
httpContext.
Request
.Headers.Referer = "https://example.org";
584
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
589
httpContext.
Request
.Headers["Custom"] = new(new[] { "4", "5", "6" });
591
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTests.Filters.cs (7)
62
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
141
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
183
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
234
httpContext.
Request
.Body = stream;
235
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
299
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
340
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RequestDelegateCreationTests.Forms.cs (79)
35
httpContext.
Request
.Body = stream;
36
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
41
Assert.Equal(httpContext.
Request
.Form.Files, httpContext.Items["formFiles"]);
70
httpContext.
Request
.Body = stream;
71
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
76
Assert.Equal(httpContext.
Request
.Form.Files, httpContext.Items["formFiles"]);
105
httpContext.
Request
.Body = stream;
106
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
111
Assert.Equal(httpContext.
Request
.Form.Files["file"], httpContext.Items["formFiles"]);
143
httpContext.
Request
.Body = stream;
144
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
149
Assert.Equal(httpContext.
Request
.Form.Files["file"], httpContext.Items["formFiles"]);
181
httpContext.
Request
.Body = stream;
182
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
187
Assert.Equal(httpContext.
Request
.Form.Files["file1"], httpContext.Items["file1"]);
192
Assert.Equal(httpContext.
Request
.Form.Files["file2"], httpContext.Items["file2"]);
222
httpContext.
Request
.Body = stream;
223
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
228
Assert.Equal(httpContext.
Request
.Form.Files["file1"], httpContext.Items["file1"]);
231
Assert.Equal(httpContext.
Request
.Form.Files["file2"], httpContext.Items["file2"]);
259
httpContext.
Request
.Body = stream;
260
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
265
Assert.Equal(httpContext.
Request
.Form.Files["my_file"], httpContext.Items["formFiles"]);
295
httpContext.
Request
.Body = stream;
296
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
302
Assert.Equal(httpContext.
Request
.Form.Files["file"], httpContext.Items["formFiles"]);
322
httpContext.
Request
.Headers["Content-Type"] = "application/xml";
323
httpContext.
Request
.Headers["Content-Length"] = "1";
369
httpContext.
Request
.Body = stream;
370
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
402
httpContext.
Request
.Body = stream;
403
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
408
Assert.Equal(httpContext.
Request
.Form.Files, httpContext.Items["formFiles"]);
412
Assert.Equal(httpContext.
Request
.Form.Files["file"], httpContext.Items["file"]);
451
httpContext.
Request
.Body = stream;
452
httpContext.
Request
.Headers[headerName] = headerValue;
453
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
459
Assert.Equal(httpContext.
Request
.Form.Files["file"], httpContext.Items["file"]);
491
httpContext.
Request
.Body = stream;
492
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
504
Assert.Equal(httpContext.
Request
.Form.Files["file"], httpContext.Items["file"]);
550
httpContext.
Request
.Body = stream;
551
httpContext.
Request
.Headers["Content-Type"] = contentType;
556
Assert.Equal(httpContext.
Request
.Form, httpContext.Items["formFiles"]);
597
httpContext.
Request
.Body = stream;
598
httpContext.
Request
.Headers["Content-Type"] = contentType;
603
Assert.Equal(httpContext.
Request
.Form, httpContext.Items["formFiles"]);
644
httpContext.
Request
.Body = stream;
645
httpContext.
Request
.Headers["Content-Type"] = contentType;
650
Assert.Equal(httpContext.
Request
.Form["message"][0], httpContext.Items["message"]);
673
httpContext.
Request
.Body = stream;
674
httpContext.
Request
.Headers["Content-Type"] = contentType;
679
Assert.Equal(httpContext.
Request
.Form["message"][0], httpContext.Items["message"]);
682
Assert.Equal(httpContext.
Request
.Form["name"][0], httpContext.Items["name"]);
706
httpContext.
Request
.Body = stream;
707
httpContext.
Request
.Headers["Content-Type"] = contentType;
712
Assert.Equal(httpContext.
Request
.Form["message"][0], httpContext.Items["message"]);
736
httpContext.
Request
.Body = stream;
737
httpContext.
Request
.Headers["Content-Type"] = contentType;
742
Assert.Equal(httpContext.
Request
.Form["message"][0], httpContext.Items["message"]);
766
httpContext.
Request
.Body = stream;
767
httpContext.
Request
.Headers["Content-Type"] = contentType;
772
Assert.Equal(httpContext.
Request
.Form["message"][0], httpContext.Items["message"]);
829
httpContext.
Request
.Body = stream;
830
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
838
Assert.Equal(httpContext.
Request
.Form.Files, formFilesArgument);
842
Assert.Equal(httpContext.
Request
.Form, formArgument);
873
httpContext.
Request
.Body = stream;
874
httpContext.
Request
.Headers["Content-Type"] = contentType;
897
httpContext.
Request
.Form = new FormCollection(new Dictionary<string, StringValues>
930
httpContext.
Request
.Headers["Content-Type"] = "application/x-www-form-urlencoded";
931
httpContext.
Request
.Headers["Content-Length"] = "1";
932
httpContext.
Request
.Body = new ExceptionThrowingRequestBodyStream(ioException);
962
httpContext.
Request
.Headers["Content-Type"] = "application/x-www-form-urlencoded";
963
httpContext.
Request
.Headers["Content-Length"] = "2049";
964
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes(new string('x', 2049)));
999
httpContext.
Request
.Headers["Content-Type"] = "application/x-www-form-urlencoded";
1000
httpContext.
Request
.Headers["Content-Length"] = "2049";
1001
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes(new string('x', 2049)));
RequestDelegateGenerator\RequestDelegateCreationTests.JsonBody.cs (40)
86
httpContext.
Request
.Headers["Content-Type"] = "application/json";
90
httpContext.
Request
.Body = stream;
91
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
106
httpContext.
Request
.Headers["Content-Type"] = "application/json";
107
httpContext.
Request
.Headers["Content-Length"] = "0";
233
httpContext.
Request
.Body = stream;
234
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
239
Assert.Same(httpContext.
Request
.Body, stream);
242
httpContext.
Request
.Body.Position = 0;
244
int read = await httpContext.
Request
.Body.ReadAsync(data.AsMemory());
248
httpContext.
Request
.Body.Position = 0;
249
var result = await httpContext.
Request
.BodyReader.ReadAsync();
252
httpContext.
Request
.BodyReader.AdvanceTo(result.Buffer.End);
274
httpContext.
Request
.Body = stream;
275
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
280
Assert.Same(httpContext.
Request
.Body, stream);
283
httpContext.
Request
.Body.Position = 0;
285
int read = await httpContext.
Request
.Body.ReadAsync(data.AsMemory());
289
httpContext.
Request
.Body.Position = 0;
290
var result = await httpContext.
Request
.BodyReader.ReadAsync();
293
httpContext.
Request
.BodyReader.AdvanceTo(result.Buffer.End);
317
httpContext.
Request
.Body = stream;
319
httpContext.
Request
.Headers["Content-Length"] = requestBodyBytes.Length.ToString(CultureInfo.InvariantCulture);
324
Assert.Same(httpContext.
Request
.Body, stream);
325
Assert.Same(httpContext.
Request
.BodyReader, pipeReader);
328
int read = await httpContext.
Request
.Body.ReadAsync(new byte[requestBodyBytes.Length].AsMemory());
331
var result = await httpContext.
Request
.BodyReader.ReadAsync();
334
httpContext.
Request
.BodyReader.AdvanceTo(result.Buffer.End);
358
httpContext.
Request
.Body = stream;
360
httpContext.
Request
.Headers["Content-Length"] = requestBodyBytes.Length.ToString(CultureInfo.InvariantCulture);
365
Assert.Same(httpContext.
Request
.Body, stream);
366
Assert.Same(httpContext.
Request
.BodyReader, pipeReader);
369
int read = await httpContext.
Request
.Body.ReadAsync(new byte[requestBodyBytes.Length].AsMemory());
372
var result = await httpContext.
Request
.BodyReader.ReadAsync();
375
httpContext.
Request
.BodyReader.AdvanceTo(result.Buffer.End);
398
httpContext.
Request
.Headers["Content-Type"] = "application/json";
399
httpContext.
Request
.Headers["Content-Length"] = "0";
427
httpContext.
Request
.Headers["Content-Type"] = "application/json";
431
httpContext.
Request
.Body = stream;
432
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
RequestDelegateGenerator\RequestDelegateCreationTests.JsonBodyOrService.cs (2)
198
httpContext.
Request
.Headers["Content-Type"] = "application/json";
199
httpContext.
Request
.Headers["Content-Length"] = "0";
RequestDelegateGenerator\RequestDelegateCreationTests.Logging.cs (24)
36
httpContext.
Request
.Form = new FormCollection(null);
98
httpContext.
Request
.RouteValues["tryParsable"] = "invalid!";
99
httpContext.
Request
.RouteValues["tryParsable2"] = "invalid again!";
149
httpContext.
Request
.RouteValues["tryParsable"] = "invalid!";
150
httpContext.
Request
.RouteValues["tryParsable2"] = "invalid again!";
186
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>()
384
httpContext.
Request
.Headers["Content-Type"] = "application/xml";
385
httpContext.
Request
.Headers["Content-Length"] = "1";
435
httpContext.
Request
.Headers["Content-Type"] = "application/xml";
481
httpContext.
Request
.Headers["Content-Type"] = "application/json";
482
httpContext.
Request
.Headers["Content-Length"] = "1";
483
httpContext.
Request
.Body = new ExceptionThrowingRequestBodyStream(ioException);
517
httpContext.
Request
.Headers["Content-Type"] = "application/json";
518
httpContext.
Request
.Headers["Content-Length"] = "1";
519
httpContext.
Request
.Body = new ExceptionThrowingRequestBodyStream(jsonException);
558
httpContext.
Request
.Headers["Content-Type"] = "application/json";
559
httpContext.
Request
.Headers["Content-Length"] = "1";
560
httpContext.
Request
.Body = new ExceptionThrowingRequestBodyStream(jsonException);
597
httpContext.
Request
.Headers["Content-Type"] = "application/json";
598
httpContext.
Request
.Headers["Content-Length"] = "1";
599
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes("{"));
637
httpContext.
Request
.Headers["Content-Type"] = "application/json";
638
httpContext.
Request
.Headers["Content-Length"] = "1";
639
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes("{"));
RequestDelegateGenerator\RequestDelegateCreationTests.QueryParameters.cs (4)
54
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
100
httpContext.
Request
.QueryString = new QueryString("?p=");
121
httpContext.
Request
.QueryString = new QueryString("?p1=Hello&p2=world!");
178
httpContext.
Request
.QueryString = new QueryString($"?{name}=test");
RequestDelegateGenerator\RequestDelegateCreationTests.RouteParameter.cs (10)
53
httpContext.
Request
.RouteValues["routeValue"] = requestData;
113
httpContext.
Request
.RouteValues["value"] = expectedBody;
118
httpContext.
Request
.QueryString = new QueryString($"?value={expectedBody}");
135
httpContext.
Request
.RouteValues["value"] = "fromRoute";
136
httpContext.
Request
.QueryString = new QueryString($"?value=fromQuery");
152
httpContext.
Request
.RouteValues["value"] = "fromRoute";
153
httpContext.
Request
.QueryString = new QueryString($"?value=fromQuery");
186
httpContext.
Request
.RouteValues[routeParameterName] = "test";
202
httpContext.
Request
.RouteValues[unmatchedName] = unmatchedRouteParam.ToString(NumberFormatInfo.InvariantInfo);
226
httpContext.
Request
.RouteValues[paramName] = originalRouteParam.ToString(NumberFormatInfo.InvariantInfo);
RequestDelegateGenerator\RequestDelegateCreationTests.SpecialTypes.cs (2)
103
Assert.Equal(httpContext.
Request
, httpContext.Items["arg"]);
149
Assert.Same(httpContext.
Request
, httpContext.Items["request"]);
RequestDelegateGenerator\RequestDelegateCreationTests.TryParse.cs (10)
78
httpContext.
Request
.QueryString = new QueryString($"?p={UrlEncoder.Default.Encode(queryStringInput)}");
116
httpContext.
Request
.QueryString = new QueryString($"?time={UrlEncoder.Default.Encode(queryStringInput)}");
148
httpContext.
Request
.QueryString = new QueryString($"?time={UrlEncoder.Default.Encode(queryStringInput)}");
173
httpContext.
Request
.QueryString = new QueryString("?p=1");
196
httpContext.
Request
.QueryString = new QueryString("?p=1");
212
httpContext.
Request
.QueryString = new QueryString("?p=1");
237
httpContext.
Request
.QueryString = new QueryString("?p=Done");
257
httpContext.
Request
.RouteValues["tryParsable"] = routeValue;
277
httpContext.
Request
.RouteValues["myBindAsyncRecord"] = "foo";
278
httpContext.
Request
.Query = new QueryCollection(new Dictionary<string, StringValues>
RequestDelegateGenerator\RuntimeCreationTests.ComplexFormBinding.cs (14)
30
httpContext.
Request
.Body = stream;
31
httpContext.
Request
.Headers["Content-Type"] = "application/x-www-form-urlencoded";
66
httpContext.
Request
.Body = stream;
67
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
98
httpContext.
Request
.Body = stream;
99
httpContext.
Request
.Headers["Content-Type"] = "application/x-www-form-urlencoded";
135
httpContext.
Request
.Body = stream;
136
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
172
httpContext.
Request
.Body = stream;
173
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
207
httpContext.
Request
.Body = stream;
208
httpContext.
Request
.Headers["Content-Type"] = "application/x-www-form-urlencoded";
244
httpContext.
Request
.Body = stream;
245
httpContext.
Request
.Headers["Content-Type"] = "multipart/form-data;boundary=some-boundary";
RequestDelegateGenerator\SharedTypes.cs (15)
92
var body = await JsonSerializer.DeserializeAsync<JsonTodo>(context.
Request
.Body);
93
context.
Request
.Body.Position = 0;
207
var body = await context.
Request
.ReadFromJsonAsync<CustomTodo>();
208
context.
Request
.Body.Position = 0;
226
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
253
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
278
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
305
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
322
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
338
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
359
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
392
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
426
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
450
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
1107
return new BindableStruct(httpContext.
Request
.Query["value"].ToString());
Microsoft.AspNetCore.Http.Microbenchmarks (18)
src\Http\Http.Extensions\test\RequestDelegateGenerator\RequestDelegateCreationTestBase.cs (3)
223
httpContext.
Request
.Headers["Content-Type"] = "application/json";
227
httpContext.
Request
.Body = stream;
228
httpContext.
Request
.Headers["Content-Length"] = stream.Length.ToString(CultureInfo.InvariantCulture);
src\Http\Http.Extensions\test\RequestDelegateGenerator\SharedTypes.cs (15)
92
var body = await JsonSerializer.DeserializeAsync<JsonTodo>(context.
Request
.Body);
93
context.
Request
.Body.Position = 0;
207
var body = await context.
Request
.ReadFromJsonAsync<CustomTodo>();
208
context.
Request
.Body.Position = 0;
226
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
253
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
278
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
305
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
322
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
338
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
359
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
392
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
426
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
450
if (!Uri.TryCreate(context.
Request
.Headers.Referer, UriKind.Absolute, out var uri))
1107
return 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.
40
var rawRangeHeader = context.
Request
.Headers.Range;
src\Shared\ResultsHelpers\FileResultHelper.cs (2)
99
var request = httpContext.
Request
;
294
var serveBody = !HttpMethods.IsHead(httpContext.
Request
.Method);
src\Shared\ResultsHelpers\SharedUrlHelper.cs (1)
23
var applicationPath = httpContext.
Request
.PathBase;
Microsoft.AspNetCore.Http.Results.Tests (83)
src\Shared\ResultsTests\FileContentResultTestBase.cs (18)
62
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
68
httpContext.
Request
.Method = HttpMethods.Get;
101
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
108
httpContext.
Request
.Method = HttpMethods.Get;
140
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
147
httpContext.
Request
.Method = HttpMethods.Get;
174
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
181
httpContext.
Request
.Method = HttpMethods.Get;
211
httpContext.
Request
.Headers.Range = rangeString;
212
httpContext.
Request
.Method = HttpMethods.Get;
242
httpContext.
Request
.Headers.Range = rangeString;
243
httpContext.
Request
.Method = HttpMethods.Get;
274
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
279
httpContext.
Request
.Headers.Range = "bytes = 0-6";
280
httpContext.
Request
.Method = HttpMethods.Get;
308
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
313
httpContext.
Request
.Headers.Range = "bytes = 0-6";
314
httpContext.
Request
.Method = HttpMethods.Get;
src\Shared\ResultsTests\FileStreamResultTestBase.cs (21)
40
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
46
httpContext.
Request
.Method = HttpMethods.Get;
82
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
89
httpContext.
Request
.Method = HttpMethods.Get;
123
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
130
httpContext.
Request
.Method = HttpMethods.Get;
160
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
167
httpContext.
Request
.Method = HttpMethods.Get;
199
httpContext.
Request
.Headers.Range = rangeString;
200
httpContext.
Request
.Method = HttpMethods.Get;
232
httpContext.
Request
.Headers.Range = rangeString;
233
httpContext.
Request
.Method = HttpMethods.Get;
266
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
271
httpContext.
Request
.Headers.Range = "bytes = 0-6";
272
httpContext.
Request
.Method = HttpMethods.Get;
302
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
307
httpContext.
Request
.Headers.Range = "bytes = 0-6";
308
httpContext.
Request
.Method = HttpMethods.Get;
343
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
349
httpContext.
Request
.Method = HttpMethods.Get;
428
httpContext.
Request
.Method = "HEAD";
src\Shared\ResultsTests\PhysicalFileResultTestBase.cs (22)
42
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
45
httpContext.
Request
.Method = HttpMethods.Get;
74
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
78
httpContext.
Request
.Method = HttpMethods.Get;
106
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
110
httpContext.
Request
.Method = HttpMethods.Get;
133
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
137
httpContext.
Request
.Method = HttpMethods.Get;
162
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
164
httpContext.
Request
.Headers.Range = rangeString;
165
httpContext.
Request
.Method = HttpMethods.Get;
188
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
190
httpContext.
Request
.Headers.Range = rangeString;
191
httpContext.
Request
.Method = HttpMethods.Get;
217
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
219
httpContext.
Request
.Headers.Range = "bytes = 0-6";
220
httpContext.
Request
.Method = HttpMethods.Get;
244
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
246
httpContext.
Request
.Headers.Range = "bytes = 0-6";
247
httpContext.
Request
.Method = HttpMethods.Get;
298
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
301
httpContext.
Request
.Method = HttpMethods.Get;
src\Shared\ResultsTests\VirtualFileResultTestBase.cs (22)
54
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
57
httpContext.
Request
.Method = HttpMethods.Get;
92
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
96
httpContext.
Request
.Method = HttpMethods.Get;
129
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
133
httpContext.
Request
.Method = HttpMethods.Get;
162
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
166
httpContext.
Request
.Method = HttpMethods.Get;
197
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
198
httpContext.
Request
.Headers.Range = rangeString;
200
httpContext.
Request
.Method = HttpMethods.Get;
230
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
231
httpContext.
Request
.Headers.Range = rangeString;
233
httpContext.
Request
.Method = HttpMethods.Get;
267
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
269
httpContext.
Request
.Headers.Range = "bytes = 0-6";
270
httpContext.
Request
.Method = HttpMethods.Get;
298
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
300
httpContext.
Request
.Headers.Range = "bytes = 0-6";
301
httpContext.
Request
.Method = HttpMethods.Get;
333
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
336
httpContext.
Request
.Method = HttpMethods.Get;
Microsoft.AspNetCore.Http.Tests (2)
DefaultHttpContextTests.cs (2)
327
TestCachedFeaturesAreNull(context.
Request
, features);
355
TestCachedFeaturesAreSet(context.
Request
, features);
Microsoft.AspNetCore.HttpLogging (3)
HttpLoggingMiddleware.cs (2)
109
var request = context.
Request
;
279
context.
Request
.Body = originalBody;
W3CLoggingMiddleware.cs (1)
118
var request = context.
Request
;
Microsoft.AspNetCore.HttpLogging.Tests (30)
HttpLoggingMiddlewareTests.cs (30)
124
var res = await c.
Request
.Body.ReadAsync(arr);
155
var res = await c.
Request
.Body.ReadAsync(arr);
187
var res = await c.
Request
.Body.ReadAsync(arr);
219
var res = await c.
Request
.Body.ReadAsync(arr);
250
var res = await c.
Request
.Body.ReadAsync(arr);
319
var res = await c.
Request
.Body.ReadAsync(arr);
348
c.
Request
.Body.CopyTo(ms);
376
await c.
Request
.Body.CopyToAsync(ms);
408
var res = await c.
Request
.Body.ReadAsync(arr);
444
var res = await c.
Request
.Body.ReadAsync(arr);
477
var res = await c.
Request
.Body.ReadAsync(arr);
502
_ = await c.
Request
.Body.ReadAsync(new byte[0]);
503
var res = await c.
Request
.Body.ReadAsync(arr);
537
var res = await c.
Request
.Body.ReadAsync(arr);
574
var res = await c.
Request
.Body.ReadAsync(arr);
613
var res = await c.
Request
.Body.ReadAsync(arr);
651
var res = await c.
Request
.Body.ReadAsync(arr);
690
var res = await c.
Request
.Body.ReadAsync(arr);
1510
await c.
Request
.Body.DrainAsync(default);
1579
await c.
Request
.Body.DrainAsync(default);
1927
await c.
Request
.Body.ReadAsync(new byte[100]);
1993
var res = await context.
Request
.Body.ReadAsync(arr);
2033
await c.
Request
.Body.ReadAsync(new byte[100]);
2039
await c.
Request
.Body.ReadAsync(new byte[100]);
2045
await c.
Request
.Body.ReadAsync(new byte[100]);
2052
await c.
Request
.Body.ReadAsync(new byte[100]);
2058
await c.
Request
.Body.ReadAsync(new byte[100]);
2064
await c.
Request
.Body.ReadAsync(new byte[100]);
2070
await c.
Request
.Body.ReadAsync(new byte[100]);
2076
await c.
Request
.Body.ReadAsync(new byte[100]);
Microsoft.AspNetCore.HttpOverrides (9)
CertificateForwardingMiddleware.cs (1)
49
var header = httpContext.
Request
.Headers[_options.CertificateHeader];
ForwardedHeadersMiddleware.cs (2)
127
var request = context.
Request
;
128
var requestHeaders = context.
Request
.Headers;
HttpMethodOverrideMiddleware.cs (6)
38
if (HttpMethods.IsPost(context.
Request
.Method))
42
if (context.
Request
.HasFormContentType)
49
var xHttpMethodOverrideValue = context.
Request
.Headers[xHttpMethodOverride];
52
context.
Request
.Method = xHttpMethodOverrideValue.ToString();
61
var form = await context.
Request
.ReadFormAsync();
65
context.
Request
.Method = methodType.ToString();
Microsoft.AspNetCore.HttpOverrides.Tests (106)
CertificateForwardingTest.cs (5)
71
c.
Request
.Headers["X-Client-Cert"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData);
110
c.
Request
.Headers["X-Client-Cert"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData);
148
c.
Request
.Headers["X-ARR-ClientCert"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData);
186
c.
Request
.Headers["not-the-right-header"] = Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData);
224
c.
Request
.Headers["X-Client-Cert"] = "OOPS" + Convert.ToBase64String(Certificates.SelfSignedValidWithNoEku.RawData);
ForwardedHeadersMiddlewareTest.cs (95)
40
c.
Request
.Headers["X-Forwarded-For"] = "11.111.111.11:9090";
46
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-For"));
48
Assert.False(context.
Request
.Headers.ContainsKey("X-Forwarded-For"));
76
c.
Request
.Headers["X-Forwarded-For"] = header;
83
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-For"));
84
Assert.True(context.
Request
.Headers.ContainsKey("X-Forwarded-For"));
85
Assert.Equal(header, context.
Request
.Headers["X-Forwarded-For"]);
134
c.
Request
.Headers["X-Forwarded-For"] = header;
141
Assert.Equal(remainingHeader, context.
Request
.Headers["X-Forwarded-For"].ToString());
172
c.
Request
.Headers["X-Forwarded-For"] = "10.0.0.1:1234";
181
Assert.True(context.
Request
.Headers.ContainsKey("X-Original-For"));
183
context.
Request
.Headers["X-Original-For"]);
189
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-For"));
245
c.
Request
.Headers["X-Forwarded-For"] = header;
277
c.
Request
.Headers["X-Forwarded-For"] = "BAD-IP";
306
c.
Request
.Headers["X-Forwarded-Host"] = "testhost";
309
Assert.Equal("testhost", context.
Request
.Host.ToString());
365
Assert.Equal(hostHeader, context.
Request
.Host.ToString());
378
c.
Request
.Headers["X-Forwarded-Host"] = hostHeader;
450
Assert.NotEqual(hostHeader, context.
Request
.Host.Value);
463
c.
Request
.Headers["X-Forwarded-Host"] = hostHeader;
501
Assert.Equal(hostHeader, context.
Request
.Headers.Host);
513
ctx.
Request
.Headers["X-forwarded-Host"] = hostHeader;
552
Assert.NotEqual<string>(hostHeader, context.
Request
.Headers.Host);
564
ctx.
Request
.Headers["X-forwarded-Host"] = hostHeader;
588
Assert.Equal("bar.foo.com:432", context.
Request
.Headers.Host);
600
ctx.
Request
.Headers["X-forwarded-Host"] = "stuff:523, bar.foo.com:432, bar.com:80";
636
c.
Request
.Headers["X-Forwarded-Proto"] = header;
639
Assert.Equal(expected, context.
Request
.Scheme);
677
Assert.Equal(scheme, context.
Request
.Scheme);
690
c.
Request
.Headers["X-Forwarded-Proto"] = scheme;
734
Assert.Equal("http", context.
Request
.Scheme);
747
c.
Request
.Headers["X-Forwarded-Proto"] = scheme;
785
c.
Request
.Headers["X-Forwarded-Proto"] = protoHeader;
786
c.
Request
.Headers["X-Forwarded-For"] = forHeader;
789
Assert.Equal(expected, context.
Request
.Scheme);
827
c.
Request
.Headers["X-Forwarded-Proto"] = protoHeader;
828
c.
Request
.Headers["X-Forwarded-For"] = forHeader;
831
Assert.Equal(expected, context.
Request
.Scheme);
877
c.
Request
.Headers["X-Forwarded-Proto"] = protoHeader;
878
c.
Request
.Headers["X-Forwarded-For"] = forHeader;
882
Assert.Equal(expected, context.
Request
.Scheme);
918
c.
Request
.Headers["X-Forwarded-Proto"] = "Protocol";
919
c.
Request
.Headers["X-Forwarded-For"] = "11.111.111.11";
920
c.
Request
.Headers["X-Forwarded-Host"] = "testhost";
921
c.
Request
.Headers["X-Forwarded-Prefix"] = "/pathbase";
925
Assert.Equal("testhost", context.
Request
.Host.ToString());
926
Assert.Equal("Protocol", context.
Request
.Scheme);
927
Assert.Equal("/pathbase", context.
Request
.PathBase);
953
c.
Request
.Headers["X-Forwarded-Proto"] = "Protocol";
954
c.
Request
.Headers["X-Forwarded-For"] = "11.111.111.11";
955
c.
Request
.Headers["X-Forwarded-Host"] = "otherhost";
956
c.
Request
.Headers["X-Forwarded-Prefix"] = "/pathbase";
960
Assert.Equal("localhost", context.
Request
.Host.ToString());
961
Assert.Equal("http", context.
Request
.Scheme);
962
Assert.Equal(PathString.Empty, context.
Request
.PathBase);
988
c.
Request
.Headers["X-Forwarded-Proto"] = "Protocol";
989
c.
Request
.Headers["X-Forwarded-For"] = "11.111.111.11";
993
Assert.Equal("localhost", context.
Request
.Host.ToString());
994
Assert.Equal("Protocol", context.
Request
.Scheme);
1042
c.
Request
.Headers["X-Forwarded-For"] = forHeader;
1081
c.
Request
.Headers["X-Forwarded-Proto"] = header;
1084
Assert.Equal(expectedScheme, context.
Request
.Scheme);
1085
Assert.Equal(remainingHeader, context.
Request
.Headers["X-Forwarded-Proto"].ToString());
1118
c.
Request
.Headers["X-Forwarded-Proto"] = header;
1121
Assert.Equal(expectedScheme, context.
Request
.Scheme);
1122
Assert.Equal(remainingHeader, context.
Request
.Headers["X-Forwarded-Proto"].ToString());
1157
c.
Request
.Headers["X-Forwarded-Prefix"] = forwardedPrefix;
1160
Assert.Equal(expectedUnescapedPathBase, context.
Request
.PathBase.Value);
1162
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-Prefix"));
1164
Assert.False(context.
Request
.Headers.ContainsKey("X-Forwarded-Prefix"));
1199
c.
Request
.PathBase = new PathString(pathBase);
1200
c.
Request
.Headers["X-Forwarded-Prefix"] = forwardedPrefix;
1203
Assert.Equal(expectedUnescapedPathBase, context.
Request
.PathBase.Value);
1204
Assert.Equal(expectedOriginalPrefix, context.
Request
.Headers["X-Original-Prefix"]);
1206
Assert.False(context.
Request
.Headers.ContainsKey("X-Forwarded-Prefix"));
1235
c.
Request
.Headers["X-Forwarded-Prefix"] = forwardedPrefix;
1238
Assert.Equal(PathString.Empty, context.
Request
.PathBase);
1239
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-Prefix"));
1240
Assert.True(context.
Request
.Headers.ContainsKey("X-Forwarded-Prefix"));
1279
c.
Request
.Headers["X-Forwarded-For"] = forwardedFor;
1280
c.
Request
.Headers["X-Forwarded-Host"] = forwardedHost;
1281
c.
Request
.Headers["X-Forwarded-Proto"] = forwardedProto;
1282
c.
Request
.Headers["X-Forwarded-Prefix"] = forwardedPrefix;
1285
Assert.Equal(PathString.Empty, context.
Request
.PathBase);
1286
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-For"));
1287
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-Host"));
1288
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-Proto"));
1289
Assert.False(context.
Request
.Headers.ContainsKey("X-Original-Prefix"));
1290
Assert.True(context.
Request
.Headers.ContainsKey("X-Forwarded-For"));
1291
Assert.True(context.
Request
.Headers.ContainsKey("X-Forwarded-Host"));
1292
Assert.True(context.
Request
.Headers.ContainsKey("X-Forwarded-Proto"));
1293
Assert.True(context.
Request
.Headers.ContainsKey("X-Forwarded-Prefix"));
1325
c.
Request
.Headers["X-Forwarded-Prefix"] = forwardedPrefix;
1328
Assert.Equal(expectedforwardedPrefix, context.
Request
.Headers["X-Forwarded-Prefix"].ToString());
HttpMethodOverrideMiddlewareTest.cs (6)
29
Assert.Equal("DELETE", context.
Request
.Method);
59
Assert.Equal("POST", context.
Request
.Method);
89
Assert.Equal("GET", context.
Request
.Method);
122
Assert.Equal("DELETE", context.
Request
.Method);
160
Assert.Equal("POST", context.
Request
.Method);
197
Assert.Equal("POST", context.
Request
.Method);
Microsoft.AspNetCore.HttpsPolicy (6)
HstsMiddleware.cs (3)
64
if (!context.
Request
.IsHttps)
70
if (IsHostExcluded(context.
Request
.Host.Host))
72
_logger.SkippingExcludedHost(context.
Request
.Host.Host);
HttpsRedirectionMiddleware.cs (3)
80
if (context.
Request
.IsHttps)
91
var host = context.
Request
.Host;
101
var request = context.
Request
;
Microsoft.AspNetCore.Identity.InMemory.Test (1)
FunctionalTest.cs (1)
300
var req = context.
Request
;
Microsoft.AspNetCore.Localization (3)
AcceptLanguageHeaderRequestCultureProvider.cs (1)
27
var acceptLanguageHeader = httpContext.
Request
.GetTypedHeaders().AcceptLanguage;
CookieRequestCultureProvider.cs (1)
33
var cookie = httpContext.
Request
.Cookies[CookieName];
QueryStringRequestCultureProvider.cs (1)
31
var request = httpContext.
Request
;
Microsoft.AspNetCore.Localization.Tests (1)
CustomRequestCultureProviderTest.cs (1)
67
var segments = context.
Request
.Path.Value.Split(new char[] { '/' }, StringSplitOptions.RemoveEmptyEntries);
Microsoft.AspNetCore.Mvc.Core (63)
AcceptedAtActionResult.cs (1)
69
var request = context.HttpContext.
Request
;
ActionConstraints\HttpMethodActionConstraint.cs (1)
68
var request = context.RouteContext.HttpContext.
Request
;
ApplicationModels\DefaultApplicationModelProvider.cs (1)
35
_supportsNonGetRequests = context => !HttpMethods.IsGet(context.HttpContext.
Request
.Method);
BindPropertyAttribute.cs (1)
86
return !HttpMethods.IsGet(context.HttpContext.
Request
.Method);
ConsumesAttribute.cs (2)
114
var requestContentType = context.HttpContext.
Request
.ContentType;
160
var requestContentType = context.RouteContext.HttpContext.
Request
.ContentType;
ControllerBase.cs (1)
42
public HttpRequest Request => HttpContext?.
Request
!;
CreatedAtActionResult.cs (1)
69
var request = context.HttpContext.
Request
;
Filters\RequestFormLimitsFilter.cs (1)
40
features.Set<IFormFeature>(new FormFeature(context.HttpContext.
Request
, FormOptions));
Formatters\FormatFilter.cs (1)
46
var query = context.HttpContext.
Request
.Query["format"];
Formatters\InputFormatter.cs (2)
55
var contentType = context.HttpContext.
Request
.ContentType;
98
canHaveBody ??= context.HttpContext.
Request
.ContentLength != 0;
Formatters\SystemTextJsonInputFormatter.cs (2)
130
return (httpContext.
Request
.Body, false);
133
var inputStream = Encoding.CreateTranscodingStream(httpContext.
Request
.Body, encoding, Encoding.UTF8, leaveOpen: true);
Formatters\TextInputFormatter.cs (2)
43
context.HttpContext.
Request
.ContentType);
84
var requestContentType = context.HttpContext.
Request
.ContentType;
Formatters\TextOutputFormatter.cs (1)
172
var request = context.HttpContext.
Request
;
Infrastructure\DefaultOutputFormatterSelector.cs (1)
72
var request = context.HttpContext.
Request
;
ModelBinding\Binders\BodyModelBinder.cs (7)
136
hasBody ??= httpContext.
Request
.ContentLength is not null && httpContext.
Request
.ContentLength == 0;
146
var message = Resources.FormatUnsupportedContentType(httpContext.
Request
.ContentType);
206
var contentType = formatterContext.HttpContext.
Request
.ContentType;
218
var contentType = formatterContext.HttpContext.
Request
.ContentType;
230
var contentType = formatterContext.HttpContext.
Request
.ContentType;
232
if (formatterContext.HttpContext.
Request
.HasFormContentType)
ModelBinding\Binders\FormCollectionModelBinder.cs (1)
40
var request = bindingContext.HttpContext.
Request
;
ModelBinding\Binders\FormFileModelBinder.cs (1)
140
var request = bindingContext.HttpContext.
Request
;
ModelBinding\Binders\HeaderModelBinder.cs (3)
62
var request = bindingContext.HttpContext.
Request
;
102
var request = bindingContext.HttpContext.
Request
;
125
var request = bindingContext.HttpContext.
Request
;
ModelBinding\FormFileValueProviderFactory.cs (1)
21
var request = context.ActionContext.HttpContext.
Request
;
ModelBinding\FormValueProviderFactory.cs (2)
22
var request = context.ActionContext.HttpContext.
Request
;
34
var request = context.ActionContext.HttpContext.
Request
;
ModelBinding\JQueryFormValueProviderFactory.cs (2)
22
var request = context.ActionContext.HttpContext.
Request
;
34
var request = context.ActionContext.HttpContext.
Request
;
ModelBinding\JQueryQueryStringValueProviderFactory.cs (1)
20
var query = context.ActionContext.HttpContext.
Request
.Query;
ModelBinding\QueryStringValueProviderFactory.cs (1)
21
var query = context.ActionContext.HttpContext.
Request
.Query;
RequireHttpsAttribute.cs (3)
45
if (!filterContext.HttpContext.
Request
.IsHttps)
66
if (!HttpMethods.IsGet(filterContext.HttpContext.
Request
.Method))
74
var request = filterContext.HttpContext.
Request
;
Routing\ActionEndpointFactory.cs (1)
531
routeData.PushState(router: null, context.
Request
.RouteValues, new RouteValueDictionary(dataTokens?.DataTokens));
Routing\ControllerRequestDelegateFactory.cs (2)
74
routeData = new RouteData(context.
Request
.RouteValues);
79
routeData.PushState(router: null, context.
Request
.RouteValues, dataTokens);
Routing\UrlHelperBase.cs (7)
60
Protocol = ActionContext.HttpContext.
Request
.Scheme,
61
Host = ActionContext.HttpContext.
Request
.Host.ToUriComponent()
131
var pathBase = ActionContext.HttpContext.
Request
.PathBase;
149
host = string.IsNullOrEmpty(host) ? ActionContext.HttpContext.
Request
.Host.Value : host;
211
host = string.IsNullOrEmpty(host) ? ActionContext.HttpContext.
Request
.Host.Value : host;
305
var applicationPath = httpContext.
Request
.PathBase;
470
var pathBase = ActionContext.HttpContext.
Request
.PathBase;
src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (3)
95
var requestCookies = context.
Request
.Cookies;
161
var requestCookies = context.
Request
.Cookies;
236
var 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.
40
var rawRangeHeader = context.
Request
.Headers.Range;
src\Shared\ResultsHelpers\FileResultHelper.cs (2)
99
var request = httpContext.
Request
;
294
var serveBody = !HttpMethods.IsHead(httpContext.
Request
.Method);
src\Shared\ResultsHelpers\SharedUrlHelper.cs (1)
23
var applicationPath = httpContext.
Request
.PathBase;
UrlHelperExtensions.cs (4)
529
protocol = httpContext.
Request
.Scheme;
534
host = httpContext.
Request
.Host.ToUriComponent();
578
protocol = httpContext.
Request
.Scheme;
583
host = httpContext.
Request
.Host.ToUriComponent();
Microsoft.AspNetCore.Mvc.Core.Test (169)
ControllerBaseTest.cs (1)
3015
httpContext.Setup(c => c.
Request
)
Controllers\ControllerBinderDelegateProviderTest.cs (2)
808
controllerContext.HttpContext.
Request
.Method = "GET";
871
controllerContext.HttpContext.
Request
.Method = "POST";
FileResultHelperTest.cs (2)
405
httpContext.
Request
.Headers.IfModifiedSince = HeaderUtilities.FormatDate(ifModifiedSince);
443
httpContext.
Request
.Headers.IfUnmodifiedSince = HeaderUtilities.FormatDate(ifUnmodifiedSince);
Filters\RequestFormLimitsFilterTest.cs (3)
43
var oldFormFeature = new FormFeature(authorizationFilterContext.HttpContext.
Request
);
66
authorizationFilterContext.HttpContext.
Request
.Form = new FormCollection(null);
117
new FormFeature(authorizationFilterContext.HttpContext.
Request
));
Formatters\FormatFilterTest.cs (9)
69
httpContext.Setup(c => c.
Request
.Query.ContainsKey("format")).Returns(true);
70
httpContext.Setup(c => c.
Request
.Query["format"]).Returns("xml");
329
httpContext.Setup(c => c.
Request
.Query["format"]).Returns("json");
366
httpContext.Setup(c => c.
Request
.Query["format"]).Returns("json");
401
httpContext.Setup(c => c.
Request
.Query.ContainsKey("format")).Returns(false);
436
httpContext.Setup(c => c.
Request
.Query.ContainsKey("format")).Returns(false);
441
httpContext.Setup(c => c.
Request
.Query.ContainsKey("format")).Returns(true);
442
httpContext.Setup(c => c.
Request
.Query["format"]).Returns(format);
446
httpContext.Setup(c => c.
Request
.Query.ContainsKey("format")).Returns(false);
Formatters\InputFormatterTest.cs (1)
421
context.HttpContext.
Request
.ContentLength = 0;
Formatters\JsonInputFormatterTestBase.cs (7)
124
Assert.True(httpContext.
Request
.Body.CanRead, "Verify that the request stream hasn't been disposed");
546
var testBufferedReadStream = new VerifyDisposeFileBufferingReadStream(httpContext.
Request
.Body, 1024);
547
httpContext.
Request
.Body = testBufferedReadStream;
569
httpContext.
Request
.EnableBuffering();
579
var requestBody = httpContext.
Request
.Body;
593
httpContext.
Request
.EnableBuffering();
594
var requestBody = httpContext.
Request
.Body;
Formatters\TextInputFormatterTest.cs (8)
26
context.HttpContext.
Request
.ContentType = "application/json;charset=utf-8";
27
context.HttpContext.
Request
.ContentLength = 1;
54
context.HttpContext.
Request
.ContentLength = 1;
76
context.HttpContext.
Request
.ContentType = "application/json;charset=" + charset;
100
context.HttpContext.
Request
.ContentType = "application/json;charset=utf-8";
126
context.HttpContext.
Request
.ContentType = "application/json;charset=" + charset;
160
context.HttpContext.
Request
.ContentType = "application/json;charset=\"" + charset + "\"";
194
context.HttpContext.
Request
.ContentType = contentType;
Formatters\TextOutputFormatterTests.cs (1)
45
httpContext.SetupGet(o => o.
Request
).Returns(httpRequest);
Infrastructure\ActionSelectorTest.cs (1)
1110
httpContext.SetupGet(c => c.
Request
).Returns(request.Object);
Infrastructure\DefaultOutputFormatterSelectorTest.cs (8)
33
context.HttpContext.
Request
.Headers.Accept = "application/xml"; // This will not be used
63
context.HttpContext.
Request
.Headers.Accept = "application/xml"; // This will not be used
92
context.HttpContext.
Request
.Headers.Accept = "application/xml"; // This will not be used
163
context.HttpContext.
Request
.Headers.Accept = acceptHeader;
222
context.HttpContext.
Request
.Headers.Accept = "text/custom,application/custom";
257
context.HttpContext.
Request
.Headers.Accept = "text/custom,application/custom";
286
context.HttpContext.
Request
.Headers.Accept = "text/custom";
315
context.HttpContext.
Request
.Headers.Accept = "text/custom, text/custom2";
Infrastructure\ObjectResultExecutorTest.cs (3)
99
httpContext.
Request
.Headers.Accept = "application/xml"; // This will not be used
389
actionContext.HttpContext.
Request
.Headers.Accept = acceptHeader;
426
actionContext.HttpContext.
Request
.Headers.Accept = acceptHeader;
ModelBinding\Binders\BodyModelBinderTests.cs (2)
604
bindingContext.HttpContext.
Request
.ContentType = "application/json";
633
bindingContext.HttpContext.
Request
.ContentType = "multipart/form-data";
ModelBinding\Binders\FormCollectionModelBinderTest.cs (2)
60
httpContext.Setup(h => h.
Request
.ReadFormAsync(It.IsAny<CancellationToken>()))
62
httpContext.Setup(h => h.
Request
.HasFormContentType).Returns(hasForm);
ModelBinding\Binders\FormFileModelBinderTest.cs (2)
475
httpContext.Setup(h => h.
Request
.ReadFormAsync(It.IsAny<CancellationToken>()))
477
httpContext.Setup(h => h.
Request
.HasFormContentType).Returns(true);
ModelBinding\Binders\HeaderModelBinderTests.cs (11)
28
bindingContext.HttpContext.
Request
.Headers.Add(header, new[] { headerValue });
50
bindingContext.HttpContext.
Request
.Headers.Add(header, new[] { headerValue });
77
bindingContext.HttpContext.
Request
.Headers.Add(header, new[] { headerValue });
96
bindingContext.HttpContext.
Request
.Headers.Add("Header", new[] { headerValue });
146
bindingContext.HttpContext.
Request
.Headers.Add("Header", headerValue);
206
bindingContext.HttpContext.
Request
.Headers.Add("Header", new[] { headerValue });
223
bindingContext.HttpContext.
Request
.Headers.Add("Header", "application/json,text/json");
240
bindingContext.HttpContext.
Request
.Headers.Add("Header", "application/json,text/json");
264
bindingContext.HttpContext.
Request
.Headers.Add("Header", "application/json,text/json");
286
bindingContext.HttpContext.
Request
.Headers.Add("Header", headerValue);
310
bindingContext.HttpContext.
Request
.Headers.Add("Header", headerValue);
ModelBinding\FormFileValueProviderFactoryTest.cs (4)
48
var files = (FormFileCollection)context.ActionContext.HttpContext.
Request
.Form.Files;
105
context.Setup(c => c.
Request
.ContentType).Returns("application/x-www-form-urlencoded");
106
context.Setup(c => c.
Request
.HasFormContentType).Returns(true);
107
context.Setup(c => c.
Request
.ReadFormAsync(It.IsAny<CancellationToken>())).ThrowsAsync(exception);
ModelBinding\FormValueProviderFactoryTest.cs (3)
93
context.Setup(c => c.
Request
.ContentType).Returns("application/x-www-form-urlencoded");
94
context.Setup(c => c.
Request
.HasFormContentType).Returns(true);
95
context.Setup(c => c.
Request
.ReadFormAsync(It.IsAny<CancellationToken>())).ThrowsAsync(exception);
ModelBinding\JQueryFormValueProviderFactoryTest.cs (3)
178
context.Setup(c => c.
Request
.ContentType).Returns("application/x-www-form-urlencoded");
179
context.Setup(c => c.
Request
.HasFormContentType).Returns(true);
180
context.Setup(c => c.
Request
.ReadFormAsync(It.IsAny<CancellationToken>())).ThrowsAsync(exception);
Routing\ControllerLinkGeneratorExtensionsTest.cs (5)
58
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
116
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
177
httpContext.
Request
.Scheme = "http";
178
httpContext.
Request
.Host = new HostString("example.com");
179
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
Routing\EndpointRoutingUrlHelperTest.cs (1)
56
urlHelper.ActionContext.HttpContext.
Request
.RouteValues = new RouteValueDictionary
Routing\PageLinkGeneratorExtensionsTest.cs (5)
30
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
87
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
147
httpContext.
Request
.Scheme = "http";
148
httpContext.
Request
.Host = new HostString("example.com");
149
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
Routing\UrlHelperBaseTest.cs (2)
47
UrlHelperBase.AppendPathAndFragment(builder, httpContext.
Request
.PathBase, virtualPath, string.Empty);
68
UrlHelperBase.AppendPathAndFragment(builder, httpContext.
Request
.PathBase, virtualPath, fragmentValue);
src\Shared\ResultsTests\FileContentResultTestBase.cs (18)
62
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
68
httpContext.
Request
.Method = HttpMethods.Get;
101
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
108
httpContext.
Request
.Method = HttpMethods.Get;
140
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
147
httpContext.
Request
.Method = HttpMethods.Get;
174
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
181
httpContext.
Request
.Method = HttpMethods.Get;
211
httpContext.
Request
.Headers.Range = rangeString;
212
httpContext.
Request
.Method = HttpMethods.Get;
242
httpContext.
Request
.Headers.Range = rangeString;
243
httpContext.
Request
.Method = HttpMethods.Get;
274
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
279
httpContext.
Request
.Headers.Range = "bytes = 0-6";
280
httpContext.
Request
.Method = HttpMethods.Get;
308
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
313
httpContext.
Request
.Headers.Range = "bytes = 0-6";
314
httpContext.
Request
.Method = HttpMethods.Get;
src\Shared\ResultsTests\FileStreamResultTestBase.cs (21)
40
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
46
httpContext.
Request
.Method = HttpMethods.Get;
82
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
89
httpContext.
Request
.Method = HttpMethods.Get;
123
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
130
httpContext.
Request
.Method = HttpMethods.Get;
160
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
167
httpContext.
Request
.Method = HttpMethods.Get;
199
httpContext.
Request
.Headers.Range = rangeString;
200
httpContext.
Request
.Method = HttpMethods.Get;
232
httpContext.
Request
.Headers.Range = rangeString;
233
httpContext.
Request
.Method = HttpMethods.Get;
266
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
271
httpContext.
Request
.Headers.Range = "bytes = 0-6";
272
httpContext.
Request
.Method = HttpMethods.Get;
302
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
307
httpContext.
Request
.Headers.Range = "bytes = 0-6";
308
httpContext.
Request
.Method = HttpMethods.Get;
343
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
349
httpContext.
Request
.Method = HttpMethods.Get;
428
httpContext.
Request
.Method = "HEAD";
src\Shared\ResultsTests\PhysicalFileResultTestBase.cs (22)
42
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
45
httpContext.
Request
.Method = HttpMethods.Get;
74
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
78
httpContext.
Request
.Method = HttpMethods.Get;
106
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
110
httpContext.
Request
.Method = HttpMethods.Get;
133
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
137
httpContext.
Request
.Method = HttpMethods.Get;
162
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
164
httpContext.
Request
.Headers.Range = rangeString;
165
httpContext.
Request
.Method = HttpMethods.Get;
188
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
190
httpContext.
Request
.Headers.Range = rangeString;
191
httpContext.
Request
.Method = HttpMethods.Get;
217
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
219
httpContext.
Request
.Headers.Range = "bytes = 0-6";
220
httpContext.
Request
.Method = HttpMethods.Get;
244
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
246
httpContext.
Request
.Headers.Range = "bytes = 0-6";
247
httpContext.
Request
.Method = HttpMethods.Get;
298
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
301
httpContext.
Request
.Method = HttpMethods.Get;
src\Shared\ResultsTests\VirtualFileResultTestBase.cs (22)
54
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
57
httpContext.
Request
.Method = HttpMethods.Get;
92
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
96
httpContext.
Request
.Method = HttpMethods.Get;
129
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
133
httpContext.
Request
.Method = HttpMethods.Get;
162
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
166
httpContext.
Request
.Method = HttpMethods.Get;
197
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
198
httpContext.
Request
.Headers.Range = rangeString;
200
httpContext.
Request
.Method = HttpMethods.Get;
230
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
231
httpContext.
Request
.Headers.Range = rangeString;
233
httpContext.
Request
.Method = HttpMethods.Get;
267
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
269
httpContext.
Request
.Headers.Range = "bytes = 0-6";
270
httpContext.
Request
.Method = HttpMethods.Get;
298
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
300
httpContext.
Request
.Headers.Range = "bytes = 0-6";
301
httpContext.
Request
.Method = HttpMethods.Get;
333
var requestHeaders = httpContext.
Request
.GetTypedHeaders();
336
httpContext.
Request
.Method = HttpMethods.Get;
Microsoft.AspNetCore.Mvc.Cors (5)
CorsAuthorizationFilter.cs (2)
75
var request = httpContext.
Request
;
90
httpContext.
Request
.Headers[CorsConstants.AccessControlRequestMethod];
CorsHttpMethodActionConstraint.cs (1)
30
var request = context.RouteContext.HttpContext.
Request
;
DisableCorsAuthorizationFilter.cs (2)
27
context.HttpContext.
Request
.Headers[CorsConstants.AccessControlRequestMethod];
29
context.HttpContext.
Request
.Method,
Microsoft.AspNetCore.Mvc.Cors.Test (1)
CorsAuthorizationFilterTest.cs (1)
33
authorizationContext.HttpContext.
Request
.Method = preflightRequestMethod;
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
XmlDataContractSerializerInputFormatter.cs (1)
104
var request = context.HttpContext.
Request
;
XmlSerializerInputFormatter.cs (1)
88
var request = context.HttpContext.
Request
;
Microsoft.AspNetCore.Mvc.Formatters.Xml.Test (9)
XmlDataContractSerializerInputFormatterTest.cs (3)
472
Assert.True(context.HttpContext.
Request
.Body.CanRead);
747
httpContext.SetupGet(c => c.
Request
).Returns(request.Object);
748
httpContext.SetupGet(c => c.
Request
).Returns(request.Object);
XmlDataContractSerializerOutputFormatterTest.cs (2)
708
outputFormatterContext.HttpContext.
Request
.QueryString = new QueryString("?indent=" + indent);
831
var request = context.HttpContext.
Request
;
XmlSerializerInputFormatterTest.cs (2)
489
Assert.True(context.HttpContext.
Request
.Body.CanRead);
683
httpContext.SetupGet(c => c.
Request
).Returns(request.Object);
XmlSerializerOutputFormatterTest.cs (2)
92
outputFormatterContext.HttpContext.
Request
.QueryString = new QueryString("?indent=" + indent);
621
var request = context.HttpContext.
Request
;
Microsoft.AspNetCore.Mvc.FunctionalTests (2)
AntiforgeryMiddlewareTest.cs (2)
111
context.
Request
.Body = new SizeLimitedStream(context.
Request
.Body, context.Features.Get<IHttpMaxRequestBodySizeFeature>()?.MaxRequestBodySize);
Microsoft.AspNetCore.Mvc.IntegrationTests (1)
ModelBindingTestHelper.cs (1)
229
public bool CanHaveBody => _context.
Request
.ContentLength != 0;
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
NewtonsoftJsonInputFormatter.cs (1)
102
var request = httpContext.
Request
;
Microsoft.AspNetCore.Mvc.NewtonsoftJson.Test (11)
NewtonsoftJsonInputFormatterTest.cs (3)
453
httpContext.Setup(h => h.
Request
.Body).Returns(new NonSeekableReadStream(content, allowSyncReads: false));
454
httpContext.Setup(h => h.
Request
.ContentType).Returns("application/json");
455
httpContext.Setup(h => h.
Request
.ContentLength).Returns(content.Length);
NewtonsoftJsonPatchInputFormatterTest.cs (1)
267
httpContext.SetupGet(c => c.
Request
).Returns(request.Object);
src\Mvc\Mvc.Core\test\Formatters\JsonInputFormatterTestBase.cs (7)
124
Assert.True(httpContext.
Request
.Body.CanRead, "Verify that the request stream hasn't been disposed");
546
var testBufferedReadStream = new VerifyDisposeFileBufferingReadStream(httpContext.
Request
.Body, 1024);
547
httpContext.
Request
.Body = testBufferedReadStream;
569
httpContext.
Request
.EnableBuffering();
579
var requestBody = httpContext.
Request
.Body;
593
httpContext.
Request
.EnableBuffering();
594
var 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)
88
var httpMethod = context.HttpContext.
Request
.Method;
155
if (context.HttpContext.
Request
.Query.TryGetValue(Handler, out var queryValues))
166
return HttpMethods.IsHead(context.HttpContext.
Request
.Method) ? HttpMethods.Get : null;
Infrastructure\HandleOptionsRequestsPageFilter.cs (1)
41
HttpMethods.IsOptions(context.HttpContext.
Request
.Method))
Infrastructure\PageRequestDelegateFactory.cs (2)
86
routeData = new RouteData(context.
Request
.RouteValues);
91
routeData.PushState(router: null, context.
Request
.RouteValues, dataTokens);
PageBase.cs (1)
47
public HttpRequest Request => HttpContext?.
Request
!;
PageModel.cs (1)
66
public HttpRequest Request => HttpContext?.
Request
!;
Microsoft.AspNetCore.Mvc.RazorPages.Test (6)
Infrastructure\DisallowOptionsRequestsPageFilterTest.cs (5)
47
context.HttpContext.
Request
.Method = "PUT";
63
context.HttpContext.
Request
.Method = "DELETE";
80
context.HttpContext.
Request
.Method = "Options";
98
context.HttpContext.
Request
.Method = "Options";
114
context.HttpContext.
Request
.Method = "Options";
Infrastructure\PageBinderFactoryTest.cs (1)
457
page.HttpContext.
Request
.Method = "Post";
Microsoft.AspNetCore.Mvc.TagHelpers (7)
Cache\CacheTagKey.cs (1)
82
var request = httpContext.
Request
;
ImageTagHelper.cs (1)
144
var pathBase = ViewContext.HttpContext.
Request
.PathBase;
LinkTagHelper.cs (2)
477
ViewContext.HttpContext.
Request
.PathBase);
536
var pathBase = ViewContext.HttpContext.
Request
.PathBase;
ResourceCollectionUtilities.cs (1)
14
var pathBase = viewContext.HttpContext.
Request
.PathBase;
ScriptTagHelper.cs (2)
416
var pathBase = ViewContext.HttpContext.
Request
.PathBase;
465
ViewContext.HttpContext.
Request
.PathBase);
Microsoft.AspNetCore.Mvc.TagHelpers.Test (21)
CacheTagHelperTest.cs (4)
105
cacheTagHelper1.ViewContext.HttpContext.
Request
.QueryString = new QueryString(
127
cacheTagHelper2.ViewContext.HttpContext.
Request
.QueryString = new QueryString(
156
cacheTagHelper1.ViewContext.HttpContext.
Request
.Headers["Cookie"] = "cookie1=value1;cookie2=value2";
178
cacheTagHelper2.ViewContext.HttpContext.
Request
.Headers["Cookie"] = "cookie1=value1;cookie2=not-value2";
CacheTagKeyTest.cs (5)
211
cacheTagHelper.ViewContext.HttpContext.
Request
.Headers["Cookie"] =
237
var headers = cacheTagHelper.ViewContext.HttpContext.
Request
.Headers;
265
cacheTagHelper.ViewContext.HttpContext.
Request
.QueryString =
404
cacheTagHelper.ViewContext.HttpContext.
Request
.Headers["Content-Type"] = "text/html";
431
cacheTagHelper.ViewContext.HttpContext.
Request
.Headers["Content-Type"] = "text/html";
DistributedCacheTagHelperTest.cs (4)
148
cacheTagHelper1.ViewContext.HttpContext.
Request
.QueryString = new QueryString(
173
cacheTagHelper2.ViewContext.HttpContext.
Request
.QueryString = new QueryString(
208
cacheTagHelper1.ViewContext.HttpContext.
Request
.Headers["Cookie"] = "cookie1=value1;cookie2=value2";
232
cacheTagHelper2.ViewContext.HttpContext.
Request
.Headers["Cookie"] = "cookie1=value1;cookie2=not-value2";
FormTagHelperTest.cs (1)
154
viewContext.HttpContext.
Request
.Path = "/home/index";
ImageTagHelperTest.cs (2)
200
helper.ViewContext.HttpContext.
Request
.PathBase = new PathString(pathBase);
296
actionContext.HttpContext.
Request
.PathBase = new Http.PathString(requestPathBase);
LinkTagHelperTest.cs (2)
792
helper.ViewContext.HttpContext.
Request
.PathBase = "/approot";
1127
actionContext.HttpContext.
Request
.PathBase = new PathString(requestPathBase);
ScriptTagHelperTest.cs (3)
697
helper.ViewContext.HttpContext.
Request
.PathBase = "/approot";
1052
helper.ViewContext.HttpContext.
Request
.PathBase = "/approot";
1108
actionContext.HttpContext.
Request
.PathBase = new PathString(requestPathBase);
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
CookieTempDataProvider.cs (2)
60
if (context.
Request
.Cookies.ContainsKey(_options.Cookie.Name))
131
var pathBase = httpContext.
Request
.PathBase.ToString();
DefaultHtmlGenerator.cs (1)
281
var request = viewContext.HttpContext.
Request
;
Filters\AutoValidateAntiforgeryTokenAuthorizationFilter.cs (1)
22
var method = context.HttpContext.
Request
.Method;
ViewComponent.cs (1)
39
public HttpRequest Request => ViewContext?.HttpContext?.
Request
!;
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (9)
CookieTempDataProviderTest.cs (1)
335
httpContext.
Request
.Headers.Cookie = stringBuilder.ToString();
Filters\AutoValidateAntiforgeryTokenAuthorizationFilterTest.cs (3)
32
actionContext.HttpContext.
Request
.Method = httpMethod;
60
actionContext.HttpContext.
Request
.Method = httpMethod;
84
actionContext.HttpContext.
Request
.Method = "POST";
Filters\ValidateAntiforgeryTokenAuthorizationFilterTest.cs (3)
36
actionContext.HttpContext.
Request
.Method = httpMethod;
60
actionContext.HttpContext.
Request
.Method = "POST";
88
actionContext.HttpContext.
Request
.Method = "POST";
Rendering\HtmlHelperFormTest.cs (2)
135
var request = htmlHelper.ViewContext.HttpContext.
Request
;
185
var request = htmlHelper.ViewContext.HttpContext.
Request
;
Microsoft.AspNetCore.OutputCaching.Tests (102)
OutputCacheAttributeTests.cs (4)
78
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA";
79
context.HttpContext.
Request
.Headers["HeaderB"] = "ValueB";
94
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB");
109
context.HttpContext.
Request
.RouteValues = new Routing.RouteValueDictionary()
OutputCacheKeyProviderTests.cs (50)
20
context.HttpContext.
Request
.Method = "head";
21
context.HttpContext.
Request
.Path = "/path/subpath";
22
context.HttpContext.
Request
.Scheme = "https";
23
context.HttpContext.
Request
.Host = new HostString("example.com", 80);
24
context.HttpContext.
Request
.PathBase = "/pathBase";
25
context.HttpContext.
Request
.QueryString = new QueryString("?query.Key=a&query.Value=b");
37
context.HttpContext.
Request
.Method = "head";
38
context.HttpContext.
Request
.Path = "/path/subpath";
39
context.HttpContext.
Request
.Scheme = "https";
40
context.HttpContext.
Request
.Host = new HostString("example.com", 80);
41
context.HttpContext.
Request
.PathBase = "/pathBase";
42
context.HttpContext.
Request
.QueryString = new QueryString("?query.Key=a&query.Value=b");
56
context.HttpContext.
Request
.Method = HttpMethods.Get;
57
context.HttpContext.
Request
.Path = "/Path";
70
context.HttpContext.
Request
.Method = HttpMethods.Get;
71
context.HttpContext.
Request
.Path = "/Path";
99
context.HttpContext.
Request
.RouteValues["RouteA"] = "ValueA";
100
context.HttpContext.
Request
.RouteValues["RouteB"] = "ValueB";
112
context.HttpContext.
Request
.RouteValues["RouteA"] = 123.456;
145
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA";
146
context.HttpContext.
Request
.Headers["HeaderB"] = "ValueB";
158
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA";
170
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueB";
171
context.HttpContext.
Request
.Headers.Append("HeaderA", "ValueA");
183
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB");
196
context.HttpContext.
Request
.QueryString = new QueryString("?queryA=ValueA&queryB=ValueB");
209
context.HttpContext.
Request
.QueryString = new QueryString("?queryA=ValueA");
222
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB");
237
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueA&QueryA=ValueB");
252
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueB&QueryA=ValueA");
267
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA";
268
context.HttpContext.
Request
.Headers["HeaderB"] = "ValueB";
269
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB");
270
context.HttpContext.
Request
.RouteValues["RouteA"] = "ValueA";
271
context.HttpContext.
Request
.RouteValues["RouteB"] = "ValueB";
286
context.HttpContext.
Request
.Path = "/path" + KeyDelimiter;
301
context.HttpContext.
Request
.Host = new HostString("example.com" + KeyDelimiter, 80);
311
context.HttpContext.
Request
.PathBase = "/pathBase" + KeyDelimiter;
323
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA" + KeyDelimiter;
324
context.HttpContext.
Request
.Headers["HeaderB"] = "ValueB";
337
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA";
338
context.HttpContext.
Request
.Headers["HeaderB"] = "ValueB" + KeyDelimiter;
351
context.HttpContext.
Request
.QueryString = new QueryString($"?QueryA=ValueA{KeyDelimiter}&QueryB=ValueB");
364
context.HttpContext.
Request
.QueryString = new QueryString($"?QueryA{KeyDelimiter}=ValueA&QueryB=ValueB");
377
context.HttpContext.
Request
.QueryString = new QueryString($"?QueryA=ValueA&QueryB=ValueB{KeyDelimiter}");
390
context.HttpContext.
Request
.RouteValues["RouteA"] = "ValueA" + KeyDelimiter;
391
context.HttpContext.
Request
.RouteValues["RouteB"] = "ValueB";
404
context.HttpContext.
Request
.RouteValues["RouteA"] = "ValueA";
405
context.HttpContext.
Request
.RouteValues["RouteB"] = "ValueB" + KeyDelimiter;
419
context.HttpContext.
Request
.RouteValues["RouteA"] = "ValueA";
OutputCacheMiddlewareTests.cs (31)
39
context.HttpContext.
Request
.Headers.CacheControl = new CacheControlHeaderValue()
133
context.HttpContext.
Request
.Headers.IfNoneMatch = "*";
179
context.HttpContext.
Request
.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow);
217
context.HttpContext.
Request
.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow);
260
context.HttpContext.
Request
.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow);
263
context.HttpContext.
Request
.Headers.IfNoneMatch = EntityTagHeaderValue.Any.ToString();
281
context.HttpContext.
Request
.Headers.IfModifiedSince = HeaderUtilities.FormatDate(utcNow);
284
context.HttpContext.
Request
.Headers.IfNoneMatch = "\"E1\"";
297
context.HttpContext.
Request
.Headers.IfNoneMatch = "\"E1\"";
327
context.HttpContext.
Request
.Headers.IfNoneMatch = requestETag.ToString();
344
context.HttpContext.
Request
.Headers.IfNoneMatch = "\"E1\"";
359
context.HttpContext.
Request
.Headers.IfNoneMatch = new string[] { "\"E0\", \"E1\"", "\"E1\", \"E2\"" };
640
context.HttpContext.
Request
.Method = method;
669
context.HttpContext.
Request
.Method = "HEAD";
832
context1.HttpContext.
Request
.Method = "GET";
833
context1.HttpContext.
Request
.Path = "/";
836
context2.HttpContext.
Request
.Method = "GET";
837
context2.HttpContext.
Request
.Path = "/";
883
context1.HttpContext.
Request
.Method = "GET";
884
context1.HttpContext.
Request
.Path = "/";
888
context2.HttpContext.
Request
.Method = "GET";
889
context2.HttpContext.
Request
.Path = "/";
947
context1.HttpContext.
Request
.Method = "GET";
948
context1.HttpContext.
Request
.Path = "/";
951
context2.HttpContext.
Request
.Method = "GET";
952
context2.HttpContext.
Request
.Path = "/";
973
context.HttpContext.
Request
.Method = "GET";
995
context.AllowCacheLookup = !context.HttpContext.
Request
.Headers.ContainsKey("X-Refresh");
1043
requestContext.HttpContext.
Request
.Method = "GET";
1044
requestContext.HttpContext.
Request
.Path = "/";
1050
requestContext.HttpContext.
Request
.Headers.Add("X-Refresh", "randomvalue");
OutputCachePolicyBuilderTests.cs (6)
107
context.HttpContext.
Request
.Headers["HeaderA"] = "ValueA";
108
context.HttpContext.
Request
.Headers["HeaderB"] = "ValueB";
124
context.HttpContext.
Request
.QueryString = new QueryString("?QueryA=ValueA&QueryB=ValueB");
140
context.HttpContext.
Request
.RouteValues = new Routing.RouteValueDictionary()
160
context.HttpContext.
Request
.RouteValues = new Routing.RouteValueDictionary()
180
context.HttpContext.
Request
.RouteValues = new Routing.RouteValueDictionary()
OutputCachePolicyProviderTests.cs (9)
49
context.HttpContext.
Request
.Method = method;
68
context.HttpContext.
Request
.Method = method;
81
context.HttpContext.
Request
.Method = HttpMethods.Get;
82
context.HttpContext.
Request
.Headers.Authorization = "Placeholder";
97
context.HttpContext.
Request
.Method = HttpMethods.Get;
98
context.HttpContext.
Request
.Headers.CacheControl = new CacheControlHeaderValue()
115
context.HttpContext.
Request
.Method = HttpMethods.Get;
116
context.HttpContext.
Request
.Headers.Pragma = "no-cache";
117
context.HttpContext.
Request
.Headers.CacheControl = "max-age=10";
OutputCacheTests.cs (1)
889
var builders = TestUtils.CreateBuildersWithOutputCaching(contextAction: context => context.Response.Headers.Vary = context.
Request
.Headers.Pragma);
TestUtils.cs (1)
39
if (context.
Request
.Method != "HEAD")
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
119
if (context.
Request
.IsHttps)
Microsoft.AspNetCore.Owin.Tests (16)
OwinEnvironmentTests.cs (16)
22
context.
Request
.Method = "SomeMethod";
24
context.
Request
.Body = Stream.Null;
25
context.
Request
.Headers["CustomRequestHeader"] = "CustomRequestValue";
26
context.
Request
.Path = new PathString("/path");
27
context.
Request
.PathBase = new PathString("/pathBase");
28
context.
Request
.Protocol = "http/1.0";
29
context.
Request
.QueryString = new QueryString("?key=value");
30
context.
Request
.Scheme = "http";
84
Assert.Equal("SomeMethod", context.
Request
.Method);
85
Assert.Same(Stream.Null, context.
Request
.Body);
86
Assert.Equal("CustomRequestValue", context.
Request
.Headers["CustomRequestHeader"]);
87
Assert.Equal("/path", context.
Request
.Path.Value);
88
Assert.Equal("/pathBase", context.
Request
.PathBase.Value);
89
Assert.Equal("http/1.0", context.
Request
.Protocol);
90
Assert.Equal("?key=value", context.
Request
.QueryString.Value);
91
Assert.Equal("http", context.
Request
.Scheme);
Microsoft.AspNetCore.RequestDecompression (6)
DefaultRequestDecompressionProvider.cs (3)
32
var encodings = context.
Request
.Headers.ContentEncoding;
52
context.
Request
.Headers.Remove(HeaderNames.ContentEncoding);
54
return matchingProvider.GetDecompressionStream(context.
Request
.Body);
RequestDecompressionMiddleware.cs (3)
58
var request = context.
Request
.Body;
65
context.
Request
.Body = new SizeLimitedStream(decompressionStream, sizeLimit);
70
context.
Request
.Body = request;
Microsoft.AspNetCore.RequestDecompression.Tests (7)
RequestDecompressionMiddlewareTests.cs (7)
228
await context.
Request
.Body.CopyToAsync(ms, context.RequestAborted);
296
contentEncodingHeader = context.
Request
.Headers.ContentEncoding;
299
await context.
Request
.Body.CopyToAsync(ms, context.RequestAborted);
375
await context.
Request
.Body.CopyToAsync(ms, context.RequestAborted);
474
await context.
Request
.Body.CopyToAsync(ms, context.RequestAborted);
558
await context.
Request
.Body.CopyToAsync(ms, context.RequestAborted);
712
await context.
Request
.Body.CopyToAsync(ms, context.RequestAborted);
Microsoft.AspNetCore.ResponseCaching (13)
ResponseCachingKeyProvider.cs (5)
41
var request = context.HttpContext.
Request
;
90
var request = context.HttpContext.
Request
;
106
var requestHeaders = context.HttpContext.
Request
.Headers;
135
var queryArray = context.HttpContext.
Request
.Query.ToArray();
164
var queryKeyValues = context.HttpContext.
Request
.Query[queryKey];
ResponseCachingMiddleware.cs (4)
230
if (HeaderUtilities.ContainsCacheDirective(context.HttpContext.
Request
.Headers.CacheControl, CacheControlHeaderValue.OnlyIfCachedString))
343
&& HttpMethods.IsHead(context.HttpContext.
Request
.Method)))
431
var ifNoneMatchHeader = context.HttpContext.
Request
.Headers.IfNoneMatch;
459
var ifModifiedSince = context.HttpContext.
Request
.Headers.IfModifiedSince;
ResponseCachingPolicyProvider.cs (4)
14
var request = context.HttpContext.
Request
;
35
var requestHeaders = context.HttpContext.
Request
.Headers;
63
return !HeaderUtilities.ContainsCacheDirective(context.HttpContext.
Request
.Headers.CacheControl, CacheControlHeaderValue.NoStoreString);
170
var requestCacheControlHeaders = context.HttpContext.
Request
.Headers.CacheControl;
Microsoft.AspNetCore.ResponseCaching.Tests (5)
ResponseCachingTests.cs (2)
848
var builders = TestUtils.CreateBuildersWithResponseCaching(contextAction: context => context.Response.Headers.Vary = context.
Request
.Headers.Pragma);
883
var builders = TestUtils.CreateBuildersWithResponseCaching(contextAction: context => context.Response.Headers.Vary = context.
Request
.Headers.Pragma);
TestUtils.cs (3)
36
var expires = context.
Request
.Query["Expires"];
58
var contentLength = context.
Request
.Query["ContentLength"];
64
if (context.
Request
.Method != "HEAD")
Microsoft.AspNetCore.ResponseCompression (4)
ResponseCompressionBody.cs (1)
59
if (!_compressionChecked && HttpMethods.IsHead(_context.
Request
.Method))
ResponseCompressionProvider.cs (3)
78
var accept = context.
Request
.Headers.AcceptEncoding;
168
if (context.
Request
.IsHttps
221
if (string.IsNullOrEmpty(context.
Request
.Headers.AcceptEncoding))
Microsoft.AspNetCore.ResponseCompression.Tests (1)
ResponseCompressionMiddlewareTest.cs (1)
1261
if (HttpMethods.IsHead(context.
Request
.Method))
Microsoft.AspNetCore.Rewrite (33)
ApacheModRewrite\ApacheModRewriteRule.cs (1)
24
var initMatchRes = InitialMatch.Evaluate(context.HttpContext.
Request
.Path, context);
IISUrlRewrite\IISUrlRewriteRule.cs (1)
42
var path = context.HttpContext.
Request
.Path;
PatternSegments\HeaderSegment.cs (1)
17
return context.HttpContext.
Request
.Headers[_header];
PatternSegments\IsHttpsModSegment.cs (1)
12
return context.HttpContext.
Request
.IsHttps ? "on" : "off";
PatternSegments\IsHttpsUrlSegment.cs (1)
12
return context.HttpContext.
Request
.IsHttps ? "ON" : "OFF";
PatternSegments\QueryStringSegment.cs (1)
10
var queryString = context.HttpContext.
Request
.QueryString.ToString();
PatternSegments\RequestFilenameSegment.cs (1)
10
return context.HttpContext.
Request
.Path;
PatternSegments\RequestMethodSegment.cs (1)
10
return context.HttpContext.
Request
.Method;
PatternSegments\SchemeSegment.cs (1)
10
return context.HttpContext.
Request
.Scheme;
PatternSegments\ServerNameSegment.cs (1)
12
return context.HttpContext.
Request
.Host.Host.ToString(CultureInfo.InvariantCulture);
PatternSegments\UrlSegment.cs (2)
25
return _uriMatchPart == UriMatchPart.Full ? context.HttpContext.
Request
.GetEncodedUrl() : (string)context.HttpContext.
Request
.Path;
RedirectRule.cs (1)
29
var request = context.HttpContext.
Request
;
RedirectToHttpsRule.cs (3)
17
if (!context.HttpContext.
Request
.IsHttps)
19
var host = context.HttpContext.
Request
.Host;
32
var req = context.HttpContext.
Request
;
RedirectToNonWwwRule.cs (1)
36
var request = context.HttpContext.
Request
;
RedirectToWwwHelper.cs (1)
44
var request = context.HttpContext.
Request
;
RedirectToWwwRule.cs (2)
36
var req = context.HttpContext.
Request
;
54
new HostString($"www.{context.HttpContext.
Request
.Host.Value}"),
RewriteMiddleware.cs (4)
64
var originalPath = context.
Request
.Path;
73
if (originalPath != context.
Request
.Path)
100
logger.RewriteMiddlewareRequestContinueResults(httpContext.
Request
.GetEncodedUrl());
108
logger.RewriteMiddlewareRequestStopRules(httpContext.
Request
.GetEncodedUrl());
RewriteRule.cs (2)
29
var path = context.HttpContext.
Request
.Path;
43
var request = context.HttpContext.
Request
;
UrlActions\AbortAction.cs (2)
14
context.Logger.AbortedRequest(context.HttpContext.
Request
.Path + context.HttpContext.
Request
.QueryString);
UrlActions\CustomResponseAction.cs (1)
47
context.Logger.CustomResponse(context.HttpContext.
Request
.GetEncodedUrl());
UrlActions\RedirectAction.cs (3)
33
var pathBase = context.HttpContext.
Request
.PathBase;
59
var query = context.HttpContext.
Request
.QueryString.Add(
76
response.Headers.Location = pathBase + pattern + context.HttpContext.
Request
.QueryString;
UrlActions\RewriteAction.cs (1)
48
var request = context.HttpContext.
Request
;
Microsoft.AspNetCore.Rewrite.Tests (107)
ApacheModRewrite\ModRewriteMiddlewareTest.cs (32)
27
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
53
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
79
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
104
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
129
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
154
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
179
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
206
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
237
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
263
app.Run(context => context.Response.WriteAsync(context.
Request
.Path));
289
app.Run(context => context.Response.WriteAsync(context.
Request
.Scheme + "://" + context.
Request
.Host.Host + context.
Request
.Path + context.
Request
.QueryString));
315
app.Run(context => context.Response.WriteAsync(context.
Request
.Scheme + "://" + context.
Request
.Host.Host + context.
Request
.Path + context.
Request
.QueryString));
342
app.Run(context => context.Response.WriteAsync(context.
Request
.Scheme + "://" + context.
Request
.Host.Host + context.
Request
.Path + context.
Request
.QueryString));
370
app.Run(context => context.Response.WriteAsync(context.
Request
.Scheme + "://" + context.
Request
.Host.Host + context.
Request
.Path + context.
Request
.QueryString));
398
app.Run(context => context.Response.WriteAsync(context.
Request
.Path + context.
Request
.QueryString));
423
context.
Request
.Path +
424
context.
Request
.QueryString));
453
context.
Request
.Path +
454
context.
Request
.QueryString));
IISUrlRewrite\MiddleWareTests.cs (23)
69
app.Run(context => context.Response.WriteAsync(context.
Request
.Path + context.
Request
.QueryString));
105
app.Run(context => context.Response.WriteAsync(context.
Request
.Path + context.
Request
.QueryString));
277
context.
Request
.Scheme +
279
context.
Request
.Host +
280
context.
Request
.Path +
281
context.
Request
.QueryString));
314
context.
Request
.Scheme +
316
context.
Request
.Host +
317
context.
Request
.Path +
318
context.
Request
.QueryString));
351
context.
Request
.Scheme +
353
context.
Request
.Host +
354
context.
Request
.Path +
355
context.
Request
.QueryString));
388
context.
Request
.Path +
389
context.
Request
.QueryString));
422
context.
Request
.Path +
423
context.
Request
.QueryString));
608
app.Run(context => context.Response.WriteAsync(context.
Request
.GetEncodedUrl()));
653
app.Run(context => context.Response.WriteAsync(context.
Request
.GetEncodedUrl()));
740
app.Run(context => context.Response.WriteAsync(context.
Request
.GetEncodedUrl()));
MiddlewareTests.cs (45)
29
context.
Request
.Scheme +
31
context.
Request
.Host +
32
context.
Request
.Path +
33
context.
Request
.QueryString));
59
context.
Request
.Scheme +
61
context.
Request
.Host +
62
context.
Request
.Path +
63
context.
Request
.QueryString));
91
context.
Request
.Scheme +
93
context.
Request
.Host +
94
context.
Request
.Path +
95
context.
Request
.QueryString));
123
context.
Request
.Scheme +
125
context.
Request
.Host +
126
context.
Request
.Path +
127
context.
Request
.QueryString));
660
endpoints.MapGet("/foo", context => context.Response.WriteAsync($"{context.GetEndpoint()?.DisplayName} from {context.
Request
.Path}"));
687
context.
Request
.Path +
688
context.
Request
.QueryString));
714
context.
Request
.Path +
715
context.
Request
.QueryString));
861
context.
Request
.Scheme +
863
context.
Request
.Host +
864
context.
Request
.Path +
865
context.
Request
.QueryString));
899
context.
Request
.Scheme +
901
context.
Request
.Host +
902
context.
Request
.Path +
903
context.
Request
.QueryString));
935
context.
Request
.Scheme +
937
context.
Request
.Host +
938
context.
Request
.Path +
939
context.
Request
.QueryString));
972
context.
Request
.Scheme +
974
context.
Request
.Host +
975
context.
Request
.Path +
976
context.
Request
.QueryString));
1009
context.
Request
.Scheme +
1011
context.
Request
.Host +
1012
context.
Request
.Path +
1013
context.
Request
.QueryString));
1042
context.
Request
.Scheme +
1044
context.
Request
.Host +
1045
context.
Request
.Path +
1046
context.
Request
.QueryString));
PatternSegments\HeaderSegmentTests.cs (1)
18
context.HttpContext.
Request
.Headers.Location = "foo";
PatternSegments\IsHttpsModSegmentTests.cs (1)
19
context.HttpContext.
Request
.Scheme = input;
PatternSegments\IsHttpsSegmentTests.cs (1)
19
context.HttpContext.
Request
.Scheme = input;
PatternSegments\QueryStringSegmentTests.cs (1)
16
context.HttpContext.
Request
.QueryString = new QueryString("?hey=1");
PatternSegments\RequestFilenameSegmentTests.cs (1)
17
context.HttpContext.
Request
.Path = new PathString("/foo/bar");
PatternSegments\RequestMethodSegmentTests.cs (1)
17
context.HttpContext.
Request
.Method = HttpMethods.Get;
PatternSegments\SchemeSegmentTests.cs (1)
17
context.HttpContext.
Request
.Scheme = "http";
Microsoft.AspNetCore.Routing (29)
Constraints\HttpMethodRouteConstraint.cs (1)
49
return AllowedMethods.Contains(httpContext.
Request
.Method, StringComparer.OrdinalIgnoreCase);
DefaultLinkGenerator.cs (4)
91
pathBase ?? httpContext.
Request
.PathBase,
142
scheme ?? httpContext.
Request
.Scheme,
143
host ?? httpContext.
Request
.Host,
144
pathBase ?? httpContext.
Request
.PathBase,
EndpointRoutingMiddleware.cs (1)
174
httpContext.
Request
.Method is {} method &&
Matching\AcceptsMatcherPolicy.cs (2)
92
var contentType = httpContext.
Request
.ContentType;
358
var contentType = httpContext.
Request
.ContentType;
Matching\ContentEncodingNegotiationMatcherPolicy.cs (1)
17
private protected override StringValues GetNegotiationHeader(HttpContext httpContext) => httpContext.
Request
.Headers[HeaderName];
Matching\DefaultEndpointSelector.cs (2)
40
httpContext.
Request
.RouteValues = state.Values!;
103
httpContext.
Request
.RouteValues = values!;
Matching\DfaMatcher.cs (2)
42
var path = httpContext.
Request
.Path.Value!;
308
Log.CandidateRejectedByConstraint(_logger, httpContext.
Request
.Path, endpoint, constraint.Key, constraint.Value, values[constraint.Key]);
Matching\HostMatcherPolicy.cs (3)
335
var hostString = httpContext.
Request
.Host;
340
else if (string.Equals("https", httpContext.
Request
.Scheme, StringComparison.OrdinalIgnoreCase))
344
else if (string.Equals("http", httpContext.
Request
.Scheme, StringComparison.OrdinalIgnoreCase))
Matching\HttpMethodDictionaryPolicyJumpTable.cs (1)
23
var httpMethod = httpContext.
Request
.Method;
Matching\HttpMethodMatcherPolicy.cs (4)
115
var httpMethod = httpContext.
Request
.Method;
116
var headers = httpContext.
Request
.Headers;
153
httpContext.
Request
.RouteValues = null!;
422
var headers = httpContext.
Request
.Headers;
Matching\HttpMethodSingleEntryPolicyJumpTable.cs (1)
36
var httpMethod = httpContext.
Request
.Method;
Matching\NegotiationMatcherPolicy.cs (2)
141
httpContext.
Request
.RouteValues = null!;
402
var header = httpContext.
Request
.Headers[_negotiationHeader];
RequestDelegateRouteBuilderExtensions.cs (1)
239
return handler(httpContext.
Request
, httpContext.Response, httpContext.GetRouteData());
RouteBase.cs (1)
113
var requestPath = context.HttpContext.
Request
.Path;
RouterMiddleware.cs (1)
61
httpContext.
Request
.RouteValues = context.RouteData.Values;
Tree\TreeRouter.cs (2)
179
var tokenizer = new PathTokenizer(context.HttpContext.
Request
.Path);
196
if (!matcher.TryMatch(context.HttpContext.
Request
.Path, context.RouteData.Values))
Microsoft.AspNetCore.Routing.Abstractions (1)
RoutingHttpContextExtensions.cs (1)
26
return routingFeature?.RouteData ?? new RouteData(httpContext.
Request
.RouteValues);
Microsoft.AspNetCore.Routing.FunctionalTests (5)
MinimalFormTests.cs (5)
87
var form = await context.
Request
.ReadFormAsync();
349
var form = await context.
Request
.ReadFormAsync();
363
var form = context.
Request
.Form;
451
context.
Request
.Body = new SizeLimitedStream(context.
Request
.Body, context.Features.Get<IHttpMaxRequestBodySizeFeature>()?.MaxRequestBodySize);
Microsoft.AspNetCore.Routing.Microbenchmarks (11303)
EndpointRoutingBenchmarkBase.cs (2)
74
message.AppendLine(FormattableString.Invariant($"{httpContext.
Request
.Method} {httpContext.
Request
.Path}"));
LinkGeneration\LinkGenerationGithubBenchmark.generated.cs (486)
268
Requests[0].
Request
.Method = "GET";
269
Requests[0].
Request
.Path = "/emojis";
272
Requests[1].
Request
.Method = "GET";
273
Requests[1].
Request
.Path = "/events";
276
Requests[2].
Request
.Method = "GET";
277
Requests[2].
Request
.Path = "/feeds";
280
Requests[3].
Request
.Method = "GET";
281
Requests[3].
Request
.Path = "/gists";
284
Requests[4].
Request
.Method = "POST";
285
Requests[4].
Request
.Path = "/gists";
288
Requests[5].
Request
.Method = "GET";
289
Requests[5].
Request
.Path = "/issues";
292
Requests[6].
Request
.Method = "POST";
293
Requests[6].
Request
.Path = "/markdown";
296
Requests[7].
Request
.Method = "GET";
297
Requests[7].
Request
.Path = "/meta";
300
Requests[8].
Request
.Method = "GET";
301
Requests[8].
Request
.Path = "/notifications";
304
Requests[9].
Request
.Method = "PUT";
305
Requests[9].
Request
.Path = "/notifications";
308
Requests[10].
Request
.Method = "GET";
309
Requests[10].
Request
.Path = "/rate_limit";
312
Requests[11].
Request
.Method = "GET";
313
Requests[11].
Request
.Path = "/repositories";
316
Requests[12].
Request
.Method = "GET";
317
Requests[12].
Request
.Path = "/user";
320
Requests[13].
Request
.Method = "PATCH";
321
Requests[13].
Request
.Path = "/user";
324
Requests[14].
Request
.Method = "GET";
325
Requests[14].
Request
.Path = "/users";
328
Requests[15].
Request
.Method = "GET";
329
Requests[15].
Request
.Path = "/gists/public";
332
Requests[16].
Request
.Method = "GET";
333
Requests[16].
Request
.Path = "/gists/starred";
336
Requests[17].
Request
.Method = "GET";
337
Requests[17].
Request
.Path = "/gitignore/templates";
340
Requests[18].
Request
.Method = "POST";
341
Requests[18].
Request
.Path = "/markdown/raw";
344
Requests[19].
Request
.Method = "GET";
345
Requests[19].
Request
.Path = "/search/code";
348
Requests[20].
Request
.Method = "GET";
349
Requests[20].
Request
.Path = "/search/issues";
352
Requests[21].
Request
.Method = "GET";
353
Requests[21].
Request
.Path = "/search/repositories";
356
Requests[22].
Request
.Method = "GET";
357
Requests[22].
Request
.Path = "/search/users";
360
Requests[23].
Request
.Method = "GET";
361
Requests[23].
Request
.Path = "/user/emails";
364
Requests[24].
Request
.Method = "DELETE";
365
Requests[24].
Request
.Path = "/user/emails";
368
Requests[25].
Request
.Method = "POST";
369
Requests[25].
Request
.Path = "/user/emails";
372
Requests[26].
Request
.Method = "GET";
373
Requests[26].
Request
.Path = "/user/followers";
376
Requests[27].
Request
.Method = "GET";
377
Requests[27].
Request
.Path = "/user/following";
380
Requests[28].
Request
.Method = "GET";
381
Requests[28].
Request
.Path = "/user/issues";
384
Requests[29].
Request
.Method = "POST";
385
Requests[29].
Request
.Path = "/user/keys";
388
Requests[30].
Request
.Method = "GET";
389
Requests[30].
Request
.Path = "/user/keys";
392
Requests[31].
Request
.Method = "GET";
393
Requests[31].
Request
.Path = "/user/orgs";
396
Requests[32].
Request
.Method = "GET";
397
Requests[32].
Request
.Path = "/user/repos";
400
Requests[33].
Request
.Method = "POST";
401
Requests[33].
Request
.Path = "/user/repos";
404
Requests[34].
Request
.Method = "GET";
405
Requests[34].
Request
.Path = "/user/starred";
408
Requests[35].
Request
.Method = "GET";
409
Requests[35].
Request
.Path = "/user/subscriptions";
412
Requests[36].
Request
.Method = "GET";
413
Requests[36].
Request
.Path = "/user/teams";
416
Requests[37].
Request
.Method = "GET";
417
Requests[37].
Request
.Path = "/legacy/repos/search/d50aacc";
420
Requests[38].
Request
.Method = "GET";
421
Requests[38].
Request
.Path = "/legacy/user/email/8341f";
424
Requests[39].
Request
.Method = "GET";
425
Requests[39].
Request
.Path = "/legacy/user/search/24fa852";
428
Requests[40].
Request
.Method = "GET";
429
Requests[40].
Request
.Path = "/legacy/issues/search/f8f51/b60908a1-4/7e0c7/30ea8fe";
432
Requests[41].
Request
.Method = "GET";
433
Requests[41].
Request
.Path = "/gitignore/templates/a2ba346f";
436
Requests[42].
Request
.Method = "GET";
437
Requests[42].
Request
.Path = "/notifications/threads/1df78";
440
Requests[43].
Request
.Method = "PATCH";
441
Requests[43].
Request
.Path = "/notifications/threads/24a82";
444
Requests[44].
Request
.Method = "DELETE";
445
Requests[44].
Request
.Path = "/user/following/770fc247";
448
Requests[45].
Request
.Method = "GET";
449
Requests[45].
Request
.Path = "/user/following/5ac246a4";
452
Requests[46].
Request
.Method = "PUT";
453
Requests[46].
Request
.Path = "/user/following/20904d4a";
456
Requests[47].
Request
.Method = "DELETE";
457
Requests[47].
Request
.Path = "/user/keys/2cb10";
460
Requests[48].
Request
.Method = "GET";
461
Requests[48].
Request
.Path = "/user/keys/37adb";
464
Requests[49].
Request
.Method = "DELETE";
465
Requests[49].
Request
.Path = "/notifications/threads/6d635/subscription";
468
Requests[50].
Request
.Method = "GET";
469
Requests[50].
Request
.Path = "/notifications/threads/8117f/subscription";
472
Requests[51].
Request
.Method = "PUT";
473
Requests[51].
Request
.Path = "/notifications/threads/6ca24/subscription";
476
Requests[52].
Request
.Method = "PUT";
477
Requests[52].
Request
.Path = "/user/starred/348ac/b0848";
480
Requests[53].
Request
.Method = "GET";
481
Requests[53].
Request
.Path = "/user/starred/92490/2ff1b";
484
Requests[54].
Request
.Method = "DELETE";
485
Requests[54].
Request
.Path = "/user/starred/0670e/5ca5b";
488
Requests[55].
Request
.Method = "PUT";
489
Requests[55].
Request
.Path = "/user/subscriptions/a7cee/6440a";
492
Requests[56].
Request
.Method = "GET";
493
Requests[56].
Request
.Path = "/user/subscriptions/0f395/79a07";
496
Requests[57].
Request
.Method = "DELETE";
497
Requests[57].
Request
.Path = "/user/subscriptions/6df5e/ee72b";
500
Requests[58].
Request
.Method = "GET";
501
Requests[58].
Request
.Path = "/gists/bc994";
504
Requests[59].
Request
.Method = "PATCH";
505
Requests[59].
Request
.Path = "/gists/16fd7";
508
Requests[60].
Request
.Method = "DELETE";
509
Requests[60].
Request
.Path = "/gists/26a18";
512
Requests[61].
Request
.Method = "PATCH";
513
Requests[61].
Request
.Path = "/orgs/0843c";
516
Requests[62].
Request
.Method = "GET";
517
Requests[62].
Request
.Path = "/orgs/58d34";
520
Requests[63].
Request
.Method = "PATCH";
521
Requests[63].
Request
.Path = "/teams/9daee4";
524
Requests[64].
Request
.Method = "GET";
525
Requests[64].
Request
.Path = "/teams/9814e3";
528
Requests[65].
Request
.Method = "DELETE";
529
Requests[65].
Request
.Path = "/teams/1b5067";
532
Requests[66].
Request
.Method = "GET";
533
Requests[66].
Request
.Path = "/users/16a15e92";
536
Requests[67].
Request
.Method = "GET";
537
Requests[67].
Request
.Path = "/gists/8bfc9/comments";
540
Requests[68].
Request
.Method = "POST";
541
Requests[68].
Request
.Path = "/gists/8a24e/comments";
544
Requests[69].
Request
.Method = "POST";
545
Requests[69].
Request
.Path = "/gists/b269a/forks";
548
Requests[70].
Request
.Method = "DELETE";
549
Requests[70].
Request
.Path = "/gists/6fa8c/star";
552
Requests[71].
Request
.Method = "GET";
553
Requests[71].
Request
.Path = "/gists/31eb2/star";
556
Requests[72].
Request
.Method = "PUT";
557
Requests[72].
Request
.Path = "/gists/cf969/star";
560
Requests[73].
Request
.Method = "GET";
561
Requests[73].
Request
.Path = "/orgs/b92c3/events";
564
Requests[74].
Request
.Method = "GET";
565
Requests[74].
Request
.Path = "/orgs/afa76/issues";
568
Requests[75].
Request
.Method = "GET";
569
Requests[75].
Request
.Path = "/orgs/81b06/members";
572
Requests[76].
Request
.Method = "GET";
573
Requests[76].
Request
.Path = "/orgs/e9b92/public_members";
576
Requests[77].
Request
.Method = "GET";
577
Requests[77].
Request
.Path = "/orgs/96108/repos";
580
Requests[78].
Request
.Method = "POST";
581
Requests[78].
Request
.Path = "/orgs/7ef10/repos";
584
Requests[79].
Request
.Method = "POST";
585
Requests[79].
Request
.Path = "/orgs/91838/teams";
588
Requests[80].
Request
.Method = "GET";
589
Requests[80].
Request
.Path = "/orgs/c1602/teams";
592
Requests[81].
Request
.Method = "GET";
593
Requests[81].
Request
.Path = "/teams/ae1fcf/members";
596
Requests[82].
Request
.Method = "GET";
597
Requests[82].
Request
.Path = "/teams/82e12b/repos";
600
Requests[83].
Request
.Method = "GET";
601
Requests[83].
Request
.Path = "/users/c5b5ee96/events";
604
Requests[84].
Request
.Method = "GET";
605
Requests[84].
Request
.Path = "/users/3ebe3c63/followers";
608
Requests[85].
Request
.Method = "GET";
609
Requests[85].
Request
.Path = "/users/7eb8ee04/gists";
612
Requests[86].
Request
.Method = "GET";
613
Requests[86].
Request
.Path = "/users/ce5247f6/keys";
616
Requests[87].
Request
.Method = "GET";
617
Requests[87].
Request
.Path = "/users/4e212684/orgs";
620
Requests[88].
Request
.Method = "GET";
621
Requests[88].
Request
.Path = "/users/25bd0823/received_events";
624
Requests[89].
Request
.Method = "GET";
625
Requests[89].
Request
.Path = "/users/b5cdb182/repos";
628
Requests[90].
Request
.Method = "GET";
629
Requests[90].
Request
.Path = "/users/0926f1ee/starred";
632
Requests[91].
Request
.Method = "GET";
633
Requests[91].
Request
.Path = "/users/52fd945f/subscriptions";
636
Requests[92].
Request
.Method = "GET";
637
Requests[92].
Request
.Path = "/users/c079f122/received_events/public";
640
Requests[93].
Request
.Method = "GET";
641
Requests[93].
Request
.Path = "/users/f3d3f90a/events/orgs/b877e";
644
Requests[94].
Request
.Method = "DELETE";
645
Requests[94].
Request
.Path = "/gists/1425f/comments/3a1b3cd3-";
648
Requests[95].
Request
.Method = "GET";
649
Requests[95].
Request
.Path = "/gists/f885b/comments/1f24dd6a-";
652
Requests[96].
Request
.Method = "PATCH";
653
Requests[96].
Request
.Path = "/gists/0b9be/comments/3f237cca-";
656
Requests[97].
Request
.Method = "DELETE";
657
Requests[97].
Request
.Path = "/orgs/97bbf/members/3b77a2e7";
660
Requests[98].
Request
.Method = "GET";
661
Requests[98].
Request
.Path = "/orgs/c7fdb/members/76a43729";
664
Requests[99].
Request
.Method = "PUT";
665
Requests[99].
Request
.Path = "/orgs/191ee/public_members/119c87f1";
668
Requests[100].
Request
.Method = "GET";
669
Requests[100].
Request
.Path = "/orgs/ee407/public_members/8ff12154";
672
Requests[101].
Request
.Method = "DELETE";
673
Requests[101].
Request
.Path = "/orgs/4d9da/public_members/446d97e9";
676
Requests[102].
Request
.Method = "GET";
677
Requests[102].
Request
.Path = "/teams/fa75fc/members/978bd8d5";
680
Requests[103].
Request
.Method = "PUT";
681
Requests[103].
Request
.Path = "/teams/cbcdd2/members/d55986df";
684
Requests[104].
Request
.Method = "DELETE";
685
Requests[104].
Request
.Path = "/teams/cade8a/members/f83610eb";
688
Requests[105].
Request
.Method = "DELETE";
689
Requests[105].
Request
.Path = "/teams/1d5e29/memberships/5f9d213c";
692
Requests[106].
Request
.Method = "PUT";
693
Requests[106].
Request
.Path = "/teams/17d43f/memberships/5a2f444c";
696
Requests[107].
Request
.Method = "GET";
697
Requests[107].
Request
.Path = "/teams/12e975/memberships/8bb2fd20";
700
Requests[108].
Request
.Method = "GET";
701
Requests[108].
Request
.Path = "/users/c2ccdc27/following/85519b02-f";
704
Requests[109].
Request
.Method = "PUT";
705
Requests[109].
Request
.Path = "/teams/0c0a5a/repos/1f88c/6b60f";
708
Requests[110].
Request
.Method = "DELETE";
709
Requests[110].
Request
.Path = "/teams/6529ef/repos/ac003/62dd8";
712
Requests[111].
Request
.Method = "GET";
713
Requests[111].
Request
.Path = "/teams/101239/repos/51df9/aa3f3";
716
Requests[112].
Request
.Method = "PATCH";
717
Requests[112].
Request
.Path = "/repos/df7c9/ffcbe";
720
Requests[113].
Request
.Method = "DELETE";
721
Requests[113].
Request
.Path = "/repos/1f316/0f4ec";
724
Requests[114].
Request
.Method = "GET";
725
Requests[114].
Request
.Path = "/repos/08c95/7adde";
728
Requests[115].
Request
.Method = "GET";
729
Requests[115].
Request
.Path = "/networks/468be/29a19/events";
732
Requests[116].
Request
.Method = "GET";
733
Requests[116].
Request
.Path = "/repos/db561/2d460/assignees";
736
Requests[117].
Request
.Method = "GET";
737
Requests[117].
Request
.Path = "/repos/0eb0c/ec96b/branches";
740
Requests[118].
Request
.Method = "GET";
741
Requests[118].
Request
.Path = "/repos/8d58d/a31da/collaborators";
744
Requests[119].
Request
.Method = "GET";
745
Requests[119].
Request
.Path = "/repos/9d638/100e1/comments";
748
Requests[120].
Request
.Method = "GET";
749
Requests[120].
Request
.Path = "/repos/2afda/40624/commits";
752
Requests[121].
Request
.Method = "GET";
753
Requests[121].
Request
.Path = "/repos/583f1/f2f56/contributors";
756
Requests[122].
Request
.Method = "GET";
757
Requests[122].
Request
.Path = "/repos/96246/cf112/deployments";
760
Requests[123].
Request
.Method = "POST";
761
Requests[123].
Request
.Path = "/repos/af325/068fe/deployments";
764
Requests[124].
Request
.Method = "GET";
765
Requests[124].
Request
.Path = "/repos/726c3/22a16/downloads";
768
Requests[125].
Request
.Method = "GET";
769
Requests[125].
Request
.Path = "/repos/bc0e4/44660/events";
772
Requests[126].
Request
.Method = "GET";
773
Requests[126].
Request
.Path = "/repos/e8481/456ae/forks";
776
Requests[127].
Request
.Method = "POST";
777
Requests[127].
Request
.Path = "/repos/fa493/a87f8/forks";
780
Requests[128].
Request
.Method = "POST";
781
Requests[128].
Request
.Path = "/repos/e5328/77db0/hooks";
784
Requests[129].
Request
.Method = "GET";
785
Requests[129].
Request
.Path = "/repos/d219e/a06cf/hooks";
788
Requests[130].
Request
.Method = "GET";
789
Requests[130].
Request
.Path = "/repos/7a830/48c99/issues";
792
Requests[131].
Request
.Method = "POST";
793
Requests[131].
Request
.Path = "/repos/62103/40680/issues";
796
Requests[132].
Request
.Method = "GET";
797
Requests[132].
Request
.Path = "/repos/6b1aa/de4d3/keys";
800
Requests[133].
Request
.Method = "POST";
801
Requests[133].
Request
.Path = "/repos/47645/65364/keys";
804
Requests[134].
Request
.Method = "GET";
805
Requests[134].
Request
.Path = "/repos/f252f/d0dc5/labels";
808
Requests[135].
Request
.Method = "POST";
809
Requests[135].
Request
.Path = "/repos/8436b/fea30/labels";
812
Requests[136].
Request
.Method = "GET";
813
Requests[136].
Request
.Path = "/repos/d5058/668a7/languages";
816
Requests[137].
Request
.Method = "POST";
817
Requests[137].
Request
.Path = "/repos/a9546/9b556/merges";
820
Requests[138].
Request
.Method = "GET";
821
Requests[138].
Request
.Path = "/repos/5258b/6f2cd/milestones";
824
Requests[139].
Request
.Method = "POST";
825
Requests[139].
Request
.Path = "/repos/5f70d/513b2/milestones";
828
Requests[140].
Request
.Method = "PUT";
829
Requests[140].
Request
.Path = "/repos/90aa5/bdde5/notifications";
832
Requests[141].
Request
.Method = "GET";
833
Requests[141].
Request
.Path = "/repos/5f672/af6ff/notifications";
836
Requests[142].
Request
.Method = "POST";
837
Requests[142].
Request
.Path = "/repos/9277e/8e49c/pulls";
840
Requests[143].
Request
.Method = "GET";
841
Requests[143].
Request
.Path = "/repos/a4973/6dbf0/pulls";
844
Requests[144].
Request
.Method = "GET";
845
Requests[144].
Request
.Path = "/repos/a53d8/0627b/readme";
848
Requests[145].
Request
.Method = "POST";
849
Requests[145].
Request
.Path = "/repos/2bc2b/0a7aa/releases";
852
Requests[146].
Request
.Method = "GET";
853
Requests[146].
Request
.Path = "/repos/4bb1f/8220c/releases";
856
Requests[147].
Request
.Method = "GET";
857
Requests[147].
Request
.Path = "/repos/7a4e8/d54f8/stargazers";
860
Requests[148].
Request
.Method = "GET";
861
Requests[148].
Request
.Path = "/repos/63547/0d37c/subscribers";
864
Requests[149].
Request
.Method = "PUT";
865
Requests[149].
Request
.Path = "/repos/6cdda/a402c/subscription";
868
Requests[150].
Request
.Method = "GET";
869
Requests[150].
Request
.Path = "/repos/60320/4381b/subscription";
872
Requests[151].
Request
.Method = "DELETE";
873
Requests[151].
Request
.Path = "/repos/ed808/292c1/subscription";
876
Requests[152].
Request
.Method = "GET";
877
Requests[152].
Request
.Path = "/repos/74160/84ba7/tags";
880
Requests[153].
Request
.Method = "GET";
881
Requests[153].
Request
.Path = "/repos/ef45e/30a80/teams";
884
Requests[154].
Request
.Method = "GET";
885
Requests[154].
Request
.Path = "/repos/02825/d5092/watchers";
888
Requests[155].
Request
.Method = "POST";
889
Requests[155].
Request
.Path = "/repos/be33a/5f87e/git/blobs";
892
Requests[156].
Request
.Method = "POST";
893
Requests[156].
Request
.Path = "/repos/1a46d/093a4/git/commits";
896
Requests[157].
Request
.Method = "GET";
897
Requests[157].
Request
.Path = "/repos/14024/d64d2/git/refs";
900
Requests[158].
Request
.Method = "POST";
901
Requests[158].
Request
.Path = "/repos/d361c/fea9a/git/refs";
904
Requests[159].
Request
.Method = "POST";
905
Requests[159].
Request
.Path = "/repos/9a774/6a8ce/git/tags";
908
Requests[160].
Request
.Method = "POST";
909
Requests[160].
Request
.Path = "/repos/630e1/6a452/git/trees";
912
Requests[161].
Request
.Method = "GET";
913
Requests[161].
Request
.Path = "/repos/27ccf/49922/issues/comments";
916
Requests[162].
Request
.Method = "GET";
917
Requests[162].
Request
.Path = "/repos/1e557/77fad/issues/events";
920
Requests[163].
Request
.Method = "GET";
921
Requests[163].
Request
.Path = "/repos/297e9/11542/pulls/comments";
924
Requests[164].
Request
.Method = "GET";
925
Requests[164].
Request
.Path = "/repos/3c261/5719e/stats/code_frequency";
928
Requests[165].
Request
.Method = "GET";
929
Requests[165].
Request
.Path = "/repos/74b31/45543/stats/commit_activity";
932
Requests[166].
Request
.Method = "GET";
933
Requests[166].
Request
.Path = "/repos/909d8/56712/stats/contributors";
936
Requests[167].
Request
.Method = "GET";
937
Requests[167].
Request
.Path = "/repos/b8ecd/2a142/stats/participation";
940
Requests[168].
Request
.Method = "GET";
941
Requests[168].
Request
.Path = "/repos/72fcd/e0d41/stats/punch_card";
944
Requests[169].
Request
.Method = "GET";
945
Requests[169].
Request
.Path = "/repos/f8e07/b0719/git/blobs/a82e41d";
948
Requests[170].
Request
.Method = "GET";
949
Requests[170].
Request
.Path = "/repos/22ba5/326c5/git/commits/9fd2dd7";
952
Requests[171].
Request
.Method = "DELETE";
953
Requests[171].
Request
.Path = "/repos/6052c/2b5e3/git/refs/f9a94";
956
Requests[172].
Request
.Method = "PATCH";
957
Requests[172].
Request
.Path = "/repos/2de37/f89e9/git/refs/cda61";
960
Requests[173].
Request
.Method = "GET";
961
Requests[173].
Request
.Path = "/repos/66069/dcb46/git/refs/f682e";
964
Requests[174].
Request
.Method = "GET";
965
Requests[174].
Request
.Path = "/repos/cab0e/a64fa/git/tags/507f4b6";
968
Requests[175].
Request
.Method = "GET";
969
Requests[175].
Request
.Path = "/repos/76633/6d2b3/git/trees/a45672d";
972
Requests[176].
Request
.Method = "GET";
973
Requests[176].
Request
.Path = "/repos/611e5/14e81/issues/comments/70d5316a-";
976
Requests[177].
Request
.Method = "PATCH";
977
Requests[177].
Request
.Path = "/repos/d4bb1/0e97d/issues/comments/f03032b3-";
980
Requests[178].
Request
.Method = "DELETE";
981
Requests[178].
Request
.Path = "/repos/221b6/f1cdb/issues/comments/a769f3b6-";
984
Requests[179].
Request
.Method = "GET";
985
Requests[179].
Request
.Path = "/repos/7ad51/f85f2/issues/events/cec2e88";
988
Requests[180].
Request
.Method = "PATCH";
989
Requests[180].
Request
.Path = "/repos/5ad14/2c490/pulls/comments/0ce89290-";
992
Requests[181].
Request
.Method = "GET";
993
Requests[181].
Request
.Path = "/repos/13ba8/30bb3/pulls/comments/e643400f-";
996
Requests[182].
Request
.Method = "DELETE";
997
Requests[182].
Request
.Path = "/repos/cd3a3/d6224/pulls/comments/c225e938-";
1000
Requests[183].
Request
.Method = "PATCH";
1001
Requests[183].
Request
.Path = "/repos/33c72/2f2bd/releases/assets/d06f4";
1004
Requests[184].
Request
.Method = "DELETE";
1005
Requests[184].
Request
.Path = "/repos/18b7c/c3d06/releases/assets/97762";
1008
Requests[185].
Request
.Method = "GET";
1009
Requests[185].
Request
.Path = "/repos/38549/7ae63/releases/assets/2498e";
1012
Requests[186].
Request
.Method = "GET";
1013
Requests[186].
Request
.Path = "/repos/2cd8e/bb684/assignees/04058a9c";
1016
Requests[187].
Request
.Method = "GET";
1017
Requests[187].
Request
.Path = "/repos/ab58d/4a13e/branches/c48dc6";
1020
Requests[188].
Request
.Method = "PUT";
1021
Requests[188].
Request
.Path = "/repos/a856e/bf188/collaborators/5af36";
1024
Requests[189].
Request
.Method = "DELETE";
1025
Requests[189].
Request
.Path = "/repos/b17c0/6051b/collaborators/0b415";
1028
Requests[190].
Request
.Method = "GET";
1029
Requests[190].
Request
.Path = "/repos/e4fc3/95a37/collaborators/9bd1b";
1032
Requests[191].
Request
.Method = "DELETE";
1033
Requests[191].
Request
.Path = "/repos/fa150/ca148/comments/02b69539-";
1036
Requests[192].
Request
.Method = "GET";
1037
Requests[192].
Request
.Path = "/repos/6d3cc/5ad75/comments/c6a0df3f-";
1040
Requests[193].
Request
.Method = "PATCH";
1041
Requests[193].
Request
.Path = "/repos/883ad/d79a0/comments/edac8612-";
1044
Requests[194].
Request
.Method = "GET";
1045
Requests[194].
Request
.Path = "/repos/59b5d/9ffbe/commits/d6d94ac";
1048
Requests[195].
Request
.Method = "GET";
1049
Requests[195].
Request
.Path = "/repos/19be8/61e28/contents/f4c5a";
1052
Requests[196].
Request
.Method = "DELETE";
1053
Requests[196].
Request
.Path = "/repos/6e29a/43f51/contents/52ffe";
1056
Requests[197].
Request
.Method = "PUT";
1057
Requests[197].
Request
.Path = "/repos/a3605/bf28b/contents/a8fe5";
1060
Requests[198].
Request
.Method = "GET";
1061
Requests[198].
Request
.Path = "/repos/a869c/dd5fa/downloads/f1808e48-0";
1064
Requests[199].
Request
.Method = "DELETE";
1065
Requests[199].
Request
.Path = "/repos/94d90/ae933/downloads/f9e25b5f-6";
1068
Requests[200].
Request
.Method = "DELETE";
1069
Requests[200].
Request
.Path = "/repos/0fe83/e2353/hooks/a83a19";
1072
Requests[201].
Request
.Method = "GET";
1073
Requests[201].
Request
.Path = "/repos/648c3/fc66e/hooks/04b461";
1076
Requests[202].
Request
.Method = "PATCH";
1077
Requests[202].
Request
.Path = "/repos/3ac61/92269/hooks/79e4df";
1080
Requests[203].
Request
.Method = "GET";
1081
Requests[203].
Request
.Path = "/repos/8d523/ba527/issues/9a222a";
1084
Requests[204].
Request
.Method = "PATCH";
1085
Requests[204].
Request
.Path = "/repos/9ed96/f6553/issues/4df9d5";
1088
Requests[205].
Request
.Method = "GET";
1089
Requests[205].
Request
.Path = "/repos/472ec/16a4a/keys/84edc";
1092
Requests[206].
Request
.Method = "DELETE";
1093
Requests[206].
Request
.Path = "/repos/1a88d/4c019/keys/b3e45";
1096
Requests[207].
Request
.Method = "GET";
1097
Requests[207].
Request
.Path = "/repos/334fe/0c9d7/labels/4c1ee";
1100
Requests[208].
Request
.Method = "PATCH";
1101
Requests[208].
Request
.Path = "/repos/5dcde/f973d/labels/80435";
1104
Requests[209].
Request
.Method = "DELETE";
1105
Requests[209].
Request
.Path = "/repos/00a37/12e4b/labels/d7158";
1108
Requests[210].
Request
.Method = "PATCH";
1109
Requests[210].
Request
.Path = "/repos/e24fa/a168e/milestones/a38b20";
1112
Requests[211].
Request
.Method = "GET";
1113
Requests[211].
Request
.Path = "/repos/24592/f8af1/milestones/8e871e";
1116
Requests[212].
Request
.Method = "DELETE";
1117
Requests[212].
Request
.Path = "/repos/c5ee0/38414/milestones/da7976";
1120
Requests[213].
Request
.Method = "GET";
1121
Requests[213].
Request
.Path = "/repos/912e9/c81d6/pulls/ce677a";
1124
Requests[214].
Request
.Method = "PATCH";
1125
Requests[214].
Request
.Path = "/repos/aef6c/5ec7e/pulls/633b87";
1128
Requests[215].
Request
.Method = "PATCH";
1129
Requests[215].
Request
.Path = "/repos/6085e/ff8aa/releases/dcda3";
1132
Requests[216].
Request
.Method = "GET";
1133
Requests[216].
Request
.Path = "/repos/4d7f4/ceafa/releases/97fd7";
1136
Requests[217].
Request
.Method = "DELETE";
1137
Requests[217].
Request
.Path = "/repos/1f81e/89e6a/releases/6b744";
1140
Requests[218].
Request
.Method = "GET";
1141
Requests[218].
Request
.Path = "/repos/8b417/ad4a5/statuses/08833";
1144
Requests[219].
Request
.Method = "POST";
1145
Requests[219].
Request
.Path = "/repos/b7600/1d17b/statuses/9de98";
1148
Requests[220].
Request
.Method = "GET";
1149
Requests[220].
Request
.Path = "/repos/ceff2/ff6ae/commits/ae429/status";
1152
Requests[221].
Request
.Method = "GET";
1153
Requests[221].
Request
.Path = "/repos/13588/5ba9b/commits/534a9aa/comments";
1156
Requests[222].
Request
.Method = "POST";
1157
Requests[222].
Request
.Path = "/repos/ba059/a94ca/commits/dfc6938/comments";
1160
Requests[223].
Request
.Method = "GET";
1161
Requests[223].
Request
.Path = "/repos/39532/6e5f6/deployments/f41d0/statuses";
1164
Requests[224].
Request
.Method = "POST";
1165
Requests[224].
Request
.Path = "/repos/18373/23ac8/deployments/392c1/statuses";
1168
Requests[225].
Request
.Method = "POST";
1169
Requests[225].
Request
.Path = "/repos/73148/9d526/hooks/59adb8/tests";
1172
Requests[226].
Request
.Method = "POST";
1173
Requests[226].
Request
.Path = "/repos/19a36/91f69/issues/765c82/comments";
1176
Requests[227].
Request
.Method = "GET";
1177
Requests[227].
Request
.Path = "/repos/ffa54/61a37/issues/710513/comments";
1180
Requests[228].
Request
.Method = "GET";
1181
Requests[228].
Request
.Path = "/repos/fcb0f/0c8e2/issues/de0d38/events";
1184
Requests[229].
Request
.Method = "POST";
1185
Requests[229].
Request
.Path = "/repos/158d7/00bed/issues/9bc6b6/labels";
1188
Requests[230].
Request
.Method = "GET";
1189
Requests[230].
Request
.Path = "/repos/67c56/41fd8/issues/6b6858/labels";
1192
Requests[231].
Request
.Method = "PUT";
1193
Requests[231].
Request
.Path = "/repos/b8194/06cc6/issues/effa3d/labels";
1196
Requests[232].
Request
.Method = "DELETE";
1197
Requests[232].
Request
.Path = "/repos/57423/979fd/issues/6d3fce/labels";
1200
Requests[233].
Request
.Method = "GET";
1201
Requests[233].
Request
.Path = "/repos/d799e/53e56/milestones/80ebe2/labels";
1204
Requests[234].
Request
.Method = "GET";
1205
Requests[234].
Request
.Path = "/repos/55311/56e4a/pulls/666fa7/comments";
1208
Requests[235].
Request
.Method = "POST";
1209
Requests[235].
Request
.Path = "/repos/c9cd2/f3e91/pulls/ae901f/comments";
1212
Requests[236].
Request
.Method = "GET";
1213
Requests[236].
Request
.Path = "/repos/3195c/e552e/pulls/6b6d2b/commits";
1216
Requests[237].
Request
.Method = "GET";
1217
Requests[237].
Request
.Path = "/repos/2d6b6/77639/pulls/3423c6/files";
1220
Requests[238].
Request
.Method = "PUT";
1221
Requests[238].
Request
.Path = "/repos/6c6d3/3a6b0/pulls/1da47f/merge";
1224
Requests[239].
Request
.Method = "GET";
1225
Requests[239].
Request
.Path = "/repos/b144c/c707e/pulls/a5fcb2/merge";
1228
Requests[240].
Request
.Method = "GET";
1229
Requests[240].
Request
.Path = "/repos/81459/8618d/releases/65289/assets";
1232
Requests[241].
Request
.Method = "DELETE";
1233
Requests[241].
Request
.Path = "/repos/3c5a4/a7525/issues/e93fff/labels/cd7b0";
1236
Requests[242].
Request
.Method = "GET";
1237
Requests[242].
Request
.Path = "/repos/85bd9/70da2/2dc44fe9-83b9-/01762";
Matching\MatcherAzureBenchmarkBase.generated.cs (10320)
5184
Requests[0].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5185
Requests[0].
Request
.Path = "/account";
5188
Requests[1].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5189
Requests[1].
Request
.Path = "/analyze";
5192
Requests[2].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5193
Requests[2].
Request
.Path = "/apis";
5196
Requests[3].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5197
Requests[3].
Request
.Path = "/Applications";
5200
Requests[4].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5201
Requests[4].
Request
.Path = "/ApplicationTypes";
5204
Requests[5].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5205
Requests[5].
Request
.Path = "/apps";
5208
Requests[6].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5209
Requests[6].
Request
.Path = "/apps";
5212
Requests[7].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5213
Requests[7].
Request
.Path = "/authorizationServers";
5216
Requests[8].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5217
Requests[8].
Request
.Path = "/backends";
5220
Requests[9].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5221
Requests[9].
Request
.Path = "/BuildJob";
5224
Requests[10].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5225
Requests[10].
Request
.Path = "/certificates";
5228
Requests[11].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5229
Requests[11].
Request
.Path = "/certificates";
5232
Requests[12].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5233
Requests[12].
Request
.Path = "/ComposeDeployments";
5236
Requests[13].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5237
Requests[13].
Request
.Path = "/datasources";
5240
Requests[14].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5241
Requests[14].
Request
.Path = "/datasources";
5244
Requests[15].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5245
Requests[15].
Request
.Path = "/deletedcertificates";
5248
Requests[16].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5249
Requests[16].
Request
.Path = "/deletedkeys";
5252
Requests[17].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5253
Requests[17].
Request
.Path = "/deletedsecrets";
5256
Requests[18].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5257
Requests[18].
Request
.Path = "/deletedstorage";
5260
Requests[19].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5261
Requests[19].
Request
.Path = "/describe";
5264
Requests[20].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5265
Requests[20].
Request
.Path = "/detect";
5268
Requests[21].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5269
Requests[21].
Request
.Path = "/domains";
5272
Requests[22].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5273
Requests[22].
Request
.Path = "/entities";
5276
Requests[23].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5277
Requests[23].
Request
.Path = "/facelists";
5280
Requests[24].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5281
Requests[24].
Request
.Path = "/Faults";
5284
Requests[25].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5285
Requests[25].
Request
.Path = "/findsimilars";
5288
Requests[26].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5289
Requests[26].
Request
.Path = "/generateThumbnail";
5292
Requests[27].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5293
Requests[27].
Request
.Path = "/group";
5296
Requests[28].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5297
Requests[28].
Request
.Path = "/groups";
5300
Requests[29].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5301
Requests[29].
Request
.Path = "/identify";
5304
Requests[30].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5305
Requests[30].
Request
.Path = "/identityProviders";
5308
Requests[31].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5309
Requests[31].
Request
.Path = "/ImageStore";
5312
Requests[32].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5313
Requests[32].
Request
.Path = "/indexers";
5316
Requests[33].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5317
Requests[33].
Request
.Path = "/indexers";
5320
Requests[34].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5321
Requests[34].
Request
.Path = "/indexes";
5324
Requests[35].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5325
Requests[35].
Request
.Path = "/indexes";
5328
Requests[36].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5329
Requests[36].
Request
.Path = "/jobs";
5332
Requests[37].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5333
Requests[37].
Request
.Path = "/Jobs";
5336
Requests[38].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5337
Requests[38].
Request
.Path = "/jobschedules";
5340
Requests[39].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5341
Requests[39].
Request
.Path = "/jobschedules";
5344
Requests[40].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5345
Requests[40].
Request
.Path = "/keys";
5348
Requests[41].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5349
Requests[41].
Request
.Path = "/lifetimejobstats";
5352
Requests[42].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5353
Requests[42].
Request
.Path = "/lifetimepoolstats";
5356
Requests[43].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5357
Requests[43].
Request
.Path = "/loggers";
5360
Requests[44].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5361
Requests[44].
Request
.Path = "/models";
5364
Requests[45].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5365
Requests[45].
Request
.Path = "/news";
5368
Requests[46].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5369
Requests[46].
Request
.Path = "/nodeagentskus";
5372
Requests[47].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5373
Requests[47].
Request
.Path = "/nodecounts";
5376
Requests[48].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5377
Requests[48].
Request
.Path = "/Nodes";
5380
Requests[49].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5381
Requests[49].
Request
.Path = "/ocr";
5384
Requests[50].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5385
Requests[50].
Request
.Path = "/offers";
5388
Requests[51].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5389
Requests[51].
Request
.Path = "/openidConnectProviders";
5392
Requests[52].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5393
Requests[52].
Request
.Path = "/persongroups";
5396
Requests[53].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5397
Requests[53].
Request
.Path = "/pipelines";
5400
Requests[54].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5401
Requests[54].
Request
.Path = "/policies";
5404
Requests[55].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5405
Requests[55].
Request
.Path = "/policySnippets";
5408
Requests[56].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5409
Requests[56].
Request
.Path = "/pools";
5412
Requests[57].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5413
Requests[57].
Request
.Path = "/pools";
5416
Requests[58].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5417
Requests[58].
Request
.Path = "/poolusagemetrics";
5420
Requests[59].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5421
Requests[59].
Request
.Path = "/products";
5424
Requests[60].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5425
Requests[60].
Request
.Path = "/projects";
5428
Requests[61].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5429
Requests[61].
Request
.Path = "/projects";
5432
Requests[62].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5433
Requests[62].
Request
.Path = "/properties";
5436
Requests[63].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5437
Requests[63].
Request
.Path = "/recognizeText";
5440
Requests[64].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5441
Requests[64].
Request
.Path = "/recurrences";
5444
Requests[65].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5445
Requests[65].
Request
.Path = "/regions";
5448
Requests[66].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5449
Requests[66].
Request
.Path = "/search";
5452
Requests[67].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5453
Requests[67].
Request
.Path = "/secrets";
5456
Requests[68].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5457
Requests[68].
Request
.Path = "/servicestats";
5460
Requests[69].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5461
Requests[69].
Request
.Path = "/spellcheck";
5464
Requests[70].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5465
Requests[70].
Request
.Path = "/storage";
5468
Requests[71].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5469
Requests[71].
Request
.Path = "/subscriptions";
5472
Requests[72].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5473
Requests[72].
Request
.Path = "/synonymmaps";
5476
Requests[73].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5477
Requests[73].
Request
.Path = "/synonymmaps";
5480
Requests[74].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5481
Requests[74].
Request
.Path = "/tag";
5484
Requests[75].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5485
Requests[75].
Request
.Path = "/templates";
5488
Requests[76].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5489
Requests[76].
Request
.Path = "/tenants";
5492
Requests[77].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5493
Requests[77].
Request
.Path = "/users";
5496
Requests[78].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5497
Requests[78].
Request
.Path = "/verify";
5500
Requests[79].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5501
Requests[79].
Request
.Path = "/$/CancelRepairTask";
5504
Requests[80].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5505
Requests[80].
Request
.Path = "/$/CreateRepairTask";
5508
Requests[81].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5509
Requests[81].
Request
.Path = "/$/DeleteRepairTask";
5512
Requests[82].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5513
Requests[82].
Request
.Path = "/$/ForceApproveRepairTask";
5516
Requests[83].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5517
Requests[83].
Request
.Path = "/$/GetAadMetadata";
5520
Requests[84].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5521
Requests[84].
Request
.Path = "/$/GetClusterConfiguration";
5524
Requests[85].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5525
Requests[85].
Request
.Path = "/$/GetClusterConfigurationUpgradeStatus";
5528
Requests[86].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5529
Requests[86].
Request
.Path = "/$/GetClusterHealth";
5532
Requests[87].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5533
Requests[87].
Request
.Path = "/$/GetClusterHealth";
5536
Requests[88].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5537
Requests[88].
Request
.Path = "/$/GetClusterHealthChunk";
5540
Requests[89].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5541
Requests[89].
Request
.Path = "/$/GetClusterHealthChunk";
5544
Requests[90].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5545
Requests[90].
Request
.Path = "/$/GetClusterManifest";
5548
Requests[91].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5549
Requests[91].
Request
.Path = "/$/GetLoadInformation";
5552
Requests[92].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5553
Requests[92].
Request
.Path = "/$/GetProvisionedCodeVersions";
5556
Requests[93].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5557
Requests[93].
Request
.Path = "/$/GetProvisionedConfigVersions";
5560
Requests[94].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5561
Requests[94].
Request
.Path = "/$/GetRepairTaskList";
5564
Requests[95].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5565
Requests[95].
Request
.Path = "/$/GetUpgradeOrchestrationServiceState";
5568
Requests[96].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5569
Requests[96].
Request
.Path = "/$/GetUpgradeProgress";
5572
Requests[97].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5573
Requests[97].
Request
.Path = "/$/InvokeInfrastructureCommand";
5576
Requests[98].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5577
Requests[98].
Request
.Path = "/$/InvokeInfrastructureQuery";
5580
Requests[99].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5581
Requests[99].
Request
.Path = "/$/MoveToNextUpgradeDomain";
5584
Requests[100].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5585
Requests[100].
Request
.Path = "/$/Provision";
5588
Requests[101].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5589
Requests[101].
Request
.Path = "/$/RecoverAllPartitions";
5592
Requests[102].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5593
Requests[102].
Request
.Path = "/$/RecoverSystemPartitions";
5596
Requests[103].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5597
Requests[103].
Request
.Path = "/$/ReportClusterHealth";
5600
Requests[104].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5601
Requests[104].
Request
.Path = "/$/RollbackUpgrade";
5604
Requests[105].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5605
Requests[105].
Request
.Path = "/$/SetUpgradeOrchestrationServiceState";
5608
Requests[106].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5609
Requests[106].
Request
.Path = "/$/StartClusterConfigurationUpgrade";
5612
Requests[107].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5613
Requests[107].
Request
.Path = "/$/Unprovision";
5616
Requests[108].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5617
Requests[108].
Request
.Path = "/$/UpdateRepairExecutionState";
5620
Requests[109].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5621
Requests[109].
Request
.Path = "/$/UpdateRepairTaskHealthPolicy";
5624
Requests[110].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5625
Requests[110].
Request
.Path = "/$/UpdateUpgrade";
5628
Requests[111].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5629
Requests[111].
Request
.Path = "/$/Upgrade";
5632
Requests[112].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5633
Requests[112].
Request
.Path = "/api/events";
5636
Requests[113].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5637
Requests[113].
Request
.Path = "/apps/assistants";
5640
Requests[114].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5641
Requests[114].
Request
.Path = "/apps/cultures";
5644
Requests[115].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5645
Requests[115].
Request
.Path = "/apps/customprebuiltdomains";
5648
Requests[116].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5649
Requests[116].
Request
.Path = "/apps/customprebuiltdomains";
5652
Requests[117].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5653
Requests[117].
Request
.Path = "/apps/domains";
5656
Requests[118].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5657
Requests[118].
Request
.Path = "/apps/import";
5660
Requests[119].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5661
Requests[119].
Request
.Path = "/apps/usagescenarios";
5664
Requests[120].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5665
Requests[120].
Request
.Path = "/BackupRestore/BackupPolicies";
5668
Requests[121].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5669
Requests[121].
Request
.Path = "/certificates/contacts";
5672
Requests[122].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
5673
Requests[122].
Request
.Path = "/certificates/contacts";
5676
Requests[123].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
5677
Requests[123].
Request
.Path = "/certificates/contacts";
5680
Requests[124].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5681
Requests[124].
Request
.Path = "/certificates/issuers";
5684
Requests[125].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5685
Requests[125].
Request
.Path = "/docs/$count";
5688
Requests[126].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5689
Requests[126].
Request
.Path = "/docs/autocomplete";
5692
Requests[127].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5693
Requests[127].
Request
.Path = "/docs/autocomplete";
5696
Requests[128].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5697
Requests[128].
Request
.Path = "/images/details";
5700
Requests[129].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5701
Requests[129].
Request
.Path = "/images/search";
5704
Requests[130].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5705
Requests[130].
Request
.Path = "/images/trending";
5708
Requests[131].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5709
Requests[131].
Request
.Path = "/images/visualsearch";
5712
Requests[132].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5713
Requests[132].
Request
.Path = "/keys/restore";
5716
Requests[133].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5717
Requests[133].
Request
.Path = "/news/search";
5720
Requests[134].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5721
Requests[134].
Request
.Path = "/news/trendingtopics";
5724
Requests[135].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
5725
Requests[135].
Request
.Path = "/portalsettings/delegation";
5728
Requests[136].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
5729
Requests[136].
Request
.Path = "/portalsettings/delegation";
5732
Requests[137].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5733
Requests[137].
Request
.Path = "/portalsettings/delegation";
5736
Requests[138].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
5737
Requests[138].
Request
.Path = "/portalsettings/signin";
5740
Requests[139].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
5741
Requests[139].
Request
.Path = "/portalsettings/signin";
5744
Requests[140].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5745
Requests[140].
Request
.Path = "/portalsettings/signin";
5748
Requests[141].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
5749
Requests[141].
Request
.Path = "/portalsettings/signup";
5752
Requests[142].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5753
Requests[142].
Request
.Path = "/portalsettings/signup";
5756
Requests[143].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
5757
Requests[143].
Request
.Path = "/portalsettings/signup";
5760
Requests[144].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5761
Requests[144].
Request
.Path = "/reports/byApi";
5764
Requests[145].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5765
Requests[145].
Request
.Path = "/reports/byGeo";
5768
Requests[146].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5769
Requests[146].
Request
.Path = "/reports/byOperation";
5772
Requests[147].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5773
Requests[147].
Request
.Path = "/reports/byProduct";
5776
Requests[148].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5777
Requests[148].
Request
.Path = "/reports/byRequest";
5780
Requests[149].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5781
Requests[149].
Request
.Path = "/reports/bySubscription";
5784
Requests[150].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5785
Requests[150].
Request
.Path = "/reports/byTime";
5788
Requests[151].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5789
Requests[151].
Request
.Path = "/reports/byUser";
5792
Requests[152].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5793
Requests[152].
Request
.Path = "/secrets/restore";
5796
Requests[153].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5797
Requests[153].
Request
.Path = "/storage/restore";
5800
Requests[154].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5801
Requests[154].
Request
.Path = "/Tools/Chaos";
5804
Requests[155].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5805
Requests[155].
Request
.Path = "/v2.0/entities";
5808
Requests[156].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5809
Requests[156].
Request
.Path = "/v2.0/keyPhrases";
5812
Requests[157].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5813
Requests[157].
Request
.Path = "/v2.0/languages";
5816
Requests[158].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5817
Requests[158].
Request
.Path = "/v2.0/sentiment";
5820
Requests[159].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5821
Requests[159].
Request
.Path = "/videos/details";
5824
Requests[160].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5825
Requests[160].
Request
.Path = "/videos/search";
5828
Requests[161].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5829
Requests[161].
Request
.Path = "/videos/trending";
5832
Requests[162].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5833
Requests[162].
Request
.Path = "/Applications/$/Create";
5836
Requests[163].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5837
Requests[163].
Request
.Path = "/ApplicationTypes/$/Provision";
5840
Requests[164].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5841
Requests[164].
Request
.Path = "/BackupRestore/$/GetBackups";
5844
Requests[165].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5845
Requests[165].
Request
.Path = "/catalog/usql/acl";
5848
Requests[166].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5849
Requests[166].
Request
.Path = "/catalog/usql/databases";
5852
Requests[167].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
5853
Requests[167].
Request
.Path = "/ComposeDeployments/$/Create";
5856
Requests[168].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5857
Requests[168].
Request
.Path = "/EventsStore/Applications/Events";
5860
Requests[169].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5861
Requests[169].
Request
.Path = "/EventsStore/Cluster/Events";
5864
Requests[170].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5865
Requests[170].
Request
.Path = "/EventsStore/Containers/Events";
5868
Requests[171].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5869
Requests[171].
Request
.Path = "/EventsStore/Nodes/Events";
5872
Requests[172].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5873
Requests[172].
Request
.Path = "/EventsStore/Partitions/Events";
5876
Requests[173].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5877
Requests[173].
Request
.Path = "/EventsStore/Services/Events";
5880
Requests[174].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5881
Requests[174].
Request
.Path = "/Faults/$/Cancel";
5884
Requests[175].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5885
Requests[175].
Request
.Path = "/ImageStore/$/CommitUploadSession";
5888
Requests[176].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5889
Requests[176].
Request
.Path = "/ImageStore/$/Copy";
5892
Requests[177].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
5893
Requests[177].
Request
.Path = "/ImageStore/$/DeleteUploadSession";
5896
Requests[178].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5897
Requests[178].
Request
.Path = "/ImageStore/$/GetUploadSession";
5900
Requests[179].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5901
Requests[179].
Request
.Path = "/Names/$/Create";
5904
Requests[180].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5905
Requests[180].
Request
.Path = "/providers/Microsoft.AAD/operations";
5908
Requests[181].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5909
Requests[181].
Request
.Path = "/providers/Microsoft.Addons/operations";
5912
Requests[182].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5913
Requests[182].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices";
5916
Requests[183].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5917
Requests[183].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices";
5920
Requests[184].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
5921
Requests[184].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/configuration";
5924
Requests[185].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5925
Requests[185].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/configuration";
5928
Requests[186].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5929
Requests[186].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/configuration";
5932
Requests[187].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5933
Requests[187].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/operations";
5936
Requests[188].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
5937
Requests[188].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services";
5940
Requests[189].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5941
Requests[189].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services";
5944
Requests[190].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5945
Requests[190].
Request
.Path = "/providers/Microsoft.Advisor/operations";
5948
Requests[191].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5949
Requests[191].
Request
.Path = "/providers/Microsoft.AnalysisServices/operations";
5952
Requests[192].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5953
Requests[192].
Request
.Path = "/providers/Microsoft.ApiManagement/operations";
5956
Requests[193].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5957
Requests[193].
Request
.Path = "/providers/Microsoft.Authorization/policyDefinitions";
5960
Requests[194].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5961
Requests[194].
Request
.Path = "/providers/Microsoft.Authorization/policySetDefinitions";
5964
Requests[195].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5965
Requests[195].
Request
.Path = "/providers/Microsoft.Authorization/providerOperations";
5968
Requests[196].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5969
Requests[196].
Request
.Path = "/providers/Microsoft.Automation/operations";
5972
Requests[197].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5973
Requests[197].
Request
.Path = "/providers/Microsoft.AzureStack/operations";
5976
Requests[198].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5977
Requests[198].
Request
.Path = "/providers/Microsoft.Backup.Admin/operations";
5980
Requests[199].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5981
Requests[199].
Request
.Path = "/providers/Microsoft.Batch/operations";
5984
Requests[200].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5985
Requests[200].
Request
.Path = "/providers/Microsoft.BatchAI/operations";
5988
Requests[201].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5989
Requests[201].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts";
5992
Requests[202].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5993
Requests[202].
Request
.Path = "/providers/Microsoft.Billing/operations";
5996
Requests[203].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
5997
Requests[203].
Request
.Path = "/providers/Microsoft.BotService/operations";
6000
Requests[204].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6001
Requests[204].
Request
.Path = "/providers/Microsoft.Cache/operations";
6004
Requests[205].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6005
Requests[205].
Request
.Path = "/providers/Microsoft.Capacity/operations";
6008
Requests[206].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6009
Requests[206].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders";
6012
Requests[207].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6013
Requests[207].
Request
.Path = "/providers/Microsoft.Cdn/checkNameAvailability";
6016
Requests[208].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6017
Requests[208].
Request
.Path = "/providers/Microsoft.Cdn/edgenodes";
6020
Requests[209].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6021
Requests[209].
Request
.Path = "/providers/Microsoft.Cdn/operations";
6024
Requests[210].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6025
Requests[210].
Request
.Path = "/providers/Microsoft.CertificateRegistration/operations";
6028
Requests[211].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6029
Requests[211].
Request
.Path = "/providers/Microsoft.CognitiveServices/operations";
6032
Requests[212].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6033
Requests[212].
Request
.Path = "/providers/Microsoft.Commerce.Admin/operations";
6036
Requests[213].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6037
Requests[213].
Request
.Path = "/providers/Microsoft.Compute.Admin/operations";
6040
Requests[214].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6041
Requests[214].
Request
.Path = "/providers/Microsoft.Compute/operations";
6044
Requests[215].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6045
Requests[215].
Request
.Path = "/providers/Microsoft.Consumption/operations";
6048
Requests[216].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6049
Requests[216].
Request
.Path = "/providers/Microsoft.ContainerInstance/operations";
6052
Requests[217].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6053
Requests[217].
Request
.Path = "/providers/Microsoft.ContainerRegistry/operations";
6056
Requests[218].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6057
Requests[218].
Request
.Path = "/providers/Microsoft.ContainerService/operations";
6060
Requests[219].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6061
Requests[219].
Request
.Path = "/providers/Microsoft.CustomerInsights/operations";
6064
Requests[220].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6065
Requests[220].
Request
.Path = "/providers/Microsoft.DataBox/operations";
6068
Requests[221].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6069
Requests[221].
Request
.Path = "/providers/Microsoft.Databricks/operations";
6072
Requests[222].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6073
Requests[222].
Request
.Path = "/providers/Microsoft.DataCatalog/operations";
6076
Requests[223].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6077
Requests[223].
Request
.Path = "/providers/Microsoft.DataFactory/operations";
6080
Requests[224].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6081
Requests[224].
Request
.Path = "/providers/Microsoft.DataLakeAnalytics/operations";
6084
Requests[225].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6085
Requests[225].
Request
.Path = "/providers/Microsoft.DataLakeStore/operations";
6088
Requests[226].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6089
Requests[226].
Request
.Path = "/providers/Microsoft.DataMigration/operations";
6092
Requests[227].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6093
Requests[227].
Request
.Path = "/providers/Microsoft.DBforMySQL/operations";
6096
Requests[228].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6097
Requests[228].
Request
.Path = "/providers/Microsoft.DBforPostgreSQL/operations";
6100
Requests[229].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6101
Requests[229].
Request
.Path = "/providers/Microsoft.Devices/operations";
6104
Requests[230].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6105
Requests[230].
Request
.Path = "/providers/Microsoft.DevTestLab/operations";
6108
Requests[231].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6109
Requests[231].
Request
.Path = "/providers/Microsoft.DocumentDB/operations";
6112
Requests[232].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6113
Requests[232].
Request
.Path = "/providers/Microsoft.DomainRegistration/operations";
6116
Requests[233].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6117
Requests[233].
Request
.Path = "/providers/Microsoft.EventGrid/operations";
6120
Requests[234].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6121
Requests[234].
Request
.Path = "/providers/Microsoft.EventGrid/topicTypes";
6124
Requests[235].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6125
Requests[235].
Request
.Path = "/providers/Microsoft.EventHub/operations";
6128
Requests[236].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6129
Requests[236].
Request
.Path = "/providers/Microsoft.Fabric.Admin/operations";
6132
Requests[237].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6133
Requests[237].
Request
.Path = "/providers/Microsoft.Gallery.Admin/operations";
6136
Requests[238].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6137
Requests[238].
Request
.Path = "/providers/Microsoft.HanaOnAzure/operations";
6140
Requests[239].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6141
Requests[239].
Request
.Path = "/providers/Microsoft.HDInsight/operations";
6144
Requests[240].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6145
Requests[240].
Request
.Path = "/providers/Microsoft.ImportExport/locations";
6148
Requests[241].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6149
Requests[241].
Request
.Path = "/providers/Microsoft.ImportExport/operations";
6152
Requests[242].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6153
Requests[242].
Request
.Path = "/providers/Microsoft.InfrastructureInsights.Admin/operations";
6156
Requests[243].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6157
Requests[243].
Request
.Path = "/providers/microsoft.insights/eventcategories";
6160
Requests[244].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6161
Requests[244].
Request
.Path = "/providers/microsoft.insights/operations";
6164
Requests[245].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6165
Requests[245].
Request
.Path = "/providers/Microsoft.Intune/locations";
6168
Requests[246].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6169
Requests[246].
Request
.Path = "/providers/Microsoft.IoTCentral/operations";
6172
Requests[247].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6173
Requests[247].
Request
.Path = "/providers/Microsoft.IoTSpaces/operations";
6176
Requests[248].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6177
Requests[248].
Request
.Path = "/providers/Microsoft.KeyVault.Admin/operations";
6180
Requests[249].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6181
Requests[249].
Request
.Path = "/providers/Microsoft.KeyVault/operations";
6184
Requests[250].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6185
Requests[250].
Request
.Path = "/providers/Microsoft.Logic/operations";
6188
Requests[251].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6189
Requests[251].
Request
.Path = "/providers/Microsoft.MachineLearning/operations";
6192
Requests[252].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6193
Requests[252].
Request
.Path = "/providers/Microsoft.MachineLearningCompute/operations";
6196
Requests[253].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6197
Requests[253].
Request
.Path = "/providers/Microsoft.MachineLearningExperimentation/operations";
6200
Requests[254].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6201
Requests[254].
Request
.Path = "/providers/Microsoft.MachineLearningServices/operations";
6204
Requests[255].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6205
Requests[255].
Request
.Path = "/providers/Microsoft.ManagedIdentity/operations";
6208
Requests[256].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6209
Requests[256].
Request
.Path = "/providers/Microsoft.Management/checkNameAvailability";
6212
Requests[257].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6213
Requests[257].
Request
.Path = "/providers/Microsoft.Management/getEntities";
6216
Requests[258].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6217
Requests[258].
Request
.Path = "/providers/Microsoft.Management/managementGroups";
6220
Requests[259].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6221
Requests[259].
Request
.Path = "/providers/Microsoft.Management/operations";
6224
Requests[260].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6225
Requests[260].
Request
.Path = "/providers/Microsoft.Management/startTenantBackfill";
6228
Requests[261].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6229
Requests[261].
Request
.Path = "/providers/Microsoft.Management/tenantBackfillStatus";
6232
Requests[262].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6233
Requests[262].
Request
.Path = "/providers/Microsoft.ManagementPartner/operations";
6236
Requests[263].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6237
Requests[263].
Request
.Path = "/providers/Microsoft.Maps/operations";
6240
Requests[264].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6241
Requests[264].
Request
.Path = "/providers/Microsoft.MarketplaceOrdering/operations";
6244
Requests[265].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6245
Requests[265].
Request
.Path = "/providers/Microsoft.Media/operations";
6248
Requests[266].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6249
Requests[266].
Request
.Path = "/providers/Microsoft.Migrate/operations";
6252
Requests[267].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6253
Requests[267].
Request
.Path = "/providers/Microsoft.Network/checkTrafficManagerNameAvailability";
6256
Requests[268].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6257
Requests[268].
Request
.Path = "/providers/Microsoft.Network/operations";
6260
Requests[269].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6261
Requests[269].
Request
.Path = "/providers/Microsoft.NotificationHubs/operations";
6264
Requests[270].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6265
Requests[270].
Request
.Path = "/providers/Microsoft.OperationalInsights/operations";
6268
Requests[271].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6269
Requests[271].
Request
.Path = "/providers/Microsoft.OperationsManagement/operations";
6272
Requests[272].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6273
Requests[272].
Request
.Path = "/providers/Microsoft.PolicyInsights/operations";
6276
Requests[273].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6277
Requests[273].
Request
.Path = "/providers/Microsoft.PowerBI/operations";
6280
Requests[274].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6281
Requests[274].
Request
.Path = "/providers/Microsoft.PowerBIDedicated/operations";
6284
Requests[275].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6285
Requests[275].
Request
.Path = "/providers/Microsoft.RecoveryServices/operations";
6288
Requests[276].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6289
Requests[276].
Request
.Path = "/providers/Microsoft.Relay/operations";
6292
Requests[277].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6293
Requests[277].
Request
.Path = "/providers/Microsoft.ResourceHealth/operations";
6296
Requests[278].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6297
Requests[278].
Request
.Path = "/providers/Microsoft.Search/operations";
6300
Requests[279].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6301
Requests[279].
Request
.Path = "/providers/Microsoft.Security/operations";
6304
Requests[280].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6305
Requests[280].
Request
.Path = "/providers/Microsoft.ServiceBus/operations";
6308
Requests[281].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6309
Requests[281].
Request
.Path = "/providers/Microsoft.ServiceFabric/operations";
6312
Requests[282].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6313
Requests[282].
Request
.Path = "/providers/Microsoft.SignalRService/operations";
6316
Requests[283].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6317
Requests[283].
Request
.Path = "/providers/Microsoft.Sql/operations";
6320
Requests[284].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6321
Requests[284].
Request
.Path = "/providers/Microsoft.Storage.Admin/operations";
6324
Requests[285].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6325
Requests[285].
Request
.Path = "/providers/Microsoft.Storage/operations";
6328
Requests[286].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6329
Requests[286].
Request
.Path = "/providers/Microsoft.StorSimple/operations";
6332
Requests[287].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6333
Requests[287].
Request
.Path = "/providers/Microsoft.StreamAnalytics/operations";
6336
Requests[288].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6337
Requests[288].
Request
.Path = "/providers/Microsoft.Subscription/operations";
6340
Requests[289].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6341
Requests[289].
Request
.Path = "/providers/Microsoft.Subscription/subscriptionDefinitions";
6344
Requests[290].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6345
Requests[290].
Request
.Path = "/providers/Microsoft.Subscription/subscriptionOperations";
6348
Requests[291].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6349
Requests[291].
Request
.Path = "/providers/Microsoft.Subscriptions.Admin/operations";
6352
Requests[292].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6353
Requests[292].
Request
.Path = "/providers/Microsoft.Subscriptions/operations";
6356
Requests[293].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6357
Requests[293].
Request
.Path = "/providers/Microsoft.TimeSeriesInsights/operations";
6360
Requests[294].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6361
Requests[294].
Request
.Path = "/providers/Microsoft.Update.Admin/operations";
6364
Requests[295].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6365
Requests[295].
Request
.Path = "/providers/microsoft.visualstudio/operations";
6368
Requests[296].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6369
Requests[296].
Request
.Path = "/providers/Microsoft.Web/availableStacks";
6372
Requests[297].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6373
Requests[297].
Request
.Path = "/providers/Microsoft.Web/operations";
6376
Requests[298].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6377
Requests[298].
Request
.Path = "/providers/Microsoft.Web/sourcecontrols";
6380
Requests[299].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6381
Requests[299].
Request
.Path = "/Tools/Chaos/Events";
6384
Requests[300].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6385
Requests[300].
Request
.Path = "/Tools/Chaos/Schedule";
6388
Requests[301].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6389
Requests[301].
Request
.Path = "/Tools/Chaos/Schedule";
6392
Requests[302].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6393
Requests[302].
Request
.Path = "/BackupRestore/BackupPolicies/$/Create";
6396
Requests[303].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6397
Requests[303].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists";
6400
Requests[304].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6401
Requests[304].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists";
6404
Requests[305].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6405
Requests[305].
Request
.Path = "/contentmoderator/lists/v1.0/termlists";
6408
Requests[306].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6409
Requests[306].
Request
.Path = "/contentmoderator/lists/v1.0/termlists";
6412
Requests[307].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6413
Requests[307].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/premiumCheck";
6416
Requests[308].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6417
Requests[308].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/premiumCheck";
6420
Requests[309].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6421
Requests[309].
Request
.Path = "/providers/Microsoft.BotService/botServices/checkNameAvailability";
6424
Requests[310].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6425
Requests[310].
Request
.Path = "/providers/Microsoft.Intune/locations/hostName";
6428
Requests[311].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6429
Requests[311].
Request
.Path = "/providers/Microsoft.Network/trafficManagerGeographicHierarchies/default";
6432
Requests[312].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6433
Requests[312].
Request
.Path = "/providers/Microsoft.Web/publishingUsers/web";
6436
Requests[313].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6437
Requests[313].
Request
.Path = "/providers/Microsoft.Web/publishingUsers/web";
6440
Requests[314].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6441
Requests[314].
Request
.Path = "/Tools/Chaos/$/Report";
6444
Requests[315].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6445
Requests[315].
Request
.Path = "/Tools/Chaos/$/Start";
6448
Requests[316].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6449
Requests[316].
Request
.Path = "/Tools/Chaos/$/Stop";
6452
Requests[317].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6453
Requests[317].
Request
.Path = "/contentmoderator/moderate/v1.0/ProcessImage/Evaluate";
6456
Requests[318].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6457
Requests[318].
Request
.Path = "/contentmoderator/moderate/v1.0/ProcessImage/FindFaces";
6460
Requests[319].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6461
Requests[319].
Request
.Path = "/contentmoderator/moderate/v1.0/ProcessImage/Match";
6464
Requests[320].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6465
Requests[320].
Request
.Path = "/contentmoderator/moderate/v1.0/ProcessImage/OCR";
6468
Requests[321].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6469
Requests[321].
Request
.Path = "/contentmoderator/moderate/v1.0/ProcessText/DetectLanguage";
6472
Requests[322].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6473
Requests[322].
Request
.Path = "/contentmoderator/moderate/v1.0/ProcessText/Screen";
6476
Requests[323].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6477
Requests[323].
Request
.Path = "/providers/microsoft.insights/eventtypes/management/values";
6480
Requests[324].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6481
Requests[324].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/25aa61";
6484
Requests[325].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6485
Requests[325].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/0dcf18";
6488
Requests[326].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6489
Requests[326].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/4e479e";
6492
Requests[327].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6493
Requests[327].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/2fba04";
6496
Requests[328].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6497
Requests[328].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/6f112d";
6500
Requests[329].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6501
Requests[329].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/2704d5";
6504
Requests[330].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6505
Requests[330].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/413be3/images";
6508
Requests[331].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6509
Requests[331].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/46b449/images";
6512
Requests[332].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6513
Requests[332].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/9e2d1f/images";
6516
Requests[333].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6517
Requests[333].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/32b297/RefreshIndex";
6520
Requests[334].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6521
Requests[334].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/4768ab/RefreshIndex";
6524
Requests[335].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6525
Requests[335].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/3e9c6e/terms";
6528
Requests[336].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6529
Requests[336].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/efd19d/terms";
6532
Requests[337].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6533
Requests[337].
Request
.Path = "/contentmoderator/review/v1.0/teams/d31cc2d7/jobs";
6536
Requests[338].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6537
Requests[338].
Request
.Path = "/contentmoderator/review/v1.0/teams/751e507c/reviews";
6540
Requests[339].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6541
Requests[339].
Request
.Path = "/contentmoderator/lists/v1.0/imagelists/f7b4a3/images/f12b023";
6544
Requests[340].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6545
Requests[340].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/aa1aa0/terms/a9b7c";
6548
Requests[341].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6549
Requests[341].
Request
.Path = "/contentmoderator/lists/v1.0/termlists/f3f417/terms/35bb6";
6552
Requests[342].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6553
Requests[342].
Request
.Path = "/contentmoderator/review/v1.0/teams/fc285269/jobs/c79da";
6556
Requests[343].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6557
Requests[343].
Request
.Path = "/contentmoderator/review/v1.0/teams/0e6abeaf/reviews/7dd8ffd8";
6560
Requests[344].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6561
Requests[344].
Request
.Path = "/contentmoderator/review/v1.0/teams/693bebc4/reviews/ea3553ca/frames";
6564
Requests[345].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6565
Requests[345].
Request
.Path = "/contentmoderator/review/v1.0/teams/7a0e3357/reviews/36ae2d30/frames";
6568
Requests[346].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6569
Requests[346].
Request
.Path = "/contentmoderator/review/v1.0/teams/5048e6f1/reviews/489585ff/publish";
6572
Requests[347].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6573
Requests[347].
Request
.Path = "/contentmoderator/review/v1.0/teams/53354982/reviews/d7f03610/transcript";
6576
Requests[348].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6577
Requests[348].
Request
.Path = "/contentmoderator/review/v1.0/teams/eb87ce25/reviews/998117ed/transcriptmoderationresult";
6580
Requests[349].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6581
Requests[349].
Request
.Path = "/catalog/usql/databases/93692dd6-f87";
6584
Requests[350].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6585
Requests[350].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/f5ff924c-f8";
6588
Requests[351].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
6589
Requests[351].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/b9c7be79-aa";
6592
Requests[352].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6593
Requests[352].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/1c9a239f-e0";
6596
Requests[353].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
6597
Requests[353].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/484449f9-f3";
6600
Requests[354].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6601
Requests[354].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/1d7b7ad3-9e";
6604
Requests[355].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6605
Requests[355].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/7d9fc8a3-1a";
6608
Requests[356].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6609
Requests[356].
Request
.Path = "/providers/Microsoft.Authorization/policyDefinitions/c47668b4-df1d-4131-9";
6612
Requests[357].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6613
Requests[357].
Request
.Path = "/providers/Microsoft.Authorization/policySetDefinitions/ab27ed95-271e-469b-82fb";
6616
Requests[358].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6617
Requests[358].
Request
.Path = "/providers/Microsoft.Authorization/providerOperations/cfb3f171-01e4-42f4-892e-5";
6620
Requests[359].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6621
Requests[359].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts/df588";
6624
Requests[360].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6625
Requests[360].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/b391d0ba-6d11-4092";
6628
Requests[361].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
6629
Requests[361].
Request
.Path = "/providers/Microsoft.DocumentDB/databaseAccountNames/2288d58c-0b";
6632
Requests[362].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6633
Requests[362].
Request
.Path = "/providers/Microsoft.EventGrid/topicTypes/c431ed5b-7f58";
6636
Requests[363].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6637
Requests[363].
Request
.Path = "/providers/Microsoft.ImportExport/locations/08942aa9-146";
6640
Requests[364].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6641
Requests[364].
Request
.Path = "/providers/Microsoft.Management/managementGroups/a8fb179";
6644
Requests[365].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6645
Requests[365].
Request
.Path = "/providers/Microsoft.Management/managementGroups/77e200d";
6648
Requests[366].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
6649
Requests[366].
Request
.Path = "/providers/Microsoft.Management/managementGroups/bb9e50d";
6652
Requests[367].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6653
Requests[367].
Request
.Path = "/providers/Microsoft.Management/managementGroups/1adf866";
6656
Requests[368].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6657
Requests[368].
Request
.Path = "/providers/Microsoft.ManagementPartner/partners/5f9118fe-";
6660
Requests[369].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6661
Requests[369].
Request
.Path = "/providers/Microsoft.ManagementPartner/partners/4005a6a8-";
6664
Requests[370].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6665
Requests[370].
Request
.Path = "/providers/Microsoft.ManagementPartner/partners/c3fb95a7-";
6668
Requests[371].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
6669
Requests[371].
Request
.Path = "/providers/Microsoft.ManagementPartner/partners/932703a1-";
6672
Requests[372].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6673
Requests[372].
Request
.Path = "/providers/Microsoft.Subscription/subscriptionDefinitions/4396a9c7-d3fd-4dac-bdb0-ef";
6676
Requests[373].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6677
Requests[373].
Request
.Path = "/providers/Microsoft.Subscription/subscriptionDefinitions/207eb2dd-c9c8-4458-afa6-a6";
6680
Requests[374].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6681
Requests[374].
Request
.Path = "/providers/Microsoft.Subscription/subscriptionOperations/3bab0549-0d";
6684
Requests[375].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6685
Requests[375].
Request
.Path = "/providers/Microsoft.Web/sourcecontrols/b18cc219-f067-4f0";
6688
Requests[376].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6689
Requests[376].
Request
.Path = "/providers/Microsoft.Web/sourcecontrols/a7099740-741a-473";
6692
Requests[377].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6693
Requests[377].
Request
.Path = "/catalog/usql/databases/8d9d68e1-2df/acl";
6696
Requests[378].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6697
Requests[378].
Request
.Path = "/catalog/usql/databases/2f7e76be-d8b/assemblies";
6700
Requests[379].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6701
Requests[379].
Request
.Path = "/catalog/usql/databases/4278cafa-37e/credentials";
6704
Requests[380].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6705
Requests[380].
Request
.Path = "/catalog/usql/databases/3d494e04-a84/externaldatasources";
6708
Requests[381].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6709
Requests[381].
Request
.Path = "/catalog/usql/databases/80427fc0-9f1/schemas";
6712
Requests[382].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6713
Requests[382].
Request
.Path = "/catalog/usql/databases/c40247c2-546/secrets";
6716
Requests[383].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6717
Requests[383].
Request
.Path = "/catalog/usql/databases/7275f9ee-ae4/statistics";
6720
Requests[384].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6721
Requests[384].
Request
.Path = "/catalog/usql/databases/1cf4a5b3-8d5/tables";
6724
Requests[385].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6725
Requests[385].
Request
.Path = "/catalog/usql/databases/5fcfc12a-323/tablevaluedfunctions";
6728
Requests[386].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6729
Requests[386].
Request
.Path = "/catalog/usql/databases/8ff06c64-ad9/views";
6732
Requests[387].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6733
Requests[387].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/940de8c0-f2/addomainservicemembers";
6736
Requests[388].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6737
Requests[388].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/21d35358-a9/addsservicemembers";
6740
Requests[389].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6741
Requests[389].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/fed58734-2e/alerts";
6744
Requests[390].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6745
Requests[390].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/d02246e9-f7/configuration";
6748
Requests[391].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6749
Requests[391].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/392e98c5-d2/forestsummary";
6752
Requests[392].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6753
Requests[392].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/e48a65d6-f9/metricmetadata";
6756
Requests[393].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6757
Requests[393].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/54621a83-0a/replicationstatus";
6760
Requests[394].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6761
Requests[394].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/5e118514-fd/replicationsummary";
6764
Requests[395].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6765
Requests[395].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/26af5da8-21/alerts";
6768
Requests[396].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6769
Requests[396].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/6691379d-1f/exportstatus";
6772
Requests[397].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6773
Requests[397].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/3ed12a22-74/metricmetadata";
6776
Requests[398].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
6777
Requests[398].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/28cd7a5e-58/monitoringconfiguration";
6780
Requests[399].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6781
Requests[399].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/34605a3e-ba/monitoringconfigurations";
6784
Requests[400].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6785
Requests[400].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/2baef7ac-c7/servicemembers";
6788
Requests[401].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6789
Requests[401].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/aa95fd42-74/servicemembers";
6792
Requests[402].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6793
Requests[402].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/155b0c82-c90f-4214/merge";
6796
Requests[403].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6797
Requests[403].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/0b4c03f2-9cab-44af/reservations";
6800
Requests[404].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6801
Requests[404].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/b687eba5-3577-4be3/split";
6804
Requests[405].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6805
Requests[405].
Request
.Path = "/providers/Microsoft.EventGrid/topicTypes/377c6660-948c/eventTypes";
6808
Requests[406].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6809
Requests[406].
Request
.Path = "/providers/Microsoft.Intune/locations/388062e4/androidPolicies";
6812
Requests[407].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6813
Requests[407].
Request
.Path = "/providers/Microsoft.Intune/locations/b205c42c/apps";
6816
Requests[408].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6817
Requests[408].
Request
.Path = "/providers/Microsoft.Intune/locations/91df0de5/flaggedUsers";
6820
Requests[409].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6821
Requests[409].
Request
.Path = "/providers/Microsoft.Intune/locations/ea0ec772/iosPolicies";
6824
Requests[410].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6825
Requests[410].
Request
.Path = "/providers/Microsoft.Intune/locations/b20b8976/operationResults";
6828
Requests[411].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6829
Requests[411].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/6ea17143-34/exporterrors/counts";
6832
Requests[412].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6833
Requests[412].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/ff073b5e-a9/exporterrors/listV2";
6836
Requests[413].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6837
Requests[413].
Request
.Path = "/providers/Microsoft.Intune/locations/a8d648a7/statuses/default";
6840
Requests[414].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6841
Requests[414].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/ade1b803-23/feedbacktype/alerts/feedback";
6844
Requests[415].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6845
Requests[415].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/ccae3b9c-b2c5-4f/providers/Microsoft.Consumption/balances";
6848
Requests[416].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6849
Requests[416].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/c524e916-836f-40/providers/Microsoft.Consumption/costTags";
6852
Requests[417].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6853
Requests[417].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/51071c3e-8bf2-4f/providers/Microsoft.Consumption/costTags";
6856
Requests[418].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6857
Requests[418].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/9191b4ed-4d7f-49/providers/Microsoft.Consumption/marketplaces";
6860
Requests[419].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6861
Requests[419].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/96fe9ee3-1324-4f/providers/Microsoft.Consumption/usageDetails";
6864
Requests[420].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6865
Requests[420].
Request
.Path = "/providers/Microsoft.Billing/departments/05450b32-c5c/providers/Microsoft.Consumption/marketplaces";
6868
Requests[421].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6869
Requests[421].
Request
.Path = "/providers/Microsoft.Billing/departments/12f104fa-b3f/providers/Microsoft.Consumption/usageDetails";
6872
Requests[422].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6873
Requests[422].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts/afb11455-5f8e-4532-/providers/Microsoft.Consumption/marketplaces";
6876
Requests[423].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6877
Requests[423].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts/944c41e1-4e05-43be-/providers/Microsoft.Consumption/usageDetails";
6880
Requests[424].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6881
Requests[424].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts/f3ac579a-45b5-4527-8d/providers/Microsoft.Subscription/createSubscription";
6884
Requests[425].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6885
Requests[425].
Request
.Path = "/providers/Microsoft.Capacity/reservationorders/7a202111-b6ac-490a/providers/Microsoft.Consumption/reservationDetails";
6888
Requests[426].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6889
Requests[426].
Request
.Path = "/providers/Microsoft.Capacity/reservationorders/55284163-f97a-4619/providers/Microsoft.Consumption/reservationSummaries";
6892
Requests[427].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6893
Requests[427].
Request
.Path = "/providers/Microsoft.CostManagement/billingAccounts/2fd5f886-94d1-4a/providers/Microsoft.Consumption/tags";
6896
Requests[428].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6897
Requests[428].
Request
.Path = "/providers/Microsoft.Management/managementgroups/b4ae8938-5329-4b6/providers/Microsoft.Authorization/policyDefinitions";
6900
Requests[429].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6901
Requests[429].
Request
.Path = "/providers/Microsoft.Management/managementgroups/2bace433-bddf-420/providers/Microsoft.Authorization/policySetDefinitions";
6904
Requests[430].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6905
Requests[430].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/4dbcc8e6-76/reports/badpassword/details/user";
6908
Requests[431].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6909
Requests[431].
Request
.Path = "/providers/Microsoft.Management/managementgroups/3d8586a5-4d06-4ad/providers/Microsoft.Authorization/policyDefinitions/96ced39a-f12b-42cd-a";
6912
Requests[432].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6913
Requests[432].
Request
.Path = "/providers/Microsoft.Management/managementgroups/39d8cd83-a4e3-466/providers/Microsoft.Authorization/policyDefinitions/ca864824-f84e-451c-a";
6916
Requests[433].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6917
Requests[433].
Request
.Path = "/providers/Microsoft.Management/managementgroups/ac3de0b6-0c84-400/providers/Microsoft.Authorization/policyDefinitions/a32da581-2aa8-49a7-b";
6920
Requests[434].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6921
Requests[434].
Request
.Path = "/providers/Microsoft.Management/managementgroups/197d1db2-e6ab-46e/providers/Microsoft.Authorization/policySetDefinitions/ad0bf8f1-fcb9-428d-b94e";
6924
Requests[435].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6925
Requests[435].
Request
.Path = "/providers/Microsoft.Management/managementgroups/c873f8b5-2d2f-444/providers/Microsoft.Authorization/policySetDefinitions/b884c108-6b9d-4f51-94bf";
6928
Requests[436].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
6929
Requests[436].
Request
.Path = "/providers/Microsoft.Management/managementgroups/caa2520a-38cd-44e/providers/Microsoft.Authorization/policySetDefinitions/124cb0d9-e10a-4c8b-be7a";
6932
Requests[437].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6933
Requests[437].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/58dbeb24-cb26-41/providers/Microsoft.Billing/billingPeriods/ceb3e668-a5b0-41f/providers/Microsoft.Consumption/balances";
6936
Requests[438].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6937
Requests[438].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/e815176f-d651-4a/providers/Microsoft.Billing/billingPeriods/56b72c33-d8e9-40e/providers/Microsoft.Consumption/marketplaces";
6940
Requests[439].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6941
Requests[439].
Request
.Path = "/providers/Microsoft.Billing/billingAccounts/37797732-a671-4b/providers/Microsoft.Billing/billingPeriods/80b660af-c5e0-46f/providers/Microsoft.Consumption/usageDetails";
6944
Requests[440].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6945
Requests[440].
Request
.Path = "/providers/Microsoft.Billing/departments/98546c3a-020/providers/Microsoft.Billing/billingPeriods/5afbb630-4fbd-42b/providers/Microsoft.Consumption/marketplaces";
6948
Requests[441].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6949
Requests[441].
Request
.Path = "/providers/Microsoft.Billing/departments/6d6d340f-74a/providers/Microsoft.Billing/billingPeriods/60ca7d18-5bb7-48a/providers/Microsoft.Consumption/usageDetails";
6952
Requests[442].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6953
Requests[442].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts/dfc2caef-c829-4fdf-/providers/Microsoft.Billing/billingPeriods/52488d12-95c4-4bd/providers/Microsoft.Consumption/marketplaces";
6956
Requests[443].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6957
Requests[443].
Request
.Path = "/providers/Microsoft.Billing/enrollmentAccounts/5ea1c5f1-789a-4a67-/providers/Microsoft.Billing/billingPeriods/fd36d2a6-f1d1-4b2/providers/Microsoft.Consumption/usageDetails";
6960
Requests[444].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6961
Requests[444].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/e722bb21-4f/feedbacktype/alerts/ea114d0a-/alertfeedback";
6964
Requests[445].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6965
Requests[445].
Request
.Path = "/catalog/usql/databases/522b21fc-3c4/assemblies/6bb3dc2e-b36";
6968
Requests[446].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
6969
Requests[446].
Request
.Path = "/catalog/usql/databases/4f97ae5b-10b/credentials/c526f56a-1a70-";
6972
Requests[447].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6973
Requests[447].
Request
.Path = "/catalog/usql/databases/959fe508-a50/credentials/f2866fe5-2d7b-";
6976
Requests[448].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6977
Requests[448].
Request
.Path = "/catalog/usql/databases/cd112a49-96d/credentials/c77e81dc-96c3-";
6980
Requests[449].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
6981
Requests[449].
Request
.Path = "/catalog/usql/databases/2dc20285-cf0/credentials/f0f276bd-b579-";
6984
Requests[450].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6985
Requests[450].
Request
.Path = "/catalog/usql/databases/9b34c996-f88/externaldatasources/c7144c88-f194-48c4-9de";
6988
Requests[451].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6989
Requests[451].
Request
.Path = "/catalog/usql/databases/ed84ef31-2b5/schemas/76a906e7-4";
6992
Requests[452].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
6993
Requests[452].
Request
.Path = "/catalog/usql/databases/f9656aaf-d3a/secrets/6c34b504-4";
6996
Requests[453].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
6997
Requests[453].
Request
.Path = "/catalog/usql/databases/3b60ae23-c1f/secrets/1f087fea-a";
7000
Requests[454].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7001
Requests[454].
Request
.Path = "/catalog/usql/databases/060711e3-06a/secrets/5debd271-f";
7004
Requests[455].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7005
Requests[455].
Request
.Path = "/catalog/usql/databases/087653a9-053/secrets/8b7d8ec2-9";
7008
Requests[456].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7009
Requests[456].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/7065ac2e-12/dimensions/7114a017-";
7012
Requests[457].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7013
Requests[457].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/4728ae6a-a6/metricmetadata/2041ddb0-a";
7016
Requests[458].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7017
Requests[458].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/92de7596-50/checkServiceFeatureAvailibility/b75bd81b-14";
7020
Requests[459].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7021
Requests[459].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/b167109d-b8/metricmetadata/edc8a92d-a";
7024
Requests[460].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7025
Requests[460].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/32b2a987-5c/servicemembers/ad90bbd6-e8bd-4";
7028
Requests[461].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7029
Requests[461].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/f0e9cde0-25/servicemembers/2a8471b9-bcd4-4";
7032
Requests[462].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7033
Requests[462].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/15c9d56b-4a/TenantAllowlisting/57c79c6d-29";
7036
Requests[463].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7037
Requests[463].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/c83f0452-418f-432d/reservations/912a0cb0-6552";
7040
Requests[464].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7041
Requests[464].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/5658130b-a23c-4cbb/reservations/ea6b0616-6fb6";
7044
Requests[465].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7045
Requests[465].
Request
.Path = "/providers/Microsoft.Intune/locations/c3370383/androidPolicies/f0c310dc-5";
7048
Requests[466].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7049
Requests[466].
Request
.Path = "/providers/Microsoft.Intune/locations/4867d324/androidPolicies/0a164356-3";
7052
Requests[467].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7053
Requests[467].
Request
.Path = "/providers/Microsoft.Intune/locations/6c0935f3/androidPolicies/0bb726fe-1";
7056
Requests[468].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7057
Requests[468].
Request
.Path = "/providers/Microsoft.Intune/locations/6ce2504d/androidPolicies/3be2c33c-4";
7060
Requests[469].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7061
Requests[469].
Request
.Path = "/providers/Microsoft.Intune/locations/e01a286a/flaggedUsers/907ab9ce";
7064
Requests[470].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7065
Requests[470].
Request
.Path = "/providers/Microsoft.Intune/locations/50ff2f7e/iosPolicies/d4c02ef8-d";
7068
Requests[471].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7069
Requests[471].
Request
.Path = "/providers/Microsoft.Intune/locations/0e3e1b3e/iosPolicies/bf931ef8-0";
7072
Requests[472].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7073
Requests[472].
Request
.Path = "/providers/Microsoft.Intune/locations/6b84aca5/iosPolicies/8a7d396a-2";
7076
Requests[473].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7077
Requests[473].
Request
.Path = "/providers/Microsoft.Intune/locations/91ff4eff/iosPolicies/1256392a-e";
7080
Requests[474].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7081
Requests[474].
Request
.Path = "/providers/Microsoft.Management/managementGroups/d31ad31/subscriptions/b027f36c-9322-";
7084
Requests[475].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7085
Requests[475].
Request
.Path = "/providers/Microsoft.Management/managementGroups/55d7357/subscriptions/82cc4132-cddb-";
7088
Requests[476].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7089
Requests[476].
Request
.Path = "/catalog/usql/databases/5737ef02-734/schemas/2ffdce38-b/packages";
7092
Requests[477].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7093
Requests[477].
Request
.Path = "/catalog/usql/databases/ebb1e575-88f/schemas/90f366dc-5/procedures";
7096
Requests[478].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7097
Requests[478].
Request
.Path = "/catalog/usql/databases/8fdaff71-30a/schemas/3cd27cea-e/statistics";
7100
Requests[479].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7101
Requests[479].
Request
.Path = "/catalog/usql/databases/82ab4106-551/schemas/09bd2151-b/tables";
7104
Requests[480].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7105
Requests[480].
Request
.Path = "/catalog/usql/databases/fb2a2e1c-8af/schemas/23b91f04-c/tabletypes";
7108
Requests[481].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7109
Requests[481].
Request
.Path = "/catalog/usql/databases/5cbb7c69-35c/schemas/f9fcad13-5/tablevaluedfunctions";
7112
Requests[482].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7113
Requests[482].
Request
.Path = "/catalog/usql/databases/d0e472a9-d86/schemas/b0f0efe3-e/types";
7116
Requests[483].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7117
Requests[483].
Request
.Path = "/catalog/usql/databases/6eda39fa-d3e/schemas/09bc74ca-d/views";
7120
Requests[484].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7121
Requests[484].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/16c3aae0-57/servicemembers/929a4a00-11b5-4/alerts";
7124
Requests[485].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7125
Requests[485].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/service/10817748-7a/servicemembers/978c1c85-14b1-4/connectors";
7128
Requests[486].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7129
Requests[486].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/6af49530-c0/servicemembers/5590f18b-d642-4/alerts";
7132
Requests[487].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7133
Requests[487].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/a14077e8-9c/servicemembers/98fbefd0-5c06-4/credentials";
7136
Requests[488].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7137
Requests[488].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/a35df15d-b7/servicemembers/0f12227f-649b-4/data";
7140
Requests[489].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7141
Requests[489].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/25acf844-eb/servicemembers/25e61e52-afd7-4/datafreshness";
7144
Requests[490].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7145
Requests[490].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/c840c66b-45/servicemembers/27ce50a3-5fb9-4/exportstatus";
7148
Requests[491].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7149
Requests[491].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/cf0ec528-10/servicemembers/134e985e-a05c-4/globalconfiguration";
7152
Requests[492].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7153
Requests[492].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/c4563e1d-b7/servicemembers/f1fb81a5-c7c1-4/serviceconfiguration";
7156
Requests[493].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7157
Requests[493].
Request
.Path = "/providers/Microsoft.Capacity/reservationOrders/7d20576e-63e9-44e4/reservations/c4e7a692-2bfa/revisions";
7160
Requests[494].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7161
Requests[494].
Request
.Path = "/providers/Microsoft.Intune/locations/e0a5c0bb/AndroidPolicies/db9da655-3/apps";
7164
Requests[495].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7165
Requests[495].
Request
.Path = "/providers/Microsoft.Intune/locations/21a6b242/androidPolicies/c0def284-7/groups";
7168
Requests[496].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7169
Requests[496].
Request
.Path = "/providers/Microsoft.Intune/locations/ba980de6/flaggedUsers/4acea646/flaggedEnrolledApps";
7172
Requests[497].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7173
Requests[497].
Request
.Path = "/providers/Microsoft.Intune/locations/63e6dcb1/iosPolicies/4016b26e-4/apps";
7176
Requests[498].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7177
Requests[498].
Request
.Path = "/providers/Microsoft.Intune/locations/2138f3ec/iosPolicies/0e5b6d6b-1/groups";
7180
Requests[499].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7181
Requests[499].
Request
.Path = "/providers/Microsoft.Intune/locations/54e6dcee/users/0cef01bb/devices";
7184
Requests[500].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7185
Requests[500].
Request
.Path = "/providers/Microsoft.Capacity/reservationorders/d1121b87-725b-47a1/reservations/e5af7101-0561/providers/Microsoft.Consumption/reservationDetails";
7188
Requests[501].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7189
Requests[501].
Request
.Path = "/providers/Microsoft.Capacity/reservationorders/b649436b-24dc-469a/reservations/cd0302f5-f662/providers/Microsoft.Consumption/reservationSummaries";
7192
Requests[502].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7193
Requests[502].
Request
.Path = "/catalog/usql/databases/ee9020bb-9fb/schemas/fcf7aff1-3/packages/dbad130a-eb";
7196
Requests[503].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7197
Requests[503].
Request
.Path = "/catalog/usql/databases/b7096c8d-54e/schemas/ef350499-0/procedures/03737b1f-9326";
7200
Requests[504].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7201
Requests[504].
Request
.Path = "/catalog/usql/databases/ecb583d1-465/schemas/7a0383ee-a/tables/587ab987-";
7204
Requests[505].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7205
Requests[505].
Request
.Path = "/catalog/usql/databases/03c972c4-153/schemas/96319834-8/tabletypes/d61bee34-2ef9";
7208
Requests[506].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7209
Requests[506].
Request
.Path = "/catalog/usql/databases/3c184fb1-0a4/schemas/8a759027-1/tablevaluedfunctions/0f37bc63-249a-48ce-ac29";
7212
Requests[507].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7213
Requests[507].
Request
.Path = "/catalog/usql/databases/42be4030-110/schemas/ee034e9f-1/views/fb2f94a2";
7216
Requests[508].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7217
Requests[508].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/35178c04-48/metricmetadata/5e3544bb-5/groups/37896d9b-";
7220
Requests[509].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7221
Requests[509].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/b8d0d188-05/metricmetadata/43d752a3-6/groups/4fddb8f1-";
7224
Requests[510].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7225
Requests[510].
Request
.Path = "/providers/Microsoft.Intune/locations/fcdcca85/androidPolicies/3926053d-f/apps/95dd42c";
7228
Requests[511].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7229
Requests[511].
Request
.Path = "/providers/Microsoft.Intune/locations/68b0edc7/androidPolicies/95b041a6-0/apps/d38538d";
7232
Requests[512].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7233
Requests[512].
Request
.Path = "/providers/Microsoft.Intune/locations/8d6fd178/androidPolicies/16ea146c-e/groups/8d04903";
7236
Requests[513].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7237
Requests[513].
Request
.Path = "/providers/Microsoft.Intune/locations/c286d2d9/androidPolicies/c5275598-5/groups/d7ae910";
7240
Requests[514].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7241
Requests[514].
Request
.Path = "/providers/Microsoft.Intune/locations/c53b5c3d/iosPolicies/dbcbe18f-9/apps/ef60ec0";
7244
Requests[515].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7245
Requests[515].
Request
.Path = "/providers/Microsoft.Intune/locations/4b70cc25/iosPolicies/0960e653-8/apps/e742952";
7248
Requests[516].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7249
Requests[516].
Request
.Path = "/providers/Microsoft.Intune/locations/502341f0/iosPolicies/2274b5e1-6/groups/7aef78d";
7252
Requests[517].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7253
Requests[517].
Request
.Path = "/providers/Microsoft.Intune/locations/b093142d/iosPolicies/ef230112-e/groups/c75ab1f";
7256
Requests[518].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7257
Requests[518].
Request
.Path = "/providers/Microsoft.Intune/locations/1f763112/users/579226bd/devices/d212c0d5-2";
7260
Requests[519].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7261
Requests[519].
Request
.Path = "/catalog/usql/databases/c3d15cff-038/schemas/17b7b7d2-6/tables/2f1848ff-/partitions";
7264
Requests[520].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7265
Requests[520].
Request
.Path = "/catalog/usql/databases/2f2cc894-608/schemas/79ea882b-7/tables/a9725310-/previewrows";
7268
Requests[521].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7269
Requests[521].
Request
.Path = "/catalog/usql/databases/83eb945c-15a/schemas/89a1f5d9-9/tables/b756a303-/statistics";
7272
Requests[522].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7273
Requests[522].
Request
.Path = "/catalog/usql/databases/d733c3b9-4a0/schemas/94adc39c-1/tables/be815c04-/tablefragments";
7276
Requests[523].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7277
Requests[523].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/1a429c36-b7/metrics/d4353f5e-b/groups/9b08f6aa-/average";
7280
Requests[524].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7281
Requests[524].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/addsservices/34fdab9d-71/metrics/d23abe43-7/groups/781e023d-/sum";
7284
Requests[525].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7285
Requests[525].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/4d271c53-c7/metrics/0e2749aa-b/groups/90f416c2-/average";
7288
Requests[526].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7289
Requests[526].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/4b8ffcec-c2/metrics/6b2dd782-d/groups/fd43abfe-/sum";
7292
Requests[527].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7293
Requests[527].
Request
.Path = "/providers/Microsoft.Intune/locations/ae9891e7/users/f4a0ecaa/devices/8b63666c-3/wipe";
7296
Requests[528].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7297
Requests[528].
Request
.Path = "/catalog/usql/databases/d0782c60-77e/schemas/f79332ec-6/tables/eb9d811b-/partitions/f1efa048-800e";
7300
Requests[529].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7301
Requests[529].
Request
.Path = "/catalog/usql/databases/f7ae3995-d29/schemas/9ac28ef4-2/tables/8e3c0f94-/statistics/f385ea1d-f85d-";
7304
Requests[530].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7305
Requests[530].
Request
.Path = "/providers/Microsoft.ADHybridHealthService/services/a9205564-5a/servicemembers/d407b0e5-0abd-4/metrics/1adcb4d5-f/groups/2afcba17-";
7308
Requests[531].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7309
Requests[531].
Request
.Path = "/catalog/usql/databases/1b34028d-d5b/schemas/42d87371-6/tables/a3d4d429-/partitions/d365ba29-dd01/previewrows";
7312
Requests[532].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7313
Requests[532].
Request
.Path = "/apps/customprebuiltdomains/27f4187";
7316
Requests[533].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7317
Requests[533].
Request
.Path = "/BackupRestore/BackupPolicies/d11f8dc6-f337-40";
7320
Requests[534].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7321
Requests[534].
Request
.Path = "/certificates/issuers/587d7e46-72";
7324
Requests[535].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7325
Requests[535].
Request
.Path = "/certificates/issuers/0df7f88b-72";
7328
Requests[536].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7329
Requests[536].
Request
.Path = "/certificates/issuers/b816a099-a3";
7332
Requests[537].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7333
Requests[537].
Request
.Path = "/certificates/issuers/e239824a-df";
7336
Requests[538].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7337
Requests[538].
Request
.Path = "/webhdfs/v1/26769904-de69-";
7340
Requests[539].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7341
Requests[539].
Request
.Path = "/webhdfs/v1/7bbc4fc0";
7344
Requests[540].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7345
Requests[540].
Request
.Path = "/webhdfs/v1/18be8";
7348
Requests[541].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7349
Requests[541].
Request
.Path = "/webhdfs/v1/ce6cf1fa-b9ab-4b4e-a5";
7352
Requests[542].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7353
Requests[542].
Request
.Path = "/webhdfs/va/05f7fb94-74ff-47ef-9c9e-f";
7356
Requests[543].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7357
Requests[543].
Request
.Path = "/BackupRestore/BackupPolicies/93a5f9e9-0df7-47/$/Delete";
7360
Requests[544].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7361
Requests[544].
Request
.Path = "/BackupRestore/BackupPolicies/c62827dc-6aad-45/$/GetBackupEnabledEntities";
7364
Requests[545].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7365
Requests[545].
Request
.Path = "/BackupRestore/BackupPolicies/4f2b96db-fbc8-44/$/Update";
7368
Requests[546].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7369
Requests[546].
Request
.Path = "/EventsStore/Applications/e503edf3-37fc/$/Events";
7372
Requests[547].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7373
Requests[547].
Request
.Path = "/EventsStore/CorrelatedEvents/6d5356dc-af36-4/$/Events";
7376
Requests[548].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7377
Requests[548].
Request
.Path = "/EventsStore/Nodes/4e7c1ccf/$/Events";
7380
Requests[549].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7381
Requests[549].
Request
.Path = "/EventsStore/Partitions/d67d8a7c-db/$/Events";
7384
Requests[550].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7385
Requests[550].
Request
.Path = "/EventsStore/Services/96bcf9a5-/$/Events";
7388
Requests[551].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7389
Requests[551].
Request
.Path = "/Faults/Nodes/1887565c/$/GetTransitionProgress";
7392
Requests[552].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7393
Requests[552].
Request
.Path = "/Faults/Nodes/d62b04d5/$/StartTransition";
7396
Requests[553].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7397
Requests[553].
Request
.Path = "/EventsStore/Partitions/ec33cc83-64/$/Replicas/Events";
7400
Requests[554].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7401
Requests[554].
Request
.Path = "/Services/$/c417dcba-/$/GetPartitions/$/Recover";
7404
Requests[555].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7405
Requests[555].
Request
.Path = "/EventsStore/Partitions/09db8dab-f9/$/Replicas/74a84f0e-/$/Events";
7408
Requests[556].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7409
Requests[556].
Request
.Path = "/Faults/Services/dfc0e352-/$/GetPartitions/382113a9-a3/$/GetDataLossProgress";
7412
Requests[557].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7413
Requests[557].
Request
.Path = "/Faults/Services/7a15971e-/$/GetPartitions/fcf03752-db/$/GetQuorumLossProgress";
7416
Requests[558].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7417
Requests[558].
Request
.Path = "/Faults/Services/591d91bb-/$/GetPartitions/24f4ace0-c1/$/GetRestartProgress";
7420
Requests[559].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7421
Requests[559].
Request
.Path = "/Faults/Services/f6bf794c-/$/GetPartitions/103b439c-15/$/StartDataLoss";
7424
Requests[560].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7425
Requests[560].
Request
.Path = "/Faults/Services/3d855d31-/$/GetPartitions/919bd10f-8e/$/StartQuorumLoss";
7428
Requests[561].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7429
Requests[561].
Request
.Path = "/Faults/Services/17a02d30-/$/GetPartitions/0acaf73b-7f/$/StartRestart";
7432
Requests[562].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7433
Requests[562].
Request
.Path = "/apis/e756c";
7436
Requests[563].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7437
Requests[563].
Request
.Path = "/apis/b334c";
7440
Requests[564].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7441
Requests[564].
Request
.Path = "/apis/dfe77";
7444
Requests[565].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7445
Requests[565].
Request
.Path = "/apis/10de7";
7448
Requests[566].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7449
Requests[566].
Request
.Path = "/Applications/d01cf355-de3e";
7452
Requests[567].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7453
Requests[567].
Request
.Path = "/ApplicationTypes/8a030075-94f5-4212-";
7456
Requests[568].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7457
Requests[568].
Request
.Path = "/apps/702dc";
7460
Requests[569].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7461
Requests[569].
Request
.Path = "/apps/baa40";
7464
Requests[570].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7465
Requests[570].
Request
.Path = "/apps/ab5c5";
7468
Requests[571].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7469
Requests[571].
Request
.Path = "/authorizationServers/9348f66";
7472
Requests[572].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7473
Requests[572].
Request
.Path = "/authorizationServers/90d8dd4";
7476
Requests[573].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7477
Requests[573].
Request
.Path = "/authorizationServers/e3d960b";
7480
Requests[574].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7481
Requests[574].
Request
.Path = "/authorizationServers/55ad8a2";
7484
Requests[575].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7485
Requests[575].
Request
.Path = "/backends/f91018df-";
7488
Requests[576].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7489
Requests[576].
Request
.Path = "/backends/2ac52071-";
7492
Requests[577].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7493
Requests[577].
Request
.Path = "/backends/098081a8-";
7496
Requests[578].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7497
Requests[578].
Request
.Path = "/backends/2b9bd7f6-";
7500
Requests[579].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7501
Requests[579].
Request
.Path = "/certificates/9a7465ab-7844";
7504
Requests[580].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7505
Requests[580].
Request
.Path = "/certificates/e7e484e1-5bc4";
7508
Requests[581].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7509
Requests[581].
Request
.Path = "/certificates/01d84a1c-6dc8-43";
7512
Requests[582].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7513
Requests[582].
Request
.Path = "/ComposeDeployments/ab5a79d4-11dc-";
7516
Requests[583].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7517
Requests[583].
Request
.Path = "/deletedcertificates/295eaff7-73c8-41";
7520
Requests[584].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7521
Requests[584].
Request
.Path = "/deletedcertificates/7f689dfe-f60a-48";
7524
Requests[585].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7525
Requests[585].
Request
.Path = "/deletedkeys/e160f5b8";
7528
Requests[586].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7529
Requests[586].
Request
.Path = "/deletedkeys/2ef92ad1";
7532
Requests[587].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7533
Requests[587].
Request
.Path = "/deletedsecrets/fb6c8877-4f";
7536
Requests[588].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7537
Requests[588].
Request
.Path = "/deletedsecrets/b3b8475d-bb";
7540
Requests[589].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7541
Requests[589].
Request
.Path = "/deletedstorage/7b7393ea-16f3-46f5-b";
7544
Requests[590].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7545
Requests[590].
Request
.Path = "/deletedstorage/8ea1f03b-c6f9-4bb1-a";
7548
Requests[591].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7549
Requests[591].
Request
.Path = "/domains/d7389d88";
7552
Requests[592].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7553
Requests[592].
Request
.Path = "/facelists/92239e42-0";
7556
Requests[593].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7557
Requests[593].
Request
.Path = "/facelists/9d11db61-d";
7560
Requests[594].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7561
Requests[594].
Request
.Path = "/facelists/5b4960dd-b";
7564
Requests[595].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7565
Requests[595].
Request
.Path = "/facelists/1d354058-0";
7568
Requests[596].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7569
Requests[596].
Request
.Path = "/groups/9da11b3";
7572
Requests[597].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7573
Requests[597].
Request
.Path = "/groups/d1b8799";
7576
Requests[598].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7577
Requests[598].
Request
.Path = "/groups/49be350";
7580
Requests[599].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7581
Requests[599].
Request
.Path = "/groups/fb6b877";
7584
Requests[600].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7585
Requests[600].
Request
.Path = "/identityProviders/143965ad-a020-42b5-b";
7588
Requests[601].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7589
Requests[601].
Request
.Path = "/identityProviders/6685c6a9-0a67-4316-9";
7592
Requests[602].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7593
Requests[602].
Request
.Path = "/identityProviders/93d09a82-5ce6-40d5-a";
7596
Requests[603].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7597
Requests[603].
Request
.Path = "/identityProviders/9390249f-a954-4520-b";
7600
Requests[604].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7601
Requests[604].
Request
.Path = "/ImageStore/1b8a55ea-c6";
7604
Requests[605].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7605
Requests[605].
Request
.Path = "/ImageStore/4174f25f-f8";
7608
Requests[606].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7609
Requests[606].
Request
.Path = "/ImageStore/ca25bd5f-16";
7612
Requests[607].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7613
Requests[607].
Request
.Path = "/jobs/c3b1d";
7616
Requests[608].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7617
Requests[608].
Request
.Path = "/jobs/6c07df0b-3f";
7620
Requests[609].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7621
Requests[609].
Request
.Path = "/Jobs/dca95b9c-b6";
7624
Requests[610].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7625
Requests[610].
Request
.Path = "/Jobs/a8aeed8f-36";
7628
Requests[611].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
7629
Requests[611].
Request
.Path = "/jobschedules/98088610-ab03";
7632
Requests[612].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7633
Requests[612].
Request
.Path = "/jobschedules/976ff427-1efd";
7636
Requests[613].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7637
Requests[613].
Request
.Path = "/jobschedules/545369bd-eb30";
7640
Requests[614].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7641
Requests[614].
Request
.Path = "/jobschedules/204a59a1-1923";
7644
Requests[615].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7645
Requests[615].
Request
.Path = "/jobschedules/13627dab-4746";
7648
Requests[616].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7649
Requests[616].
Request
.Path = "/keys/6f7cf5bc";
7652
Requests[617].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7653
Requests[617].
Request
.Path = "/keys/360505f3";
7656
Requests[618].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7657
Requests[618].
Request
.Path = "/loggers/9f4e352c";
7660
Requests[619].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7661
Requests[619].
Request
.Path = "/loggers/c31e7baa";
7664
Requests[620].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7665
Requests[620].
Request
.Path = "/loggers/25c09157";
7668
Requests[621].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7669
Requests[621].
Request
.Path = "/loggers/7fd42fff";
7672
Requests[622].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7673
Requests[622].
Request
.Path = "/Names/9e7298";
7676
Requests[623].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7677
Requests[623].
Request
.Path = "/Names/bb401a";
7680
Requests[624].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7681
Requests[624].
Request
.Path = "/Nodes/31dde36d";
7684
Requests[625].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7685
Requests[625].
Request
.Path = "/openidConnectProviders/49ad4";
7688
Requests[626].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7689
Requests[626].
Request
.Path = "/openidConnectProviders/40b65";
7692
Requests[627].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7693
Requests[627].
Request
.Path = "/openidConnectProviders/e689f";
7696
Requests[628].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7697
Requests[628].
Request
.Path = "/openidConnectProviders/a38ee";
7700
Requests[629].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7701
Requests[629].
Request
.Path = "/Partitions/b8a3da24-2f";
7704
Requests[630].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7705
Requests[630].
Request
.Path = "/persongroups/3b5b98f6-6ea8";
7708
Requests[631].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7709
Requests[631].
Request
.Path = "/persongroups/e39bc3a1-8dd6";
7712
Requests[632].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7713
Requests[632].
Request
.Path = "/persongroups/a22998f2-c6a6";
7716
Requests[633].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7717
Requests[633].
Request
.Path = "/persongroups/ffe852f6-f7b7";
7720
Requests[634].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7721
Requests[634].
Request
.Path = "/pipelines/747ab2b2-4a4d-46";
7724
Requests[635].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7725
Requests[635].
Request
.Path = "/policies/38b62994";
7728
Requests[636].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7729
Requests[636].
Request
.Path = "/policies/4acac6a3";
7732
Requests[637].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7733
Requests[637].
Request
.Path = "/policies/93c1a981";
7736
Requests[638].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7737
Requests[638].
Request
.Path = "/pools/41343e";
7740
Requests[639].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7741
Requests[639].
Request
.Path = "/pools/5cb259";
7744
Requests[640].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
7745
Requests[640].
Request
.Path = "/pools/54e906";
7748
Requests[641].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7749
Requests[641].
Request
.Path = "/pools/02a477";
7752
Requests[642].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7753
Requests[642].
Request
.Path = "/products/04e18688-";
7756
Requests[643].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7757
Requests[643].
Request
.Path = "/products/4a6f83a8-";
7760
Requests[644].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7761
Requests[644].
Request
.Path = "/products/151c8c1d-";
7764
Requests[645].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7765
Requests[645].
Request
.Path = "/products/db650c93-";
7768
Requests[646].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7769
Requests[646].
Request
.Path = "/projects/deb64cd7-";
7772
Requests[647].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7773
Requests[647].
Request
.Path = "/projects/b15afb9f-";
7776
Requests[648].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7777
Requests[648].
Request
.Path = "/projects/62294a47-";
7780
Requests[649].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7781
Requests[649].
Request
.Path = "/properties/a3d170";
7784
Requests[650].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7785
Requests[650].
Request
.Path = "/properties/e98a5a";
7788
Requests[651].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7789
Requests[651].
Request
.Path = "/properties/24c08c";
7792
Requests[652].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7793
Requests[652].
Request
.Path = "/properties/5e00c2";
7796
Requests[653].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7797
Requests[653].
Request
.Path = "/quotas/7d3ce473-c988-4";
7800
Requests[654].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7801
Requests[654].
Request
.Path = "/quotas/938dec85-8431-4";
7804
Requests[655].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7805
Requests[655].
Request
.Path = "/recurrences/abe1aac9-5788-4511";
7808
Requests[656].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7809
Requests[656].
Request
.Path = "/secrets/87427030-19";
7812
Requests[657].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7813
Requests[657].
Request
.Path = "/secrets/7d4c29d8-e1";
7816
Requests[658].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7817
Requests[658].
Request
.Path = "/storage/e7d81916-0a94-4b7a-a";
7820
Requests[659].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7821
Requests[659].
Request
.Path = "/storage/22c1c3c9-6481-48f0-8";
7824
Requests[660].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7825
Requests[660].
Request
.Path = "/storage/14bb921d-3427-4430-8";
7828
Requests[661].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7829
Requests[661].
Request
.Path = "/storage/ef6b988c-729b-4d9e-9";
7832
Requests[662].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7833
Requests[662].
Request
.Path = "/subscriptions/378fd";
7836
Requests[663].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7837
Requests[663].
Request
.Path = "/subscriptions/44a282cc-266c-";
7840
Requests[664].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7841
Requests[664].
Request
.Path = "/subscriptions/cc4db31d-167f-";
7844
Requests[665].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7845
Requests[665].
Request
.Path = "/subscriptions/c712c145-97c2-";
7848
Requests[666].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7849
Requests[666].
Request
.Path = "/templates/aa168cf5-ca7";
7852
Requests[667].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7853
Requests[667].
Request
.Path = "/templates/fc259cba-5fb";
7856
Requests[668].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7857
Requests[668].
Request
.Path = "/templates/d9f6d1af-e49";
7860
Requests[669].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7861
Requests[669].
Request
.Path = "/templates/a05dc574-42b";
7864
Requests[670].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7865
Requests[670].
Request
.Path = "/tenant/afaa060b-d";
7868
Requests[671].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7869
Requests[671].
Request
.Path = "/tenant/78a72012-9";
7872
Requests[672].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7873
Requests[672].
Request
.Path = "/textOperations/94b18479-0e";
7876
Requests[673].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7877
Requests[673].
Request
.Path = "/users/124c9";
7880
Requests[674].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7881
Requests[674].
Request
.Path = "/users/5c30c";
7884
Requests[675].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7885
Requests[675].
Request
.Path = "/users/672e7";
7888
Requests[676].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7889
Requests[676].
Request
.Path = "/users/313a8";
7892
Requests[677].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7893
Requests[677].
Request
.Path = "/WebHdfsExt/6080c";
7896
Requests[678].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7897
Requests[678].
Request
.Path = "/WebHdfsExt/18cd6";
7900
Requests[679].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7901
Requests[679].
Request
.Path = "/apis/e3171/operations";
7904
Requests[680].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7905
Requests[680].
Request
.Path = "/apis/6aa38/policies";
7908
Requests[681].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7909
Requests[681].
Request
.Path = "/apis/1c7fe/products";
7912
Requests[682].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7913
Requests[682].
Request
.Path = "/apis/79bc8/schemas";
7916
Requests[683].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7917
Requests[683].
Request
.Path = "/apps/b1aaf/endpoints";
7920
Requests[684].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7921
Requests[684].
Request
.Path = "/apps/ea29e/metrics";
7924
Requests[685].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7925
Requests[685].
Request
.Path = "/apps/bf053/permissions";
7928
Requests[686].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7929
Requests[686].
Request
.Path = "/apps/77c6e/permissions";
7932
Requests[687].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7933
Requests[687].
Request
.Path = "/apps/d8164/permissions";
7936
Requests[688].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7937
Requests[688].
Request
.Path = "/apps/75942/permissions";
7940
Requests[689].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7941
Requests[689].
Request
.Path = "/apps/563cc/publish";
7944
Requests[690].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7945
Requests[690].
Request
.Path = "/apps/e781b/publishsettings";
7948
Requests[691].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7949
Requests[691].
Request
.Path = "/apps/25001/publishsettings";
7952
Requests[692].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7953
Requests[692].
Request
.Path = "/apps/63247/query";
7956
Requests[693].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7957
Requests[693].
Request
.Path = "/apps/d531e/query";
7960
Requests[694].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7961
Requests[694].
Request
.Path = "/apps/8d2d6/querylogs";
7964
Requests[695].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7965
Requests[695].
Request
.Path = "/apps/f41e6/settings";
7968
Requests[696].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
7969
Requests[696].
Request
.Path = "/apps/448a9/settings";
7972
Requests[697].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7973
Requests[697].
Request
.Path = "/apps/a23fb/versions";
7976
Requests[698].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7977
Requests[698].
Request
.Path = "/certificates/73f7dc2c-b795-41/create";
7980
Requests[699].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
7981
Requests[699].
Request
.Path = "/certificates/e30d8a66-04bf-46/import";
7984
Requests[700].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
7985
Requests[700].
Request
.Path = "/certificates/eb0cb40f-656f-4b/pending";
7988
Requests[701].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7989
Requests[701].
Request
.Path = "/certificates/237df1b3-a184-40/pending";
7992
Requests[702].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
7993
Requests[702].
Request
.Path = "/certificates/cfe67a33-b976-43/pending";
7996
Requests[703].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
7997
Requests[703].
Request
.Path = "/certificates/c2d2f982-ccfe-4b/policy";
8000
Requests[704].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
8001
Requests[704].
Request
.Path = "/certificates/4191102f-590c-4b/policy";
8004
Requests[705].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8005
Requests[705].
Request
.Path = "/certificates/9be5b82a-7926-49/versions";
8008
Requests[706].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8009
Requests[706].
Request
.Path = "/delegatedProviders/6614dbae-6979-4d22-/offers";
8012
Requests[707].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8013
Requests[707].
Request
.Path = "/deletedcertificates/d5aaf3fe-f10b-44/recover";
8016
Requests[708].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8017
Requests[708].
Request
.Path = "/deletedkeys/2e3a3349/recover";
8020
Requests[709].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8021
Requests[709].
Request
.Path = "/deletedsecrets/c077070c-1f/recover";
8024
Requests[710].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8025
Requests[710].
Request
.Path = "/deletedstorage/321afa37-fb50-46cf-8/recover";
8028
Requests[711].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8029
Requests[711].
Request
.Path = "/deletedstorage/0c6b120f-9752-4078-9/sas";
8032
Requests[712].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8033
Requests[712].
Request
.Path = "/facelists/15bacb4c-e/persistedFaces";
8036
Requests[713].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8037
Requests[713].
Request
.Path = "/groups/2fe853a/users";
8040
Requests[714].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8041
Requests[714].
Request
.Path = "/jobs/bf5ca/addtaskcollection";
8044
Requests[715].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8045
Requests[715].
Request
.Path = "/jobs/108cc/disable";
8048
Requests[716].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8049
Requests[716].
Request
.Path = "/jobs/d2784/enable";
8052
Requests[717].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8053
Requests[717].
Request
.Path = "/jobs/def23/jobpreparationandreleasetaskstatus";
8056
Requests[718].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8057
Requests[718].
Request
.Path = "/jobs/bb64c/taskcounts";
8060
Requests[719].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8061
Requests[719].
Request
.Path = "/jobs/0b01e/tasks";
8064
Requests[720].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8065
Requests[720].
Request
.Path = "/jobs/8622c/tasks";
8068
Requests[721].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8069
Requests[721].
Request
.Path = "/jobs/d8ee0/terminate";
8072
Requests[722].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8073
Requests[722].
Request
.Path = "/Jobs/cb3b3382-ab/CancelJob";
8076
Requests[723].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8077
Requests[723].
Request
.Path = "/Jobs/c513a8c8-54/GetDebugDataPath";
8080
Requests[724].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8081
Requests[724].
Request
.Path = "/Jobs/d236fedb-dd/GetDebugDataPath";
8084
Requests[725].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8085
Requests[725].
Request
.Path = "/Jobs/3ca9e0af-cf/GetStatistics";
8088
Requests[726].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8089
Requests[726].
Request
.Path = "/Jobs/38018ea1-87/GetStatistics";
8092
Requests[727].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8093
Requests[727].
Request
.Path = "/jobs/c944b14d-c3/YieldJob";
8096
Requests[728].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8097
Requests[728].
Request
.Path = "/jobschedules/fe58ed1d-c3e5/disable";
8100
Requests[729].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8101
Requests[729].
Request
.Path = "/jobschedules/57d826ab-8633/enable";
8104
Requests[730].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8105
Requests[730].
Request
.Path = "/jobschedules/76b32a25-436a/jobs";
8108
Requests[731].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8109
Requests[731].
Request
.Path = "/jobschedules/b9e0b514-24cc/terminate";
8112
Requests[732].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8113
Requests[732].
Request
.Path = "/keys/d9e6967f/backup";
8116
Requests[733].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8117
Requests[733].
Request
.Path = "/keys/4b289dfe/create";
8120
Requests[734].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8121
Requests[734].
Request
.Path = "/keys/b693e2aa/versions";
8124
Requests[735].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8125
Requests[735].
Request
.Path = "/models/b6df1/analyze";
8128
Requests[736].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8129
Requests[736].
Request
.Path = "/persongroups/296bb7b2-ddfa/persons";
8132
Requests[737].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8133
Requests[737].
Request
.Path = "/persongroups/28a03393-b009/persons";
8136
Requests[738].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8137
Requests[738].
Request
.Path = "/persongroups/f37cb2c6-a95f/train";
8140
Requests[739].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8141
Requests[739].
Request
.Path = "/persongroups/60f3404c-da85/training";
8144
Requests[740].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8145
Requests[740].
Request
.Path = "/pools/5540fb/disableautoscale";
8148
Requests[741].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8149
Requests[741].
Request
.Path = "/pools/3f0e49/enableautoscale";
8152
Requests[742].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8153
Requests[742].
Request
.Path = "/pools/605f58/evaluateautoscale";
8156
Requests[743].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8157
Requests[743].
Request
.Path = "/pools/cabbad/nodes";
8160
Requests[744].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8161
Requests[744].
Request
.Path = "/pools/437d57/removenodes";
8164
Requests[745].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8165
Requests[745].
Request
.Path = "/pools/b7da64/resize";
8168
Requests[746].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8169
Requests[746].
Request
.Path = "/pools/153c29/stopresize";
8172
Requests[747].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8173
Requests[747].
Request
.Path = "/pools/e7eb02/updateproperties";
8176
Requests[748].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8177
Requests[748].
Request
.Path = "/pools/b0c5d9/upgradeos";
8180
Requests[749].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8181
Requests[749].
Request
.Path = "/products/74df056b-/apis";
8184
Requests[750].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8185
Requests[750].
Request
.Path = "/products/5973bb3a-/groups";
8188
Requests[751].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8189
Requests[751].
Request
.Path = "/products/e7a08ee0-/policies";
8192
Requests[752].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8193
Requests[752].
Request
.Path = "/products/1076e9de-/subscriptions";
8196
Requests[753].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
8197
Requests[753].
Request
.Path = "/projects/82395036-/images";
8200
Requests[754].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8201
Requests[754].
Request
.Path = "/projects/ebc90bbe-/images";
8204
Requests[755].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8205
Requests[755].
Request
.Path = "/projects/0bf730b1-/iterations";
8208
Requests[756].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
8209
Requests[756].
Request
.Path = "/projects/179f45cb-/predictions";
8212
Requests[757].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8213
Requests[757].
Request
.Path = "/projects/ccf484e1-/tags";
8216
Requests[758].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8217
Requests[758].
Request
.Path = "/projects/f5d13230-/tags";
8220
Requests[759].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8221
Requests[759].
Request
.Path = "/projects/7a10a329-/train";
8224
Requests[760].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8225
Requests[760].
Request
.Path = "/providers/db04db2f-edc2-4b3e-9919-9/operations";
8228
Requests[761].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8229
Requests[761].
Request
.Path = "/secrets/3e4ce1c3-6c/backup";
8232
Requests[762].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8233
Requests[762].
Request
.Path = "/secrets/facc0061-39/versions";
8236
Requests[763].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8237
Requests[763].
Request
.Path = "/storage/cd72e4d4-c6ff-4c46-b/backup";
8240
Requests[764].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8241
Requests[764].
Request
.Path = "/storage/fc43a107-86fb-4a89-8/regeneratekey";
8244
Requests[765].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8245
Requests[765].
Request
.Path = "/storage/0388fbaa-2bde-4a86-a/sas";
8248
Requests[766].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8249
Requests[766].
Request
.Path = "/subscriptions/8b424/regeneratePrimaryKey";
8252
Requests[767].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8253
Requests[767].
Request
.Path = "/subscriptions/ee250/regenerateSecondaryKey";
8256
Requests[768].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8257
Requests[768].
Request
.Path = "/subscriptions/ac66aaa2-7800-/locations";
8260
Requests[769].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8261
Requests[769].
Request
.Path = "/subscriptions/5caff573-482e-/providers";
8264
Requests[770].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8265
Requests[770].
Request
.Path = "/subscriptions/bf658f64-680e-/resourcegroups";
8268
Requests[771].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8269
Requests[771].
Request
.Path = "/subscriptions/19df9045-6ab6-/resources";
8272
Requests[772].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8273
Requests[772].
Request
.Path = "/subscriptions/b3d57c87-2819-/tagNames";
8276
Requests[773].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8277
Requests[773].
Request
.Path = "/tenant/10070398-4/git";
8280
Requests[774].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8281
Requests[774].
Request
.Path = "/tenant/4af7dd60-b/regeneratePrimaryKey";
8284
Requests[775].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8285
Requests[775].
Request
.Path = "/tenant/c56b905a-f/regenerateSecondaryKey";
8288
Requests[776].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8289
Requests[776].
Request
.Path = "/tenant/ce51577a-bfea-457/deploy";
8292
Requests[777].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8293
Requests[777].
Request
.Path = "/tenant/980d38d9-c59f-4f7/save";
8296
Requests[778].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8297
Requests[778].
Request
.Path = "/tenant/72062f52-d924-4a6/syncState";
8300
Requests[779].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8301
Requests[779].
Request
.Path = "/tenant/595749c6-1078-46f/validate";
8304
Requests[780].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8305
Requests[780].
Request
.Path = "/users/73ba5/generateSsoUrl";
8308
Requests[781].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8309
Requests[781].
Request
.Path = "/users/7cf5b/groups";
8312
Requests[782].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8313
Requests[782].
Request
.Path = "/users/4b8c5/identities";
8316
Requests[783].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8317
Requests[783].
Request
.Path = "/users/0b329/subscriptions";
8320
Requests[784].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8321
Requests[784].
Request
.Path = "/users/f0b88/token";
8324
Requests[785].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8325
Requests[785].
Request
.Path = "/workspaces/a910ff67-17/query";
8328
Requests[786].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8329
Requests[786].
Request
.Path = "/workspaces/2e3164c4-7b/query";
8332
Requests[787].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8333
Requests[787].
Request
.Path = "/Applications/f1e30f3d-c543/$/Delete";
8336
Requests[788].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8337
Requests[788].
Request
.Path = "/Applications/fda1284b-8557/$/DisableBackup";
8340
Requests[789].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8341
Requests[789].
Request
.Path = "/Applications/b51cffb8-39bf/$/EnableBackup";
8344
Requests[790].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8345
Requests[790].
Request
.Path = "/Applications/f320177c-841c/$/GetBackupConfigurationInfo";
8348
Requests[791].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8349
Requests[791].
Request
.Path = "/Applications/074d2167-bb2c/$/GetBackups";
8352
Requests[792].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8353
Requests[792].
Request
.Path = "/Applications/bc7c9b6b-f7a2/$/GetHealth";
8356
Requests[793].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8357
Requests[793].
Request
.Path = "/Applications/0046ea84-76ba/$/GetHealth";
8360
Requests[794].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8361
Requests[794].
Request
.Path = "/Applications/d036ffbd-dddd/$/GetLoadInformation";
8364
Requests[795].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8365
Requests[795].
Request
.Path = "/Applications/b5abeb63-8542/$/GetServices";
8368
Requests[796].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8369
Requests[796].
Request
.Path = "/Applications/97e38602-224e/$/GetUpgradeProgress";
8372
Requests[797].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8373
Requests[797].
Request
.Path = "/Applications/71100aa3-14a7/$/MoveToNextUpgradeDomain";
8376
Requests[798].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8377
Requests[798].
Request
.Path = "/Applications/a5e6c630-e386/$/ReportHealth";
8380
Requests[799].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8381
Requests[799].
Request
.Path = "/Applications/d81e0ffb-8cf9/$/ResumeBackup";
8384
Requests[800].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8385
Requests[800].
Request
.Path = "/Applications/c312a7cb-995b/$/RollbackUpgrade";
8388
Requests[801].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8389
Requests[801].
Request
.Path = "/Applications/fff9b2df-589c/$/SuspendBackup";
8392
Requests[802].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8393
Requests[802].
Request
.Path = "/Applications/71399a19-599d/$/UpdateUpgrade";
8396
Requests[803].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8397
Requests[803].
Request
.Path = "/Applications/147962f8-307c/$/Upgrade";
8400
Requests[804].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8401
Requests[804].
Request
.Path = "/Applications/99de231c-c0c4-4/$/MoveNextUpgradeDomain";
8404
Requests[805].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8405
Requests[805].
Request
.Path = "/ApplicationTypes/b4ae891c-13f7-4b8e-/$/GetApplicationManifest";
8408
Requests[806].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8409
Requests[806].
Request
.Path = "/ApplicationTypes/1183e49e-75f1-4704-/$/GetServiceManifest";
8412
Requests[807].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8413
Requests[807].
Request
.Path = "/ApplicationTypes/e3d000c2-ca7f-4d99-/$/GetServiceTypes";
8416
Requests[808].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8417
Requests[808].
Request
.Path = "/ApplicationTypes/198b12cb-3ad6-4139-/$/Unprovision";
8420
Requests[809].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8421
Requests[809].
Request
.Path = "/apps/884cb/events/$metadata";
8424
Requests[810].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8425
Requests[810].
Request
.Path = "/apps/39e3d/metrics/metadata";
8428
Requests[811].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8429
Requests[811].
Request
.Path = "/apps/202b8/query/schema";
8432
Requests[812].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8433
Requests[812].
Request
.Path = "/apps/49d08/versions/import";
8436
Requests[813].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8437
Requests[813].
Request
.Path = "/certificates/e2e0e6c2-b88b-42/pending/merge";
8440
Requests[814].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8441
Requests[814].
Request
.Path = "/ComposeDeployments/cd43ccfd-e4dd-/$/Delete";
8444
Requests[815].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8445
Requests[815].
Request
.Path = "/ComposeDeployments/83ea37bc-fc16-/$/GetUpgradeProgress";
8448
Requests[816].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8449
Requests[816].
Request
.Path = "/ComposeDeployments/50c170fa-c9e8-/$/Upgrade";
8452
Requests[817].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8453
Requests[817].
Request
.Path = "/ImageStore/7cbb81ae-2d/$/GetUploadSession";
8456
Requests[818].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
8457
Requests[818].
Request
.Path = "/ImageStore/daf409a0-e0/$/UploadChunk";
8460
Requests[819].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8461
Requests[819].
Request
.Path = "/Names/6492ae/$/GetProperties";
8464
Requests[820].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
8465
Requests[820].
Request
.Path = "/Names/b0efb1/$/GetProperty";
8468
Requests[821].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
8469
Requests[821].
Request
.Path = "/Names/904669/$/GetProperty";
8472
Requests[822].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8473
Requests[822].
Request
.Path = "/Names/861b3d/$/GetProperty";
8476
Requests[823].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8477
Requests[823].
Request
.Path = "/Names/2fcefb/$/GetSubNames";
8480
Requests[824].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8481
Requests[824].
Request
.Path = "/Nodes/c4b39a13/$/Activate";
8484
Requests[825].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8485
Requests[825].
Request
.Path = "/Nodes/85caf970/$/Deactivate";
8488
Requests[826].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8489
Requests[826].
Request
.Path = "/Nodes/e67a7b50/$/DeployServicePackage";
8492
Requests[827].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8493
Requests[827].
Request
.Path = "/Nodes/5a1efdd7/$/GetApplications";
8496
Requests[828].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8497
Requests[828].
Request
.Path = "/Nodes/0225062e/$/GetHealth";
8500
Requests[829].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8501
Requests[829].
Request
.Path = "/Nodes/f2cbc65f/$/GetHealth";
8504
Requests[830].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8505
Requests[830].
Request
.Path = "/Nodes/f78919ab/$/GetLoadInformation";
8508
Requests[831].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8509
Requests[831].
Request
.Path = "/Nodes/ee0ab328/$/RemoveNodeState";
8512
Requests[832].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8513
Requests[832].
Request
.Path = "/Nodes/40657a8f/$/ReportHealth";
8516
Requests[833].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8517
Requests[833].
Request
.Path = "/Nodes/7f776435/$/Restart";
8520
Requests[834].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8521
Requests[834].
Request
.Path = "/Nodes/66bd5a77/$/Start";
8524
Requests[835].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8525
Requests[835].
Request
.Path = "/Nodes/5bf546d1/$/Stop";
8528
Requests[836].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8529
Requests[836].
Request
.Path = "/Partitions/97f781d1-b2/$/Backup";
8532
Requests[837].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8533
Requests[837].
Request
.Path = "/Partitions/84345432-b4/$/DisableBackup";
8536
Requests[838].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8537
Requests[838].
Request
.Path = "/Partitions/adc43efd-a0/$/EnableBackup";
8540
Requests[839].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8541
Requests[839].
Request
.Path = "/Partitions/a4fdc7a7-44/$/GetBackupConfigurationInfo";
8544
Requests[840].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8545
Requests[840].
Request
.Path = "/Partitions/0fe03f5a-9a/$/GetBackupProgress";
8548
Requests[841].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8549
Requests[841].
Request
.Path = "/Partitions/0050c1a7-1e/$/GetBackups";
8552
Requests[842].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8553
Requests[842].
Request
.Path = "/Partitions/61c4bc06-7a/$/GetHealth";
8556
Requests[843].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8557
Requests[843].
Request
.Path = "/Partitions/9a9d7693-88/$/GetHealth";
8560
Requests[844].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8561
Requests[844].
Request
.Path = "/Partitions/6c80d567-d1/$/GetLoadInformation";
8564
Requests[845].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8565
Requests[845].
Request
.Path = "/Partitions/232ef6a6-3e/$/GetReplicas";
8568
Requests[846].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8569
Requests[846].
Request
.Path = "/Partitions/b3cc5c40-4a/$/GetRestoreProgress";
8572
Requests[847].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8573
Requests[847].
Request
.Path = "/Partitions/f060aaab-56/$/GetServiceName";
8576
Requests[848].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8577
Requests[848].
Request
.Path = "/Partitions/42ac866e-69/$/Recover";
8580
Requests[849].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8581
Requests[849].
Request
.Path = "/Partitions/9052d799-d2/$/ReportHealth";
8584
Requests[850].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8585
Requests[850].
Request
.Path = "/Partitions/99025638-96/$/ResetLoad";
8588
Requests[851].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8589
Requests[851].
Request
.Path = "/Partitions/562b58e5-9b/$/Restore";
8592
Requests[852].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8593
Requests[852].
Request
.Path = "/Partitions/7ec7070a-b7/$/ResumeBackup";
8596
Requests[853].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8597
Requests[853].
Request
.Path = "/Partitions/939b61a8-e9/$/SuspendBackup";
8600
Requests[854].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8601
Requests[854].
Request
.Path = "/projects/26bcc9a7-/images/files";
8604
Requests[855].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8605
Requests[855].
Request
.Path = "/projects/be82b800-/images/id";
8608
Requests[856].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8609
Requests[856].
Request
.Path = "/projects/0ac8c21b-/images/predictions";
8612
Requests[857].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
8613
Requests[857].
Request
.Path = "/projects/4560e2be-/images/regions";
8616
Requests[858].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8617
Requests[858].
Request
.Path = "/projects/3b40e5ec-/images/regions";
8620
Requests[859].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8621
Requests[859].
Request
.Path = "/projects/5a1a8f9e-/images/tagged";
8624
Requests[860].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
8625
Requests[860].
Request
.Path = "/projects/b1d78b4a-/images/tags";
8628
Requests[861].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8629
Requests[861].
Request
.Path = "/projects/11917603-/images/tags";
8632
Requests[862].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8633
Requests[862].
Request
.Path = "/projects/e5253ed6-/images/untagged";
8636
Requests[863].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8637
Requests[863].
Request
.Path = "/projects/cdaa0b04-/images/urls";
8640
Requests[864].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8641
Requests[864].
Request
.Path = "/projects/e1d4e435-/predictions/query";
8644
Requests[865].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8645
Requests[865].
Request
.Path = "/projects/562348bb-/quicktest/image";
8648
Requests[866].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8649
Requests[866].
Request
.Path = "/projects/113b1986-/quicktest/url";
8652
Requests[867].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8653
Requests[867].
Request
.Path = "/Services/ab575683-/$/Delete";
8656
Requests[868].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8657
Requests[868].
Request
.Path = "/Services/23376534-/$/DisableBackup";
8660
Requests[869].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8661
Requests[869].
Request
.Path = "/Services/d4095803-/$/EnableBackup";
8664
Requests[870].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8665
Requests[870].
Request
.Path = "/Services/0431d2a4-/$/GetApplicationName";
8668
Requests[871].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8669
Requests[871].
Request
.Path = "/Services/bff31263-/$/GetBackupConfigurationInfo";
8672
Requests[872].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8673
Requests[872].
Request
.Path = "/Services/e2a9d29d-/$/GetBackups";
8676
Requests[873].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8677
Requests[873].
Request
.Path = "/Services/86ac9864-/$/GetDescription";
8680
Requests[874].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8681
Requests[874].
Request
.Path = "/Services/6fc8ba32-/$/GetHealth";
8684
Requests[875].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8685
Requests[875].
Request
.Path = "/Services/e524bd5b-/$/GetHealth";
8688
Requests[876].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8689
Requests[876].
Request
.Path = "/Services/ac25d8af-/$/GetPartitions";
8692
Requests[877].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8693
Requests[877].
Request
.Path = "/Services/521379e0-/$/ReportHealth";
8696
Requests[878].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8697
Requests[878].
Request
.Path = "/Services/7e924ad0-/$/ResolvePartition";
8700
Requests[879].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8701
Requests[879].
Request
.Path = "/Services/4f6bcf02-/$/ResumeBackup";
8704
Requests[880].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8705
Requests[880].
Request
.Path = "/Services/c4066929-/$/SuspendBackup";
8708
Requests[881].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8709
Requests[881].
Request
.Path = "/Services/7ad3bf49-/$/Update";
8712
Requests[882].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8713
Requests[882].
Request
.Path = "/tenant/5f6fc501-3/git/regeneratePrimaryKey";
8716
Requests[883].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8717
Requests[883].
Request
.Path = "/tenant/07f9ea58-f/git/regenerateSecondaryKey";
8720
Requests[884].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8721
Requests[884].
Request
.Path = "/projects/54dec105-/images/tagged/count";
8724
Requests[885].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8725
Requests[885].
Request
.Path = "/projects/3f6ddd0e-/images/untagged/count";
8728
Requests[886].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8729
Requests[886].
Request
.Path = "/subscriptions/0a5a0c6d-71f0-/providers/Microsoft.AAD/domainServices";
8732
Requests[887].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8733
Requests[887].
Request
.Path = "/subscriptions/fb7e38ea-cddd-/providers/Microsoft.Advisor/configurations";
8736
Requests[888].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
8737
Requests[888].
Request
.Path = "/subscriptions/46b22cf9-858e-/providers/Microsoft.Advisor/configurations";
8740
Requests[889].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8741
Requests[889].
Request
.Path = "/subscriptions/21b6ffc4-40da-/providers/Microsoft.Advisor/generateRecommendations";
8744
Requests[890].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8745
Requests[890].
Request
.Path = "/subscriptions/1264f84b-d223-/providers/Microsoft.Advisor/recommendations";
8748
Requests[891].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8749
Requests[891].
Request
.Path = "/subscriptions/af225166-5f40-/providers/Microsoft.Advisor/suppressions";
8752
Requests[892].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8753
Requests[892].
Request
.Path = "/subscriptions/a2918165-b0b2-/providers/Microsoft.AnalysisServices/servers";
8756
Requests[893].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8757
Requests[893].
Request
.Path = "/subscriptions/c13257a4-e1be-/providers/Microsoft.AnalysisServices/skus";
8760
Requests[894].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8761
Requests[894].
Request
.Path = "/subscriptions/258d12b1-72f2-/providers/Microsoft.ApiManagement/checkNameAvailability";
8764
Requests[895].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8765
Requests[895].
Request
.Path = "/subscriptions/901e692f-e538-/providers/Microsoft.ApiManagement/service";
8768
Requests[896].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8769
Requests[896].
Request
.Path = "/subscriptions/0bdb0c4d-b319-/providers/Microsoft.Authorization/classicAdministrators";
8772
Requests[897].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8773
Requests[897].
Request
.Path = "/subscriptions/7ec58203-f3da-/providers/Microsoft.Authorization/locks";
8776
Requests[898].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8777
Requests[898].
Request
.Path = "/subscriptions/453decbc-11e9-/providers/Microsoft.Authorization/policyAssignments";
8780
Requests[899].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8781
Requests[899].
Request
.Path = "/subscriptions/6841c237-6a91-/providers/Microsoft.Authorization/policyDefinitions";
8784
Requests[900].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8785
Requests[900].
Request
.Path = "/subscriptions/e4ad2fbb-317b-/providers/Microsoft.Authorization/policySetDefinitions";
8788
Requests[901].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8789
Requests[901].
Request
.Path = "/subscriptions/d9d4352e-2e35-/providers/Microsoft.Authorization/roleAssignments";
8792
Requests[902].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8793
Requests[902].
Request
.Path = "/subscriptions/1c5fbf85-2b5c-/providers/Microsoft.Automation/automationAccounts";
8796
Requests[903].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8797
Requests[903].
Request
.Path = "/subscriptions/d489737f-5ebd-/providers/Microsoft.Batch/batchAccounts";
8800
Requests[904].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8801
Requests[904].
Request
.Path = "/subscriptions/95368823-be35-/providers/Microsoft.BatchAI/clusters";
8804
Requests[905].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8805
Requests[905].
Request
.Path = "/subscriptions/01e71765-c032-/providers/Microsoft.BatchAI/fileServers";
8808
Requests[906].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8809
Requests[906].
Request
.Path = "/subscriptions/066ba07b-f9e8-/providers/Microsoft.BatchAI/jobs";
8812
Requests[907].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8813
Requests[907].
Request
.Path = "/subscriptions/e30ac44d-1763-/providers/Microsoft.BatchAI/workspaces";
8816
Requests[908].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8817
Requests[908].
Request
.Path = "/subscriptions/2d0503b6-58e1-/providers/Microsoft.Billing/billingPeriods";
8820
Requests[909].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8821
Requests[909].
Request
.Path = "/subscriptions/aebd7110-1360-/providers/Microsoft.Billing/invoices";
8824
Requests[910].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8825
Requests[910].
Request
.Path = "/subscriptions/329c7408-368e-/providers/Microsoft.BotService/botServices";
8828
Requests[911].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8829
Requests[911].
Request
.Path = "/subscriptions/43381579-d824-/providers/Microsoft.Cache/CheckNameAvailability";
8832
Requests[912].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8833
Requests[912].
Request
.Path = "/subscriptions/8cc1a5b5-64be-/providers/Microsoft.Cache/Redis";
8836
Requests[913].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8837
Requests[913].
Request
.Path = "/subscriptions/eac0509e-2c39-/providers/Microsoft.Capacity/appliedReservations";
8840
Requests[914].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8841
Requests[914].
Request
.Path = "/subscriptions/bdb0b1f7-0f01-/providers/Microsoft.Capacity/catalogs";
8844
Requests[915].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8845
Requests[915].
Request
.Path = "/subscriptions/e8404501-3911-/providers/Microsoft.Cdn/checkNameAvailability";
8848
Requests[916].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8849
Requests[916].
Request
.Path = "/subscriptions/3846164b-d147-/providers/Microsoft.Cdn/checkResourceUsage";
8852
Requests[917].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8853
Requests[917].
Request
.Path = "/subscriptions/c8afe5bb-ae62-/providers/Microsoft.Cdn/profiles";
8856
Requests[918].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8857
Requests[918].
Request
.Path = "/subscriptions/285ee03a-12e4-/providers/Microsoft.Cdn/validateProbe";
8860
Requests[919].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8861
Requests[919].
Request
.Path = "/subscriptions/77f9a941-6ddb-/providers/Microsoft.CertificateRegistration/certificateOrders";
8864
Requests[920].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8865
Requests[920].
Request
.Path = "/subscriptions/c7919896-8cf6-/providers/Microsoft.CertificateRegistration/validateCertificateRegistrationInformation";
8868
Requests[921].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8869
Requests[921].
Request
.Path = "/subscriptions/dfbd3abc-6afb-/providers/Microsoft.CognitiveServices/accounts";
8872
Requests[922].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8873
Requests[922].
Request
.Path = "/subscriptions/9de165c5-a845-/providers/Microsoft.CognitiveServices/skus";
8876
Requests[923].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8877
Requests[923].
Request
.Path = "/subscriptions/4065b95b-6192-/providers/Microsoft.Commerce.Admin/subscriberUsageAggregates";
8880
Requests[924].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8881
Requests[924].
Request
.Path = "/subscriptions/0de13f8f-6274-/providers/Microsoft.Commerce.Admin/updateEncryption";
8884
Requests[925].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8885
Requests[925].
Request
.Path = "/subscriptions/ab4d1fc0-a352-/providers/Microsoft.Commerce/RateCard";
8888
Requests[926].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8889
Requests[926].
Request
.Path = "/subscriptions/b636a8ab-3a18-/providers/Microsoft.Commerce/UsageAggregates";
8892
Requests[927].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8893
Requests[927].
Request
.Path = "/subscriptions/fbeb450f-2dc2-/providers/Microsoft.Compute/disks";
8896
Requests[928].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8897
Requests[928].
Request
.Path = "/subscriptions/b44f5eb3-5952-/providers/Microsoft.Compute/galleries";
8900
Requests[929].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8901
Requests[929].
Request
.Path = "/subscriptions/4688bd31-77f6-/providers/Microsoft.Compute/images";
8904
Requests[930].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8905
Requests[930].
Request
.Path = "/subscriptions/66d35a79-eb43-/providers/Microsoft.Compute/skus";
8908
Requests[931].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8909
Requests[931].
Request
.Path = "/subscriptions/9181ace1-4b6c-/providers/Microsoft.Compute/snapshots";
8912
Requests[932].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8913
Requests[932].
Request
.Path = "/subscriptions/01445b38-3dcf-/providers/Microsoft.Compute/virtualMachines";
8916
Requests[933].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8917
Requests[933].
Request
.Path = "/subscriptions/086ae94a-d24d-/providers/Microsoft.Compute/virtualMachineScaleSets";
8920
Requests[934].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8921
Requests[934].
Request
.Path = "/subscriptions/8c26d0a3-2c27-/providers/Microsoft.Consumption/budgets";
8924
Requests[935].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8925
Requests[935].
Request
.Path = "/subscriptions/58715cc1-da0f-/providers/Microsoft.Consumption/forecasts";
8928
Requests[936].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8929
Requests[936].
Request
.Path = "/subscriptions/e6d912d5-a65f-/providers/Microsoft.Consumption/marketplaces";
8932
Requests[937].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8933
Requests[937].
Request
.Path = "/subscriptions/365acf77-7ba3-/providers/Microsoft.Consumption/reservationRecommendations";
8936
Requests[938].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8937
Requests[938].
Request
.Path = "/subscriptions/f2a30466-5f3f-/providers/Microsoft.Consumption/usageDetails";
8940
Requests[939].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8941
Requests[939].
Request
.Path = "/subscriptions/6fccc861-579c-/providers/Microsoft.ContainerInstance/containerGroups";
8944
Requests[940].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8945
Requests[940].
Request
.Path = "/subscriptions/d3e733bb-ff9a-/providers/Microsoft.ContainerRegistry/checkNameAvailability";
8948
Requests[941].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8949
Requests[941].
Request
.Path = "/subscriptions/d1d5a743-7fef-/providers/Microsoft.ContainerRegistry/registries";
8952
Requests[942].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8953
Requests[942].
Request
.Path = "/subscriptions/6565c67e-2b33-/providers/Microsoft.ContainerService/containerServices";
8956
Requests[943].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8957
Requests[943].
Request
.Path = "/subscriptions/08e683bc-ccb7-/providers/Microsoft.ContainerService/managedClusters";
8960
Requests[944].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8961
Requests[944].
Request
.Path = "/subscriptions/a3ba9879-b0ca-/providers/Microsoft.CustomerInsights/hubs";
8964
Requests[945].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8965
Requests[945].
Request
.Path = "/subscriptions/5f487c4c-0773-/providers/Microsoft.DataBox/jobs";
8968
Requests[946].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8969
Requests[946].
Request
.Path = "/subscriptions/d79f3883-1cfc-/providers/Microsoft.Databricks/workspaces";
8972
Requests[947].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8973
Requests[947].
Request
.Path = "/subscriptions/042023a8-7c2e-/providers/Microsoft.DataFactory/factories";
8976
Requests[948].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8977
Requests[948].
Request
.Path = "/subscriptions/077418d5-9cd9-/providers/Microsoft.DataLakeAnalytics/accounts";
8980
Requests[949].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8981
Requests[949].
Request
.Path = "/subscriptions/1c264d89-aae7-/providers/Microsoft.DataLakeStore/accounts";
8984
Requests[950].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8985
Requests[950].
Request
.Path = "/subscriptions/1f1db437-0ffe-/providers/Microsoft.DataMigration/services";
8988
Requests[951].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8989
Requests[951].
Request
.Path = "/subscriptions/67959fe5-ed43-/providers/Microsoft.DataMigration/skus";
8992
Requests[952].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
8993
Requests[952].
Request
.Path = "/subscriptions/c1c54da4-3a26-/providers/Microsoft.DBforMySQL/checkNameAvailability";
8996
Requests[953].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
8997
Requests[953].
Request
.Path = "/subscriptions/6db645fb-a27b-/providers/Microsoft.DBforMySQL/performanceTiers";
9000
Requests[954].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9001
Requests[954].
Request
.Path = "/subscriptions/9f5b84bd-a1b4-/providers/Microsoft.DBforMySQL/servers";
9004
Requests[955].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9005
Requests[955].
Request
.Path = "/subscriptions/30d324cb-ef20-/providers/Microsoft.DBforPostgreSQL/checkNameAvailability";
9008
Requests[956].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9009
Requests[956].
Request
.Path = "/subscriptions/6ccc3dbb-690b-/providers/Microsoft.DBforPostgreSQL/performanceTiers";
9012
Requests[957].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9013
Requests[957].
Request
.Path = "/subscriptions/5b9e5fea-63ca-/providers/Microsoft.DBforPostgreSQL/servers";
9016
Requests[958].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9017
Requests[958].
Request
.Path = "/subscriptions/08e6a542-dc6c-/providers/Microsoft.Devices/checkNameAvailability";
9020
Requests[959].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9021
Requests[959].
Request
.Path = "/subscriptions/cc01704f-1fe1-/providers/Microsoft.Devices/checkProvisioningServiceNameAvailability";
9024
Requests[960].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9025
Requests[960].
Request
.Path = "/subscriptions/62693f65-3c70-/providers/Microsoft.Devices/IotHubs";
9028
Requests[961].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9029
Requests[961].
Request
.Path = "/subscriptions/6f39740a-bd55-/providers/Microsoft.Devices/provisioningServices";
9032
Requests[962].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9033
Requests[962].
Request
.Path = "/subscriptions/ea71a529-c606-/providers/Microsoft.Devices/usages";
9036
Requests[963].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9037
Requests[963].
Request
.Path = "/subscriptions/88dbf9a4-e93a-/providers/Microsoft.DevTestLab/labs";
9040
Requests[964].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9041
Requests[964].
Request
.Path = "/subscriptions/aba6c745-cd72-/providers/Microsoft.DevTestLab/schedules";
9044
Requests[965].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9045
Requests[965].
Request
.Path = "/subscriptions/3405359b-1a86-/providers/Microsoft.DocumentDB/databaseAccounts";
9048
Requests[966].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9049
Requests[966].
Request
.Path = "/subscriptions/cdac7e69-032a-/providers/Microsoft.DomainRegistration/checkDomainAvailability";
9052
Requests[967].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9053
Requests[967].
Request
.Path = "/subscriptions/903d4f4b-a043-/providers/Microsoft.DomainRegistration/domains";
9056
Requests[968].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9057
Requests[968].
Request
.Path = "/subscriptions/b2f972a3-19e0-/providers/Microsoft.DomainRegistration/generateSsoRequest";
9060
Requests[969].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9061
Requests[969].
Request
.Path = "/subscriptions/b9d6fe3d-8ba6-/providers/Microsoft.DomainRegistration/listDomainRecommendations";
9064
Requests[970].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9065
Requests[970].
Request
.Path = "/subscriptions/a0766c86-4f20-/providers/Microsoft.DomainRegistration/topLevelDomains";
9068
Requests[971].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9069
Requests[971].
Request
.Path = "/subscriptions/30bd17e5-3b57-/providers/Microsoft.DomainRegistration/validateDomainRegistrationInformation";
9072
Requests[972].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9073
Requests[972].
Request
.Path = "/subscriptions/bebb30ec-0e1e-/providers/Microsoft.EventGrid/eventSubscriptions";
9076
Requests[973].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9077
Requests[973].
Request
.Path = "/subscriptions/aec6d0bf-e9c5-/providers/Microsoft.EventGrid/topics";
9080
Requests[974].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9081
Requests[974].
Request
.Path = "/subscriptions/a95d1545-da7e-/providers/Microsoft.EventHub/CheckNameAvailability";
9084
Requests[975].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9085
Requests[975].
Request
.Path = "/subscriptions/390d250c-4214-/providers/Microsoft.EventHub/CheckNamespaceAvailability";
9088
Requests[976].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9089
Requests[976].
Request
.Path = "/subscriptions/7c4b2982-3c2f-/providers/Microsoft.EventHub/namespaces";
9092
Requests[977].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9093
Requests[977].
Request
.Path = "/subscriptions/75a2d4e6-74d8-/providers/Microsoft.Features/features";
9096
Requests[978].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9097
Requests[978].
Request
.Path = "/subscriptions/ff5075ea-7701-/providers/microsoft.gallery.admin/galleryItems";
9100
Requests[979].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9101
Requests[979].
Request
.Path = "/subscriptions/0ac2f646-a44b-/providers/microsoft.gallery.admin/galleryItems";
9104
Requests[980].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9105
Requests[980].
Request
.Path = "/subscriptions/88d19def-4ba0-/providers/Microsoft.HanaOnAzure/hanaInstances";
9108
Requests[981].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9109
Requests[981].
Request
.Path = "/subscriptions/bd473a6f-9c00-/providers/Microsoft.HDInsight/clusters";
9112
Requests[982].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9113
Requests[982].
Request
.Path = "/subscriptions/daaf34b4-96f1-/providers/Microsoft.ImportExport/jobs";
9116
Requests[983].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9117
Requests[983].
Request
.Path = "/subscriptions/fe3bc475-72a7-/providers/microsoft.insights/actionGroups";
9120
Requests[984].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9121
Requests[984].
Request
.Path = "/subscriptions/e68c6114-ffab-/providers/microsoft.insights/activityLogAlerts";
9124
Requests[985].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9125
Requests[985].
Request
.Path = "/subscriptions/430259fd-e37b-/providers/Microsoft.Insights/components";
9128
Requests[986].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9129
Requests[986].
Request
.Path = "/subscriptions/e23417a9-cb23-/providers/microsoft.insights/listMigrationdate";
9132
Requests[987].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9133
Requests[987].
Request
.Path = "/subscriptions/afb95f48-bfa4-/providers/microsoft.insights/logprofiles";
9136
Requests[988].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9137
Requests[988].
Request
.Path = "/subscriptions/0714f45c-a049-/providers/Microsoft.Insights/metricAlerts";
9140
Requests[989].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9141
Requests[989].
Request
.Path = "/subscriptions/8e7cf130-43c4-/providers/microsoft.insights/migrateToNewPricingModel";
9144
Requests[990].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9145
Requests[990].
Request
.Path = "/subscriptions/cc2a16a8-e9ce-/providers/microsoft.insights/rollbackToLegacyPricingModel";
9148
Requests[991].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9149
Requests[991].
Request
.Path = "/subscriptions/e31b3661-94d7-/providers/microsoft.insights/scheduledQueryRules";
9152
Requests[992].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9153
Requests[992].
Request
.Path = "/subscriptions/a6f87413-1940-/providers/Microsoft.Insights/webtests";
9156
Requests[993].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9157
Requests[993].
Request
.Path = "/subscriptions/0f638a4c-8051-/providers/Microsoft.IoTCentral/checkNameAvailability";
9160
Requests[994].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9161
Requests[994].
Request
.Path = "/subscriptions/24da9142-d847-/providers/Microsoft.IoTCentral/IoTApps";
9164
Requests[995].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9165
Requests[995].
Request
.Path = "/subscriptions/e58b4a26-9959-/providers/Microsoft.IoTSpaces/checkNameAvailability";
9168
Requests[996].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9169
Requests[996].
Request
.Path = "/subscriptions/8360ae11-9e4b-/providers/Microsoft.IoTSpaces/Graph";
9172
Requests[997].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9173
Requests[997].
Request
.Path = "/subscriptions/c4e695d6-538f-/providers/Microsoft.KeyVault/checkNameAvailability";
9176
Requests[998].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9177
Requests[998].
Request
.Path = "/subscriptions/e7b82dca-b3f3-/providers/Microsoft.KeyVault/deletedVaults";
9180
Requests[999].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9181
Requests[999].
Request
.Path = "/subscriptions/f62ec81b-248c-/providers/Microsoft.KeyVault/vaults";
9184
Requests[1000].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9185
Requests[1000].
Request
.Path = "/subscriptions/6e6b976c-82fe-/providers/Microsoft.Logic/integrationAccounts";
9188
Requests[1001].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9189
Requests[1001].
Request
.Path = "/subscriptions/cb8a5cee-0f64-/providers/Microsoft.Logic/workflows";
9192
Requests[1002].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9193
Requests[1002].
Request
.Path = "/subscriptions/486385fd-2b23-/providers/Microsoft.MachineLearning/commitmentPlans";
9196
Requests[1003].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9197
Requests[1003].
Request
.Path = "/subscriptions/938b0efa-9eca-/providers/Microsoft.MachineLearning/skus";
9200
Requests[1004].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9201
Requests[1004].
Request
.Path = "/subscriptions/16361157-288d-/providers/Microsoft.MachineLearning/webServices";
9204
Requests[1005].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9205
Requests[1005].
Request
.Path = "/subscriptions/52fdc34a-6c10-/providers/Microsoft.MachineLearning/workspaces";
9208
Requests[1006].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9209
Requests[1006].
Request
.Path = "/subscriptions/5c89d884-3d39-/providers/Microsoft.MachineLearningCompute/operationalizationClusters";
9212
Requests[1007].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9213
Requests[1007].
Request
.Path = "/subscriptions/2c76e406-d2b1-/providers/Microsoft.MachineLearningExperimentation/accounts";
9216
Requests[1008].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9217
Requests[1008].
Request
.Path = "/subscriptions/a2fe8944-808a-/providers/Microsoft.MachineLearningServices/workspaces";
9220
Requests[1009].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9221
Requests[1009].
Request
.Path = "/subscriptions/807bb23c-6a9d-/providers/Microsoft.ManagedIdentity/userAssignedIdentities";
9224
Requests[1010].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9225
Requests[1010].
Request
.Path = "/subscriptions/c77a28f7-54f1-/providers/Microsoft.Maps/accounts";
9228
Requests[1011].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9229
Requests[1011].
Request
.Path = "/subscriptions/a58b330b-15f2-/providers/Microsoft.Media/CheckNameAvailability";
9232
Requests[1012].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9233
Requests[1012].
Request
.Path = "/subscriptions/cc0aa715-5a43-/providers/Microsoft.Media/mediaservices";
9236
Requests[1013].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9237
Requests[1013].
Request
.Path = "/subscriptions/08f789a7-81d0-/providers/Microsoft.Network.Admin/adminLoadBalancers";
9240
Requests[1014].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9241
Requests[1014].
Request
.Path = "/subscriptions/88528d53-d7fb-/providers/Microsoft.Network.Admin/adminOverview";
9244
Requests[1015].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9245
Requests[1015].
Request
.Path = "/subscriptions/11593304-b279-/providers/Microsoft.Network.Admin/adminPublicIpAddresses";
9248
Requests[1016].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9249
Requests[1016].
Request
.Path = "/subscriptions/a96762e9-f34f-/providers/Microsoft.Network.Admin/adminVirtualNetworks";
9252
Requests[1017].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9253
Requests[1017].
Request
.Path = "/subscriptions/71594e4d-64fe-/providers/Microsoft.Network/applicationGatewayAvailableWafRuleSets";
9256
Requests[1018].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9257
Requests[1018].
Request
.Path = "/subscriptions/d8252758-af67-/providers/Microsoft.Network/applicationGateways";
9260
Requests[1019].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9261
Requests[1019].
Request
.Path = "/subscriptions/68a3bd99-ac0e-/providers/Microsoft.Network/applicationSecurityGroups";
9264
Requests[1020].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9265
Requests[1020].
Request
.Path = "/subscriptions/884a681e-a255-/providers/Microsoft.Network/bgpServiceCommunities";
9268
Requests[1021].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9269
Requests[1021].
Request
.Path = "/subscriptions/963cfc45-bd9b-/providers/Microsoft.Network/ddosProtectionPlans";
9272
Requests[1022].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9273
Requests[1022].
Request
.Path = "/subscriptions/fedc37c5-f484-/providers/Microsoft.Network/dnszones";
9276
Requests[1023].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9277
Requests[1023].
Request
.Path = "/subscriptions/b035912e-9702-/providers/Microsoft.Network/expressRouteCircuits";
9280
Requests[1024].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9281
Requests[1024].
Request
.Path = "/subscriptions/88bd1b39-78bf-/providers/Microsoft.Network/expressRouteCrossConnections";
9284
Requests[1025].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9285
Requests[1025].
Request
.Path = "/subscriptions/25279605-40d1-/providers/Microsoft.Network/expressRouteServiceProviders";
9288
Requests[1026].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9289
Requests[1026].
Request
.Path = "/subscriptions/de323d9d-3676-/providers/Microsoft.Network/loadBalancers";
9292
Requests[1027].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9293
Requests[1027].
Request
.Path = "/subscriptions/852e11ab-3639-/providers/Microsoft.Network/networkInterfaces";
9296
Requests[1028].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9297
Requests[1028].
Request
.Path = "/subscriptions/62853ea7-0c8b-/providers/Microsoft.Network/networkSecurityGroups";
9300
Requests[1029].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9301
Requests[1029].
Request
.Path = "/subscriptions/bd8cb706-0640-/providers/Microsoft.Network/networkWatchers";
9304
Requests[1030].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9305
Requests[1030].
Request
.Path = "/subscriptions/74055f37-0834-/providers/Microsoft.Network/publicIPAddresses";
9308
Requests[1031].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9309
Requests[1031].
Request
.Path = "/subscriptions/af96f5eb-e9a7-/providers/Microsoft.Network/routeFilters";
9312
Requests[1032].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9313
Requests[1032].
Request
.Path = "/subscriptions/5554c946-2662-/providers/Microsoft.Network/routeTables";
9316
Requests[1033].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9317
Requests[1033].
Request
.Path = "/subscriptions/de047bdf-40fb-/providers/Microsoft.Network/trafficmanagerprofiles";
9320
Requests[1034].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9321
Requests[1034].
Request
.Path = "/subscriptions/a1f47576-2fb6-/providers/Microsoft.Network/trafficManagerUserMetricsKeys";
9324
Requests[1035].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9325
Requests[1035].
Request
.Path = "/subscriptions/8009859d-d974-/providers/Microsoft.Network/trafficManagerUserMetricsKeys";
9328
Requests[1036].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9329
Requests[1036].
Request
.Path = "/subscriptions/8424a2df-e09c-/providers/Microsoft.Network/trafficManagerUserMetricsKeys";
9332
Requests[1037].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9333
Requests[1037].
Request
.Path = "/subscriptions/28e10f36-916b-/providers/Microsoft.Network/virtualNetworks";
9336
Requests[1038].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9337
Requests[1038].
Request
.Path = "/subscriptions/4c43efb2-83df-/providers/Microsoft.NotificationHubs/checkNamespaceAvailability";
9340
Requests[1039].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9341
Requests[1039].
Request
.Path = "/subscriptions/8ba19503-53da-/providers/Microsoft.NotificationHubs/namespaces";
9344
Requests[1040].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9345
Requests[1040].
Request
.Path = "/subscriptions/ba8a95df-f742-/providers/Microsoft.OperationalInsights/linkTargets";
9348
Requests[1041].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9349
Requests[1041].
Request
.Path = "/subscriptions/bc28ee82-a370-/providers/Microsoft.OperationalInsights/workspaces";
9352
Requests[1042].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9353
Requests[1042].
Request
.Path = "/subscriptions/a2c5cce2-1cd1-/providers/Microsoft.OperationsManagement/ManagementAssociations";
9356
Requests[1043].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9357
Requests[1043].
Request
.Path = "/subscriptions/af482e37-5767-/providers/Microsoft.OperationsManagement/ManagementConfigurations";
9360
Requests[1044].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9361
Requests[1044].
Request
.Path = "/subscriptions/6769846a-79ed-/providers/Microsoft.OperationsManagement/solutions";
9364
Requests[1045].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9365
Requests[1045].
Request
.Path = "/subscriptions/ec5760af-793f-/providers/Microsoft.PowerBI/workspaceCollections";
9368
Requests[1046].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9369
Requests[1046].
Request
.Path = "/subscriptions/66125a82-b772-/providers/Microsoft.PowerBIDedicated/capacities";
9372
Requests[1047].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9373
Requests[1047].
Request
.Path = "/subscriptions/cc428b3c-67a5-/providers/Microsoft.PowerBIDedicated/skus";
9376
Requests[1048].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9377
Requests[1048].
Request
.Path = "/subscriptions/b036a651-fe3d-/providers/Microsoft.RecoveryServices/vaults";
9380
Requests[1049].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9381
Requests[1049].
Request
.Path = "/subscriptions/5d4023a3-9545-/providers/Microsoft.Relay/checkNameAvailability";
9384
Requests[1050].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9385
Requests[1050].
Request
.Path = "/subscriptions/f0a6a841-6dfd-/providers/Microsoft.Relay/namespaces";
9388
Requests[1051].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9389
Requests[1051].
Request
.Path = "/subscriptions/704a7a62-34f5-/providers/Microsoft.ResourceHealth/availabilityStatuses";
9392
Requests[1052].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9393
Requests[1052].
Request
.Path = "/subscriptions/aca08c7f-1898-/providers/Microsoft.Resources/links";
9396
Requests[1053].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9397
Requests[1053].
Request
.Path = "/subscriptions/363b10b6-bbfb-/providers/Microsoft.Scheduler/jobCollections";
9400
Requests[1054].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9401
Requests[1054].
Request
.Path = "/subscriptions/578b6017-3f04-/providers/Microsoft.Search/checkNameAvailability";
9404
Requests[1055].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9405
Requests[1055].
Request
.Path = "/subscriptions/33467e7b-db71-/providers/Microsoft.Security/alerts";
9408
Requests[1056].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9409
Requests[1056].
Request
.Path = "/subscriptions/6d986773-38ea-/providers/Microsoft.Security/autoProvisioningSettings";
9412
Requests[1057].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9413
Requests[1057].
Request
.Path = "/subscriptions/9f0401ce-0d90-/providers/Microsoft.Security/discoveredSecuritySolutions";
9416
Requests[1058].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9417
Requests[1058].
Request
.Path = "/subscriptions/90c3dc15-e5a0-/providers/Microsoft.Security/externalSecuritySolutions";
9420
Requests[1059].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9421
Requests[1059].
Request
.Path = "/subscriptions/f819e04b-bcc6-/providers/Microsoft.Security/jitNetworkAccessPolicies";
9424
Requests[1060].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9425
Requests[1060].
Request
.Path = "/subscriptions/3d25a6f3-7308-/providers/Microsoft.Security/locations";
9428
Requests[1061].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9429
Requests[1061].
Request
.Path = "/subscriptions/550c9b3c-b7f8-/providers/Microsoft.Security/pricings";
9432
Requests[1062].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9433
Requests[1062].
Request
.Path = "/subscriptions/2627c1ca-cbbd-/providers/Microsoft.Security/securityContacts";
9436
Requests[1063].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9437
Requests[1063].
Request
.Path = "/subscriptions/80a73761-56af-/providers/Microsoft.Security/tasks";
9440
Requests[1064].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9441
Requests[1064].
Request
.Path = "/subscriptions/a28076ef-1904-/providers/Microsoft.Security/workspaceSettings";
9444
Requests[1065].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9445
Requests[1065].
Request
.Path = "/subscriptions/44df1197-51b0-/providers/Microsoft.ServerManagement/gateways";
9448
Requests[1066].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9449
Requests[1066].
Request
.Path = "/subscriptions/81f9fd80-6072-/providers/Microsoft.ServerManagement/nodes";
9452
Requests[1067].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9453
Requests[1067].
Request
.Path = "/subscriptions/563cebfe-7715-/providers/Microsoft.ServiceBus/CheckNameAvailability";
9456
Requests[1068].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9457
Requests[1068].
Request
.Path = "/subscriptions/225f2890-62d2-/providers/Microsoft.ServiceBus/CheckNameSpaceAvailability";
9460
Requests[1069].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9461
Requests[1069].
Request
.Path = "/subscriptions/58f5fca4-c1ba-/providers/Microsoft.ServiceBus/namespaces";
9464
Requests[1070].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9465
Requests[1070].
Request
.Path = "/subscriptions/b014e3c8-6b2e-/providers/Microsoft.ServiceBus/premiumMessagingRegions";
9468
Requests[1071].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9469
Requests[1071].
Request
.Path = "/subscriptions/1ada5511-02db-/providers/Microsoft.ServiceFabric/clusters";
9472
Requests[1072].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9473
Requests[1072].
Request
.Path = "/subscriptions/178a5044-0490-/providers/Microsoft.SignalRService/SignalR";
9476
Requests[1073].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9477
Requests[1073].
Request
.Path = "/subscriptions/d2ea0cea-0c68-/providers/Microsoft.Solutions/appliances";
9480
Requests[1074].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9481
Requests[1074].
Request
.Path = "/subscriptions/d9ff1703-4af5-/providers/Microsoft.Solutions/applications";
9484
Requests[1075].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9485
Requests[1075].
Request
.Path = "/subscriptions/489d24e2-fef1-/providers/Microsoft.Sql/checkNameAvailability";
9488
Requests[1076].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9489
Requests[1076].
Request
.Path = "/subscriptions/7c102957-835d-/providers/Microsoft.Sql/managedInstances";
9492
Requests[1077].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9493
Requests[1077].
Request
.Path = "/subscriptions/5aee771b-ae0a-/providers/Microsoft.Sql/servers";
9496
Requests[1078].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9497
Requests[1078].
Request
.Path = "/subscriptions/40ba2598-1243-/providers/Microsoft.Storage/checkNameAvailability";
9500
Requests[1079].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9501
Requests[1079].
Request
.Path = "/subscriptions/00299657-2efd-/providers/Microsoft.Storage/skus";
9504
Requests[1080].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9505
Requests[1080].
Request
.Path = "/subscriptions/487bf093-35c4-/providers/Microsoft.Storage/storageAccounts";
9508
Requests[1081].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9509
Requests[1081].
Request
.Path = "/subscriptions/fd9fe1e6-0491-/providers/Microsoft.Storage/usages";
9512
Requests[1082].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9513
Requests[1082].
Request
.Path = "/subscriptions/132cf7a8-e639-/providers/Microsoft.StorSimple/managers";
9516
Requests[1083].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9517
Requests[1083].
Request
.Path = "/subscriptions/40557ca5-3557-/providers/Microsoft.StreamAnalytics/streamingjobs";
9520
Requests[1084].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9521
Requests[1084].
Request
.Path = "/subscriptions/58eb8c1a-41d7-/providers/Microsoft.Subscriptions.Admin/checkNameAvailability";
9524
Requests[1085].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9525
Requests[1085].
Request
.Path = "/subscriptions/d00baaa0-0a1f-/providers/Microsoft.Subscriptions.Admin/delegatedProviders";
9528
Requests[1086].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9529
Requests[1086].
Request
.Path = "/subscriptions/52cc570f-34af-/providers/Microsoft.Subscriptions.Admin/locations";
9532
Requests[1087].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9533
Requests[1087].
Request
.Path = "/subscriptions/03375967-c9e3-/providers/Microsoft.Subscriptions.Admin/moveSubscriptions";
9536
Requests[1088].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9537
Requests[1088].
Request
.Path = "/subscriptions/b6c779c3-5152-/providers/Microsoft.Subscriptions.Admin/offers";
9540
Requests[1089].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9541
Requests[1089].
Request
.Path = "/subscriptions/d69e68ff-12ac-/providers/Microsoft.Subscriptions.Admin/plans";
9544
Requests[1090].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9545
Requests[1090].
Request
.Path = "/subscriptions/6078dad4-200d-/providers/Microsoft.Subscriptions.Admin/restoreData";
9548
Requests[1091].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9549
Requests[1091].
Request
.Path = "/subscriptions/8d36d204-2cb8-/providers/Microsoft.Subscriptions.Admin/subscriptions";
9552
Requests[1092].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9553
Requests[1092].
Request
.Path = "/subscriptions/9de6f370-3bf4-/providers/Microsoft.Subscriptions.Admin/updateEncryption";
9556
Requests[1093].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9557
Requests[1093].
Request
.Path = "/subscriptions/78f48558-740a-/providers/Microsoft.Subscriptions.Admin/validateMoveSubscriptions";
9560
Requests[1094].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9561
Requests[1094].
Request
.Path = "/subscriptions/42438a11-50df-/providers/Microsoft.TimeSeriesInsights/environments";
9564
Requests[1095].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9565
Requests[1095].
Request
.Path = "/subscriptions/73f1aeed-9af5-/providers/microsoft.visualstudio/checkNameAvailability";
9568
Requests[1096].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9569
Requests[1096].
Request
.Path = "/subscriptions/0544cf4c-ff84-/providers/Microsoft.Web/availableStacks";
9572
Requests[1097].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9573
Requests[1097].
Request
.Path = "/subscriptions/04605dc7-fcb9-/providers/Microsoft.Web/billingMeters";
9576
Requests[1098].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9577
Requests[1098].
Request
.Path = "/subscriptions/a59dce8e-cbc1-/providers/Microsoft.Web/certificates";
9580
Requests[1099].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9581
Requests[1099].
Request
.Path = "/subscriptions/44d03a09-6f1b-/providers/Microsoft.Web/checknameavailability";
9584
Requests[1100].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9585
Requests[1100].
Request
.Path = "/subscriptions/574554f7-57ff-/providers/Microsoft.Web/classicMobileServices";
9588
Requests[1101].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9589
Requests[1101].
Request
.Path = "/subscriptions/e44cd816-1d24-/providers/Microsoft.Web/connectionGateways";
9592
Requests[1102].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9593
Requests[1102].
Request
.Path = "/subscriptions/b9ad6a66-c5fa-/providers/Microsoft.Web/customApis";
9596
Requests[1103].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9597
Requests[1103].
Request
.Path = "/subscriptions/015bbd01-b7cc-/providers/Microsoft.Web/deletedSites";
9600
Requests[1104].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9601
Requests[1104].
Request
.Path = "/subscriptions/7de8c312-a38f-/providers/Microsoft.Web/deploymentLocations";
9604
Requests[1105].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9605
Requests[1105].
Request
.Path = "/subscriptions/80321295-d5ec-/providers/Microsoft.Web/geoRegions";
9608
Requests[1106].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9609
Requests[1106].
Request
.Path = "/subscriptions/0b30fa81-9792-/providers/Microsoft.Web/hostingEnvironments";
9612
Requests[1107].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9613
Requests[1107].
Request
.Path = "/subscriptions/3f6c8dc7-7fe7-/providers/Microsoft.Web/ishostingenvironmentnameavailable";
9616
Requests[1108].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9617
Requests[1108].
Request
.Path = "/subscriptions/620d2dbe-be5a-/providers/Microsoft.Web/listSitesAssignedToHostName";
9620
Requests[1109].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9621
Requests[1109].
Request
.Path = "/subscriptions/4e966d1e-8db6-/providers/Microsoft.Web/managedHostingEnvironments";
9624
Requests[1110].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9625
Requests[1110].
Request
.Path = "/subscriptions/5811519a-7478-/providers/Microsoft.Web/premieraddonoffers";
9628
Requests[1111].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9629
Requests[1111].
Request
.Path = "/subscriptions/b1a9cbd9-1628-/providers/Microsoft.Web/publishingCredentials";
9632
Requests[1112].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9633
Requests[1112].
Request
.Path = "/subscriptions/d7ed5081-7a3f-/providers/Microsoft.Web/publishingCredentials";
9636
Requests[1113].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9637
Requests[1113].
Request
.Path = "/subscriptions/3ba64e9e-44af-/providers/Microsoft.Web/recommendations";
9640
Requests[1114].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9641
Requests[1114].
Request
.Path = "/subscriptions/012daf3c-e513-/providers/Microsoft.Web/resourceHealthMetadata";
9644
Requests[1115].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9645
Requests[1115].
Request
.Path = "/subscriptions/0690ec47-f1f4-/providers/Microsoft.Web/serverfarms";
9648
Requests[1116].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9649
Requests[1116].
Request
.Path = "/subscriptions/b394c8f5-8a8e-/providers/Microsoft.Web/sites";
9652
Requests[1117].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9653
Requests[1117].
Request
.Path = "/subscriptions/0f5bd1e6-6d54-/providers/Microsoft.Web/skus";
9656
Requests[1118].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9657
Requests[1118].
Request
.Path = "/subscriptions/d94b2663-3158-/providers/Microsoft.Web/verifyHostingEnvironmentVnet";
9660
Requests[1119].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9661
Requests[1119].
Request
.Path = "/Applications/e880d90d-becf/$/GetServices/$/Create";
9664
Requests[1120].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9665
Requests[1120].
Request
.Path = "/Applications/c8c7e77e-3db4/$/GetServices/$/CreateFromTemplate";
9668
Requests[1121].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9669
Requests[1121].
Request
.Path = "/Applications/52cea4ab-4850-4/$/GetServiceGroups/$/CreateServiceGroupFromTemplate";
9672
Requests[1122].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9673
Requests[1122].
Request
.Path = "/Applications/19392772-d74b-4/$/GetServices/$/CreateServiceGroup";
9676
Requests[1123].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9677
Requests[1123].
Request
.Path = "/Names/51d253/$/GetProperties/$/SubmitBatch";
9680
Requests[1124].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9681
Requests[1124].
Request
.Path = "/Services/c0b2d6f1-2d/$/GetPartitions/$/Recover";
9684
Requests[1125].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9685
Requests[1125].
Request
.Path = "/subscriptions/12aaaec1-1396-/providers/Microsoft.Billing/invoices/latest";
9688
Requests[1126].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9689
Requests[1126].
Request
.Path = "/subscriptions/d5972adf-758e-/providers/Microsoft.Consumption/pricesheets/default";
9692
Requests[1127].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9693
Requests[1127].
Request
.Path = "/subscriptions/422cb620-6073-/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default";
9696
Requests[1128].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9697
Requests[1128].
Request
.Path = "/subscriptions/b17910d7-68ad-/providers/Microsoft.Web/recommendations/reset";
9700
Requests[1129].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9701
Requests[1129].
Request
.Path = "/subscriptions/8baf4f11-8d6d-/providers/Microsoft.Addons/supportProviders/canonical/listSupportPlanInfo";
9704
Requests[1130].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9705
Requests[1130].
Request
.Path = "/subscriptions/840367a0-dc58-/providers/microsoft.insights/eventtypes/management/values";
9708
Requests[1131].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9709
Requests[1131].
Request
.Path = "/subscriptions/a6994d5f-c459-/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies";
9712
Requests[1132].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9713
Requests[1132].
Request
.Path = "/subscriptions/7e281b1b-4ec5-/providers/Microsoft.Network/applicationGatewayAvailableSslOptions/default/predefinedPolicies/7be2d30c-a335-43b5-a";
9716
Requests[1133].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9717
Requests[1133].
Request
.Path = "/subscriptions/ecabb61d-1cce-/providers/Microsoft.Advisor/generateRecommendations/9cd44b3f-6e";
9720
Requests[1134].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9721
Requests[1134].
Request
.Path = "/subscriptions/b7636d16-7f6d-/providers/Microsoft.Authorization/locks/69106483";
9724
Requests[1135].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9725
Requests[1135].
Request
.Path = "/subscriptions/917c7d55-eb3c-/providers/Microsoft.Authorization/locks/cb71102b";
9728
Requests[1136].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9729
Requests[1136].
Request
.Path = "/subscriptions/15214889-f041-/providers/Microsoft.Authorization/locks/474498eb";
9732
Requests[1137].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9733
Requests[1137].
Request
.Path = "/subscriptions/be14d324-16c4-/providers/Microsoft.Authorization/policydefinitions/cbe2dafc-1cba-44ce-b";
9736
Requests[1138].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9737
Requests[1138].
Request
.Path = "/subscriptions/ab607ff8-8d0a-/providers/Microsoft.Authorization/policydefinitions/9742ec17-4385-456b-b";
9740
Requests[1139].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9741
Requests[1139].
Request
.Path = "/subscriptions/9e36e7c1-5cd0-/providers/Microsoft.Authorization/policydefinitions/269260fe-b09d-43ca-a";
9744
Requests[1140].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9745
Requests[1140].
Request
.Path = "/subscriptions/4c3b6b1c-ab01-/providers/Microsoft.Authorization/policySetDefinitions/c69c8156-dfea-4b45-89ba";
9748
Requests[1141].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9749
Requests[1141].
Request
.Path = "/subscriptions/b4a3ccbd-932d-/providers/Microsoft.Authorization/policySetDefinitions/d1cb11eb-0759-4a62-ba3f";
9752
Requests[1142].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9753
Requests[1142].
Request
.Path = "/subscriptions/aa6fbfec-8a82-/providers/Microsoft.Authorization/policySetDefinitions/927e9faa-a5a6-4386-b5b6";
9756
Requests[1143].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9757
Requests[1143].
Request
.Path = "/subscriptions/1b088fdc-5ad9-/providers/Microsoft.Billing/billingPeriods/a35f7a7f-af53-4c4";
9760
Requests[1144].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9761
Requests[1144].
Request
.Path = "/subscriptions/153412a8-761a-/providers/Microsoft.Billing/invoices/76dd5f65-31";
9764
Requests[1145].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9765
Requests[1145].
Request
.Path = "/subscriptions/d0aa86a8-ea51-/providers/Microsoft.Consumption/budgets/607da031-b";
9768
Requests[1146].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9769
Requests[1146].
Request
.Path = "/subscriptions/3a7ee920-15e7-/providers/Microsoft.Consumption/budgets/c76b8046-5";
9772
Requests[1147].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9773
Requests[1147].
Request
.Path = "/subscriptions/0882a096-646f-/providers/Microsoft.Consumption/budgets/9fe83a9b-7";
9776
Requests[1148].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9777
Requests[1148].
Request
.Path = "/subscriptions/6e6eecf8-89c7-/providers/Microsoft.DomainRegistration/topLevelDomains/93f74";
9780
Requests[1149].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9781
Requests[1149].
Request
.Path = "/subscriptions/a13af210-d9d6-/providers/microsoft.gallery.admin/galleryItems/dcb199b0-d162-4";
9784
Requests[1150].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9785
Requests[1150].
Request
.Path = "/subscriptions/e97cf79d-d9b3-/providers/microsoft.gallery.admin/galleryItems/1ab9d654-35ed-4";
9788
Requests[1151].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9789
Requests[1151].
Request
.Path = "/subscriptions/f56f2515-1651-/providers/microsoft.insights/logprofiles/0779820c-a249-";
9792
Requests[1152].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9793
Requests[1152].
Request
.Path = "/subscriptions/7341ee3c-2ff2-/providers/microsoft.insights/logprofiles/3c216b1b-b98a-";
9796
Requests[1153].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9797
Requests[1153].
Request
.Path = "/subscriptions/a5a96ea3-4968-/providers/microsoft.insights/logprofiles/d55f94f9-cf49-";
9800
Requests[1154].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
9801
Requests[1154].
Request
.Path = "/subscriptions/7deeaa88-8218-/providers/microsoft.insights/logprofiles/cd18706f-e1e0-";
9804
Requests[1155].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9805
Requests[1155].
Request
.Path = "/subscriptions/593e6ab8-431e-/providers/Microsoft.Media/mediaservices/5ceb78a0-82";
9808
Requests[1156].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9809
Requests[1156].
Request
.Path = "/subscriptions/85813494-a0c4-/providers/Microsoft.Security/autoProvisioningSettings/15fb92d4-bc";
9812
Requests[1157].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9813
Requests[1157].
Request
.Path = "/subscriptions/6c14d1b2-9a4d-/providers/Microsoft.Security/autoProvisioningSettings/84f224eb-25";
9816
Requests[1158].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9817
Requests[1158].
Request
.Path = "/subscriptions/88947aab-740e-/providers/Microsoft.Security/locations/515cde4a-fc";
9820
Requests[1159].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9821
Requests[1159].
Request
.Path = "/subscriptions/9af58a17-db56-/providers/Microsoft.Security/pricings/b4f241d2-d4";
9824
Requests[1160].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9825
Requests[1160].
Request
.Path = "/subscriptions/0f3f0fd9-4667-/providers/Microsoft.Security/pricings/acd33713-b3";
9828
Requests[1161].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
9829
Requests[1161].
Request
.Path = "/subscriptions/5819e222-3408-/providers/Microsoft.Security/workspaceSettings/f0a65dfc-fdfb-4139-a";
9832
Requests[1162].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9833
Requests[1162].
Request
.Path = "/subscriptions/f74e7547-2d9c-/providers/Microsoft.Security/workspaceSettings/b0486deb-d442-494d-b";
9836
Requests[1163].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9837
Requests[1163].
Request
.Path = "/subscriptions/d23b1e3f-4878-/providers/Microsoft.Security/workspaceSettings/4bba79fd-c3b3-4313-9";
9840
Requests[1164].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9841
Requests[1164].
Request
.Path = "/subscriptions/8942e98a-ec49-/providers/Microsoft.Subscriptions.Admin/delegatedProviders/78eb9d3d-09f7-436";
9844
Requests[1165].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9845
Requests[1165].
Request
.Path = "/subscriptions/59f3201a-adf6-/providers/Microsoft.Subscriptions.Admin/locations/2c4f6681";
9848
Requests[1166].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9849
Requests[1166].
Request
.Path = "/subscriptions/3be1f6c9-2488-/providers/Microsoft.Subscriptions.Admin/locations/463b7911";
9852
Requests[1167].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9853
Requests[1167].
Request
.Path = "/subscriptions/476e2f21-9d89-/providers/Microsoft.Subscriptions.Admin/locations/882e1056";
9856
Requests[1168].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9857
Requests[1168].
Request
.Path = "/subscriptions/7d990185-d6ff-/providers/Microsoft.Subscriptions.Admin/subscriptions/4c4e4da2-fd7";
9860
Requests[1169].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
9861
Requests[1169].
Request
.Path = "/subscriptions/54b0f189-4e0d-/providers/Microsoft.Subscriptions.Admin/subscriptions/72befa9d-ee1";
9864
Requests[1170].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
9865
Requests[1170].
Request
.Path = "/subscriptions/a6a3dc23-95f8-/providers/Microsoft.Subscriptions.Admin/subscriptions/63f90ac2-174";
9868
Requests[1171].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9869
Requests[1171].
Request
.Path = "/subscriptions/ff246b1b-7762-/providers/Microsoft.Web/ishostingenvironmentnameavailable/8ce78";
9872
Requests[1172].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9873
Requests[1172].
Request
.Path = "/subscriptions/82aaa395-fdb1-/providers/Microsoft.Addons/supportProviders/e1d5d9df-a99/supportPlanTypes";
9876
Requests[1173].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9877
Requests[1173].
Request
.Path = "/subscriptions/23ca0b55-c790-/providers/Microsoft.AnalysisServices/locations/ad5065b1/checkNameAvailability";
9880
Requests[1174].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9881
Requests[1174].
Request
.Path = "/subscriptions/f45188dc-3938-/providers/Microsoft.Batch/locations/13509369-959/checkNameAvailability";
9884
Requests[1175].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9885
Requests[1175].
Request
.Path = "/subscriptions/52ae308d-c575-/providers/Microsoft.Batch/locations/69750529-bb9/quotas";
9888
Requests[1176].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9889
Requests[1176].
Request
.Path = "/subscriptions/5b226997-5d68-/providers/Microsoft.BatchAI/locations/a1d0edac/usages";
9892
Requests[1177].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9893
Requests[1177].
Request
.Path = "/subscriptions/e3a88556-c30e-/providers/Microsoft.CognitiveServices/locations/c89754d5/checkSkuAvailability";
9896
Requests[1178].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9897
Requests[1178].
Request
.Path = "/subscriptions/c772a4a6-8103-/providers/Microsoft.Compute.Admin/locations/a29a5771/quotas";
9900
Requests[1179].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9901
Requests[1179].
Request
.Path = "/subscriptions/6851776c-2195-/providers/Microsoft.Compute/locations/04d71dbe/publishers";
9904
Requests[1180].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9905
Requests[1180].
Request
.Path = "/subscriptions/9804e971-c872-/providers/Microsoft.Compute/locations/55854cc0/runCommands";
9908
Requests[1181].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9909
Requests[1181].
Request
.Path = "/subscriptions/173d7d9e-210a-/providers/Microsoft.Compute/locations/c59fdd8a/usages";
9912
Requests[1182].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9913
Requests[1182].
Request
.Path = "/subscriptions/e5fd702c-4c01-/providers/Microsoft.Compute/locations/1c8eaea4/vmSizes";
9916
Requests[1183].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9917
Requests[1183].
Request
.Path = "/subscriptions/29a60245-03ab-/providers/Microsoft.ContainerInstance/locations/19b3ae7b/usages";
9920
Requests[1184].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9921
Requests[1184].
Request
.Path = "/subscriptions/c0dc7c96-7f8e-/providers/Microsoft.ContainerService/locations/c7f3cd0a/orchestrators";
9924
Requests[1185].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9925
Requests[1185].
Request
.Path = "/subscriptions/5f5e97ba-f0aa-/providers/Microsoft.DataBox/locations/97996575/availableSkus";
9928
Requests[1186].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9929
Requests[1186].
Request
.Path = "/subscriptions/681775c8-ad40-/providers/Microsoft.DataBox/locations/bfaa1b6e/validateAddress";
9932
Requests[1187].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9933
Requests[1187].
Request
.Path = "/subscriptions/019f8ee8-cf83-/providers/Microsoft.DataFactory/locations/5ab27048-6/configureFactoryRepo";
9936
Requests[1188].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9937
Requests[1188].
Request
.Path = "/subscriptions/72cbf6b2-e0df-/providers/Microsoft.DataLakeAnalytics/locations/54ea6da1/capability";
9940
Requests[1189].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9941
Requests[1189].
Request
.Path = "/subscriptions/d0d3468f-afd5-/providers/Microsoft.DataLakeAnalytics/locations/7865f9a4/checkNameAvailability";
9944
Requests[1190].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9945
Requests[1190].
Request
.Path = "/subscriptions/e426a2c0-56a0-/providers/Microsoft.DataLakeStore/locations/f13cefc5/capability";
9948
Requests[1191].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9949
Requests[1191].
Request
.Path = "/subscriptions/0115253d-da3b-/providers/Microsoft.DataLakeStore/locations/5ae1bedd/checkNameAvailability";
9952
Requests[1192].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9953
Requests[1192].
Request
.Path = "/subscriptions/69e40bdb-cbd4-/providers/Microsoft.DataMigration/locations/abce2769/checkNameAvailability";
9956
Requests[1193].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9957
Requests[1193].
Request
.Path = "/subscriptions/f0648eeb-25d8-/providers/Microsoft.DataMigration/locations/98590540/usages";
9960
Requests[1194].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9961
Requests[1194].
Request
.Path = "/subscriptions/6fff6958-c45c-/providers/Microsoft.DBforMySQL/locations/1b0ae5b2-0ee/performanceTiers";
9964
Requests[1195].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9965
Requests[1195].
Request
.Path = "/subscriptions/41c9d9f8-0cfb-/providers/Microsoft.DBforPostgreSQL/locations/f820f83e-0ba/performanceTiers";
9968
Requests[1196].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9969
Requests[1196].
Request
.Path = "/subscriptions/232da203-7149-/providers/Microsoft.DomainRegistration/topLevelDomains/b6fba/listAgreements";
9972
Requests[1197].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9973
Requests[1197].
Request
.Path = "/subscriptions/7aeb7ef6-ec91-/providers/Microsoft.EventGrid/locations/d5c50d50/eventSubscriptions";
9976
Requests[1198].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9977
Requests[1198].
Request
.Path = "/subscriptions/fa4a5b5e-6cb4-/providers/Microsoft.EventGrid/topicTypes/44bc3077-09c8/eventSubscriptions";
9980
Requests[1199].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9981
Requests[1199].
Request
.Path = "/subscriptions/45a30f0f-2b6b-/providers/Microsoft.EventHub/sku/45da6/regions";
9984
Requests[1200].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9985
Requests[1200].
Request
.Path = "/subscriptions/0e72bae4-f75a-/providers/Microsoft.Features/providers/e60b13f3-8a95-4e7f-a5a5-2/features";
9988
Requests[1201].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9989
Requests[1201].
Request
.Path = "/subscriptions/9e1183c5-d083-/providers/Microsoft.HDInsight/locations/af5fa8f9/capabilities";
9992
Requests[1202].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
9993
Requests[1202].
Request
.Path = "/subscriptions/9d93061f-3d4e-/providers/Microsoft.KeyVault.Admin/locations/7a766b1c/quotas";
9996
Requests[1203].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
9997
Requests[1203].
Request
.Path = "/subscriptions/f5fcce58-c7fb-/providers/Microsoft.Media/locations/b936efb2-a94/checkNameAvailability";
10000
Requests[1204].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10001
Requests[1204].
Request
.Path = "/subscriptions/5594ecd0-eea3-/providers/Microsoft.Network.Admin/locations/83cff230/quotas";
10004
Requests[1205].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10005
Requests[1205].
Request
.Path = "/subscriptions/2c04b1ce-93c5-/providers/Microsoft.Network/locations/27f92f5c/CheckDnsNameAvailability";
10008
Requests[1206].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10009
Requests[1206].
Request
.Path = "/subscriptions/ddd702a4-0aed-/providers/Microsoft.Network/locations/09d7dac3/usages";
10012
Requests[1207].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10013
Requests[1207].
Request
.Path = "/subscriptions/483cd867-0ec9-/providers/Microsoft.Network/locations/23190e13/virtualNetworkAvailableEndpointServices";
10016
Requests[1208].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10017
Requests[1208].
Request
.Path = "/subscriptions/aedb0408-da99-/providers/Microsoft.PolicyInsights/policyEvents/49d8718f-edd8-428b-8/queryResults";
10020
Requests[1209].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10021
Requests[1209].
Request
.Path = "/subscriptions/0b6230ce-1342-/providers/Microsoft.PolicyInsights/policyStates/23dd4ef4-b14e-4aa1-a/queryResults";
10024
Requests[1210].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10025
Requests[1210].
Request
.Path = "/subscriptions/7d049a48-8342-/providers/Microsoft.PolicyInsights/policyStates/74ffc020-743d-4e09-b26f-7a1/summarize";
10028
Requests[1211].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10029
Requests[1211].
Request
.Path = "/subscriptions/cda8cf5f-f0f5-/providers/Microsoft.PowerBI/locations/007b8789/checkNameAvailability";
10032
Requests[1212].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10033
Requests[1212].
Request
.Path = "/Subscriptions/eaa315a7-97ce-/providers/Microsoft.RecoveryServices/locations/aa115313-dd/backupPreValidateProtection";
10036
Requests[1213].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10037
Requests[1213].
Request
.Path = "/Subscriptions/b1ca72f6-f840-/providers/Microsoft.RecoveryServices/locations/abe1861b-5e/backupStatus";
10040
Requests[1214].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10041
Requests[1214].
Request
.Path = "/Subscriptions/40ae1876-d1bd-/providers/Microsoft.RecoveryServices/locations/e573b393-ef/backupValidateFeatures";
10044
Requests[1215].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10045
Requests[1215].
Request
.Path = "/subscriptions/62cb44b1-cd6f-/providers/Microsoft.Security/locations/cbbd3b76-b6/alerts";
10048
Requests[1216].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10049
Requests[1216].
Request
.Path = "/subscriptions/6c3d3067-db10-/providers/Microsoft.Security/locations/8533a047-40/discoveredSecuritySolutions";
10052
Requests[1217].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10053
Requests[1217].
Request
.Path = "/subscriptions/fcbc5b49-e678-/providers/Microsoft.Security/locations/f7cc43d8-a0/ExternalSecuritySolutions";
10056
Requests[1218].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10057
Requests[1218].
Request
.Path = "/subscriptions/dcdb4710-0fc3-/providers/Microsoft.Security/locations/36ee7a64-94/jitNetworkAccessPolicies";
10060
Requests[1219].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10061
Requests[1219].
Request
.Path = "/subscriptions/2e25acd3-53b2-/providers/Microsoft.Security/locations/74f16873-1e/tasks";
10064
Requests[1220].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10065
Requests[1220].
Request
.Path = "/subscriptions/1670c796-33ed-/providers/Microsoft.ServiceBus/sku/c33a9/regions";
10068
Requests[1221].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10069
Requests[1221].
Request
.Path = "/subscriptions/7d84f0db-7b2a-/providers/Microsoft.ServiceFabric/locations/c7d55ff5/clusterVersions";
10072
Requests[1222].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10073
Requests[1222].
Request
.Path = "/subscriptions/8e08dad0-bc74-/providers/Microsoft.SignalRService/locations/c602df23/checkNameAvailability";
10076
Requests[1223].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10077
Requests[1223].
Request
.Path = "/subscriptions/38f8a807-ca80-/providers/Microsoft.Sql/locations/65797d40-85b/capabilities";
10080
Requests[1224].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10081
Requests[1224].
Request
.Path = "/subscriptions/9e9475e3-17e1-/providers/Microsoft.Sql/locations/609e5648-188/longTermRetentionBackups";
10084
Requests[1225].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10085
Requests[1225].
Request
.Path = "/subscriptions/e74a01ba-376c-/providers/Microsoft.Sql/locations/a46e9527-573/syncDatabaseIds";
10088
Requests[1226].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10089
Requests[1226].
Request
.Path = "/subscriptions/f75e5089-75cd-/providers/Microsoft.Sql/locations/3fee117e-7b0/usages";
10092
Requests[1227].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10093
Requests[1227].
Request
.Path = "/subscriptions/fce1d849-a467-/providers/Microsoft.Storage.Admin/locations/a138dd68/quotas";
10096
Requests[1228].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10097
Requests[1228].
Request
.Path = "/subscriptions/ca438fae-ad10-/providers/Microsoft.Storage/locations/18cd438a/usages";
10100
Requests[1229].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10101
Requests[1229].
Request
.Path = "/subscriptions/74876131-9b18-/providers/Microsoft.StreamAnalytics/locations/befa5d32/quotas";
10104
Requests[1230].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10105
Requests[1230].
Request
.Path = "/subscriptions/34886381-538d-/providers/Microsoft.Subscriptions.Admin/delegatedProviders/10064dff-882b-4fa7-85c1-2305eec/offers";
10108
Requests[1231].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10109
Requests[1231].
Request
.Path = "/subscriptions/25bdfb36-5305-/providers/Microsoft.Subscriptions.Admin/locations/2528e997/quotas";
10112
Requests[1232].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10113
Requests[1232].
Request
.Path = "/subscriptions/7e593b0a-ba0d-/providers/Microsoft.Subscriptions.Admin/subscriptions/0cef82b8-1be7-4d8f-b/acquiredPlans";
10116
Requests[1233].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10117
Requests[1233].
Request
.Path = "/subscriptions/f58b1c2c-19be-/providers/Microsoft.Web/locations/029e8d30/connectionGatewayInstallations";
10120
Requests[1234].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10121
Requests[1234].
Request
.Path = "/subscriptions/3fc51542-3856-/providers/Microsoft.Web/locations/1dfd98d1/extractApiDefinitionFromWsdl";
10124
Requests[1235].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10125
Requests[1235].
Request
.Path = "/subscriptions/3be79fbf-b3bf-/providers/Microsoft.Web/locations/3051d2ac/listWsdlInterfaces";
10128
Requests[1236].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10129
Requests[1236].
Request
.Path = "/subscriptions/6d1ae875-475a-/providers/Microsoft.Web/locations/5c0cef32/managedApis";
10132
Requests[1237].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10133
Requests[1237].
Request
.Path = "/subscriptions/fbd94678-93f4-/providers/Microsoft.Web/recommendations/ce13c/disable";
10136
Requests[1238].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10137
Requests[1238].
Request
.Path = "/subscriptions/e31a83c1-9760-/providers/Microsoft.Compute.Admin/locations/0290db79/artifactTypes/platformImage";
10140
Requests[1239].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10141
Requests[1239].
Request
.Path = "/subscriptions/bbb9277b-a596-/providers/Microsoft.Compute.Admin/locations/fd7908f6/artifactTypes/VMExtension";
10144
Requests[1240].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10145
Requests[1240].
Request
.Path = "/subscriptions/9fc2a3c7-f3e7-/providers/Microsoft.Billing/billingPeriods/fe427fda-3f44-411/providers/Microsoft.Consumption/marketplaces";
10148
Requests[1241].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10149
Requests[1241].
Request
.Path = "/subscriptions/6779a0c5-7ca2-/providers/Microsoft.Billing/billingPeriods/f3cba789-3706-436/providers/Microsoft.Consumption/usageDetails";
10152
Requests[1242].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10153
Requests[1242].
Request
.Path = "/subscriptions/a7dee027-a75b-/providers/Microsoft.Compute/locations/51a00475/logAnalytics/apiAccess/getRequestRateByInterval";
10156
Requests[1243].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10157
Requests[1243].
Request
.Path = "/subscriptions/7dcae95a-b1c0-/providers/Microsoft.Compute/locations/524d7f70/logAnalytics/apiAccess/getThrottledRequests";
10160
Requests[1244].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10161
Requests[1244].
Request
.Path = "/subscriptions/a3e345aa-f69e-/providers/Microsoft.Billing/billingPeriods/87a38584-ce5e-42d/providers/Microsoft.Consumption/pricesheets/default";
10164
Requests[1245].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10165
Requests[1245].
Request
.Path = "/subscriptions/ae603476-dea0-/providers/Microsoft.Compute.Admin/locations/a3fc2a4b/artifactTypes/VMExtension/publishers/47241dea-/types/7bce3/versions/f7b97e9";
10168
Requests[1246].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10169
Requests[1246].
Request
.Path = "/subscriptions/847ff6c0-6986-/providers/Microsoft.Compute.Admin/locations/57974f77/artifactTypes/VMExtension/publishers/d1dfc936-/types/c0f29/versions/7ff6e6d";
10172
Requests[1247].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10173
Requests[1247].
Request
.Path = "/subscriptions/8ad03701-6d49-/providers/Microsoft.Compute.Admin/locations/9dc15717/artifactTypes/VMExtension/publishers/d8663ec8-/types/62bbd/versions/e1c83ef";
10176
Requests[1248].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10177
Requests[1248].
Request
.Path = "/subscriptions/fafa61c9-fa4e-/providers/Microsoft.Compute.Admin/locations/c6aab8bd/artifactTypes/platformImage/publishers/a5d3412e-/offers/f13ee/skus/392c1/versions/834015d";
10180
Requests[1249].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10181
Requests[1249].
Request
.Path = "/subscriptions/27e3d72c-a258-/providers/Microsoft.Compute.Admin/locations/5a328caf/artifactTypes/platformImage/publishers/e352a859-/offers/791a1/skus/09781/versions/7784b1a";
10184
Requests[1250].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10185
Requests[1250].
Request
.Path = "/subscriptions/800a928c-ed9d-/providers/Microsoft.Compute.Admin/locations/3387d58b/artifactTypes/platformImage/publishers/ffc1427b-/offers/2aad4/skus/1625c/versions/31ff0e5";
10188
Requests[1251].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10189
Requests[1251].
Request
.Path = "/subscriptions/618a3755-be35-/providers/Microsoft.Addons/supportProviders/b86dd8f0-f55/supportPlanTypes/40990d2b-2be";
10192
Requests[1252].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10193
Requests[1252].
Request
.Path = "/subscriptions/82d18335-e962-/providers/Microsoft.Addons/supportProviders/f099557e-1ce/supportPlanTypes/1bff69f5-acb";
10196
Requests[1253].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10197
Requests[1253].
Request
.Path = "/subscriptions/e310500c-2fc5-/providers/Microsoft.Addons/supportProviders/1d65cca4-67b/supportPlanTypes/80a8fdfc-6a5";
10200
Requests[1254].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10201
Requests[1254].
Request
.Path = "/subscriptions/8e53c8c3-df61-/providers/Microsoft.AnalysisServices/locations/cccf18bb/operationresults/34c5c5c9-1b";
10204
Requests[1255].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10205
Requests[1255].
Request
.Path = "/subscriptions/cd310a06-04ce-/providers/Microsoft.AnalysisServices/locations/ed735194/operationstatuses/4fdd5326-ba";
10208
Requests[1256].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10209
Requests[1256].
Request
.Path = "/subscriptions/2427095f-4c5a-/providers/Microsoft.Compute.Admin/locations/f100ce16/quotas/cbdf79ba-";
10212
Requests[1257].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10213
Requests[1257].
Request
.Path = "/subscriptions/400b3846-23c3-/providers/Microsoft.Compute.Admin/locations/821c1095/quotas/4a3ea1ce-";
10216
Requests[1258].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10217
Requests[1258].
Request
.Path = "/subscriptions/73032fec-5cac-/providers/Microsoft.Compute.Admin/locations/9a4a4000/quotas/6e564043-";
10220
Requests[1259].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10221
Requests[1259].
Request
.Path = "/subscriptions/740effd5-12ce-/providers/Microsoft.Compute/locations/6c9beb72/runCommands/7fa1b14c-";
10224
Requests[1260].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10225
Requests[1260].
Request
.Path = "/subscriptions/b4bef99b-4b7e-/providers/Microsoft.DevTestLab/locations/43cfb089-2cc/operations/5eb52";
10228
Requests[1261].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10229
Requests[1261].
Request
.Path = "/subscriptions/e4e683a1-23bc-/providers/Microsoft.Features/providers/22fae324-c430-4ef1-8ef4-2/features/147124b9-12";
10232
Requests[1262].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10233
Requests[1262].
Request
.Path = "/subscriptions/9460f76f-a798-/providers/Microsoft.KeyVault/locations/a56cca37/deletedVaults/4085e18f-";
10236
Requests[1263].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10237
Requests[1263].
Request
.Path = "/subscriptions/621077fc-0787-/providers/Microsoft.Network.Admin/locations/261b5c6e/quotas/c88fe1f5-2a6";
10240
Requests[1264].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10241
Requests[1264].
Request
.Path = "/subscriptions/e570c9eb-24e9-/providers/Microsoft.Network.Admin/locations/e7c26217/quotas/ca1152f5-b5f";
10244
Requests[1265].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10245
Requests[1265].
Request
.Path = "/subscriptions/9467d9e6-cfec-/providers/Microsoft.Network.Admin/locations/79b5e320/quotas/ca8158a9-cbe";
10248
Requests[1266].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10249
Requests[1266].
Request
.Path = "/subscriptions/ece6fbaf-a429-/providers/Microsoft.Security/locations/0ca497f9-34/alerts/1d19e947-";
10252
Requests[1267].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10253
Requests[1267].
Request
.Path = "/subscriptions/6042b579-a059-/providers/Microsoft.Security/locations/861eaec5-98/tasks/db3ef89d";
10256
Requests[1268].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10257
Requests[1268].
Request
.Path = "/subscriptions/1111c27a-e0d2-/providers/Microsoft.ServiceFabric/locations/a79b3aa2/clusterVersions/3d9a5d7f-4890-";
10260
Requests[1269].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10261
Requests[1269].
Request
.Path = "/subscriptions/c415ba33-0245-/providers/Microsoft.Sql/locations/8976679b-061/usages/7e36fe5e-";
10264
Requests[1270].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10265
Requests[1270].
Request
.Path = "/subscriptions/d10f8ac7-dd69-/providers/Microsoft.Storage.Admin/locations/d5d5aed9/quotas/7c806e9d-";
10268
Requests[1271].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10269
Requests[1271].
Request
.Path = "/subscriptions/6df50e18-8b28-/providers/Microsoft.Storage.Admin/locations/d1ba55b6/quotas/810c6e91-";
10272
Requests[1272].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10273
Requests[1272].
Request
.Path = "/subscriptions/2dff9e60-5c57-/providers/Microsoft.Storage.Admin/locations/d945e13a/quotas/aa757c51-";
10276
Requests[1273].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10277
Requests[1273].
Request
.Path = "/subscriptions/78c8551b-345d-/providers/Microsoft.Subscriptions.Admin/delegatedProviders/a96fdb40-fbb5-46eb-b84d-221284e/offers/b51f6";
10280
Requests[1274].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10281
Requests[1274].
Request
.Path = "/subscriptions/a0082974-aee0-/providers/Microsoft.Subscriptions.Admin/locations/65febca0/quotas/6e06b";
10284
Requests[1275].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10285
Requests[1275].
Request
.Path = "/subscriptions/73e538cd-79f9-/providers/Microsoft.Subscriptions.Admin/subscriptions/da1ba285-f5fa-43e1-8/acquiredPlans/a922ba2b-d02d-404";
10288
Requests[1276].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10289
Requests[1276].
Request
.Path = "/subscriptions/737e3704-2800-/providers/Microsoft.Subscriptions.Admin/subscriptions/42f16d26-425f-4cda-9/acquiredPlans/947e3223-87a1-447";
10292
Requests[1277].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10293
Requests[1277].
Request
.Path = "/subscriptions/2c21f8ce-a002-/providers/Microsoft.Subscriptions.Admin/subscriptions/102e563d-9d43-4071-8/acquiredPlans/a8f52a19-f31d-402";
10296
Requests[1278].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10297
Requests[1278].
Request
.Path = "/subscriptions/fa1cd062-a6f4-/providers/Microsoft.Web/locations/82aa7c72/connectionGatewayInstallations/274f1114-";
10300
Requests[1279].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10301
Requests[1279].
Request
.Path = "/subscriptions/6d780efb-6f48-/providers/Microsoft.Web/locations/232d7dad/managedApis/8928d6b";
10304
Requests[1280].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10305
Requests[1280].
Request
.Path = "/subscriptions/bf44e162-a8c5-/providers/Microsoft.EventGrid/locations/4115ac8f/topicTypes/e1691906-750f/eventSubscriptions";
10308
Requests[1281].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10309
Requests[1281].
Request
.Path = "/subscriptions/7433fc16-3826-/providers/Microsoft.Features/providers/4100c1e6-2587-4035-a3b6-c/features/7fa2776a-cc/register";
10312
Requests[1282].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10313
Requests[1282].
Request
.Path = "/subscriptions/240db3d2-4461-/providers/Microsoft.KeyVault/locations/db42eff9/deletedVaults/5576afe0-/purge";
10316
Requests[1283].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10317
Requests[1283].
Request
.Path = "/subscriptions/4f7972b9-093a-/providers/Microsoft.ServiceFabric/locations/89d680e8/environments/82885d71-e2/clusterVersions";
10320
Requests[1284].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10321
Requests[1284].
Request
.Path = "/subscriptions/b5cbefab-d37c-/providers/Microsoft.Sql/locations/cc585d41-2f9/longTermRetentionServers/e8d8cb85-9044-4273-827e-929/longTermRetentionBackups";
10324
Requests[1285].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10325
Requests[1285].
Request
.Path = "/subscriptions/e99c0139-3f32-/providers/Microsoft.Sql/locations/bc670500-912/managedDatabaseRestoreAzureAsyncOperation/0871537b-29/completeRestore";
10328
Requests[1286].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10329
Requests[1286].
Request
.Path = "/subscriptions/41726a57-e575-/providers/Microsoft.Compute/locations/3af588e2/publishers/0efe529d-c4d3/artifacttypes/vmextension/types";
10332
Requests[1287].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10333
Requests[1287].
Request
.Path = "/subscriptions/ea8e8d47-56ca-/providers/Microsoft.Compute/locations/35bb3a82/publishers/7529e227-6d57/artifacttypes/vmimage/offers";
10336
Requests[1288].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10337
Requests[1288].
Request
.Path = "/subscriptions/19a5adfe-ab65-/providers/Microsoft.Compute/locations/c990531e/publishers/a5b79c76-3d24/artifacttypes/vmextension/types/fc9df/versions";
10340
Requests[1289].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10341
Requests[1289].
Request
.Path = "/subscriptions/887d3177-81e1-/providers/Microsoft.Compute/locations/7fa0ef95/publishers/d8b3c5f5-325c/artifacttypes/vmimage/offers/c6c33/skus";
10344
Requests[1290].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10345
Requests[1290].
Request
.Path = "/subscriptions/0cef3769-3c9e-/providers/Microsoft.Compute/locations/d881fbe3/publishers/26c70639-92c0/artifacttypes/vmextension/types/df543/versions/3a45b0a";
10348
Requests[1291].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10349
Requests[1291].
Request
.Path = "/subscriptions/adee9e3b-d0d1-/providers/Microsoft.Compute/locations/2eba8a9e/publishers/a32fa8ca-46c1/artifacttypes/vmimage/offers/1abaf/skus/ae9c8/versions";
10352
Requests[1292].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10353
Requests[1292].
Request
.Path = "/subscriptions/8fe6e117-b734-/providers/Microsoft.Compute/locations/773c293f/publishers/30581879-914c/artifacttypes/vmimage/offers/06217/skus/0a4e1/versions/5dd8af2";
10356
Requests[1293].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10357
Requests[1293].
Request
.Path = "/subscriptions/ac653c91-e804-/providers/Microsoft.ServiceFabric/locations/e9be59c0/environments/478a0b9d-6c/clusterVersions/4345a391-5b8d-";
10360
Requests[1294].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10361
Requests[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";
10364
Requests[1295].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10365
Requests[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";
10368
Requests[1296].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10369
Requests[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";
10372
Requests[1297].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10373
Requests[1297].
Request
.Path = "/subscriptions/db248ffb-0142-/providers/Microsoft.MarketplaceOrdering/offerTypes/48ce2c53-/publishers/640b9ed0-21/offers/b3f7c09/plans/0ce23d/agreements/current";
10376
Requests[1298].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10377
Requests[1298].
Request
.Path = "/subscriptions/a6ace3df-05ab-/providers/Microsoft.MarketplaceOrdering/offerTypes/efb17a6d-/publishers/a33375d7-13/offers/11f1103/plans/9ee020/agreements/current";
10380
Requests[1299].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10381
Requests[1299].
Request
.Path = "/subscriptions/f464e38e-3898-/providers/Microsoft.Security/locations/6799ad98-1c/alerts/2406a70e-/b4680df5-acab-4ea5-b5";
10384
Requests[1300].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10385
Requests[1300].
Request
.Path = "/subscriptions/157317b7-31d2-/providers/Microsoft.Security/locations/324c7b61-89/tasks/f8e17844/2c920d64-ed85-497c-a";
10388
Requests[1301].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10389
Requests[1301].
Request
.Path = "/Applications/ed70163f-f886/$/GetServices/f7176267-";
10392
Requests[1302].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10393
Requests[1302].
Request
.Path = "/ApplicationTypes/7d0410bf-12af-4393-/$/GetServiceTypes/36bbb739-9f01-4";
10396
Requests[1303].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10397
Requests[1303].
Request
.Path = "/Nodes/c46b55b8/$/GetApplications/12835253-d346";
10400
Requests[1304].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10401
Requests[1304].
Request
.Path = "/Partitions/b36c29e6-61/$/GetReplicas/b972814d-";
10404
Requests[1305].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10405
Requests[1305].
Request
.Path = "/Services/4e67d636-d9/$/GetPartitions/c2142d3a-fb";
10408
Requests[1306].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10409
Requests[1306].
Request
.Path = "/Applications/f5b4fe26-35f3-4/$/GetServiceGroups/874e9054-09/$/Delete";
10412
Requests[1307].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10413
Requests[1307].
Request
.Path = "/Applications/de7f11f0-46f4-4/$/GetServices/b6b22bef-e7/$/GetServiceGroupDescription";
10416
Requests[1308].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10417
Requests[1308].
Request
.Path = "/Applications/642c4f21-656f-4/$/GetServices/09d5461d-97/$/GetServiceGroupMembers";
10420
Requests[1309].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10421
Requests[1309].
Request
.Path = "/Applications/2d4ddc02-11f0-4/$/GetServices/74f6e040-a9/$/UpdateServiceGroup";
10424
Requests[1310].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10425
Requests[1310].
Request
.Path = "/Nodes/345739d6/$/GetApplications/3a36c19e-dcd4/$/GetCodePackages";
10428
Requests[1311].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10429
Requests[1311].
Request
.Path = "/Nodes/d21b4423/$/GetApplications/a2d0c987-c96a/$/GetHealth";
10432
Requests[1312].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10433
Requests[1312].
Request
.Path = "/Nodes/28902ce3/$/GetApplications/960875f3-673f/$/GetHealth";
10436
Requests[1313].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10437
Requests[1313].
Request
.Path = "/Nodes/b19c90c2/$/GetApplications/eb25509e-1f0f/$/GetReplicas";
10440
Requests[1314].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10441
Requests[1314].
Request
.Path = "/Nodes/72907a77/$/GetApplications/92353823-f1bf/$/GetServicePackages";
10444
Requests[1315].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10445
Requests[1315].
Request
.Path = "/Nodes/762f5953/$/GetApplications/cd7051b7-29ae/$/GetServiceTypes";
10448
Requests[1316].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10449
Requests[1316].
Request
.Path = "/Nodes/f70232c3/$/GetApplications/a916cb37-f6ef/$/ReportHealth";
10452
Requests[1317].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10453
Requests[1317].
Request
.Path = "/Nodes/ef5b5371/$/GetPartitions/28ce57ac-bd/$/GetReplicas";
10456
Requests[1318].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10457
Requests[1318].
Request
.Path = "/Partitions/bf1e504f-b8/$/GetReplicas/87513de2-/$/GetHealth";
10460
Requests[1319].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10461
Requests[1319].
Request
.Path = "/Partitions/d4c9f4ac-eb/$/GetReplicas/a8146dde-/$/GetHealth";
10464
Requests[1320].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10465
Requests[1320].
Request
.Path = "/Partitions/d77a2929-e6/$/GetReplicas/ea1245b1-/$/GetLoadInformation";
10468
Requests[1321].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10469
Requests[1321].
Request
.Path = "/Partitions/a17199a4-6b/$/GetReplicas/b5a3df2e-/$/ReportHealth";
10472
Requests[1322].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10473
Requests[1322].
Request
.Path = "/Nodes/028bca86/$/GetApplications/94c4fcb7-484c/$/GetCodePackages/$/ContainerApi";
10476
Requests[1323].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10477
Requests[1323].
Request
.Path = "/Nodes/cf8b94ca/$/GetApplications/74b2ce3b-e687/$/GetCodePackages/$/ContainerLogs";
10480
Requests[1324].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10481
Requests[1324].
Request
.Path = "/Nodes/b612ca60/$/GetApplications/976b7eaa-f24d/$/GetCodePackages/$/Restart";
10484
Requests[1325].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10485
Requests[1325].
Request
.Path = "/Nodes/29b98a7b/$/GetApplications/1c7060e6-f8cf/$/GetServicePackages/a19f61d5-8402-4eb2";
10488
Requests[1326].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10489
Requests[1326].
Request
.Path = "/Nodes/6aa346f5/$/GetApplications/6513be00-97b7/$/GetServiceTypes/268e2f73-6aa3-4";
10492
Requests[1327].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10493
Requests[1327].
Request
.Path = "/Nodes/9ae4054f/$/GetApplications/843f8441-8a59/$/GetServicePackages/013371c7-fe95-45b3/$/GetHealth";
10496
Requests[1328].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10497
Requests[1328].
Request
.Path = "/Nodes/8bffb32e/$/GetApplications/5bed31a5-f9f9/$/GetServicePackages/02b41713-4d20-457a/$/GetHealth";
10500
Requests[1329].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10501
Requests[1329].
Request
.Path = "/Nodes/0039743b/$/GetApplications/50789cfb-795d/$/GetServicePackages/05ede1e9-6ea1-4492/$/ReportHealth";
10504
Requests[1330].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10505
Requests[1330].
Request
.Path = "/Nodes/0922065e/$/GetPartitions/07c1c584-1b/$/GetReplicas/d652aa5f-/$/Delete";
10508
Requests[1331].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10509
Requests[1331].
Request
.Path = "/Nodes/e2afd9f0/$/GetPartitions/816555eb-4e/$/GetReplicas/5f6a5a2f-/$/GetDetail";
10512
Requests[1332].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10513
Requests[1332].
Request
.Path = "/Nodes/0c179a33/$/GetPartitions/d1165342-b7/$/GetReplicas/2c4fdbd6-/$/Restart";
10516
Requests[1333].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10517
Requests[1333].
Request
.Path = "/apis/f2c95/operations/17eaf31f-12";
10520
Requests[1334].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10521
Requests[1334].
Request
.Path = "/apis/66f43/operations/00815541-88";
10524
Requests[1335].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
10525
Requests[1335].
Request
.Path = "/apis/f45d7/operations/697af956-b9";
10528
Requests[1336].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10529
Requests[1336].
Request
.Path = "/apis/b2bf5/operations/9b74f183-e4";
10532
Requests[1337].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10533
Requests[1337].
Request
.Path = "/apis/581f7/policies/54f5d99f";
10536
Requests[1338].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10537
Requests[1338].
Request
.Path = "/apis/163ec/policies/1dcd59be";
10540
Requests[1339].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10541
Requests[1339].
Request
.Path = "/apis/8a89c/policies/3700c79f";
10544
Requests[1340].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10545
Requests[1340].
Request
.Path = "/apis/ec08c/schemas/61e3a8f5";
10548
Requests[1341].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10549
Requests[1341].
Request
.Path = "/apis/4e90b/schemas/bdec81c9";
10552
Requests[1342].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10553
Requests[1342].
Request
.Path = "/apis/0a351/schemas/10a5bc54";
10556
Requests[1343].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10557
Requests[1343].
Request
.Path = "/apps/63813/events/cbdb18bb-";
10560
Requests[1344].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10561
Requests[1344].
Request
.Path = "/apps/1e10e/metrics/f50f9df2";
10564
Requests[1345].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10565
Requests[1345].
Request
.Path = "/apps/4f105/versions/bbc71dda-";
10568
Requests[1346].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10569
Requests[1346].
Request
.Path = "/apps/598b4/versions/18d34fe4-";
10572
Requests[1347].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10573
Requests[1347].
Request
.Path = "/apps/1376d/versions/e8e4cafb-";
10576
Requests[1348].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10577
Requests[1348].
Request
.Path = "/delegatedProviders/55ad106d-a4f6-40d1-/offers/cdda69b0-";
10580
Requests[1349].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10581
Requests[1349].
Request
.Path = "/deletedstorage/351d3d69-0c43-49f8-b/sas/93d5537d-0a1c-4f5c-";
10584
Requests[1350].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10585
Requests[1350].
Request
.Path = "/facelists/843eb893-9/persistedFaces/2373e0cd-330b-4";
10588
Requests[1351].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10589
Requests[1351].
Request
.Path = "/groups/4e82b5d/users/85dd0";
10592
Requests[1352].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10593
Requests[1352].
Request
.Path = "/groups/26e2722/users/81405";
10596
Requests[1353].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10597
Requests[1353].
Request
.Path = "/jobs/87bef/tasks/d55658";
10600
Requests[1354].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10601
Requests[1354].
Request
.Path = "/jobs/e7a5d/tasks/96f0d6";
10604
Requests[1355].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10605
Requests[1355].
Request
.Path = "/jobs/533fe/tasks/65c5cb";
10608
Requests[1356].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10609
Requests[1356].
Request
.Path = "/persongroups/b1b71c4a-4a33/persons/111fffa2";
10612
Requests[1357].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
10613
Requests[1357].
Request
.Path = "/persongroups/51c96583-bbd3/persons/cafb8ee3";
10616
Requests[1358].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10617
Requests[1358].
Request
.Path = "/persongroups/09cb77eb-a357/persons/6b475c68";
10620
Requests[1359].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10621
Requests[1359].
Request
.Path = "/pools/351e51/nodes/8a86cb";
10624
Requests[1360].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10625
Requests[1360].
Request
.Path = "/products/122d56fe-/apis/3f551";
10628
Requests[1361].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10629
Requests[1361].
Request
.Path = "/products/155a381a-/apis/077e7";
10632
Requests[1362].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10633
Requests[1362].
Request
.Path = "/products/1dc0446a-/groups/ae08e25";
10636
Requests[1363].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10637
Requests[1363].
Request
.Path = "/products/6cf8dfef-/groups/689d271";
10640
Requests[1364].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10641
Requests[1364].
Request
.Path = "/products/9aacee11-/policies/e1c02d0b";
10644
Requests[1365].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10645
Requests[1365].
Request
.Path = "/products/341e764c-/policies/8c54cf47";
10648
Requests[1366].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10649
Requests[1366].
Request
.Path = "/products/3b778fa1-/policies/d740c035";
10652
Requests[1367].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10653
Requests[1367].
Request
.Path = "/projects/7bde34e5-/iterations/b8b1cfef-c2";
10656
Requests[1368].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
10657
Requests[1368].
Request
.Path = "/projects/0dea1c1d-/iterations/ab59f5cc-4b";
10660
Requests[1369].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10661
Requests[1369].
Request
.Path = "/projects/ee7a14bf-/iterations/42461e85-27";
10664
Requests[1370].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10665
Requests[1370].
Request
.Path = "/projects/7ac42682-/tags/f8dce";
10668
Requests[1371].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
10669
Requests[1371].
Request
.Path = "/projects/18347b5b-/tags/1b894";
10672
Requests[1372].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10673
Requests[1372].
Request
.Path = "/projects/dfccf1e9-/tags/59527";
10676
Requests[1373].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
10677
Requests[1373].
Request
.Path = "/storage/9cfd8322-ab57-4979-9/sas/3d259dd5-00ae-479a-";
10680
Requests[1374].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10681
Requests[1374].
Request
.Path = "/storage/0d93fd72-6818-4d10-8/sas/0801985d-2de9-421c-";
10684
Requests[1375].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10685
Requests[1375].
Request
.Path = "/storage/14a80398-0958-43b1-9/sas/466b9136-7a7b-4e22-";
10688
Requests[1376].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10689
Requests[1376].
Request
.Path = "/storage/e99b0743-2f45-478e-9/sas/316980f2-15c1-4db9-";
10692
Requests[1377].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10693
Requests[1377].
Request
.Path = "/subscriptions/70c5d444-0ea0-/providers/ca932bfb-c23b-48f0-8fac-e";
10696
Requests[1378].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
10697
Requests[1378].
Request
.Path = "/subscriptions/33421b06-87ae-/resourcegroups/b65090e7-6dae-47e";
10700
Requests[1379].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
10701
Requests[1379].
Request
.Path = "/subscriptions/b8ea6988-ba87-/resourcegroups/2e888959-3158-469";
10704
Requests[1380].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10705
Requests[1380].
Request
.Path = "/subscriptions/b61598c2-31a1-/resourcegroups/275a9a69-c8bd-44f";
10708
Requests[1381].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10709
Requests[1381].
Request
.Path = "/subscriptions/abe92b5f-45a8-/resourcegroups/2c8eb688-3e39-449";
10712
Requests[1382].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10713
Requests[1382].
Request
.Path = "/subscriptions/0ee49827-fcca-/resourcegroups/cbb96ef9-5ef0-4aa";
10716
Requests[1383].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10717
Requests[1383].
Request
.Path = "/subscriptions/4dd04a95-56ca-/tagNames/0b2f487";
10720
Requests[1384].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10721
Requests[1384].
Request
.Path = "/subscriptions/fcb97e28-a5d2-/tagNames/9c10be2";
10724
Requests[1385].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10725
Requests[1385].
Request
.Path = "/apis/dc327/operations/65ee625a-45/policies";
10728
Requests[1386].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10729
Requests[1386].
Request
.Path = "/apps/fa9b1/versions/0668da6b-/clone";
10732
Requests[1387].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10733
Requests[1387].
Request
.Path = "/apps/20ec6/versions/e8dcb709-/closedlists";
10736
Requests[1388].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10737
Requests[1388].
Request
.Path = "/apps/9851a/versions/ff5a938a-/closedlists";
10740
Requests[1389].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10741
Requests[1389].
Request
.Path = "/apps/3444a/versions/f91a0bbb-/compositeentities";
10744
Requests[1390].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10745
Requests[1390].
Request
.Path = "/apps/cbeee/versions/6f0f4da4-/compositeentities";
10748
Requests[1391].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10749
Requests[1391].
Request
.Path = "/apps/431f2/versions/89b20a24-/customprebuiltdomains";
10752
Requests[1392].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10753
Requests[1392].
Request
.Path = "/apps/b2ea0/versions/30e949b9-/customprebuiltentities";
10756
Requests[1393].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10757
Requests[1393].
Request
.Path = "/apps/078d8/versions/133cefd6-/customprebuiltentities";
10760
Requests[1394].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10761
Requests[1394].
Request
.Path = "/apps/2ad28/versions/3789a8af-/customprebuiltintents";
10764
Requests[1395].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10765
Requests[1395].
Request
.Path = "/apps/d75a7/versions/aa87cdf4-/customprebuiltintents";
10768
Requests[1396].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10769
Requests[1396].
Request
.Path = "/apps/5b790/versions/78a6f8a9-/customprebuiltmodels";
10772
Requests[1397].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10773
Requests[1397].
Request
.Path = "/apps/8a676/versions/e148980b-/entities";
10776
Requests[1398].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10777
Requests[1398].
Request
.Path = "/apps/5bbd0/versions/b621c868-/entities";
10780
Requests[1399].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10781
Requests[1399].
Request
.Path = "/apps/8b3fe/versions/463fa26a-/example";
10784
Requests[1400].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10785
Requests[1400].
Request
.Path = "/apps/1663b/versions/e861ebcf-/examples";
10788
Requests[1401].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10789
Requests[1401].
Request
.Path = "/apps/8a0fa/versions/886a81ef-/examples";
10792
Requests[1402].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10793
Requests[1402].
Request
.Path = "/apps/021e5/versions/7c2324f6-/export";
10796
Requests[1403].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10797
Requests[1403].
Request
.Path = "/apps/c056a/versions/e8c2d6fc-/features";
10800
Requests[1404].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10801
Requests[1404].
Request
.Path = "/apps/6244b/versions/0aebb67a-/hierarchicalentities";
10804
Requests[1405].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10805
Requests[1405].
Request
.Path = "/apps/a4b78/versions/ffd8902a-/hierarchicalentities";
10808
Requests[1406].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10809
Requests[1406].
Request
.Path = "/apps/fbea2/versions/4ff0fbdb-/intents";
10812
Requests[1407].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10813
Requests[1407].
Request
.Path = "/apps/4fe5f/versions/59f9efe4-/intents";
10816
Requests[1408].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10817
Requests[1408].
Request
.Path = "/apps/42e84/versions/3c0b2fdc-/listprebuilts";
10820
Requests[1409].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10821
Requests[1409].
Request
.Path = "/apps/1f2b8/versions/2108209c-/models";
10824
Requests[1410].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10825
Requests[1410].
Request
.Path = "/apps/a874e/versions/ec638c39-/patternanyentities";
10828
Requests[1411].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10829
Requests[1411].
Request
.Path = "/apps/f32d8/versions/610587f9-/patternanyentities";
10832
Requests[1412].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10833
Requests[1412].
Request
.Path = "/apps/34d19/versions/45a12686-/patternrule";
10836
Requests[1413].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10837
Requests[1413].
Request
.Path = "/apps/37040/versions/7a5039b1-/patternrules";
10840
Requests[1414].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10841
Requests[1414].
Request
.Path = "/apps/a32e6/versions/4edcc313-/patternrules";
10844
Requests[1415].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
10845
Requests[1415].
Request
.Path = "/apps/8790b/versions/ac7b92a0-/patternrules";
10848
Requests[1416].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10849
Requests[1416].
Request
.Path = "/apps/1b994/versions/85343a91-/patternrules";
10852
Requests[1417].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10853
Requests[1417].
Request
.Path = "/apps/04516/versions/8a2ab223-/patterns";
10856
Requests[1418].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10857
Requests[1418].
Request
.Path = "/apps/03c60/versions/79d70224-/patterns";
10860
Requests[1419].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10861
Requests[1419].
Request
.Path = "/apps/48989/versions/0f77df8e-/phraselists";
10864
Requests[1420].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10865
Requests[1420].
Request
.Path = "/apps/0c73d/versions/a44e717d-/phraselists";
10868
Requests[1421].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10869
Requests[1421].
Request
.Path = "/apps/a7c42/versions/b0a92db8-/prebuilts";
10872
Requests[1422].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10873
Requests[1422].
Request
.Path = "/apps/fc4cc/versions/b7c0ccf5-/prebuilts";
10876
Requests[1423].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10877
Requests[1423].
Request
.Path = "/apps/8fed9/versions/d8b10cb2-/regexentities";
10880
Requests[1424].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10881
Requests[1424].
Request
.Path = "/apps/60385/versions/b2b2866d-/regexentities";
10884
Requests[1425].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
10885
Requests[1425].
Request
.Path = "/apps/852ed/versions/87e20a25-/suggest";
10888
Requests[1426].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10889
Requests[1426].
Request
.Path = "/apps/b0db2/versions/36b382bb-/train";
10892
Requests[1427].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10893
Requests[1427].
Request
.Path = "/apps/713c0/versions/8669d433-/train";
10896
Requests[1428].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10897
Requests[1428].
Request
.Path = "/deletedstorage/514e1d6b-1354-4e55-a/sas/5f58094a-f404-4335-/recover";
10900
Requests[1429].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10901
Requests[1429].
Request
.Path = "/jobs/ed3e3/tasks/d301cc/files";
10904
Requests[1430].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10905
Requests[1430].
Request
.Path = "/jobs/2d312/tasks/1e8971/reactivate";
10908
Requests[1431].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10909
Requests[1431].
Request
.Path = "/jobs/c9086/tasks/b40b73/subtasksinfo";
10912
Requests[1432].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10913
Requests[1432].
Request
.Path = "/jobs/71345/tasks/be3e26/terminate";
10916
Requests[1433].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10917
Requests[1433].
Request
.Path = "/persongroups/56af3c32-9140/persons/e3f145d3/persistedFaces";
10920
Requests[1434].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10921
Requests[1434].
Request
.Path = "/pools/d6d5a9/nodes/b12c1e/disablescheduling";
10924
Requests[1435].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10925
Requests[1435].
Request
.Path = "/pools/81a790/nodes/d9db37/enablescheduling";
10928
Requests[1436].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10929
Requests[1436].
Request
.Path = "/pools/73a821/nodes/96761c/files";
10932
Requests[1437].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10933
Requests[1437].
Request
.Path = "/pools/a665c1/nodes/3317d9/rdp";
10936
Requests[1438].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10937
Requests[1438].
Request
.Path = "/pools/f1105f/nodes/ecac92/reboot";
10940
Requests[1439].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10941
Requests[1439].
Request
.Path = "/pools/447429/nodes/b63a7d/reimage";
10944
Requests[1440].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10945
Requests[1440].
Request
.Path = "/pools/a03760/nodes/456845/remoteloginsettings";
10948
Requests[1441].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10949
Requests[1441].
Request
.Path = "/pools/39e8af/nodes/3029df/uploadbatchservicelogs";
10952
Requests[1442].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10953
Requests[1442].
Request
.Path = "/pools/dd5242/nodes/f89588/users";
10956
Requests[1443].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10957
Requests[1443].
Request
.Path = "/projects/93f2776c-/iterations/4a1e0386-ec/export";
10960
Requests[1444].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10961
Requests[1444].
Request
.Path = "/projects/cf3eba4c-/iterations/134ed682-87/export";
10964
Requests[1445].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10965
Requests[1445].
Request
.Path = "/projects/265784d9-/iterations/893ef7ac-ea/performance";
10968
Requests[1446].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10969
Requests[1446].
Request
.Path = "/subscriptions/2447212d-833a-/providers/eb74d7fb-804c-445c-8ac8-4/register";
10972
Requests[1447].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10973
Requests[1447].
Request
.Path = "/subscriptions/79ce5de2-1d14-/providers/44c77116-eb7a-4a59-982f-6/unregister";
10976
Requests[1448].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10977
Requests[1448].
Request
.Path = "/subscriptions/29591378-a024-/resourcegroups/8d83dae8-da4d-499/exportTemplate";
10980
Requests[1449].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10981
Requests[1449].
Request
.Path = "/subscriptions/2a8e259e-0215-/resourceGroups/fbc9cae0-e64d-415/moveResources";
10984
Requests[1450].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10985
Requests[1450].
Request
.Path = "/subscriptions/b71b1306-7f0d-/resourceGroups/02e9ae00-2d73-436/resources";
10988
Requests[1451].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
10989
Requests[1451].
Request
.Path = "/subscriptions/a382d0c2-a395-/resourceGroups/d4783f31-e9c0-46d/validateMoveResources";
10992
Requests[1452].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10993
Requests[1452].
Request
.Path = "/projects/d198d2fb-/iterations/0929539f-eb/performance/images";
10996
Requests[1453].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
10997
Requests[1453].
Request
.Path = "/projects/08adcf85-/iterations/4301c8ab-c2/performance/images/count";
11000
Requests[1454].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11001
Requests[1454].
Request
.Path = "/subscriptions/ca896ae5-9afe-/resourceGroup/60f7c494-7880-4be/providers/microsoft.insights/workbooks";
11004
Requests[1455].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11005
Requests[1455].
Request
.Path = "/subscriptions/36f9d9b4-4f6e-/resourceGroups/a6c519dd-/providers/Microsoft.DataMigration/services";
11008
Requests[1456].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11009
Requests[1456].
Request
.Path = "/subscriptions/b9930d38-e558-/resourceGroups/b022c26f-f726/providers/Microsoft.Advisor/configurations";
11012
Requests[1457].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11013
Requests[1457].
Request
.Path = "/subscriptions/5fa5365d-21e4-/resourceGroups/2ebabd7d-ef9f/providers/Microsoft.Advisor/configurations";
11016
Requests[1458].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11017
Requests[1458].
Request
.Path = "/subscriptions/ddf37c6e-1a33-/resourcegroups/4b96cea3-aab6/providers/Microsoft.AzureBridge.Admin/activations";
11020
Requests[1459].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11021
Requests[1459].
Request
.Path = "/subscriptions/1414d91b-d65c-/resourceGroups/c87b7484-933b/providers/Microsoft.AzureStack/registrations";
11024
Requests[1460].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11025
Requests[1460].
Request
.Path = "/subscriptions/b70e81d2-b250-/resourceGroups/56609c74-414c-418/providers/Microsoft.AAD/domainServices";
11028
Requests[1461].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11029
Requests[1461].
Request
.Path = "/subscriptions/a5e07f32-7772-/resourceGroups/30ee9a63-5cc8-4d3/providers/Microsoft.AnalysisServices/servers";
11032
Requests[1462].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11033
Requests[1462].
Request
.Path = "/subscriptions/6d45e1cd-a202-/resourceGroups/06531fb8-28dc-405/providers/Microsoft.ApiManagement/service";
11036
Requests[1463].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11037
Requests[1463].
Request
.Path = "/subscriptions/10ee863f-3491-/resourceGroups/d2f95e9f-f138-471/providers/Microsoft.Authorization/locks";
11040
Requests[1464].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11041
Requests[1464].
Request
.Path = "/subscriptions/a1976651-efdf-/resourcegroups/864193a9-3c8a-4e6/providers/Microsoft.Authorization/permissions";
11044
Requests[1465].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11045
Requests[1465].
Request
.Path = "/subscriptions/dba10476-ba3c-/resourceGroups/d9127b89-1d0e-47b/providers/Microsoft.Authorization/policyAssignments";
11048
Requests[1466].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11049
Requests[1466].
Request
.Path = "/subscriptions/eb131152-eb34-/resourceGroups/deb18fb7-3a02-406/providers/Microsoft.Authorization/roleAssignments";
11052
Requests[1467].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11053
Requests[1467].
Request
.Path = "/subscriptions/452aafdf-0805-/resourceGroups/46a021ad-40f5-4ba/providers/Microsoft.Automation/automationAccounts";
11056
Requests[1468].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11057
Requests[1468].
Request
.Path = "/subscriptions/e150e3db-3da4-/resourcegroups/db258bc6-f0ca-4c5/providers/Microsoft.Backup.Admin/backupLocations";
11060
Requests[1469].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11061
Requests[1469].
Request
.Path = "/subscriptions/f543166d-e72e-/resourceGroups/d7c75b06-ed3c-4fa/providers/Microsoft.Batch/batchAccounts";
11064
Requests[1470].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11065
Requests[1470].
Request
.Path = "/subscriptions/d11bee98-4f17-/resourceGroups/0fcc56ad-bcdf-4f7/providers/Microsoft.BatchAI/clusters";
11068
Requests[1471].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11069
Requests[1471].
Request
.Path = "/subscriptions/f9411668-6ef4-/resourceGroups/b770b8b1-6d80-48d/providers/Microsoft.BatchAI/fileServers";
11072
Requests[1472].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11073
Requests[1472].
Request
.Path = "/subscriptions/c5c2215f-5824-/resourceGroups/807d4df1-4435-4bc/providers/Microsoft.BatchAI/jobs";
11076
Requests[1473].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11077
Requests[1473].
Request
.Path = "/subscriptions/e9b15b23-0a55-/resourceGroups/5887d7f7-aa54-4d1/providers/Microsoft.BatchAI/workspaces";
11080
Requests[1474].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11081
Requests[1474].
Request
.Path = "/subscriptions/cb0a3a85-f8a4-/resourceGroups/cfb20eda-ff51-4f5/providers/Microsoft.BotService/botServices";
11084
Requests[1475].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11085
Requests[1475].
Request
.Path = "/subscriptions/1660fbb0-bd45-/resourceGroups/aaf9ef07-1abc-4db/providers/Microsoft.Cache/Redis";
11088
Requests[1476].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11089
Requests[1476].
Request
.Path = "/subscriptions/f1ea0ce5-19a9-/resourceGroups/19713d7b-7a73-4b6/providers/Microsoft.Cdn/profiles";
11092
Requests[1477].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11093
Requests[1477].
Request
.Path = "/subscriptions/3562202c-6d42-/resourceGroups/44cc1253-d2ac-49f/providers/Microsoft.CertificateRegistration/certificateOrders";
11096
Requests[1478].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11097
Requests[1478].
Request
.Path = "/subscriptions/73ff9c0a-28e1-/resourceGroups/4a881118-2642-449/providers/Microsoft.CognitiveServices/accounts";
11100
Requests[1479].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11101
Requests[1479].
Request
.Path = "/subscriptions/0f672f1a-f45a-/resourceGroups/e62272d2-4d1c-4b0/providers/Microsoft.Compute/availabilitySets";
11104
Requests[1480].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11105
Requests[1480].
Request
.Path = "/subscriptions/2936ed6a-9ec2-/resourceGroups/0303f9a1-7d12-426/providers/Microsoft.Compute/disks";
11108
Requests[1481].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11109
Requests[1481].
Request
.Path = "/subscriptions/803da4b8-101a-/resourceGroups/eddca269-dbfb-4b1/providers/Microsoft.Compute/galleries";
11112
Requests[1482].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11113
Requests[1482].
Request
.Path = "/subscriptions/e689e863-75b9-/resourceGroups/78475f9f-4982-478/providers/Microsoft.Compute/images";
11116
Requests[1483].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11117
Requests[1483].
Request
.Path = "/subscriptions/d624e122-2b60-/resourceGroups/bbd8da32-9145-442/providers/Microsoft.Compute/snapshots";
11120
Requests[1484].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11121
Requests[1484].
Request
.Path = "/subscriptions/b8d4c17b-481c-/resourceGroups/64b6d933-5fa6-415/providers/Microsoft.Compute/virtualMachines";
11124
Requests[1485].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11125
Requests[1485].
Request
.Path = "/subscriptions/ece6a6fe-5a24-/resourceGroups/e90fc390-fa15-4ba/providers/Microsoft.Compute/virtualMachineScaleSets";
11128
Requests[1486].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11129
Requests[1486].
Request
.Path = "/subscriptions/93cb9690-7acc-/resourceGroups/233bc4f2-cd35-4a7/providers/Microsoft.Consumption/budgets";
11132
Requests[1487].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11133
Requests[1487].
Request
.Path = "/subscriptions/5ef0f220-6d7d-/resourceGroups/61b519d3-8b3f-4cb/providers/Microsoft.ContainerInstance/containerGroups";
11136
Requests[1488].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11137
Requests[1488].
Request
.Path = "/subscriptions/48604ac9-d58c-/resourceGroups/3c46a09c-e54a-4fe/providers/Microsoft.ContainerRegistry/registries";
11140
Requests[1489].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11141
Requests[1489].
Request
.Path = "/subscriptions/bbbf5e3c-6151-/resourceGroups/de2ddf95-a9be-45e/providers/Microsoft.ContainerService/containerServices";
11144
Requests[1490].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11145
Requests[1490].
Request
.Path = "/subscriptions/0645fc66-c321-/resourceGroups/3b8ecf5e-99e6-4dc/providers/Microsoft.ContainerService/managedClusters";
11148
Requests[1491].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11149
Requests[1491].
Request
.Path = "/subscriptions/2f555fae-2f4d-/resourceGroups/889ddb13-e0bd-410/providers/Microsoft.CustomerInsights/hubs";
11152
Requests[1492].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11153
Requests[1492].
Request
.Path = "/subscriptions/4ffe29a9-2738-/resourceGroups/c372f835-0623-41f/providers/Microsoft.DataBox/jobs";
11156
Requests[1493].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11157
Requests[1493].
Request
.Path = "/subscriptions/5177cef1-2982-/resourceGroups/960b2ba5-bdd8-41d/providers/Microsoft.Databricks/workspaces";
11160
Requests[1494].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11161
Requests[1494].
Request
.Path = "/subscriptions/57fc4d63-096f-/resourceGroups/074163b0-27eb-421/providers/Microsoft.DataCatalog/catalogs";
11164
Requests[1495].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11165
Requests[1495].
Request
.Path = "/subscriptions/c42b4e0a-55fb-/resourceGroups/9bdb8b26-104d-46a/providers/Microsoft.DataFactory/factories";
11168
Requests[1496].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11169
Requests[1496].
Request
.Path = "/subscriptions/4854010c-558f-/resourceGroups/c0c8904c-5b2b-487/providers/Microsoft.DataLakeAnalytics/accounts";
11172
Requests[1497].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11173
Requests[1497].
Request
.Path = "/subscriptions/5be220ed-49f4-/resourceGroups/52372424-c93e-427/providers/Microsoft.DataLakeStore/accounts";
11176
Requests[1498].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11177
Requests[1498].
Request
.Path = "/subscriptions/a873a10b-7505-/resourceGroups/ffd02886-e494-4fa/providers/Microsoft.DBforMySQL/servers";
11180
Requests[1499].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11181
Requests[1499].
Request
.Path = "/subscriptions/69cfcc19-2755-/resourceGroups/a25282cd-fba2-4b0/providers/Microsoft.DBforPostgreSQL/servers";
11184
Requests[1500].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11185
Requests[1500].
Request
.Path = "/subscriptions/75be4bc0-921a-/resourceGroups/3c6fb51c-fd8e-418/providers/Microsoft.Devices/IotHubs";
11188
Requests[1501].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11189
Requests[1501].
Request
.Path = "/subscriptions/204104fd-946b-/resourceGroups/17b4abd3-08eb-44d/providers/Microsoft.Devices/provisioningServices";
11192
Requests[1502].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11193
Requests[1502].
Request
.Path = "/subscriptions/710dea1a-8861-/resourceGroups/68516efd-dee6-449/providers/Microsoft.DevTestLab/labs";
11196
Requests[1503].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11197
Requests[1503].
Request
.Path = "/subscriptions/43bc0986-f03b-/resourceGroups/eb1c5a0a-86d5-404/providers/Microsoft.DevTestLab/schedules";
11200
Requests[1504].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11201
Requests[1504].
Request
.Path = "/subscriptions/7a567f06-f05f-/resourceGroups/2d1597b5-7eb7-427/providers/Microsoft.DocumentDB/databaseAccounts";
11204
Requests[1505].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11205
Requests[1505].
Request
.Path = "/subscriptions/c83de8e6-7d60-/resourceGroups/219dc1e4-9030-42a/providers/Microsoft.DomainRegistration/domains";
11208
Requests[1506].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11209
Requests[1506].
Request
.Path = "/subscriptions/6593bb68-9b93-/resourceGroups/6acea5ff-e02c-419/providers/Microsoft.EventGrid/eventSubscriptions";
11212
Requests[1507].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11213
Requests[1507].
Request
.Path = "/subscriptions/daf683a1-4081-/resourceGroups/b95fcd46-5eeb-43c/providers/Microsoft.EventGrid/topics";
11216
Requests[1508].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11217
Requests[1508].
Request
.Path = "/subscriptions/da37b778-6e4c-/resourceGroups/369439d7-59d1-42c/providers/Microsoft.EventHub/clusters";
11220
Requests[1509].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11221
Requests[1509].
Request
.Path = "/subscriptions/e5c1df9e-04f2-/resourceGroups/77f8eb85-46d1-405/providers/Microsoft.EventHub/namespaces";
11224
Requests[1510].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11225
Requests[1510].
Request
.Path = "/subscriptions/b97098a9-3004-/resourceGroups/e2975862-b116-465/providers/Microsoft.Fabric.Admin/fabricLocations";
11228
Requests[1511].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11229
Requests[1511].
Request
.Path = "/subscriptions/63b747f5-205b-/resourceGroups/9989eb9d-de23-4f5/providers/Microsoft.Fabric.Admin/fabricLocations";
11232
Requests[1512].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11233
Requests[1512].
Request
.Path = "/subscriptions/acdd421b-054a-/resourceGroups/14d7a437-8470-426/providers/Microsoft.HanaOnAzure/hanaInstances";
11236
Requests[1513].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11237
Requests[1513].
Request
.Path = "/subscriptions/f2ef579e-e548-/resourceGroups/814cf909-6570-446/providers/Microsoft.HDInsight/clusters";
11240
Requests[1514].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11241
Requests[1514].
Request
.Path = "/subscriptions/5023a9fb-aa23-/resourceGroups/552051e0-2359-453/providers/Microsoft.ImportExport/jobs";
11244
Requests[1515].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11245
Requests[1515].
Request
.Path = "/subscriptions/42712042-54a2-/resourceGroups/42fde4b0-3915-479/providers/Microsoft.InfrastructureInsights.Admin/regionHealths";
11248
Requests[1516].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11249
Requests[1516].
Request
.Path = "/subscriptions/1243ac69-53b4-/resourceGroups/4997d9e2-ec8c-488/providers/microsoft.insights/actionGroups";
11252
Requests[1517].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11253
Requests[1517].
Request
.Path = "/subscriptions/ac859b71-e405-/resourceGroups/863743f3-5e9f-4c7/providers/microsoft.insights/activityLogAlerts";
11256
Requests[1518].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11257
Requests[1518].
Request
.Path = "/subscriptions/889d66ac-b2fe-/resourcegroups/23dad28d-6d61-4c2/providers/microsoft.insights/alertrules";
11260
Requests[1519].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11261
Requests[1519].
Request
.Path = "/subscriptions/bebf5ab6-2a92-/resourcegroups/473a135a-ad59-4a5/providers/microsoft.insights/autoscalesettings";
11264
Requests[1520].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11265
Requests[1520].
Request
.Path = "/subscriptions/b1dcfe80-981a-/resourceGroups/dd2fec86-4d64-485/providers/Microsoft.Insights/components";
11268
Requests[1521].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11269
Requests[1521].
Request
.Path = "/subscriptions/99f6ff3b-d11b-/resourceGroups/5ead398c-9f74-462/providers/Microsoft.Insights/metricAlerts";
11272
Requests[1522].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11273
Requests[1522].
Request
.Path = "/subscriptions/ca83b208-ccfb-/resourcegroups/7ebb10d3-4a0c-4de/providers/microsoft.insights/scheduledQueryRules";
11276
Requests[1523].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11277
Requests[1523].
Request
.Path = "/subscriptions/ebb3888b-86c7-/resourceGroups/00fb4c47-5287-44c/providers/Microsoft.Insights/webtests";
11280
Requests[1524].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11281
Requests[1524].
Request
.Path = "/subscriptions/f65ba0a6-dffb-/resourceGroups/3c17a865-3052-44b/providers/Microsoft.IoTCentral/IoTApps";
11284
Requests[1525].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11285
Requests[1525].
Request
.Path = "/subscriptions/95c1e34a-129c-/resourceGroups/56315786-e4df-4aa/providers/Microsoft.IoTSpaces/Graph";
11288
Requests[1526].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11289
Requests[1526].
Request
.Path = "/subscriptions/a10ac875-1c6f-/resourceGroups/b532912c-3e51-47e/providers/Microsoft.KeyVault/vaults";
11292
Requests[1527].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11293
Requests[1527].
Request
.Path = "/subscriptions/af6a5397-8a11-/resourceGroups/0dd28fe4-fd30-4a0/providers/Microsoft.Logic/integrationAccounts";
11296
Requests[1528].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11297
Requests[1528].
Request
.Path = "/subscriptions/bc26839c-6a9c-/resourceGroups/d6a48b79-52dc-4e5/providers/Microsoft.Logic/workflows";
11300
Requests[1529].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11301
Requests[1529].
Request
.Path = "/subscriptions/d48ad9cc-3a01-/resourceGroups/76f4c672-a832-48f/providers/Microsoft.MachineLearning/commitmentPlans";
11304
Requests[1530].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11305
Requests[1530].
Request
.Path = "/subscriptions/5d635537-b355-/resourceGroups/abae5d62-6261-406/providers/Microsoft.MachineLearning/webServices";
11308
Requests[1531].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11309
Requests[1531].
Request
.Path = "/subscriptions/dcf3163f-7e7e-/resourceGroups/18bf2dd1-8744-460/providers/Microsoft.MachineLearning/workspaces";
11312
Requests[1532].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11313
Requests[1532].
Request
.Path = "/subscriptions/2cdad276-02fb-/resourceGroups/0950dc5e-c86d-4c2/providers/Microsoft.MachineLearningCompute/operationalizationClusters";
11316
Requests[1533].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11317
Requests[1533].
Request
.Path = "/subscriptions/e9ec81fc-0415-/resourceGroups/42b16c86-d937-4f9/providers/Microsoft.MachineLearningExperimentation/accounts";
11320
Requests[1534].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11321
Requests[1534].
Request
.Path = "/subscriptions/272c49f0-f36c-/resourceGroups/499bfffd-95d0-468/providers/Microsoft.MachineLearningServices/workspaces";
11324
Requests[1535].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11325
Requests[1535].
Request
.Path = "/subscriptions/c1d0d21a-6966-/resourceGroups/db9df978-ccc9-447/providers/Microsoft.ManagedIdentity/userAssignedIdentities";
11328
Requests[1536].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11329
Requests[1536].
Request
.Path = "/subscriptions/5ded2669-f682-/resourceGroups/b4bb0087-a4fc-4d8/providers/Microsoft.Maps/accounts";
11332
Requests[1537].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11333
Requests[1537].
Request
.Path = "/subscriptions/0c730f4e-ea09-/resourceGroups/25d269f0-395c-433/providers/Microsoft.Media/mediaservices";
11336
Requests[1538].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11337
Requests[1538].
Request
.Path = "/subscriptions/4ec4ca84-963a-/resourcegroups/c435c6d5-de36-432/providers/Microsoft.Migrate/projects";
11340
Requests[1539].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11341
Requests[1539].
Request
.Path = "/subscriptions/e615b34e-0ad3-/resourceGroups/5fc34e9b-772f-45e/providers/Microsoft.Network/applicationGateways";
11344
Requests[1540].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11345
Requests[1540].
Request
.Path = "/subscriptions/67877486-f3be-/resourceGroups/f01932ca-9450-41e/providers/Microsoft.Network/applicationSecurityGroups";
11348
Requests[1541].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11349
Requests[1541].
Request
.Path = "/subscriptions/fa273a93-4161-/resourceGroups/7290ced2-0136-44a/providers/Microsoft.Network/connections";
11352
Requests[1542].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11353
Requests[1542].
Request
.Path = "/subscriptions/4eeaa29a-be01-/resourceGroups/cde68515-3b3f-44b/providers/Microsoft.Network/ddosProtectionPlans";
11356
Requests[1543].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11357
Requests[1543].
Request
.Path = "/subscriptions/45d8b903-bc98-/resourceGroups/fd253bfb-8783-4cb/providers/Microsoft.Network/dnsZones";
11360
Requests[1544].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11361
Requests[1544].
Request
.Path = "/subscriptions/686d6217-ba39-/resourceGroups/acf943f4-c0f1-4b9/providers/Microsoft.Network/expressRouteCircuits";
11364
Requests[1545].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11365
Requests[1545].
Request
.Path = "/subscriptions/61bcffaa-0cad-/resourceGroups/455e7c1f-1df6-464/providers/Microsoft.Network/expressRouteCrossConnections";
11368
Requests[1546].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11369
Requests[1546].
Request
.Path = "/subscriptions/1af89f8c-2da1-/resourceGroups/3e36110b-afc2-4d5/providers/Microsoft.Network/loadBalancers";
11372
Requests[1547].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11373
Requests[1547].
Request
.Path = "/subscriptions/4839c8ab-e9b1-/resourceGroups/fcd04f30-85f0-464/providers/Microsoft.Network/localNetworkGateways";
11376
Requests[1548].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11377
Requests[1548].
Request
.Path = "/subscriptions/58697374-dd2b-/resourceGroups/cafd3de5-53be-4a3/providers/Microsoft.Network/networkInterfaces";
11380
Requests[1549].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11381
Requests[1549].
Request
.Path = "/subscriptions/2e60881b-ac06-/resourceGroups/62c1333d-6928-4b1/providers/Microsoft.Network/networkSecurityGroups";
11384
Requests[1550].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11385
Requests[1550].
Request
.Path = "/subscriptions/723bf7b0-6b01-/resourceGroups/1c7ddccf-c859-419/providers/Microsoft.Network/networkWatchers";
11388
Requests[1551].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11389
Requests[1551].
Request
.Path = "/subscriptions/7715623c-d025-/resourceGroups/cd0d9da4-9bfe-479/providers/Microsoft.Network/publicIPAddresses";
11392
Requests[1552].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11393
Requests[1552].
Request
.Path = "/subscriptions/bf2d4abe-1c75-/resourceGroups/f3430594-3c89-4f3/providers/Microsoft.Network/routeFilters";
11396
Requests[1553].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11397
Requests[1553].
Request
.Path = "/subscriptions/1f8d4667-4721-/resourceGroups/b5e237dd-ccb9-493/providers/Microsoft.Network/routeTables";
11400
Requests[1554].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11401
Requests[1554].
Request
.Path = "/subscriptions/219a1312-bcd5-/resourceGroups/f5c4eab9-137a-42b/providers/Microsoft.Network/trafficmanagerprofiles";
11404
Requests[1555].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11405
Requests[1555].
Request
.Path = "/subscriptions/cfe3339c-4765-/resourceGroups/e51ea90a-df53-46c/providers/Microsoft.Network/virtualNetworkGateways";
11408
Requests[1556].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11409
Requests[1556].
Request
.Path = "/subscriptions/97fdc8ef-4e17-/resourceGroups/708b3185-7fd3-419/providers/Microsoft.Network/virtualNetworks";
11412
Requests[1557].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11413
Requests[1557].
Request
.Path = "/subscriptions/171d338e-9608-/resourceGroups/c84d7cdc-c737-4fe/providers/Microsoft.NotificationHubs/namespaces";
11416
Requests[1558].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11417
Requests[1558].
Request
.Path = "/subscriptions/c65ffcb3-a02c-/resourcegroups/51710203-d0e6-4cf/providers/Microsoft.OperationalInsights/workspaces";
11420
Requests[1559].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11421
Requests[1559].
Request
.Path = "/subscriptions/f0735178-8008-/resourcegroups/0c0eed3c-8567-4aa/providers/Microsoft.OperationsManagement/solutions";
11424
Requests[1560].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11425
Requests[1560].
Request
.Path = "/subscriptions/547ec924-8ad4-/resourceGroups/0b4c51b7-48e9-491/providers/Microsoft.PowerBI/workspaceCollections";
11428
Requests[1561].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11429
Requests[1561].
Request
.Path = "/subscriptions/c0ef984a-f9b2-/resourceGroups/9f23efe7-93a3-4dd/providers/Microsoft.PowerBIDedicated/capacities";
11432
Requests[1562].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11433
Requests[1562].
Request
.Path = "/Subscriptions/a44ad087-bc42-/resourceGroups/d0a0c4a3-901b-44b/providers/Microsoft.RecoveryServices/operations";
11436
Requests[1563].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11437
Requests[1563].
Request
.Path = "/subscriptions/ec326793-62ba-/resourceGroups/ebfb21a4-7bcf-46b/providers/Microsoft.RecoveryServices/vaults";
11440
Requests[1564].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11441
Requests[1564].
Request
.Path = "/subscriptions/251e7e35-1b87-/resourceGroups/2c3c46a5-3e0f-4b9/providers/Microsoft.Relay/namespaces";
11444
Requests[1565].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11445
Requests[1565].
Request
.Path = "/subscriptions/5b479e17-8972-/resourceGroups/eff8d38c-0dcc-476/providers/Microsoft.ResourceHealth/availabilityStatuses";
11448
Requests[1566].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11449
Requests[1566].
Request
.Path = "/subscriptions/f2dc73b3-cdae-/resourcegroups/e86e942d-9bf0-4f6/providers/Microsoft.Resources/deployments";
11452
Requests[1567].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11453
Requests[1567].
Request
.Path = "/subscriptions/a2dbb983-f426-/resourceGroups/db2015c0-aab5-491/providers/Microsoft.Scheduler/jobCollections";
11456
Requests[1568].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11457
Requests[1568].
Request
.Path = "/subscriptions/9b0ab9ec-cab6-/resourceGroups/2d3a74b5-3221-465/providers/Microsoft.Search/searchServices";
11460
Requests[1569].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11461
Requests[1569].
Request
.Path = "/subscriptions/0097835e-249e-/resourceGroups/56e77e0b-ca6e-483/providers/Microsoft.Security/alerts";
11464
Requests[1570].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11465
Requests[1570].
Request
.Path = "/subscriptions/9a62a5fa-38f0-/resourceGroups/e4e9f6a8-f222-406/providers/Microsoft.Security/jitNetworkAccessPolicies";
11468
Requests[1571].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11469
Requests[1571].
Request
.Path = "/subscriptions/b17f9b0a-f2b3-/resourceGroups/fb225c51-8520-4f0/providers/Microsoft.Security/pricings";
11472
Requests[1572].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11473
Requests[1572].
Request
.Path = "/subscriptions/ae6ebaec-f915-/resourceGroups/0b535fad-d94a-48a/providers/Microsoft.Security/securityContacts";
11476
Requests[1573].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11477
Requests[1573].
Request
.Path = "/subscriptions/b16c3149-6ca4-/resourceGroups/546e2a8b-14bb-484/providers/Microsoft.Security/workspaceSettings";
11480
Requests[1574].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11481
Requests[1574].
Request
.Path = "/subscriptions/fdaf80da-493a-/resourceGroups/104cc66b-cedd-49b/providers/Microsoft.ServerManagement/gateways";
11484
Requests[1575].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11485
Requests[1575].
Request
.Path = "/subscriptions/e9c7be7f-7efb-/resourceGroups/41ea267d-2fe4-4e7/providers/Microsoft.ServerManagement/nodes";
11488
Requests[1576].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11489
Requests[1576].
Request
.Path = "/subscriptions/ede84756-c6c0-/resourceGroups/9d0ea04e-7d8e-4e2/providers/Microsoft.ServiceBus/namespaces";
11492
Requests[1577].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11493
Requests[1577].
Request
.Path = "/subscriptions/74e84c5d-c75f-/resourcegroups/d83e8717-bf49-4ea/providers/Microsoft.ServiceFabric/clusters";
11496
Requests[1578].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11497
Requests[1578].
Request
.Path = "/subscriptions/4b6deb32-5556-/resourceGroups/53c5cfe2-5d32-4ad/providers/Microsoft.SignalRService/SignalR";
11500
Requests[1579].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11501
Requests[1579].
Request
.Path = "/subscriptions/d6a6065c-3487-/resourceGroups/108309d1-6d49-4ce/providers/Microsoft.Solutions/applianceDefinitions";
11504
Requests[1580].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11505
Requests[1580].
Request
.Path = "/subscriptions/e8be7ddb-bc5d-/resourceGroups/75ff2a4e-e0eb-411/providers/Microsoft.Solutions/appliances";
11508
Requests[1581].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11509
Requests[1581].
Request
.Path = "/subscriptions/8de42fbe-e740-/resourceGroups/69d61a1f-5fba-42b/providers/Microsoft.Solutions/applicationDefinitions";
11512
Requests[1582].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11513
Requests[1582].
Request
.Path = "/subscriptions/db9dd93f-5c97-/resourceGroups/42dfb105-cfaf-409/providers/Microsoft.Solutions/applications";
11516
Requests[1583].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11517
Requests[1583].
Request
.Path = "/subscriptions/fae6e5a4-5f68-/resourceGroups/fff214f2-a760-475/providers/Microsoft.Sql/managedInstances";
11520
Requests[1584].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11521
Requests[1584].
Request
.Path = "/subscriptions/0705a2a5-8f69-/resourceGroups/29c28a7a-1dc5-49c/providers/Microsoft.Sql/servers";
11524
Requests[1585].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11525
Requests[1585].
Request
.Path = "/subscriptions/bdc973b2-edbf-/resourcegroups/1f038142-9e4d-450/providers/Microsoft.Storage.Admin/farms";
11528
Requests[1586].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11529
Requests[1586].
Request
.Path = "/subscriptions/dda8855b-2201-/resourceGroups/843e9887-8532-4be/providers/Microsoft.Storage/storageAccounts";
11532
Requests[1587].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11533
Requests[1587].
Request
.Path = "/subscriptions/9f6c5173-2a5f-/resourceGroups/a033e3ff-c590-40c/providers/Microsoft.StorSimple/managers";
11536
Requests[1588].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11537
Requests[1588].
Request
.Path = "/subscriptions/debbf2ce-efa4-/resourcegroups/563e6462-c718-450/providers/Microsoft.StreamAnalytics/streamingjobs";
11540
Requests[1589].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11541
Requests[1589].
Request
.Path = "/subscriptions/f6e4aa98-50a5-/resourcegroups/eea041ce-142f-425/providers/Microsoft.Subscriptions.Admin/directoryTenants";
11544
Requests[1590].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11545
Requests[1590].
Request
.Path = "/subscriptions/7ec4d770-4afc-/resourcegroups/b6b555e3-f623-430/providers/Microsoft.Subscriptions.Admin/offers";
11548
Requests[1591].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11549
Requests[1591].
Request
.Path = "/subscriptions/64e36198-69da-/resourcegroups/c03d9ce5-e066-465/providers/Microsoft.Subscriptions.Admin/plans";
11552
Requests[1592].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11553
Requests[1592].
Request
.Path = "/subscriptions/7c7dc83c-b08b-/resourceGroups/30ba68d6-e622-4de/providers/Microsoft.TimeSeriesInsights/environments";
11556
Requests[1593].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11557
Requests[1593].
Request
.Path = "/subscriptions/dfedebe9-156e-/resourcegroups/2d0cf7b1-34a5-475/providers/Microsoft.Update.Admin/updateLocations";
11560
Requests[1594].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11561
Requests[1594].
Request
.Path = "/subscriptions/0bce5ffe-e354-/resourcegroups/22b23488-1bf9-4e6/providers/microsoft.visualstudio/account";
11564
Requests[1595].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11565
Requests[1595].
Request
.Path = "/subscriptions/78856167-af72-/resourceGroups/3351e217-ce48-4f8/providers/Microsoft.Web/certificates";
11568
Requests[1596].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11569
Requests[1596].
Request
.Path = "/subscriptions/a4d37d0d-eac9-/resourceGroups/433563f2-93d1-4ee/providers/Microsoft.Web/classicMobileServices";
11572
Requests[1597].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11573
Requests[1597].
Request
.Path = "/subscriptions/2cea1ffb-6f01-/resourceGroups/08c88c58-86e3-4b0/providers/Microsoft.Web/connectionGateways";
11576
Requests[1598].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11577
Requests[1598].
Request
.Path = "/subscriptions/d48e0806-d084-/resourceGroups/d2c0f363-21be-47d/providers/Microsoft.Web/connections";
11580
Requests[1599].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11581
Requests[1599].
Request
.Path = "/subscriptions/8e018553-5173-/resourceGroups/f2fbe2d2-a66d-4ff/providers/Microsoft.Web/csrs";
11584
Requests[1600].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11585
Requests[1600].
Request
.Path = "/subscriptions/9d1e8fb3-e49f-/resourceGroups/58de4675-f375-431/providers/Microsoft.Web/customApis";
11588
Requests[1601].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11589
Requests[1601].
Request
.Path = "/subscriptions/124d5bec-b77b-/resourceGroups/51f83ce6-3511-4ca/providers/Microsoft.Web/deletedSites";
11592
Requests[1602].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11593
Requests[1602].
Request
.Path = "/subscriptions/b551f947-59b7-/resourceGroups/5715bd5f-40f1-476/providers/Microsoft.Web/hostingEnvironments";
11596
Requests[1603].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11597
Requests[1603].
Request
.Path = "/subscriptions/487971d6-d7e0-/resourceGroups/2355e951-f9ed-421/providers/Microsoft.Web/managedHostingEnvironments";
11600
Requests[1604].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11601
Requests[1604].
Request
.Path = "/subscriptions/10744996-3c6a-/resourceGroups/a06798d7-ef66-44e/providers/Microsoft.Web/resourceHealthMetadata";
11604
Requests[1605].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11605
Requests[1605].
Request
.Path = "/subscriptions/e66ceec8-1274-/resourceGroups/14a2c8e6-e870-4da/providers/Microsoft.Web/serverfarms";
11608
Requests[1606].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11609
Requests[1606].
Request
.Path = "/subscriptions/77035e7b-0314-/resourceGroups/baca9973-a4b4-4c8/providers/Microsoft.Web/sites";
11612
Requests[1607].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
11613
Requests[1607].
Request
.Path = "/subscriptions/b6c8e7a3-939e-/resourceGroups/5cef05af-33d4-4bb/providers/Microsoft.Web/validate";
11616
Requests[1608].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
11617
Requests[1608].
Request
.Path = "/subscriptions/1f094eb5-c3dc-/resourceGroups/c3346282-cd51-4d0/providers/Microsoft.BotService/BotServices/listServiceProviders";
11620
Requests[1609].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11621
Requests[1609].
Request
.Path = "/subscriptions/4b8b9e6d-4318-/resourceGroup/e26ecef4-77ba-436/providers/microsoft.insights/workbooks/54d25265-ac7";
11624
Requests[1610].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11625
Requests[1610].
Request
.Path = "/subscriptions/1513079a-2c6e-/resourceGroup/b6a36f67-7a8d-481/providers/microsoft.insights/workbooks/b9c3a82f-726";
11628
Requests[1611].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11629
Requests[1611].
Request
.Path = "/subscriptions/2136ba1f-ecb2-/resourceGroup/1752c125-ae42-42c/providers/microsoft.insights/workbooks/86be8e34-51a";
11632
Requests[1612].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11633
Requests[1612].
Request
.Path = "/subscriptions/07d24592-b948-/resourceGroup/a1525bd4-c59a-47e/providers/microsoft.insights/workbooks/a30b56ec-94c";
11636
Requests[1613].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11637
Requests[1613].
Request
.Path = "/subscriptions/c0438103-8def-/resourceGroups/f81645f4-/providers/Microsoft.DataMigration/services/f638cb66-fa";
11640
Requests[1614].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11641
Requests[1614].
Request
.Path = "/subscriptions/a2f69d0f-0651-/resourceGroups/465051f5-/providers/Microsoft.DataMigration/services/f86abbce-33";
11644
Requests[1615].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
11645
Requests[1615].
Request
.Path = "/subscriptions/fb9e8eb6-d685-/resourceGroups/9f33ab4a-/providers/Microsoft.DataMigration/services/c38a87a6-dc";
11648
Requests[1616].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11649
Requests[1616].
Request
.Path = "/subscriptions/5975963c-0d8f-/resourceGroups/66e22422-/providers/Microsoft.DataMigration/services/a48948ff-65";
11652
Requests[1617].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11653
Requests[1617].
Request
.Path = "/subscriptions/bd88980a-24f0-/resourceGroups/e8337dd3-/providers/Microsoft.DataMigration/services/902ee760-3f";
11656
Requests[1618].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11657
Requests[1618].
Request
.Path = "/subscriptions/525131d7-412a-/resourcegroups/99cbb863-30aa/providers/Microsoft.AzureBridge.Admin/activations/16c77a77-d415-";
11660
Requests[1619].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11661
Requests[1619].
Request
.Path = "/subscriptions/918b3cf2-ecc9-/resourcegroups/ddc4b3fc-c4ac/providers/Microsoft.AzureBridge.Admin/activations/46b1f43c-4ba5-";
11664
Requests[1620].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11665
Requests[1620].
Request
.Path = "/subscriptions/53e257c4-e4d5-/resourcegroups/e8464792-679d/providers/Microsoft.AzureBridge.Admin/activations/4a4b8a2e-5a5b-";
11668
Requests[1621].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11669
Requests[1621].
Request
.Path = "/subscriptions/ddf153b6-21d8-/resourceGroups/7bcb20af-a29c/providers/Microsoft.AzureStack/registrations/c6d97589-5967-46";
11672
Requests[1622].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11673
Requests[1622].
Request
.Path = "/subscriptions/5f024aa8-d4d0-/resourceGroups/2738fa35-3ec7/providers/Microsoft.AzureStack/registrations/042fc9b1-bafa-4a";
11676
Requests[1623].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11677
Requests[1623].
Request
.Path = "/subscriptions/652ef246-e4fc-/resourceGroups/4ffb67ec-7a44/providers/Microsoft.AzureStack/registrations/7f6adb3e-9132-44";
11680
Requests[1624].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11681
Requests[1624].
Request
.Path = "/subscriptions/77cdcb9c-b55b-/resourceGroups/f52efbb4-c522-461/providers/Microsoft.AAD/domainServices/9c9c9bf1-5688-432";
11684
Requests[1625].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11685
Requests[1625].
Request
.Path = "/subscriptions/97fd7a4e-543c-/resourceGroups/ffc73553-e034-4ef/providers/Microsoft.AAD/domainServices/69a649b2-4bea-47a";
11688
Requests[1626].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11689
Requests[1626].
Request
.Path = "/subscriptions/1e6f1f31-38a3-/resourceGroups/9c51f9a8-2330-4b9/providers/Microsoft.AAD/domainServices/dada6c93-a43c-440";
11692
Requests[1627].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11693
Requests[1627].
Request
.Path = "/subscriptions/6d886c8e-67fa-/resourceGroups/5d987fef-e9a7-4ae/providers/Microsoft.AAD/domainServices/b862c69c-dea1-479";
11696
Requests[1628].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11697
Requests[1628].
Request
.Path = "/subscriptions/0f751038-e6c4-/resourceGroups/263f10b1-0e1f-40b/providers/Microsoft.AnalysisServices/servers/5c018859-1";
11700
Requests[1629].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11701
Requests[1629].
Request
.Path = "/subscriptions/9a1bc6a4-9f57-/resourceGroups/96d39e2b-16e4-449/providers/Microsoft.AnalysisServices/servers/9b0bfe66-a";
11704
Requests[1630].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11705
Requests[1630].
Request
.Path = "/subscriptions/79c6a952-2739-/resourceGroups/493fc708-d030-4bd/providers/Microsoft.AnalysisServices/servers/1974974c-0";
11708
Requests[1631].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11709
Requests[1631].
Request
.Path = "/subscriptions/67b47baa-ba22-/resourceGroups/288f2b62-9a31-407/providers/Microsoft.AnalysisServices/servers/6a849f9b-b";
11712
Requests[1632].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11713
Requests[1632].
Request
.Path = "/subscriptions/5c068d2f-11f4-/resourceGroups/8e1cec09-e013-470/providers/Microsoft.ApiManagement/service/307e4dc3-0d";
11716
Requests[1633].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11717
Requests[1633].
Request
.Path = "/subscriptions/1365c5df-502b-/resourceGroups/9de630f1-74c1-425/providers/Microsoft.ApiManagement/service/35f91633-15";
11720
Requests[1634].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11721
Requests[1634].
Request
.Path = "/subscriptions/d4f6fffb-4478-/resourceGroups/2725ef7b-eac3-4a5/providers/Microsoft.ApiManagement/service/bfe1b7cd-ce";
11724
Requests[1635].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11725
Requests[1635].
Request
.Path = "/subscriptions/17fd808c-b3f8-/resourceGroups/2d64d740-4f55-436/providers/Microsoft.ApiManagement/service/17a946b1-5e";
11728
Requests[1636].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11729
Requests[1636].
Request
.Path = "/subscriptions/e75f3c4a-cb81-/resourceGroups/9cbcb723-e514-40f/providers/Microsoft.Authorization/locks/0cabca14";
11732
Requests[1637].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11733
Requests[1637].
Request
.Path = "/subscriptions/d6aa4a8d-e2a7-/resourceGroups/c6017516-744c-4bd/providers/Microsoft.Authorization/locks/91705f6f";
11736
Requests[1638].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11737
Requests[1638].
Request
.Path = "/subscriptions/b4d3b475-45b2-/resourceGroups/27adbcdf-e5c2-4cb/providers/Microsoft.Authorization/locks/5b07d7ca";
11740
Requests[1639].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11741
Requests[1639].
Request
.Path = "/subscriptions/2a3369fb-6892-/resourceGroups/23a0b5e5-57b4-4cf/providers/Microsoft.Automation/automationAccounts/6bf5df96-1156-442f-8a";
11744
Requests[1640].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11745
Requests[1640].
Request
.Path = "/subscriptions/662578bf-21c1-/resourceGroups/c52c1d60-ec35-42e/providers/Microsoft.Automation/automationAccounts/a7de95db-bb3d-467e-a3";
11748
Requests[1641].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11749
Requests[1641].
Request
.Path = "/subscriptions/b9017c52-ece6-/resourceGroups/8be5476e-4fe3-410/providers/Microsoft.Automation/automationAccounts/758082db-5f93-40fe-bc";
11752
Requests[1642].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11753
Requests[1642].
Request
.Path = "/subscriptions/815138d1-8494-/resourceGroups/8727f78b-f13f-4f5/providers/Microsoft.Automation/automationAccounts/285f248a-eb21-425d-ae";
11756
Requests[1643].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11757
Requests[1643].
Request
.Path = "/subscriptions/03cd7d8a-b7c5-/resourcegroups/60b56dda-05b4-492/providers/Microsoft.Backup.Admin/backupLocations/c45cf348";
11760
Requests[1644].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11761
Requests[1644].
Request
.Path = "/subscriptions/e3ca4d15-1a39-/resourcegroups/18676138-86bc-4c4/providers/Microsoft.Backup.Admin/backupLocations/cf6ac117";
11764
Requests[1645].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11765
Requests[1645].
Request
.Path = "/subscriptions/c9980d47-3ad2-/resourceGroups/f594e330-ae0b-48e/providers/Microsoft.Batch/batchAccounts/7662ac8a-2e";
11768
Requests[1646].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11769
Requests[1646].
Request
.Path = "/subscriptions/b77e470f-e85d-/resourceGroups/0c1d07c9-f7d5-46e/providers/Microsoft.Batch/batchAccounts/b60631fb-1e";
11772
Requests[1647].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11773
Requests[1647].
Request
.Path = "/subscriptions/64e1d3df-dab0-/resourceGroups/834abfe0-508b-4c2/providers/Microsoft.Batch/batchAccounts/75d402fc-c0";
11776
Requests[1648].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11777
Requests[1648].
Request
.Path = "/subscriptions/343042b1-16c6-/resourceGroups/30e6a30c-b1bb-49e/providers/Microsoft.Batch/batchAccounts/6033cc45-3b";
11780
Requests[1649].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11781
Requests[1649].
Request
.Path = "/subscriptions/775b5a1a-83f9-/resourceGroups/af5ffaf5-e205-468/providers/Microsoft.BatchAI/clusters/a2637acd-30";
11784
Requests[1650].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11785
Requests[1650].
Request
.Path = "/subscriptions/78d38c71-9454-/resourceGroups/f6d2ccfa-641f-42a/providers/Microsoft.BatchAI/clusters/bb3cccc7-ec";
11788
Requests[1651].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11789
Requests[1651].
Request
.Path = "/subscriptions/b5f66fe7-a566-/resourceGroups/2fcb7202-26e0-4b7/providers/Microsoft.BatchAI/clusters/b95bf499-76";
11792
Requests[1652].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11793
Requests[1652].
Request
.Path = "/subscriptions/cab1aa90-2129-/resourceGroups/7a02c732-03d2-4fe/providers/Microsoft.BatchAI/clusters/92178e36-77";
11796
Requests[1653].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11797
Requests[1653].
Request
.Path = "/subscriptions/ba59d468-d36d-/resourceGroups/e2c829a6-59c3-4da/providers/Microsoft.BatchAI/fileServers/01e0b0e5-9b90-";
11800
Requests[1654].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11801
Requests[1654].
Request
.Path = "/subscriptions/72c65b8a-1860-/resourceGroups/70d5d2a1-a5be-485/providers/Microsoft.BatchAI/fileServers/97f6a9c2-c08c-";
11804
Requests[1655].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11805
Requests[1655].
Request
.Path = "/subscriptions/3cb8bf7b-467f-/resourceGroups/bd47aa4f-8aee-4db/providers/Microsoft.BatchAI/fileServers/5ec0383d-8b68-";
11808
Requests[1656].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11809
Requests[1656].
Request
.Path = "/subscriptions/d95dd609-8107-/resourceGroups/59580c87-0849-47e/providers/Microsoft.BatchAI/jobs/4c7b7a0";
11812
Requests[1657].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11813
Requests[1657].
Request
.Path = "/subscriptions/e39388f3-6afc-/resourceGroups/9a7dea1d-35f4-4f1/providers/Microsoft.BatchAI/jobs/9ee9b59";
11816
Requests[1658].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11817
Requests[1658].
Request
.Path = "/subscriptions/92aeea79-fc2a-/resourceGroups/fb8ef72b-184b-461/providers/Microsoft.BatchAI/jobs/369ff3b";
11820
Requests[1659].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11821
Requests[1659].
Request
.Path = "/subscriptions/5619fe60-fac1-/resourceGroups/6e5b440b-d8c8-4f5/providers/Microsoft.BatchAI/workspaces/a0505aa6-38da";
11824
Requests[1660].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11825
Requests[1660].
Request
.Path = "/subscriptions/0268124a-6f89-/resourceGroups/7237baf4-0ffe-494/providers/Microsoft.BatchAI/workspaces/b07b6892-67cc";
11828
Requests[1661].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11829
Requests[1661].
Request
.Path = "/subscriptions/74e3a974-93e4-/resourceGroups/553efe18-8452-4de/providers/Microsoft.BatchAI/workspaces/846231d8-d3f1";
11832
Requests[1662].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11833
Requests[1662].
Request
.Path = "/subscriptions/4fc64262-560b-/resourceGroups/c16132f3-f755-41f/providers/Microsoft.BotService/botServices/1f660153-60b";
11836
Requests[1663].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11837
Requests[1663].
Request
.Path = "/subscriptions/2e4d2c33-b56a-/resourceGroups/0a726dc0-dcb1-45b/providers/Microsoft.BotService/botServices/c8d5b20f-9c8";
11840
Requests[1664].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11841
Requests[1664].
Request
.Path = "/subscriptions/9df22d6b-aab7-/resourceGroups/d158726c-7649-487/providers/Microsoft.BotService/botServices/354d29a6-0fc";
11844
Requests[1665].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11845
Requests[1665].
Request
.Path = "/subscriptions/f1e48552-7895-/resourceGroups/cfc6d8fe-6f14-4ae/providers/Microsoft.BotService/botServices/591a0496-4c6";
11848
Requests[1666].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11849
Requests[1666].
Request
.Path = "/subscriptions/730cd998-79d5-/resourceGroups/d4f2bf79-8658-482/providers/Microsoft.Cache/Redis/77c23";
11852
Requests[1667].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11853
Requests[1667].
Request
.Path = "/subscriptions/790af2b1-71f9-/resourceGroups/7c9c2732-edd8-435/providers/Microsoft.Cache/Redis/61563";
11856
Requests[1668].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11857
Requests[1668].
Request
.Path = "/subscriptions/0514a590-368e-/resourceGroups/70a61d39-77b8-475/providers/Microsoft.Cache/Redis/469de";
11860
Requests[1669].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11861
Requests[1669].
Request
.Path = "/subscriptions/bb3784c7-e29d-/resourceGroups/120072a5-2f2d-426/providers/Microsoft.Cache/Redis/b7fd7";
11864
Requests[1670].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11865
Requests[1670].
Request
.Path = "/subscriptions/15532207-41cc-/resourceGroups/ee1b3d2b-817d-401/providers/Microsoft.Cdn/profiles/66cdcea4-e1";
11868
Requests[1671].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11869
Requests[1671].
Request
.Path = "/subscriptions/1c4a28da-d61a-/resourceGroups/4530e416-1652-45a/providers/Microsoft.Cdn/profiles/c0fcc08d-da";
11872
Requests[1672].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11873
Requests[1672].
Request
.Path = "/subscriptions/3dce4ef0-1800-/resourceGroups/dbebde40-3060-419/providers/Microsoft.Cdn/profiles/dd326e16-92";
11876
Requests[1673].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11877
Requests[1673].
Request
.Path = "/subscriptions/eb8ef451-2b6e-/resourceGroups/85f358b1-d544-4e9/providers/Microsoft.Cdn/profiles/30f037e5-d3";
11880
Requests[1674].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11881
Requests[1674].
Request
.Path = "/subscriptions/e5fe7b42-bab1-/resourceGroups/902c9e24-e42a-438/providers/Microsoft.CertificateRegistration/certificateOrders/270a9";
11884
Requests[1675].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11885
Requests[1675].
Request
.Path = "/subscriptions/2e84b0cc-6180-/resourceGroups/c1e05012-717e-407/providers/Microsoft.CertificateRegistration/certificateOrders/a11de";
11888
Requests[1676].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11889
Requests[1676].
Request
.Path = "/subscriptions/e4f6d028-d834-/resourceGroups/dce178b3-f51d-44a/providers/Microsoft.CertificateRegistration/certificateOrders/910b8";
11892
Requests[1677].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11893
Requests[1677].
Request
.Path = "/subscriptions/3a2bf3e2-a011-/resourceGroups/8048a26a-64c6-477/providers/Microsoft.CertificateRegistration/certificateOrders/ab1cf";
11896
Requests[1678].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11897
Requests[1678].
Request
.Path = "/subscriptions/9f975f2e-596b-/resourceGroups/1cf5fefb-1b53-442/providers/Microsoft.CognitiveServices/accounts/23641a9c-77";
11900
Requests[1679].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11901
Requests[1679].
Request
.Path = "/subscriptions/e800deab-2de9-/resourceGroups/ca9f12fd-54ba-4a3/providers/Microsoft.CognitiveServices/accounts/da17b26b-4a";
11904
Requests[1680].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11905
Requests[1680].
Request
.Path = "/subscriptions/612aaa14-f8ae-/resourceGroups/92e68889-a9a8-4a8/providers/Microsoft.CognitiveServices/accounts/f84cd86b-38";
11908
Requests[1681].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11909
Requests[1681].
Request
.Path = "/subscriptions/99abb6b1-9937-/resourceGroups/53d0feaf-40f8-479/providers/Microsoft.CognitiveServices/accounts/3c8f8ac7-c3";
11912
Requests[1682].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11913
Requests[1682].
Request
.Path = "/subscriptions/4a30477d-cd91-/resourceGroups/2af95ebf-6a4b-4c0/providers/Microsoft.Compute/availabilitySets/afbe41a4-0da6-4b01-";
11916
Requests[1683].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11917
Requests[1683].
Request
.Path = "/subscriptions/97d848e3-c17f-/resourceGroups/ccdde0ae-37c0-416/providers/Microsoft.Compute/availabilitySets/dbfea11c-1316-46cc-";
11920
Requests[1684].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11921
Requests[1684].
Request
.Path = "/subscriptions/4efa00db-a2cc-/resourceGroups/5512dd4e-ee65-45d/providers/Microsoft.Compute/availabilitySets/0e1c7360-e327-489c-";
11924
Requests[1685].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11925
Requests[1685].
Request
.Path = "/subscriptions/fe211480-1077-/resourceGroups/ff01653b-7d03-43c/providers/Microsoft.Compute/availabilitySets/56d41060-4f3e-499f-";
11928
Requests[1686].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11929
Requests[1686].
Request
.Path = "/subscriptions/7353c807-ca48-/resourceGroups/3e1a94e7-bcea-4c0/providers/Microsoft.Compute/disks/9fda87e3";
11932
Requests[1687].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11933
Requests[1687].
Request
.Path = "/subscriptions/7a14e085-428f-/resourceGroups/db7d7ffb-08ee-417/providers/Microsoft.Compute/disks/2607a1ed";
11936
Requests[1688].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11937
Requests[1688].
Request
.Path = "/subscriptions/810b94cb-3a98-/resourceGroups/f3bc2a8c-46a1-45e/providers/Microsoft.Compute/disks/64a8cf99";
11940
Requests[1689].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11941
Requests[1689].
Request
.Path = "/subscriptions/ab032534-284b-/resourceGroups/1acc2204-ddae-409/providers/Microsoft.Compute/disks/3141b7d5";
11944
Requests[1690].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11945
Requests[1690].
Request
.Path = "/subscriptions/07e3e67c-8ce3-/resourceGroups/41456f1a-39fa-494/providers/Microsoft.Compute/galleries/e9c500d8-fd";
11948
Requests[1691].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11949
Requests[1691].
Request
.Path = "/subscriptions/7b568caa-7ae7-/resourceGroups/f1f8b86c-dcec-49d/providers/Microsoft.Compute/galleries/31244bb7-87";
11952
Requests[1692].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11953
Requests[1692].
Request
.Path = "/subscriptions/c6541397-1721-/resourceGroups/cebfbb56-08c4-4dc/providers/Microsoft.Compute/galleries/31036bd0-1d";
11956
Requests[1693].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11957
Requests[1693].
Request
.Path = "/subscriptions/5220fbba-3e14-/resourceGroups/890ac566-837d-4ab/providers/Microsoft.Compute/images/b2108c53-";
11960
Requests[1694].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11961
Requests[1694].
Request
.Path = "/subscriptions/a6dd4555-0869-/resourceGroups/9637cee1-82b2-40a/providers/Microsoft.Compute/images/1a89dcce-";
11964
Requests[1695].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11965
Requests[1695].
Request
.Path = "/subscriptions/5f434148-d24e-/resourceGroups/d2761cb5-422c-4f3/providers/Microsoft.Compute/images/0322e735-";
11968
Requests[1696].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11969
Requests[1696].
Request
.Path = "/subscriptions/c20cfd39-4478-/resourceGroups/42b04578-d155-4dd/providers/Microsoft.Compute/images/adfc0558-";
11972
Requests[1697].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11973
Requests[1697].
Request
.Path = "/subscriptions/3f45d9ec-80c8-/resourceGroups/a5b09ff6-8a65-445/providers/Microsoft.Compute/snapshots/7f7c5986-7c0";
11976
Requests[1698].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11977
Requests[1698].
Request
.Path = "/subscriptions/3b831e2a-d3b5-/resourceGroups/ed63ecba-d3c5-431/providers/Microsoft.Compute/snapshots/5b96760c-f27";
11980
Requests[1699].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
11981
Requests[1699].
Request
.Path = "/subscriptions/d531718c-ff17-/resourceGroups/974c050f-640b-40f/providers/Microsoft.Compute/snapshots/7acc98ba-b80";
11984
Requests[1700].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11985
Requests[1700].
Request
.Path = "/subscriptions/1d55c3c7-8dc3-/resourceGroups/75ed1cbd-f901-4a8/providers/Microsoft.Compute/snapshots/95ddfbd7-68a";
11988
Requests[1701].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
11989
Requests[1701].
Request
.Path = "/subscriptions/d6d77d47-8b3a-/resourceGroups/77463ab4-badc-42b/providers/Microsoft.Compute/virtualMachines/3c970a";
11992
Requests[1702].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
11993
Requests[1702].
Request
.Path = "/subscriptions/a2312905-bc30-/resourceGroups/0ac03595-24d0-4e9/providers/Microsoft.Compute/virtualMachines/649d14";
11996
Requests[1703].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
11997
Requests[1703].
Request
.Path = "/subscriptions/a082d597-99e9-/resourceGroups/1b527007-2a13-48b/providers/Microsoft.Compute/virtualMachines/f24d06";
12000
Requests[1704].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12001
Requests[1704].
Request
.Path = "/subscriptions/e3c39007-54fd-/resourceGroups/f562f762-9b5f-495/providers/Microsoft.Compute/virtualMachines/a0c7f9";
12004
Requests[1705].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12005
Requests[1705].
Request
.Path = "/subscriptions/15f66daa-975e-/resourceGroups/299d586e-6315-417/providers/Microsoft.Compute/virtualMachineScaleSets/97ec0acc-8b44-";
12008
Requests[1706].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12009
Requests[1706].
Request
.Path = "/subscriptions/c65ade01-547a-/resourceGroups/1f79653a-94e3-4a3/providers/Microsoft.Compute/virtualMachineScaleSets/cd12af52-669d-";
12012
Requests[1707].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12013
Requests[1707].
Request
.Path = "/subscriptions/e2c09aca-214b-/resourceGroups/8c01542b-a60a-48f/providers/Microsoft.Compute/virtualMachineScaleSets/7f3612f9-cbe7-";
12016
Requests[1708].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12017
Requests[1708].
Request
.Path = "/subscriptions/c8fd8d3b-98e8-/resourceGroups/0ac7203a-d09d-4f7/providers/Microsoft.Compute/virtualMachineScaleSets/8edf627f-f1d0-";
12020
Requests[1709].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12021
Requests[1709].
Request
.Path = "/subscriptions/ebaf3afe-5fcf-/resourceGroups/006d1127-24d6-45d/providers/Microsoft.Consumption/budgets/806cc08f-3";
12024
Requests[1710].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12025
Requests[1710].
Request
.Path = "/subscriptions/a1529182-de98-/resourceGroups/4eac0029-bc74-436/providers/Microsoft.Consumption/budgets/0f67ee47-a";
12028
Requests[1711].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12029
Requests[1711].
Request
.Path = "/subscriptions/7d08618c-9a84-/resourceGroups/923f220e-1091-491/providers/Microsoft.Consumption/budgets/18f044f5-0";
12032
Requests[1712].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12033
Requests[1712].
Request
.Path = "/subscriptions/0fe0f9c6-39a1-/resourceGroups/aeef3cb7-e2e7-4c2/providers/Microsoft.ContainerInstance/containerGroups/17132870-c9e7-41f6";
12036
Requests[1713].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12037
Requests[1713].
Request
.Path = "/subscriptions/3f2a3b64-5909-/resourceGroups/fb1a5615-b465-4f5/providers/Microsoft.ContainerInstance/containerGroups/f434a539-acf9-47f2";
12040
Requests[1714].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12041
Requests[1714].
Request
.Path = "/subscriptions/276cee16-ee73-/resourceGroups/461e055f-22d6-486/providers/Microsoft.ContainerInstance/containerGroups/dba5cfa0-ce15-4992";
12044
Requests[1715].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12045
Requests[1715].
Request
.Path = "/subscriptions/b3078119-2bb7-/resourceGroups/65c4a4db-3287-475/providers/Microsoft.ContainerInstance/containerGroups/961eb516-5ed8-47cf";
12048
Requests[1716].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12049
Requests[1716].
Request
.Path = "/subscriptions/29b302fe-44be-/resourceGroups/ae67b92b-2e88-4fa/providers/Microsoft.ContainerRegistry/registries/47e9e603-ca9";
12052
Requests[1717].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12053
Requests[1717].
Request
.Path = "/subscriptions/3e3d6c0d-36b5-/resourceGroups/db820d7e-417f-486/providers/Microsoft.ContainerRegistry/registries/035e1b5d-7bd";
12056
Requests[1718].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12057
Requests[1718].
Request
.Path = "/subscriptions/19fc3c30-8f49-/resourceGroups/ff15cc45-d632-41b/providers/Microsoft.ContainerRegistry/registries/04902d20-89e";
12060
Requests[1719].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12061
Requests[1719].
Request
.Path = "/subscriptions/63729c3c-03b2-/resourceGroups/d14213d5-2734-428/providers/Microsoft.ContainerRegistry/registries/29d9efb3-433";
12064
Requests[1720].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12065
Requests[1720].
Request
.Path = "/subscriptions/f6009dd4-39d5-/resourceGroups/297c4d86-cc76-4ef/providers/Microsoft.ContainerService/containerServices/356813d1-4a4a-461e-9";
12068
Requests[1721].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12069
Requests[1721].
Request
.Path = "/subscriptions/5fe88dc8-37ee-/resourceGroups/baca8aac-9216-4ea/providers/Microsoft.ContainerService/containerServices/d66f1b35-13a6-49b7-8";
12072
Requests[1722].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12073
Requests[1722].
Request
.Path = "/subscriptions/ec1f7bce-6472-/resourceGroups/f7c75401-7fe2-4c6/providers/Microsoft.ContainerService/containerServices/c6087710-03ee-429a-8";
12076
Requests[1723].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12077
Requests[1723].
Request
.Path = "/subscriptions/f214a4cc-8e74-/resourceGroups/6df91c59-97df-499/providers/Microsoft.ContainerService/managedClusters/ba42d48e-a16";
12080
Requests[1724].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12081
Requests[1724].
Request
.Path = "/subscriptions/bd913960-4a67-/resourceGroups/8b3dbbf6-6684-44c/providers/Microsoft.ContainerService/managedClusters/4af851c8-9f5";
12084
Requests[1725].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12085
Requests[1725].
Request
.Path = "/subscriptions/d9969749-1077-/resourceGroups/f17163db-05c1-439/providers/Microsoft.ContainerService/managedClusters/2aadb044-6dc";
12088
Requests[1726].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12089
Requests[1726].
Request
.Path = "/subscriptions/d5ec7fd0-6f38-/resourceGroups/fc27a45a-ed84-433/providers/Microsoft.CustomerInsights/hubs/af57c0b";
12092
Requests[1727].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12093
Requests[1727].
Request
.Path = "/subscriptions/c58aea0f-bf66-/resourceGroups/fb6495d3-df78-4d6/providers/Microsoft.CustomerInsights/hubs/80cf81f";
12096
Requests[1728].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12097
Requests[1728].
Request
.Path = "/subscriptions/d49fb4a1-6dae-/resourceGroups/36f8c0c7-5663-424/providers/Microsoft.CustomerInsights/hubs/e9ba970";
12100
Requests[1729].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12101
Requests[1729].
Request
.Path = "/subscriptions/ab8052cb-fb0c-/resourceGroups/cba5eb08-f6ca-43a/providers/Microsoft.CustomerInsights/hubs/b875850";
12104
Requests[1730].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12105
Requests[1730].
Request
.Path = "/subscriptions/093fa5df-9752-/resourceGroups/d7fe99c4-7b1e-474/providers/Microsoft.DataBox/jobs/31b1ddb";
12108
Requests[1731].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12109
Requests[1731].
Request
.Path = "/subscriptions/bd1ec873-1c92-/resourceGroups/8a0681bf-bd45-473/providers/Microsoft.DataBox/jobs/8be4599";
12112
Requests[1732].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12113
Requests[1732].
Request
.Path = "/subscriptions/a6c92778-08aa-/resourceGroups/70654c1c-0b25-4b5/providers/Microsoft.DataBox/jobs/6764093";
12116
Requests[1733].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12117
Requests[1733].
Request
.Path = "/subscriptions/b60274d5-99b9-/resourceGroups/4bc3404c-f853-44e/providers/Microsoft.DataBox/jobs/902260f";
12120
Requests[1734].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12121
Requests[1734].
Request
.Path = "/subscriptions/8ed377f0-f22f-/resourceGroups/27a9ff75-8dae-413/providers/Microsoft.Databricks/workspaces/fa39b66b-4a75";
12124
Requests[1735].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12125
Requests[1735].
Request
.Path = "/subscriptions/b2a617ca-cb87-/resourceGroups/20748f86-da19-422/providers/Microsoft.Databricks/workspaces/1c02f89c-ed08";
12128
Requests[1736].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12129
Requests[1736].
Request
.Path = "/subscriptions/b48912fa-928f-/resourceGroups/8ae72d75-5779-41f/providers/Microsoft.Databricks/workspaces/7f4cd71a-14ba";
12132
Requests[1737].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12133
Requests[1737].
Request
.Path = "/subscriptions/f0d153ab-a714-/resourceGroups/ce308dff-cb2f-4c2/providers/Microsoft.Databricks/workspaces/28270bc3-b446";
12136
Requests[1738].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12137
Requests[1738].
Request
.Path = "/subscriptions/04f2703b-10bd-/resourceGroups/9fb342ec-7505-468/providers/Microsoft.DataCatalog/catalogs/4916593e-ed";
12140
Requests[1739].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12141
Requests[1739].
Request
.Path = "/subscriptions/e8b0b205-4a9d-/resourceGroups/6de4edc5-6d60-4f5/providers/Microsoft.DataCatalog/catalogs/7d507e15-f0";
12144
Requests[1740].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12145
Requests[1740].
Request
.Path = "/subscriptions/ba63f917-c76b-/resourceGroups/c98cdebf-279d-403/providers/Microsoft.DataCatalog/catalogs/161ced14-1a";
12148
Requests[1741].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12149
Requests[1741].
Request
.Path = "/subscriptions/b25e34ad-9369-/resourceGroups/1aeca860-03cc-403/providers/Microsoft.DataCatalog/catalogs/90fca8b8-e2";
12152
Requests[1742].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12153
Requests[1742].
Request
.Path = "/subscriptions/aa5c986d-0b96-/resourceGroups/21eaed12-55b4-4ba/providers/Microsoft.DataFactory/factories/eaed2015-71";
12156
Requests[1743].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12157
Requests[1743].
Request
.Path = "/subscriptions/133939d1-caf6-/resourceGroups/8f52da6b-19a0-4f5/providers/Microsoft.DataFactory/factories/f52cfaf2-61";
12160
Requests[1744].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12161
Requests[1744].
Request
.Path = "/subscriptions/96fb5cc2-39a8-/resourceGroups/d219eede-eaa0-446/providers/Microsoft.DataFactory/factories/3c2e49dd-b3";
12164
Requests[1745].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12165
Requests[1745].
Request
.Path = "/subscriptions/c7104675-453a-/resourceGroups/d40004b5-0eaa-46f/providers/Microsoft.DataFactory/factories/ac7a86fe-00";
12168
Requests[1746].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12169
Requests[1746].
Request
.Path = "/subscriptions/8450ea94-505d-/resourceGroups/e6d9c3a8-37d4-45f/providers/Microsoft.DataLakeAnalytics/accounts/6f2f50fa-28";
12172
Requests[1747].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12173
Requests[1747].
Request
.Path = "/subscriptions/9dbb5d47-fb2c-/resourceGroups/bb54224a-4566-4c2/providers/Microsoft.DataLakeAnalytics/accounts/fb3e690a-2a";
12176
Requests[1748].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12177
Requests[1748].
Request
.Path = "/subscriptions/8336b7d2-f15a-/resourceGroups/2d972790-e542-44d/providers/Microsoft.DataLakeAnalytics/accounts/464e0ad4-58";
12180
Requests[1749].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12181
Requests[1749].
Request
.Path = "/subscriptions/89a4f731-9a29-/resourceGroups/4f11965d-5bc9-490/providers/Microsoft.DataLakeAnalytics/accounts/b27e54b9-4f";
12184
Requests[1750].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12185
Requests[1750].
Request
.Path = "/subscriptions/b12c1704-a462-/resourceGroups/6a128853-c287-43e/providers/Microsoft.DataLakeStore/accounts/bc949fa9-3d";
12188
Requests[1751].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12189
Requests[1751].
Request
.Path = "/subscriptions/dae3c3d4-abaa-/resourceGroups/26a20579-5f69-46b/providers/Microsoft.DataLakeStore/accounts/4700f8ef-fe";
12192
Requests[1752].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12193
Requests[1752].
Request
.Path = "/subscriptions/7e03161a-8148-/resourceGroups/b1e80edd-2caa-421/providers/Microsoft.DataLakeStore/accounts/20bb8049-7f";
12196
Requests[1753].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12197
Requests[1753].
Request
.Path = "/subscriptions/80f7f011-8688-/resourceGroups/f9cfffc3-e5e3-424/providers/Microsoft.DataLakeStore/accounts/cbd4eb23-2a";
12200
Requests[1754].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12201
Requests[1754].
Request
.Path = "/subscriptions/3337585c-87ed-/resourceGroups/5e758cce-fc64-4c4/providers/Microsoft.DBforMySQL/servers/66a6d45a-2";
12204
Requests[1755].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12205
Requests[1755].
Request
.Path = "/subscriptions/820367fe-2a37-/resourceGroups/ac4941b7-5a3c-453/providers/Microsoft.DBforMySQL/servers/82d25bc1-5";
12208
Requests[1756].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12209
Requests[1756].
Request
.Path = "/subscriptions/53e141ac-27ac-/resourceGroups/53b1b797-c204-4a5/providers/Microsoft.DBforMySQL/servers/235cc04c-f";
12212
Requests[1757].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12213
Requests[1757].
Request
.Path = "/subscriptions/83a1e00c-7f02-/resourceGroups/19e945c5-8c08-4db/providers/Microsoft.DBforMySQL/servers/a33c6a28-9";
12216
Requests[1758].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12217
Requests[1758].
Request
.Path = "/subscriptions/7752a955-137f-/resourceGroups/accf0ba9-0349-45a/providers/Microsoft.DBforPostgreSQL/servers/1d460f55-8";
12220
Requests[1759].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12221
Requests[1759].
Request
.Path = "/subscriptions/343fef7b-4245-/resourceGroups/d9b03f7d-2319-44e/providers/Microsoft.DBforPostgreSQL/servers/4ea6cf54-8";
12224
Requests[1760].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12225
Requests[1760].
Request
.Path = "/subscriptions/661720d3-ae8b-/resourceGroups/f0ca75f7-448c-46b/providers/Microsoft.DBforPostgreSQL/servers/32e628f6-e";
12228
Requests[1761].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12229
Requests[1761].
Request
.Path = "/subscriptions/70c649af-cf0a-/resourceGroups/8b491f88-5bf2-413/providers/Microsoft.DBforPostgreSQL/servers/dc47134b-8";
12232
Requests[1762].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12233
Requests[1762].
Request
.Path = "/subscriptions/aea3f6e9-d392-/resourceGroups/5ed0efb8-2e30-47c/providers/Microsoft.Devices/IotHubs/b4523302-1b6";
12236
Requests[1763].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12237
Requests[1763].
Request
.Path = "/subscriptions/e5beb814-ff8a-/resourceGroups/642c3fb2-b123-469/providers/Microsoft.Devices/IotHubs/6e230169-143";
12240
Requests[1764].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12241
Requests[1764].
Request
.Path = "/subscriptions/0cdcf03c-21ff-/resourceGroups/61ba86a7-dd35-455/providers/Microsoft.Devices/IotHubs/75dcf13d-9ca";
12244
Requests[1765].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12245
Requests[1765].
Request
.Path = "/subscriptions/cded5771-887b-/resourceGroups/da93cf0e-bb5a-4ca/providers/Microsoft.Devices/IotHubs/8ee04b42-3ed";
12248
Requests[1766].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12249
Requests[1766].
Request
.Path = "/subscriptions/75a79ef9-1b2a-/resourceGroups/fcbcaf03-9b48-4da/providers/Microsoft.Devices/provisioningServices/cf124693-7618-46a7-b270";
12252
Requests[1767].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12253
Requests[1767].
Request
.Path = "/subscriptions/99405958-e824-/resourceGroups/aad73d1a-f837-45a/providers/Microsoft.Devices/provisioningServices/84a77473-72d2-472a-9432";
12256
Requests[1768].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12257
Requests[1768].
Request
.Path = "/subscriptions/b30ac093-6734-/resourceGroups/d6f5b2f3-6070-43a/providers/Microsoft.Devices/provisioningServices/7687ab96-dc17-478d-8e18";
12260
Requests[1769].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12261
Requests[1769].
Request
.Path = "/subscriptions/43036939-9619-/resourceGroups/1847e713-3f37-4ae/providers/Microsoft.Devices/provisioningServices/6271e574-8bd3-48c0-af67";
12264
Requests[1770].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12265
Requests[1770].
Request
.Path = "/subscriptions/b916691f-da32-/resourceGroups/882898f3-86dd-4fc/providers/Microsoft.DevTestLab/labs/45669";
12268
Requests[1771].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12269
Requests[1771].
Request
.Path = "/subscriptions/7125c561-d4f9-/resourceGroups/b061a7b7-1d57-457/providers/Microsoft.DevTestLab/labs/79e6b";
12272
Requests[1772].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12273
Requests[1772].
Request
.Path = "/subscriptions/5e858e57-d409-/resourceGroups/fef351c3-7801-4cf/providers/Microsoft.DevTestLab/labs/d257a";
12276
Requests[1773].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12277
Requests[1773].
Request
.Path = "/subscriptions/e7a2001d-7f85-/resourceGroups/b216b915-243e-4c2/providers/Microsoft.DevTestLab/labs/2bf85";
12280
Requests[1774].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12281
Requests[1774].
Request
.Path = "/subscriptions/4b3c38d8-8c69-/resourceGroups/e2ff1d29-ea0a-4e1/providers/Microsoft.DevTestLab/schedules/a3102";
12284
Requests[1775].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12285
Requests[1775].
Request
.Path = "/subscriptions/13dc42f0-8bb3-/resourceGroups/b2d30731-7813-40b/providers/Microsoft.DevTestLab/schedules/c1a6a";
12288
Requests[1776].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12289
Requests[1776].
Request
.Path = "/subscriptions/d15b198c-11de-/resourceGroups/cc9511d5-e6e7-4cf/providers/Microsoft.DevTestLab/schedules/65962";
12292
Requests[1777].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12293
Requests[1777].
Request
.Path = "/subscriptions/36a42dc2-fedd-/resourceGroups/eb2cdc9b-6e87-424/providers/Microsoft.DevTestLab/schedules/519e0";
12296
Requests[1778].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12297
Requests[1778].
Request
.Path = "/subscriptions/0e5cfcde-490e-/resourceGroups/1da638ff-db9c-41c/providers/Microsoft.DocumentDB/databaseAccounts/8ce0da57-82";
12300
Requests[1779].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12301
Requests[1779].
Request
.Path = "/subscriptions/ae0e30b2-c668-/resourceGroups/3fd1099a-47ea-40e/providers/Microsoft.DocumentDB/databaseAccounts/3d489471-93";
12304
Requests[1780].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12305
Requests[1780].
Request
.Path = "/subscriptions/9e926b0e-0236-/resourceGroups/d349b8a7-457b-4e9/providers/Microsoft.DocumentDB/databaseAccounts/f43557b8-26";
12308
Requests[1781].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12309
Requests[1781].
Request
.Path = "/subscriptions/5dcd39c0-0740-/resourceGroups/eb8a3c97-8050-40d/providers/Microsoft.DocumentDB/databaseAccounts/cad642a9-24";
12312
Requests[1782].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12313
Requests[1782].
Request
.Path = "/subscriptions/434c1164-e8a7-/resourceGroups/05c60298-c975-455/providers/Microsoft.DomainRegistration/domains/b83962e9-9";
12316
Requests[1783].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12317
Requests[1783].
Request
.Path = "/subscriptions/3b9fe4b9-633f-/resourceGroups/c5791472-ae83-494/providers/Microsoft.DomainRegistration/domains/a1b3220e-3";
12320
Requests[1784].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12321
Requests[1784].
Request
.Path = "/subscriptions/58862bde-4901-/resourceGroups/93caffe4-b606-496/providers/Microsoft.DomainRegistration/domains/7f8d0da5-b";
12324
Requests[1785].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12325
Requests[1785].
Request
.Path = "/subscriptions/f5f6cd21-b1cd-/resourceGroups/5b984ba6-8db4-4bb/providers/Microsoft.DomainRegistration/domains/471d5efd-b";
12328
Requests[1786].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12329
Requests[1786].
Request
.Path = "/subscriptions/6a927521-d351-/resourceGroups/3435b7fa-b99f-4cd/providers/Microsoft.EventGrid/topics/32407e65-";
12332
Requests[1787].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12333
Requests[1787].
Request
.Path = "/subscriptions/d35da684-759e-/resourceGroups/f49b9e25-0100-41e/providers/Microsoft.EventGrid/topics/bd55ef23-";
12336
Requests[1788].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12337
Requests[1788].
Request
.Path = "/subscriptions/8c0c64c7-c679-/resourceGroups/0926b111-cff7-42c/providers/Microsoft.EventGrid/topics/ef9138c0-";
12340
Requests[1789].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12341
Requests[1789].
Request
.Path = "/subscriptions/61ec79a6-8634-/resourceGroups/5f6586d7-db96-4e1/providers/Microsoft.EventGrid/topics/223001df-";
12344
Requests[1790].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12345
Requests[1790].
Request
.Path = "/subscriptions/5c525398-96d0-/resourceGroups/7d374f4b-b35f-4f5/providers/Microsoft.EventHub/clusters/499e543d-8d";
12348
Requests[1791].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12349
Requests[1791].
Request
.Path = "/subscriptions/c9ae5065-5f71-/resourceGroups/6cd18e1c-a613-40e/providers/Microsoft.EventHub/clusters/001b2bc7-87";
12352
Requests[1792].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12353
Requests[1792].
Request
.Path = "/subscriptions/4a3f8e7e-22e5-/resourceGroups/3bca5d0f-b584-488/providers/Microsoft.EventHub/namespaces/e5beb57a-88b6";
12356
Requests[1793].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12357
Requests[1793].
Request
.Path = "/subscriptions/a074d51d-23dd-/resourceGroups/01d37c08-b15c-4e9/providers/Microsoft.EventHub/namespaces/8a86ecb2-f135";
12360
Requests[1794].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12361
Requests[1794].
Request
.Path = "/subscriptions/3f916ef6-bb32-/resourceGroups/a709e25c-148e-43f/providers/Microsoft.EventHub/namespaces/cba61978-f9f4";
12364
Requests[1795].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12365
Requests[1795].
Request
.Path = "/subscriptions/b2ea2b90-3c3d-/resourceGroups/31486b52-c0f9-44a/providers/Microsoft.EventHub/namespaces/04c724e0-89b8";
12368
Requests[1796].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12369
Requests[1796].
Request
.Path = "/subscriptions/4a735fa0-bcd7-/resourceGroups/652f4546-3495-4a2/providers/Microsoft.Fabric.Admin/fabricLocations/a1e70557-e82c-";
12372
Requests[1797].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12373
Requests[1797].
Request
.Path = "/subscriptions/8193b116-9ff5-/resourceGroups/9fa84b6d-4e80-495/providers/Microsoft.HanaOnAzure/hanaInstances/b86195ce-b7b5-42";
12376
Requests[1798].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12377
Requests[1798].
Request
.Path = "/subscriptions/08ef48bd-8533-/resourceGroups/7e8428f7-0e84-4ec/providers/Microsoft.HDInsight/clusters/46a8e62d-87";
12380
Requests[1799].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12381
Requests[1799].
Request
.Path = "/subscriptions/d97aede8-c7e4-/resourceGroups/5c3d2ffc-920a-444/providers/Microsoft.HDInsight/clusters/0f0ef0cf-cd";
12384
Requests[1800].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12385
Requests[1800].
Request
.Path = "/subscriptions/3a7edce3-8daa-/resourceGroups/4a235172-1396-468/providers/Microsoft.HDInsight/clusters/5cfdcb6b-f8";
12388
Requests[1801].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12389
Requests[1801].
Request
.Path = "/subscriptions/31bcad8e-6861-/resourceGroups/d0db5122-d8a0-405/providers/Microsoft.HDInsight/clusters/0288498b-f5";
12392
Requests[1802].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12393
Requests[1802].
Request
.Path = "/subscriptions/96bcf7bd-fc64-/resourceGroups/398de39c-df84-460/providers/Microsoft.ImportExport/jobs/6a6ea6e";
12396
Requests[1803].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12397
Requests[1803].
Request
.Path = "/subscriptions/35f690f7-720e-/resourceGroups/9c19037f-bddf-473/providers/Microsoft.ImportExport/jobs/ca64379";
12400
Requests[1804].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12401
Requests[1804].
Request
.Path = "/subscriptions/da936dfd-7bb7-/resourceGroups/dae98d94-50b0-4c7/providers/Microsoft.ImportExport/jobs/6f1238a";
12404
Requests[1805].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12405
Requests[1805].
Request
.Path = "/subscriptions/bc31b194-3f40-/resourceGroups/d280a25a-4c5f-459/providers/Microsoft.ImportExport/jobs/2571fd8";
12408
Requests[1806].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12409
Requests[1806].
Request
.Path = "/subscriptions/91531137-c56f-/resourceGroups/3c458f30-43de-48d/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/0fbf673a";
12412
Requests[1807].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12413
Requests[1807].
Request
.Path = "/subscriptions/f1029b03-5a26-/resourceGroups/f32c9e1f-f7fe-41e/providers/microsoft.insights/actionGroups/aea34e70-933e-4";
12416
Requests[1808].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12417
Requests[1808].
Request
.Path = "/subscriptions/aa3531d5-e684-/resourceGroups/70493648-1e9e-4b8/providers/microsoft.insights/actionGroups/addf972a-56a3-4";
12420
Requests[1809].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12421
Requests[1809].
Request
.Path = "/subscriptions/c441f71d-6aa1-/resourceGroups/f9b30b1d-9746-4ec/providers/microsoft.insights/actionGroups/08834446-4fbf-4";
12424
Requests[1810].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12425
Requests[1810].
Request
.Path = "/subscriptions/b16ee007-ef25-/resourceGroups/33d2fb0b-638b-4ed/providers/microsoft.insights/actionGroups/a28d8e1b-29c0-4";
12428
Requests[1811].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12429
Requests[1811].
Request
.Path = "/subscriptions/2d9a0dbf-7f1b-/resourceGroups/d6caa543-ced4-46f/providers/microsoft.insights/activityLogAlerts/7a7fd221-c55d-4d78-a";
12432
Requests[1812].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12433
Requests[1812].
Request
.Path = "/subscriptions/3d25535e-6e51-/resourceGroups/4fa7ac0e-c3ef-46c/providers/microsoft.insights/activityLogAlerts/2c811b82-c6b7-4ae8-9";
12436
Requests[1813].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12437
Requests[1813].
Request
.Path = "/subscriptions/a3815793-04d1-/resourceGroups/06e2b406-d3ee-4c9/providers/microsoft.insights/activityLogAlerts/5bbbef5d-c9cf-44c5-9";
12440
Requests[1814].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12441
Requests[1814].
Request
.Path = "/subscriptions/aaf7c0a1-cd22-/resourceGroups/fb8c9881-5dd3-4a4/providers/microsoft.insights/activityLogAlerts/c9aa1ed8-25aa-4279-9";
12444
Requests[1815].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12445
Requests[1815].
Request
.Path = "/subscriptions/d7bde63a-966e-/resourcegroups/8611b0df-09e6-40c/providers/microsoft.insights/alertrules/fed75d3e";
12448
Requests[1816].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12449
Requests[1816].
Request
.Path = "/subscriptions/42ba8568-b5c1-/resourcegroups/06f05dd0-2684-486/providers/microsoft.insights/alertrules/c302d62d";
12452
Requests[1817].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12453
Requests[1817].
Request
.Path = "/subscriptions/ddf10b29-8f93-/resourcegroups/16cff7f3-cabe-49d/providers/microsoft.insights/alertrules/776e8b6e";
12456
Requests[1818].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12457
Requests[1818].
Request
.Path = "/subscriptions/46aa3350-129f-/resourcegroups/c750cead-82c9-423/providers/microsoft.insights/alertrules/9d3cea6d";
12460
Requests[1819].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12461
Requests[1819].
Request
.Path = "/subscriptions/8e768deb-d050-/resourcegroups/e659e9be-b5a0-410/providers/microsoft.insights/autoscalesettings/c16da62e-bef8-4300-b";
12464
Requests[1820].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12465
Requests[1820].
Request
.Path = "/subscriptions/e7f172a1-766d-/resourcegroups/959bdf96-7f65-49a/providers/microsoft.insights/autoscalesettings/3247f670-980b-48c7-a";
12468
Requests[1821].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12469
Requests[1821].
Request
.Path = "/subscriptions/1f17d081-c911-/resourcegroups/36313d71-1aea-4ba/providers/microsoft.insights/autoscalesettings/159f8ba5-8994-4a81-a";
12472
Requests[1822].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12473
Requests[1822].
Request
.Path = "/subscriptions/341b325d-c492-/resourcegroups/1a9389d1-b071-425/providers/microsoft.insights/autoscalesettings/123c17f9-18f3-4f00-b";
12476
Requests[1823].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12477
Requests[1823].
Request
.Path = "/subscriptions/b3124308-94f5-/resourceGroups/3b10bef0-2569-4f5/providers/Microsoft.Insights/components/0901c338-0bc";
12480
Requests[1824].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12481
Requests[1824].
Request
.Path = "/subscriptions/58ca0758-4d27-/resourceGroups/d0288377-2146-479/providers/Microsoft.Insights/components/a6dbb475-c19";
12484
Requests[1825].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12485
Requests[1825].
Request
.Path = "/subscriptions/de7e9bad-d205-/resourceGroups/cd5615a2-6146-407/providers/Microsoft.Insights/components/367699e2-324";
12488
Requests[1826].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12489
Requests[1826].
Request
.Path = "/subscriptions/132cff00-e0df-/resourceGroups/34e44c5d-c957-458/providers/Microsoft.Insights/components/b70ae269-d35";
12492
Requests[1827].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12493
Requests[1827].
Request
.Path = "/subscriptions/82760a05-db4b-/resourceGroups/2ae3a9b2-9b51-437/providers/Microsoft.Insights/metricAlerts/3b71250d";
12496
Requests[1828].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12497
Requests[1828].
Request
.Path = "/subscriptions/a5f15a0f-f26f-/resourceGroups/0fa3e8a2-6ebd-49d/providers/Microsoft.Insights/metricAlerts/f3383a14";
12500
Requests[1829].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12501
Requests[1829].
Request
.Path = "/subscriptions/72d075ef-fd66-/resourceGroups/28b4c57e-c566-420/providers/Microsoft.Insights/metricAlerts/8e5b6c4f";
12504
Requests[1830].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12505
Requests[1830].
Request
.Path = "/subscriptions/99c81ea6-3bcc-/resourceGroups/2abd9c2f-e04c-499/providers/Microsoft.Insights/metricAlerts/7fc26965";
12508
Requests[1831].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12509
Requests[1831].
Request
.Path = "/subscriptions/a4abaa62-329a-/resourcegroups/5c3dc41e-09f4-4a4/providers/microsoft.insights/scheduledQueryRules/1bccf45c";
12512
Requests[1832].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12513
Requests[1832].
Request
.Path = "/subscriptions/fdaff9cc-87a7-/resourcegroups/fd656fea-dbac-4b0/providers/microsoft.insights/scheduledQueryRules/f59b0a63";
12516
Requests[1833].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12517
Requests[1833].
Request
.Path = "/subscriptions/d8013326-9d49-/resourcegroups/4d3dcb5e-4f01-440/providers/microsoft.insights/scheduledQueryRules/380ba354";
12520
Requests[1834].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12521
Requests[1834].
Request
.Path = "/subscriptions/bb730c0e-538a-/resourceGroups/36aa5e9b-19dd-421/providers/Microsoft.Insights/webtests/775b6e25-08";
12524
Requests[1835].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12525
Requests[1835].
Request
.Path = "/subscriptions/af4188dc-f8c8-/resourceGroups/c74b31c1-c027-473/providers/Microsoft.Insights/webtests/966a1543-7c";
12528
Requests[1836].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12529
Requests[1836].
Request
.Path = "/subscriptions/1fb65b1f-9f84-/resourceGroups/2fe38b49-053c-495/providers/Microsoft.Insights/webtests/d7b8a58a-dc";
12532
Requests[1837].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12533
Requests[1837].
Request
.Path = "/subscriptions/ee2d878d-ab85-/resourceGroups/044642e0-931d-410/providers/Microsoft.Insights/webtests/43dfc02b-9c";
12536
Requests[1838].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12537
Requests[1838].
Request
.Path = "/subscriptions/94033102-29e3-/resourceGroups/ca09cff7-02e2-47f/providers/Microsoft.IoTCentral/IoTApps/d619b3f6-b39";
12540
Requests[1839].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12541
Requests[1839].
Request
.Path = "/subscriptions/c142300d-f5a9-/resourceGroups/8477f636-87ed-4ca/providers/Microsoft.IoTCentral/IoTApps/c745e0c2-7cf";
12544
Requests[1840].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12545
Requests[1840].
Request
.Path = "/subscriptions/93aab1a0-8bd0-/resourceGroups/d0439a22-6ac0-4c6/providers/Microsoft.IoTCentral/IoTApps/c794c300-8cb";
12548
Requests[1841].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12549
Requests[1841].
Request
.Path = "/subscriptions/b29ae34c-0834-/resourceGroups/f1ad08e3-a8cf-4f3/providers/Microsoft.IoTCentral/IoTApps/f6f78d0d-55d";
12552
Requests[1842].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12553
Requests[1842].
Request
.Path = "/subscriptions/adc14e3f-8394-/resourceGroups/0efe0585-539c-4d0/providers/Microsoft.IoTSpaces/Graph/473f1d75-e50";
12556
Requests[1843].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12557
Requests[1843].
Request
.Path = "/subscriptions/48d7430e-9b8a-/resourceGroups/88ed91ea-a908-464/providers/Microsoft.IoTSpaces/Graph/82ccf77e-c99";
12560
Requests[1844].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12561
Requests[1844].
Request
.Path = "/subscriptions/000669bf-3cf7-/resourceGroups/a3f0474f-842d-43e/providers/Microsoft.IoTSpaces/Graph/8e850114-34b";
12564
Requests[1845].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12565
Requests[1845].
Request
.Path = "/subscriptions/5ac5b1a9-331e-/resourceGroups/08bfbcfe-d632-460/providers/Microsoft.IoTSpaces/Graph/8dc7aca0-c5d";
12568
Requests[1846].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12569
Requests[1846].
Request
.Path = "/subscriptions/f3234676-1126-/resourceGroups/da3473b5-7913-48d/providers/Microsoft.KeyVault/vaults/68342c53-";
12572
Requests[1847].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12573
Requests[1847].
Request
.Path = "/subscriptions/51eb9e9f-4472-/resourceGroups/8bd08ead-8dd1-4f0/providers/Microsoft.KeyVault/vaults/56b55376-";
12576
Requests[1848].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12577
Requests[1848].
Request
.Path = "/subscriptions/4144bfd6-6c7a-/resourceGroups/1fb94ffc-c462-461/providers/Microsoft.KeyVault/vaults/6df79bd7-";
12580
Requests[1849].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12581
Requests[1849].
Request
.Path = "/subscriptions/a9b5b875-bfad-/resourceGroups/50b82933-3ba5-441/providers/Microsoft.KeyVault/vaults/a3ee1a83-";
12584
Requests[1850].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12585
Requests[1850].
Request
.Path = "/subscriptions/9d4fffab-59c8-/resourceGroups/b44a2b24-d913-49d/providers/Microsoft.Logic/integrationAccounts/bd14612b-2662-4ac9-8dc";
12588
Requests[1851].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12589
Requests[1851].
Request
.Path = "/subscriptions/1916dab4-8f8a-/resourceGroups/f9f55860-9944-475/providers/Microsoft.Logic/integrationAccounts/2c8a1e94-fd7e-40de-84c";
12592
Requests[1852].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12593
Requests[1852].
Request
.Path = "/subscriptions/c15b858c-3a7e-/resourceGroups/2cfb53b7-b0ff-473/providers/Microsoft.Logic/integrationAccounts/24b5a0c7-b702-4307-a1d";
12596
Requests[1853].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12597
Requests[1853].
Request
.Path = "/subscriptions/978912de-9bd6-/resourceGroups/d95bb339-ec77-4be/providers/Microsoft.Logic/integrationAccounts/7919bcef-8b8d-4d5b-870";
12600
Requests[1854].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12601
Requests[1854].
Request
.Path = "/subscriptions/79e477ee-b92a-/resourceGroups/1d1691c9-4212-4ac/providers/Microsoft.Logic/workflows/27f7ff37-7c5";
12604
Requests[1855].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12605
Requests[1855].
Request
.Path = "/subscriptions/f058748b-53eb-/resourceGroups/4e43c546-e721-459/providers/Microsoft.Logic/workflows/92d4916a-324";
12608
Requests[1856].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12609
Requests[1856].
Request
.Path = "/subscriptions/550958ab-6596-/resourceGroups/e3035fd2-d54f-4ef/providers/Microsoft.Logic/workflows/ef5c5d81-2b0";
12612
Requests[1857].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12613
Requests[1857].
Request
.Path = "/subscriptions/13c7c3b0-f2db-/resourceGroups/564252ff-2ea1-426/providers/Microsoft.Logic/workflows/41f99e22-86a";
12616
Requests[1858].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12617
Requests[1858].
Request
.Path = "/subscriptions/ca8e0793-ec38-/resourceGroups/5ddd0852-189a-40b/providers/Microsoft.MachineLearning/commitmentPlans/5f1e82e2-412c-4c06";
12620
Requests[1859].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12621
Requests[1859].
Request
.Path = "/subscriptions/9c93cdf5-521b-/resourceGroups/51e9750f-a03c-4cd/providers/Microsoft.MachineLearning/commitmentPlans/4478b4e2-0336-412e";
12624
Requests[1860].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12625
Requests[1860].
Request
.Path = "/subscriptions/26779511-6cbf-/resourceGroups/93df6f2e-4f42-4db/providers/Microsoft.MachineLearning/commitmentPlans/117accda-14f2-42c5";
12628
Requests[1861].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
12629
Requests[1861].
Request
.Path = "/subscriptions/6e650afb-768d-/resourceGroups/d9dfb743-fd3b-430/providers/Microsoft.MachineLearning/commitmentPlans/5be01ffb-5fa4-4224";
12632
Requests[1862].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12633
Requests[1862].
Request
.Path = "/subscriptions/1b56ca80-1037-/resourceGroups/4cb96a15-e119-483/providers/Microsoft.MachineLearning/commitmentPlans/e834b83a-cde3-4db4";
12636
Requests[1863].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12637
Requests[1863].
Request
.Path = "/subscriptions/ef32fa7d-0198-/resourceGroups/2173d64f-33d8-41b/providers/Microsoft.MachineLearning/webServices/701ac7a8-3c18-";
12640
Requests[1864].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12641
Requests[1864].
Request
.Path = "/subscriptions/4b5de478-293c-/resourceGroups/71044bce-dd49-43e/providers/Microsoft.MachineLearning/webServices/31ce93d3-22d1-";
12644
Requests[1865].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12645
Requests[1865].
Request
.Path = "/subscriptions/a5f7bee7-49f1-/resourceGroups/94c44342-7ae9-498/providers/Microsoft.MachineLearning/webServices/d2e61971-19b4-";
12648
Requests[1866].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12649
Requests[1866].
Request
.Path = "/subscriptions/16a2b8d7-7ae1-/resourceGroups/4a365a5e-06a3-49a/providers/Microsoft.MachineLearning/webServices/58379bcc-3171-";
12652
Requests[1867].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12653
Requests[1867].
Request
.Path = "/subscriptions/8350703e-efe9-/resourceGroups/89c3d38c-236f-40c/providers/Microsoft.MachineLearning/workspaces/14fe7a5d-b376";
12656
Requests[1868].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12657
Requests[1868].
Request
.Path = "/subscriptions/3b4ea66a-dd1c-/resourceGroups/1f77672e-4e96-419/providers/Microsoft.MachineLearning/workspaces/d0b1df3a-35a5";
12660
Requests[1869].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12661
Requests[1869].
Request
.Path = "/subscriptions/b67d21ec-1cb3-/resourceGroups/9fee758a-a28e-461/providers/Microsoft.MachineLearning/workspaces/e1dbcef8-c1d9";
12664
Requests[1870].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12665
Requests[1870].
Request
.Path = "/subscriptions/542d24bb-27e7-/resourceGroups/fc7eda38-3b7c-486/providers/Microsoft.MachineLearning/workspaces/86dbdce8-9401";
12668
Requests[1871].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12669
Requests[1871].
Request
.Path = "/subscriptions/74d57c9f-7564-/resourceGroups/bbb4d03b-cae6-47e/providers/Microsoft.MachineLearningCompute/operationalizationClusters/a8d6b65d-d7";
12672
Requests[1872].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12673
Requests[1872].
Request
.Path = "/subscriptions/175324d9-6b73-/resourceGroups/5503bb06-90b6-4a4/providers/Microsoft.MachineLearningCompute/operationalizationClusters/36e108cb-73";
12676
Requests[1873].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12677
Requests[1873].
Request
.Path = "/subscriptions/3ab6f4b7-7ab8-/resourceGroups/f0048f8f-46ee-499/providers/Microsoft.MachineLearningCompute/operationalizationClusters/d50aef8d-cd";
12680
Requests[1874].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12681
Requests[1874].
Request
.Path = "/subscriptions/e3644c42-6d40-/resourceGroups/3a173178-f8b5-420/providers/Microsoft.MachineLearningCompute/operationalizationClusters/8d974423-73";
12684
Requests[1875].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12685
Requests[1875].
Request
.Path = "/subscriptions/3cc41c39-ec75-/resourceGroups/7a1be289-1b2b-439/providers/Microsoft.MachineLearningExperimentation/accounts/fbb3395d-23";
12688
Requests[1876].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12689
Requests[1876].
Request
.Path = "/subscriptions/6d35677b-4169-/resourceGroups/10f29c59-0c10-40f/providers/Microsoft.MachineLearningExperimentation/accounts/e76143f4-6c";
12692
Requests[1877].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12693
Requests[1877].
Request
.Path = "/subscriptions/b3e11619-8d4d-/resourceGroups/204cd1d9-7f03-460/providers/Microsoft.MachineLearningExperimentation/accounts/cb8a2bc4-c1";
12696
Requests[1878].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12697
Requests[1878].
Request
.Path = "/subscriptions/e6e3adb2-c054-/resourceGroups/02dae6c4-e2a2-460/providers/Microsoft.MachineLearningExperimentation/accounts/020ab555-bf";
12700
Requests[1879].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12701
Requests[1879].
Request
.Path = "/subscriptions/f25a3b93-199f-/resourceGroups/5e390c75-f56c-4a5/providers/Microsoft.MachineLearningServices/workspaces/57f2dd72-e581";
12704
Requests[1880].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12705
Requests[1880].
Request
.Path = "/subscriptions/ff73dc2f-bdc0-/resourceGroups/14835cc0-8bae-400/providers/Microsoft.MachineLearningServices/workspaces/1787187a-adfe";
12708
Requests[1881].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12709
Requests[1881].
Request
.Path = "/subscriptions/54dbb607-48a2-/resourceGroups/6b4923cc-4725-432/providers/Microsoft.MachineLearningServices/workspaces/fd4a0d78-3192";
12712
Requests[1882].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12713
Requests[1882].
Request
.Path = "/subscriptions/391aef1d-2c65-/resourceGroups/6a2cd6eb-1ab4-4e9/providers/Microsoft.MachineLearningServices/workspaces/e2e20a67-bfbe";
12716
Requests[1883].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12717
Requests[1883].
Request
.Path = "/subscriptions/6f9da87d-2a6c-/resourceGroups/a1b69de0-06d3-494/providers/Microsoft.ManagedIdentity/userAssignedIdentities/501bccc9-bf5";
12720
Requests[1884].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12721
Requests[1884].
Request
.Path = "/subscriptions/7ef223e7-aba6-/resourceGroups/456c65c8-c62b-483/providers/Microsoft.ManagedIdentity/userAssignedIdentities/bbcb922c-1b1";
12724
Requests[1885].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12725
Requests[1885].
Request
.Path = "/subscriptions/15ee8074-7bc9-/resourceGroups/4f3f0897-39e0-40b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/6eeff5ba-6bd";
12728
Requests[1886].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12729
Requests[1886].
Request
.Path = "/subscriptions/3ec6bc3e-d5d8-/resourceGroups/e78ace92-bcec-4d5/providers/Microsoft.ManagedIdentity/userAssignedIdentities/db104b75-6f2";
12732
Requests[1887].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12733
Requests[1887].
Request
.Path = "/subscriptions/d137fd0f-00b4-/resourceGroups/7d3db48e-8366-45d/providers/Microsoft.Maps/accounts/b536e664-fc";
12736
Requests[1888].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12737
Requests[1888].
Request
.Path = "/subscriptions/12ed85e9-e5c0-/resourceGroups/daa2e896-bb91-49e/providers/Microsoft.Maps/accounts/2a927513-c1";
12740
Requests[1889].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12741
Requests[1889].
Request
.Path = "/subscriptions/33899bdf-7e92-/resourceGroups/c98a67f8-e05f-459/providers/Microsoft.Maps/accounts/a7b0e8a4-55";
12744
Requests[1890].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12745
Requests[1890].
Request
.Path = "/subscriptions/c0a8a961-c0ea-/resourceGroups/70e33331-d283-425/providers/Microsoft.Maps/accounts/765a05c5-ff";
12748
Requests[1891].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12749
Requests[1891].
Request
.Path = "/subscriptions/6bd63e66-4e92-/resourceGroups/3c034b88-d151-42a/providers/Microsoft.Media/mediaservices/a24c6a63-53d6-4d";
12752
Requests[1892].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12753
Requests[1892].
Request
.Path = "/subscriptions/9651e2a3-4514-/resourceGroups/43ad7a6e-bd87-48d/providers/Microsoft.Media/mediaservices/451bd0ef-539e-42";
12756
Requests[1893].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12757
Requests[1893].
Request
.Path = "/subscriptions/ce5926eb-2bf5-/resourceGroups/371e4cba-0226-4c8/providers/Microsoft.Media/mediaservices/d9e7eafc-c0d2-44";
12760
Requests[1894].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12761
Requests[1894].
Request
.Path = "/subscriptions/d2fd42ee-b4f7-/resourceGroups/730f543e-54cf-471/providers/Microsoft.Media/mediaservices/865cf746-4f43-4c";
12764
Requests[1895].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12765
Requests[1895].
Request
.Path = "/subscriptions/183eaa88-406f-/resourcegroups/afe91e21-36b4-48c/providers/Microsoft.Migrate/projects/6a8ba536-80";
12768
Requests[1896].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12769
Requests[1896].
Request
.Path = "/subscriptions/62078425-f40c-/resourcegroups/c678113f-a1d9-492/providers/Microsoft.Migrate/projects/43d099bb-4e";
12772
Requests[1897].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12773
Requests[1897].
Request
.Path = "/subscriptions/c62d912c-38a5-/resourcegroups/cc05392f-5d75-415/providers/Microsoft.Migrate/projects/4a6a63fe-a7";
12776
Requests[1898].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12777
Requests[1898].
Request
.Path = "/subscriptions/d3db15fe-da52-/resourcegroups/39bcff6d-3814-40e/providers/Microsoft.Migrate/projects/6885d00f-e5";
12780
Requests[1899].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12781
Requests[1899].
Request
.Path = "/subscriptions/a7e0c81d-2d92-/resourceGroups/c912437c-dc32-4bb/providers/Microsoft.Network/applicationGateways/9261b2cc-f647-434c-a9f";
12784
Requests[1900].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12785
Requests[1900].
Request
.Path = "/subscriptions/173ea361-ec30-/resourceGroups/c2192136-90f1-415/providers/Microsoft.Network/applicationGateways/f15cb121-ec18-4960-bc2";
12788
Requests[1901].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12789
Requests[1901].
Request
.Path = "/subscriptions/79c4a3c9-9420-/resourceGroups/d5102af7-c52c-44a/providers/Microsoft.Network/applicationGateways/048f3ae4-e442-4efb-93e";
12792
Requests[1902].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12793
Requests[1902].
Request
.Path = "/subscriptions/889b1311-f4e2-/resourceGroups/529d4e47-deb6-4a4/providers/Microsoft.Network/applicationGateways/f2fe74e1-79a8-4328-9ed";
12796
Requests[1903].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12797
Requests[1903].
Request
.Path = "/subscriptions/f84f34aa-adf4-/resourceGroups/615b8c0c-dca1-4c3/providers/Microsoft.Network/applicationSecurityGroups/3db7d4f1-d555-47f5-8be7-c96c";
12800
Requests[1904].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12801
Requests[1904].
Request
.Path = "/subscriptions/9ffb31a8-0f5f-/resourceGroups/0264f279-7df9-439/providers/Microsoft.Network/applicationSecurityGroups/a9ed9df3-aad4-4ca7-9312-7e45";
12804
Requests[1905].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12805
Requests[1905].
Request
.Path = "/subscriptions/3de5f7f9-e19d-/resourceGroups/2627956d-3c9b-4c3/providers/Microsoft.Network/applicationSecurityGroups/c0281374-ac3c-4071-b9d9-a4b3";
12808
Requests[1906].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12809
Requests[1906].
Request
.Path = "/subscriptions/7b762d3c-94a0-/resourceGroups/bce962c8-1367-4af/providers/Microsoft.Network/connections/287d0f92-9295-4420-99da-b22263c959a";
12812
Requests[1907].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12813
Requests[1907].
Request
.Path = "/subscriptions/03c123c5-650b-/resourceGroups/0b1ac77f-faa2-44e/providers/Microsoft.Network/connections/f3ed5366-f8bc-4c81-a1af-b0ae0e89b8b";
12816
Requests[1908].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12817
Requests[1908].
Request
.Path = "/subscriptions/f792c4f8-b975-/resourceGroups/2166bc7d-88b2-459/providers/Microsoft.Network/connections/e8bbbb37-9db6-48d4-9488-d9699c0ce4a";
12820
Requests[1909].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12821
Requests[1909].
Request
.Path = "/subscriptions/818e7d06-cfad-/resourceGroups/49dce8c3-9dd2-4e8/providers/Microsoft.Network/connections/9237a19b-5224-48b9-a4b9-077420500b3";
12824
Requests[1910].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12825
Requests[1910].
Request
.Path = "/subscriptions/cdd330f2-943d-/resourceGroups/64e1bba2-373a-4e4/providers/Microsoft.Network/ddosProtectionPlans/2ade81fa-f160-4cd2-9be";
12828
Requests[1911].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12829
Requests[1911].
Request
.Path = "/subscriptions/060ee9e6-7b6b-/resourceGroups/1efedda3-525f-481/providers/Microsoft.Network/ddosProtectionPlans/87e000ca-d27b-4a3b-8fe";
12832
Requests[1912].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12833
Requests[1912].
Request
.Path = "/subscriptions/764d20aa-909e-/resourceGroups/88dfa6a7-6dfb-4d8/providers/Microsoft.Network/ddosProtectionPlans/eb04ec41-52a6-4187-854";
12836
Requests[1913].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12837
Requests[1913].
Request
.Path = "/subscriptions/c125d13b-2d03-/resourceGroups/cf05cbed-bd9f-4c4/providers/Microsoft.Network/dnsZones/8e537701";
12840
Requests[1914].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12841
Requests[1914].
Request
.Path = "/subscriptions/6f4f1b70-9b99-/resourceGroups/dcccf13e-2dd0-4ce/providers/Microsoft.Network/dnsZones/7bf6b585";
12844
Requests[1915].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12845
Requests[1915].
Request
.Path = "/subscriptions/3a9b588a-2cd4-/resourceGroups/c2e758a7-72ad-465/providers/Microsoft.Network/dnsZones/1861a5f0";
12848
Requests[1916].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12849
Requests[1916].
Request
.Path = "/subscriptions/671f13a3-4e69-/resourceGroups/d615e986-6d8a-4e2/providers/Microsoft.Network/dnsZones/6d182df3";
12852
Requests[1917].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12853
Requests[1917].
Request
.Path = "/subscriptions/2b193ebf-502f-/resourceGroups/34902ad1-f4e3-412/providers/Microsoft.Network/expressRouteCircuits/29b5daae-9a";
12856
Requests[1918].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12857
Requests[1918].
Request
.Path = "/subscriptions/99955395-e29a-/resourceGroups/a6efc313-bc7f-4d7/providers/Microsoft.Network/expressRouteCircuits/9bce4078-ab";
12860
Requests[1919].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12861
Requests[1919].
Request
.Path = "/subscriptions/7a585e32-2a07-/resourceGroups/ac7341fe-1429-426/providers/Microsoft.Network/expressRouteCircuits/2729c9e2-bd";
12864
Requests[1920].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12865
Requests[1920].
Request
.Path = "/subscriptions/3fd5b7b5-919a-/resourceGroups/144232b0-cb69-4ac/providers/Microsoft.Network/expressRouteCircuits/7d11735a-af";
12868
Requests[1921].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12869
Requests[1921].
Request
.Path = "/subscriptions/228ce523-b15c-/resourceGroups/750314c4-69bb-4bf/providers/Microsoft.Network/expressRouteCrossConnections/bf98c3ea-ff82-4fcb-";
12872
Requests[1922].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12873
Requests[1922].
Request
.Path = "/subscriptions/11c6c6b2-fc67-/resourceGroups/4c463508-2f4f-4da/providers/Microsoft.Network/expressRouteCrossConnections/9ad06999-3c5d-4f36-";
12876
Requests[1923].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12877
Requests[1923].
Request
.Path = "/subscriptions/b64ed8c5-d085-/resourceGroups/cd2e6950-afe9-4a2/providers/Microsoft.Network/expressRouteCrossConnections/31cf2464-3d1f-49fc-";
12880
Requests[1924].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12881
Requests[1924].
Request
.Path = "/subscriptions/4706d4d3-e285-/resourceGroups/94e4bff4-55bd-4bd/providers/Microsoft.Network/loadBalancers/70f39331-672e-4a";
12884
Requests[1925].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12885
Requests[1925].
Request
.Path = "/subscriptions/d91db965-f9d4-/resourceGroups/2a0f7e92-9c51-49d/providers/Microsoft.Network/loadBalancers/c3aa2710-b9e7-44";
12888
Requests[1926].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12889
Requests[1926].
Request
.Path = "/subscriptions/91732768-133b-/resourceGroups/c082b3e9-ef17-46a/providers/Microsoft.Network/loadBalancers/52c54050-626a-48";
12892
Requests[1927].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12893
Requests[1927].
Request
.Path = "/subscriptions/3c9c30d4-abf8-/resourceGroups/6af6f535-d1db-4e4/providers/Microsoft.Network/loadBalancers/eaef669d-3e69-4d";
12896
Requests[1928].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12897
Requests[1928].
Request
.Path = "/subscriptions/fb207000-acec-/resourceGroups/6c3d7f6a-f16b-4b4/providers/Microsoft.Network/localNetworkGateways/198dfeb0-6ed4-4b88-96a4";
12900
Requests[1929].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12901
Requests[1929].
Request
.Path = "/subscriptions/8664588a-f134-/resourceGroups/26395c60-75e4-4ff/providers/Microsoft.Network/localNetworkGateways/66f5978f-a1e7-4ddd-90dc";
12904
Requests[1930].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12905
Requests[1930].
Request
.Path = "/subscriptions/59c03305-c55f-/resourceGroups/56c43da5-6305-45c/providers/Microsoft.Network/localNetworkGateways/0a594a93-06a6-4734-876b";
12908
Requests[1931].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12909
Requests[1931].
Request
.Path = "/subscriptions/2ca1257f-a807-/resourceGroups/65fa1988-fdd8-4fe/providers/Microsoft.Network/localNetworkGateways/12aeaeed-3540-465c-87a3";
12912
Requests[1932].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12913
Requests[1932].
Request
.Path = "/subscriptions/0bf46c50-7e52-/resourceGroups/7cb79305-87dd-4fd/providers/Microsoft.Network/networkInterfaces/03afeecf-6c2e-404b-9";
12916
Requests[1933].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12917
Requests[1933].
Request
.Path = "/subscriptions/c5899a05-980c-/resourceGroups/02baa16d-9580-455/providers/Microsoft.Network/networkInterfaces/703fb4df-d376-4d2d-a";
12920
Requests[1934].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12921
Requests[1934].
Request
.Path = "/subscriptions/87c5d5a8-88a3-/resourceGroups/b2df96b4-07e7-492/providers/Microsoft.Network/networkInterfaces/e65a1d38-a3f2-4a8e-b";
12924
Requests[1935].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12925
Requests[1935].
Request
.Path = "/subscriptions/277c241e-03ed-/resourceGroups/d106608b-b5b0-43e/providers/Microsoft.Network/networkInterfaces/efe86d07-4eb3-49c4-9";
12928
Requests[1936].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12929
Requests[1936].
Request
.Path = "/subscriptions/e6a36b5c-7173-/resourceGroups/33a33288-3d90-417/providers/Microsoft.Network/networkSecurityGroups/8c829d6f-d348-4ff5-9eeb-";
12932
Requests[1937].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12933
Requests[1937].
Request
.Path = "/subscriptions/b4bd071b-9249-/resourceGroups/f55873a9-8af9-474/providers/Microsoft.Network/networkSecurityGroups/7625aff2-40b5-4dd7-8a71-";
12936
Requests[1938].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12937
Requests[1938].
Request
.Path = "/subscriptions/2eab8dae-96cd-/resourceGroups/b42500ed-27b1-4e4/providers/Microsoft.Network/networkSecurityGroups/39e44317-8890-4de0-b1ef-";
12940
Requests[1939].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12941
Requests[1939].
Request
.Path = "/subscriptions/45860b87-0189-/resourceGroups/a2229704-e017-493/providers/Microsoft.Network/networkSecurityGroups/ef6ed973-3a12-4cd8-b6f6-";
12944
Requests[1940].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12945
Requests[1940].
Request
.Path = "/subscriptions/1e4b70aa-7b2c-/resourceGroups/b699657f-becf-4e7/providers/Microsoft.Network/networkWatchers/b45e5775-4252-46d4";
12948
Requests[1941].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12949
Requests[1941].
Request
.Path = "/subscriptions/d64d669e-23f6-/resourceGroups/c1b32251-d2b1-4e8/providers/Microsoft.Network/networkWatchers/5046140c-6ee5-4e12";
12952
Requests[1942].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12953
Requests[1942].
Request
.Path = "/subscriptions/cc02c52d-5f96-/resourceGroups/1197ee2b-33fb-4df/providers/Microsoft.Network/networkWatchers/0053e47c-894a-42a0";
12956
Requests[1943].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12957
Requests[1943].
Request
.Path = "/subscriptions/f8651eec-0878-/resourceGroups/fa5a82bd-8a2c-482/providers/Microsoft.Network/networkWatchers/2aa0d789-974f-4f1c";
12960
Requests[1944].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12961
Requests[1944].
Request
.Path = "/subscriptions/3cf4b7a0-8c72-/resourceGroups/3ebe4702-5972-42d/providers/Microsoft.Network/publicIPAddresses/4249e982-7154-4c39-";
12964
Requests[1945].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12965
Requests[1945].
Request
.Path = "/subscriptions/6f14ddf8-3743-/resourceGroups/a5693494-39ab-427/providers/Microsoft.Network/publicIPAddresses/c59bdbd7-8d46-4cbc-";
12968
Requests[1946].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12969
Requests[1946].
Request
.Path = "/subscriptions/eaa20683-1069-/resourceGroups/c7089a52-dd6d-418/providers/Microsoft.Network/publicIPAddresses/90c0481e-d576-4b5a-";
12972
Requests[1947].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12973
Requests[1947].
Request
.Path = "/subscriptions/8eacfb8c-fd45-/resourceGroups/34473f90-41ec-48e/providers/Microsoft.Network/publicIPAddresses/e86feaf3-030e-4ae9-";
12976
Requests[1948].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
12977
Requests[1948].
Request
.Path = "/subscriptions/a13af044-603d-/resourceGroups/b14756e3-c086-475/providers/Microsoft.Network/routeFilters/a30da555-a9b5-4";
12980
Requests[1949].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12981
Requests[1949].
Request
.Path = "/subscriptions/59e16c97-2251-/resourceGroups/5c069ce5-071c-458/providers/Microsoft.Network/routeFilters/ef1d2863-10cf-4";
12984
Requests[1950].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
12985
Requests[1950].
Request
.Path = "/subscriptions/3813164c-2384-/resourceGroups/4991b272-587b-4a8/providers/Microsoft.Network/routeFilters/4b4981c4-505b-4";
12988
Requests[1951].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12989
Requests[1951].
Request
.Path = "/subscriptions/54d25dcf-ae36-/resourceGroups/e153c7ec-ee7d-465/providers/Microsoft.Network/routeFilters/def4cf83-cbf6-4";
12992
Requests[1952].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
12993
Requests[1952].
Request
.Path = "/subscriptions/0655a9b6-5c53-/resourceGroups/820b50bc-4952-45a/providers/Microsoft.Network/routeTables/ac5e698f-ee3c-";
12996
Requests[1953].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
12997
Requests[1953].
Request
.Path = "/subscriptions/7496f1b5-ac2a-/resourceGroups/544a843a-8439-43c/providers/Microsoft.Network/routeTables/b704c5c1-acfd-";
13000
Requests[1954].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13001
Requests[1954].
Request
.Path = "/subscriptions/3b3f5bfd-f45e-/resourceGroups/0e9c6208-8916-465/providers/Microsoft.Network/routeTables/5f10e748-8019-";
13004
Requests[1955].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13005
Requests[1955].
Request
.Path = "/subscriptions/4b700c2d-dd24-/resourceGroups/7e464650-acf3-4e1/providers/Microsoft.Network/routeTables/64e3b3f0-b2d0-";
13008
Requests[1956].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13009
Requests[1956].
Request
.Path = "/subscriptions/b8e9def3-e1cf-/resourceGroups/b9cadab1-ab2b-41e/providers/Microsoft.Network/trafficmanagerprofiles/329fc071-1b";
13012
Requests[1957].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13013
Requests[1957].
Request
.Path = "/subscriptions/a92d1906-b696-/resourceGroups/2b67be3f-327a-408/providers/Microsoft.Network/trafficmanagerprofiles/a64a91c5-28";
13016
Requests[1958].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13017
Requests[1958].
Request
.Path = "/subscriptions/eb8d8828-efce-/resourceGroups/650b5649-8464-405/providers/Microsoft.Network/trafficmanagerprofiles/93b73c84-58";
13020
Requests[1959].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13021
Requests[1959].
Request
.Path = "/subscriptions/4cb67681-48db-/resourceGroups/26bc5256-e9f1-42d/providers/Microsoft.Network/trafficmanagerprofiles/7a508b53-9a";
13024
Requests[1960].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13025
Requests[1960].
Request
.Path = "/subscriptions/6383d55f-9922-/resourceGroups/e3e352f4-5bc7-4e1/providers/Microsoft.Network/virtualNetworkGateways/20bc64ed-42de-4eea-9c59-1";
13028
Requests[1961].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13029
Requests[1961].
Request
.Path = "/subscriptions/df16d9c9-09e3-/resourceGroups/806d012e-7ba2-46c/providers/Microsoft.Network/virtualNetworkGateways/cf77cae6-2e64-49fa-b1ba-a";
13032
Requests[1962].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13033
Requests[1962].
Request
.Path = "/subscriptions/49b4ddf4-b491-/resourceGroups/bb1efbf6-23dc-420/providers/Microsoft.Network/virtualNetworkGateways/b54270e2-8957-4cf7-8065-e";
13036
Requests[1963].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13037
Requests[1963].
Request
.Path = "/subscriptions/be51c0db-a5e6-/resourceGroups/a6f989de-3e43-47a/providers/Microsoft.Network/virtualNetworkGateways/cbbcfc12-ddf3-4f7e-a85c-2";
13040
Requests[1964].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13041
Requests[1964].
Request
.Path = "/subscriptions/f6d4e972-382d-/resourceGroups/bdc5ded2-a3d5-4fc/providers/Microsoft.Network/virtualNetworks/611f0284-cd3e-40fb";
13044
Requests[1965].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13045
Requests[1965].
Request
.Path = "/subscriptions/f39d3d84-9725-/resourceGroups/949b28e8-5824-4d1/providers/Microsoft.Network/virtualNetworks/48ab6786-b39e-4e4b";
13048
Requests[1966].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13049
Requests[1966].
Request
.Path = "/subscriptions/f9325519-e1c7-/resourceGroups/d07b0901-953d-43e/providers/Microsoft.Network/virtualNetworks/c9c9fbb8-6a0f-484e";
13052
Requests[1967].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13053
Requests[1967].
Request
.Path = "/subscriptions/5f1d0b6a-115a-/resourceGroups/473ddb3e-f447-462/providers/Microsoft.Network/virtualNetworks/5cacd8a8-a1d2-4816";
13056
Requests[1968].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13057
Requests[1968].
Request
.Path = "/subscriptions/409949be-e5bd-/resourceGroups/736c28fc-347a-4bf/providers/Microsoft.NotificationHubs/namespaces/79a0e290-6d33";
13060
Requests[1969].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13061
Requests[1969].
Request
.Path = "/subscriptions/8f22350f-7fb4-/resourceGroups/28736aad-fa13-439/providers/Microsoft.NotificationHubs/namespaces/52991758-7431";
13064
Requests[1970].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13065
Requests[1970].
Request
.Path = "/subscriptions/fd8b3d2b-919b-/resourceGroups/275f8df2-34ec-4d5/providers/Microsoft.NotificationHubs/namespaces/819116a3-7c08";
13068
Requests[1971].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13069
Requests[1971].
Request
.Path = "/subscriptions/78f6fc1f-120b-/resourceGroups/4b7b4d7d-c53c-468/providers/Microsoft.NotificationHubs/namespaces/d66c3573-ff07";
13072
Requests[1972].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13073
Requests[1972].
Request
.Path = "/subscriptions/6b2a5b81-d5c4-/resourcegroups/f0e89bf5-6799-443/providers/Microsoft.OperationalInsights/workspaces/b6d4e978-fa73";
13076
Requests[1973].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13077
Requests[1973].
Request
.Path = "/subscriptions/aa1de0a7-841b-/resourcegroups/6f75c0e0-c442-4b3/providers/Microsoft.OperationalInsights/workspaces/6ef14459-a504";
13080
Requests[1974].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13081
Requests[1974].
Request
.Path = "/subscriptions/2e1f1968-dc10-/resourcegroups/bc353261-4e43-488/providers/Microsoft.OperationalInsights/workspaces/59e64e40-0b1d";
13084
Requests[1975].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13085
Requests[1975].
Request
.Path = "/subscriptions/6249faa8-6d9b-/resourcegroups/19f447b8-3a9f-4d2/providers/Microsoft.OperationalInsights/workspaces/f04638cc-bac6";
13088
Requests[1976].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13089
Requests[1976].
Request
.Path = "/subscriptions/d93133e3-4b20-/resourcegroups/c2fc7b0a-95f8-4e8/providers/Microsoft.OperationsManagement/ManagementConfigurations/2ff1da94-21ec-4bdb-ac03-5ba";
13092
Requests[1977].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13093
Requests[1977].
Request
.Path = "/subscriptions/ea13cd7d-41e8-/resourcegroups/79dd368e-544b-4e2/providers/Microsoft.OperationsManagement/ManagementConfigurations/f7de18c9-b7d6-402d-9dff-193";
13096
Requests[1978].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13097
Requests[1978].
Request
.Path = "/subscriptions/60a89460-3347-/resourcegroups/a459ab9e-1f1d-474/providers/Microsoft.OperationsManagement/ManagementConfigurations/ca6c5b25-c319-442f-84ea-183";
13100
Requests[1979].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13101
Requests[1979].
Request
.Path = "/subscriptions/0e39c320-32dc-/resourcegroups/1e70f84c-6cb5-4b0/providers/Microsoft.OperationsManagement/solutions/806df256-1d1";
13104
Requests[1980].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13105
Requests[1980].
Request
.Path = "/subscriptions/fa922ff2-a268-/resourcegroups/c4533909-0643-469/providers/Microsoft.OperationsManagement/solutions/ff26e9a6-e20";
13108
Requests[1981].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13109
Requests[1981].
Request
.Path = "/subscriptions/8dff6690-e0a2-/resourcegroups/d8a38f3f-3cfd-48c/providers/Microsoft.OperationsManagement/solutions/531ac004-da3";
13112
Requests[1982].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13113
Requests[1982].
Request
.Path = "/subscriptions/197735d5-a90b-/resourceGroups/d1d5b132-06a7-4e9/providers/Microsoft.PowerBI/workspaceCollections/2d5d7902-e7b6-4b8d-9b54";
13116
Requests[1983].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13117
Requests[1983].
Request
.Path = "/subscriptions/bfd4b246-3a98-/resourceGroups/b55f164c-49cf-47f/providers/Microsoft.PowerBI/workspaceCollections/fd2c44e0-d773-4429-aba7";
13120
Requests[1984].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13121
Requests[1984].
Request
.Path = "/subscriptions/8b65e4f2-c31d-/resourceGroups/d86bfc96-2811-433/providers/Microsoft.PowerBI/workspaceCollections/b4655f32-03af-4107-b7e7";
13124
Requests[1985].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13125
Requests[1985].
Request
.Path = "/subscriptions/6857ab20-e29b-/resourceGroups/3d1a2d33-0288-46f/providers/Microsoft.PowerBI/workspaceCollections/7166e6fc-a085-4313-8867";
13128
Requests[1986].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13129
Requests[1986].
Request
.Path = "/subscriptions/6e4cf06b-09b9-/resourceGroups/d82433fc-2a56-42c/providers/Microsoft.PowerBIDedicated/capacities/19240a18-29eb-4a94-8a";
13132
Requests[1987].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13133
Requests[1987].
Request
.Path = "/subscriptions/ddf53898-3f43-/resourceGroups/0c8dd3f8-7b18-489/providers/Microsoft.PowerBIDedicated/capacities/a371a177-fad6-4d14-b7";
13136
Requests[1988].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13137
Requests[1988].
Request
.Path = "/subscriptions/902fc80c-6d36-/resourceGroups/db3770db-c043-496/providers/Microsoft.PowerBIDedicated/capacities/82d71d6a-59e1-4256-84";
13140
Requests[1989].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13141
Requests[1989].
Request
.Path = "/subscriptions/3944d884-f353-/resourceGroups/67e0090b-ddb6-4e6/providers/Microsoft.PowerBIDedicated/capacities/886b6e0e-4085-4e7e-b6";
13144
Requests[1990].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13145
Requests[1990].
Request
.Path = "/subscriptions/d51d208c-fa82-/resourceGroups/0c568d88-c17e-4a5/providers/Microsoft.RecoveryServices/vaults/9cc4e1fd-";
13148
Requests[1991].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13149
Requests[1991].
Request
.Path = "/subscriptions/1d531928-ece6-/resourceGroups/5a6a5397-3853-4d1/providers/Microsoft.RecoveryServices/vaults/d48bc77d-";
13152
Requests[1992].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13153
Requests[1992].
Request
.Path = "/subscriptions/c47bc38a-ce44-/resourceGroups/a849e892-e8b6-4f9/providers/Microsoft.RecoveryServices/vaults/5aad4c22-";
13156
Requests[1993].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13157
Requests[1993].
Request
.Path = "/subscriptions/32045718-7d4f-/resourceGroups/6e0b7207-e34b-488/providers/Microsoft.RecoveryServices/vaults/286b4d5b-";
13160
Requests[1994].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13161
Requests[1994].
Request
.Path = "/subscriptions/ba166f56-6561-/resourceGroups/656777f6-9295-499/providers/Microsoft.Relay/namespaces/d9bf5af8-a89d";
13164
Requests[1995].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13165
Requests[1995].
Request
.Path = "/subscriptions/23149fe1-344b-/resourceGroups/b8c49b35-0eb9-46d/providers/Microsoft.Relay/namespaces/071d9cba-ea8e";
13168
Requests[1996].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13169
Requests[1996].
Request
.Path = "/subscriptions/94437b82-2e1e-/resourceGroups/0e190bc1-c343-4f2/providers/Microsoft.Relay/namespaces/0eee9116-c106";
13172
Requests[1997].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13173
Requests[1997].
Request
.Path = "/subscriptions/0dbf31d4-fad7-/resourceGroups/e9c182a3-dcaf-424/providers/Microsoft.Relay/namespaces/2ff06923-ae21";
13176
Requests[1998].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13177
Requests[1998].
Request
.Path = "/subscriptions/6511f3a8-266f-/resourcegroups/a0141aac-07a4-49b/providers/Microsoft.Resources/deployments/af6fc6f2-77a4-";
13180
Requests[1999].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13181
Requests[1999].
Request
.Path = "/subscriptions/1497feab-0582-/resourcegroups/e7a89360-8e35-422/providers/Microsoft.Resources/deployments/a2a9b8bf-401e-";
13184
Requests[2000].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
13185
Requests[2000].
Request
.Path = "/subscriptions/5f01bfda-796a-/resourcegroups/4b7a1646-0756-411/providers/Microsoft.Resources/deployments/4d81ba21-a9d7-";
13188
Requests[2001].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13189
Requests[2001].
Request
.Path = "/subscriptions/5f7065b1-3aab-/resourcegroups/c92c1726-255f-442/providers/Microsoft.Resources/deployments/67bfd9e9-b771-";
13192
Requests[2002].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13193
Requests[2002].
Request
.Path = "/subscriptions/4ab61edd-cd1f-/resourceGroups/9abba5c9-835f-463/providers/Microsoft.Scheduler/jobCollections/ffc888da-4b76-47e";
13196
Requests[2003].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13197
Requests[2003].
Request
.Path = "/subscriptions/1fd2cfd3-c0d4-/resourceGroups/af101566-a591-43a/providers/Microsoft.Scheduler/jobCollections/fb0c0454-e049-472";
13200
Requests[2004].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13201
Requests[2004].
Request
.Path = "/subscriptions/8de0a675-04f5-/resourceGroups/212d6c96-2576-4a7/providers/Microsoft.Scheduler/jobCollections/53ce2ebd-55bc-406";
13204
Requests[2005].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13205
Requests[2005].
Request
.Path = "/subscriptions/ed39843b-3e26-/resourceGroups/b522093e-6017-438/providers/Microsoft.Scheduler/jobCollections/3d9d82c9-5fc2-478";
13208
Requests[2006].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13209
Requests[2006].
Request
.Path = "/subscriptions/b44bbcf9-ba2a-/resourceGroups/d307694f-c2ed-4ab/providers/Microsoft.Search/searchServices/13868f75-e25a-47f";
13212
Requests[2007].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13213
Requests[2007].
Request
.Path = "/subscriptions/b3560027-06ba-/resourceGroups/958ebcbb-f66d-447/providers/Microsoft.Search/searchServices/d1a6dcd2-196a-43d";
13216
Requests[2008].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13217
Requests[2008].
Request
.Path = "/subscriptions/4ffe6292-e13e-/resourceGroups/9c8df437-2d3f-40b/providers/Microsoft.Search/searchServices/6fa17de0-1bdf-4d9";
13220
Requests[2009].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13221
Requests[2009].
Request
.Path = "/subscriptions/2b00a308-e8e0-/resourceGroups/31bc06c9-7bcb-443/providers/Microsoft.Search/searchServices/da00c837-8f37-443";
13224
Requests[2010].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13225
Requests[2010].
Request
.Path = "/subscriptions/242a4f3e-24f3-/resourceGroups/7d5b1265-0af9-418/providers/Microsoft.Security/pricings/6fc86d3f-a3";
13228
Requests[2011].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13229
Requests[2011].
Request
.Path = "/subscriptions/79019eac-7496-/resourceGroups/8e1e0c40-cab4-493/providers/Microsoft.Security/pricings/6a19ee8b-63";
13232
Requests[2012].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13233
Requests[2012].
Request
.Path = "/subscriptions/c437150a-1f85-/resourceGroups/a413a5c5-a8c7-46a/providers/Microsoft.Security/securityContacts/37da8ff8-14cd-4cc2-";
13236
Requests[2013].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13237
Requests[2013].
Request
.Path = "/subscriptions/863afbda-f6a7-/resourceGroups/3c65c1ea-2e28-4b0/providers/Microsoft.Security/securityContacts/0569ec5b-9223-4a61-";
13240
Requests[2014].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13241
Requests[2014].
Request
.Path = "/subscriptions/c23db0e6-dfa2-/resourceGroups/b761a9e8-6f57-4ac/providers/Microsoft.Security/securityContacts/bf49f0b2-9614-421b-";
13244
Requests[2015].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13245
Requests[2015].
Request
.Path = "/subscriptions/cc80f623-578c-/resourceGroups/c948e54c-46d3-4fa/providers/Microsoft.Security/securityContacts/b5d2064e-239e-4af0-";
13248
Requests[2016].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13249
Requests[2016].
Request
.Path = "/subscriptions/9a40fd2a-0712-/resourceGroups/995099da-8ae6-4db/providers/Microsoft.Security/workspaceSettings/a2b70179-a09d-4971-b";
13252
Requests[2017].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13253
Requests[2017].
Request
.Path = "/subscriptions/39b45107-95eb-/resourceGroups/67cad791-b953-46b/providers/Microsoft.Security/workspaceSettings/60cf117d-e7f4-4c62-a";
13256
Requests[2018].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13257
Requests[2018].
Request
.Path = "/subscriptions/d9c479c1-c6b0-/resourceGroups/94c9c7f5-8401-4af/providers/Microsoft.Security/workspaceSettings/6b3508c4-cdd1-4878-8";
13260
Requests[2019].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13261
Requests[2019].
Request
.Path = "/subscriptions/c18da117-d154-/resourceGroups/f30142a3-325c-4bb/providers/Microsoft.Security/workspaceSettings/b057a8da-e2ef-41f6-b";
13264
Requests[2020].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13265
Requests[2020].
Request
.Path = "/subscriptions/4b2f09ea-345c-/resourceGroups/76349785-11ea-490/providers/Microsoft.ServerManagement/gateways/a00b7c6a-b4";
13268
Requests[2021].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13269
Requests[2021].
Request
.Path = "/subscriptions/879885c4-4ea7-/resourceGroups/dfad94e7-b309-4e8/providers/Microsoft.ServerManagement/gateways/ee22ea2a-3e";
13272
Requests[2022].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13273
Requests[2022].
Request
.Path = "/subscriptions/38e0c221-d3a7-/resourceGroups/81f61ced-6885-424/providers/Microsoft.ServerManagement/gateways/79485f12-78";
13276
Requests[2023].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13277
Requests[2023].
Request
.Path = "/subscriptions/25e3d007-5220-/resourceGroups/c2d4b3c5-c558-49a/providers/Microsoft.ServerManagement/gateways/007a4707-f7";
13280
Requests[2024].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13281
Requests[2024].
Request
.Path = "/subscriptions/ffff3277-b938-/resourceGroups/06bf28b2-5e5e-4b1/providers/Microsoft.ServerManagement/nodes/f8056437";
13284
Requests[2025].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13285
Requests[2025].
Request
.Path = "/subscriptions/0697e2f6-5852-/resourceGroups/5fa5104a-3262-4f7/providers/Microsoft.ServerManagement/nodes/3169ee75";
13288
Requests[2026].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13289
Requests[2026].
Request
.Path = "/subscriptions/4ffe06df-2276-/resourceGroups/127a4974-9c90-4b0/providers/Microsoft.ServerManagement/nodes/2cac9df8";
13292
Requests[2027].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13293
Requests[2027].
Request
.Path = "/subscriptions/3bad3658-e666-/resourceGroups/ddb1b744-4f85-43a/providers/Microsoft.ServerManagement/nodes/963869ad";
13296
Requests[2028].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13297
Requests[2028].
Request
.Path = "/subscriptions/b0dec3dc-61af-/resourceGroups/c5a73f9e-3293-4d2/providers/Microsoft.ServiceBus/namespaces/42655d0d-ffd5";
13300
Requests[2029].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13301
Requests[2029].
Request
.Path = "/subscriptions/67dbc166-992c-/resourceGroups/d5f7b27b-4163-437/providers/Microsoft.ServiceBus/namespaces/9391ab43-d784";
13304
Requests[2030].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13305
Requests[2030].
Request
.Path = "/subscriptions/cba25675-10a0-/resourceGroups/3ca280d6-17b4-4c9/providers/Microsoft.ServiceBus/namespaces/65fc24cb-614b";
13308
Requests[2031].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13309
Requests[2031].
Request
.Path = "/subscriptions/6e5d2bcd-a04b-/resourceGroups/dabbc2bc-c68c-4ba/providers/Microsoft.ServiceBus/namespaces/ea1bca61-d10e";
13312
Requests[2032].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13313
Requests[2032].
Request
.Path = "/subscriptions/d06c24b7-42c3-/resourceGroups/6fb6cfc2-a6de-4c3/providers/Microsoft.ServiceFabric/clusters/bba6c2d9-10";
13316
Requests[2033].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13317
Requests[2033].
Request
.Path = "/subscriptions/cf937a52-5c5a-/resourceGroups/0cb906b4-3557-4be/providers/Microsoft.ServiceFabric/clusters/dadf8bbb-7c";
13320
Requests[2034].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13321
Requests[2034].
Request
.Path = "/subscriptions/1730cffe-3a11-/resourceGroups/f37aa272-2a84-4b9/providers/Microsoft.ServiceFabric/clusters/f2d31038-01";
13324
Requests[2035].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13325
Requests[2035].
Request
.Path = "/subscriptions/44922943-a8be-/resourceGroups/38aa2791-ccde-42e/providers/Microsoft.ServiceFabric/clusters/43770a60-5e";
13328
Requests[2036].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13329
Requests[2036].
Request
.Path = "/subscriptions/1364b1e5-6f8d-/resourceGroups/834551d8-2484-47a/providers/Microsoft.SignalRService/SignalR/c5669837-100";
13332
Requests[2037].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13333
Requests[2037].
Request
.Path = "/subscriptions/d9016470-9636-/resourceGroups/3302f7bc-b81c-428/providers/Microsoft.SignalRService/SignalR/2dd1daf6-423";
13336
Requests[2038].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13337
Requests[2038].
Request
.Path = "/subscriptions/0b86a429-6a9d-/resourceGroups/9c491a06-0c64-485/providers/Microsoft.SignalRService/SignalR/46e1a575-f03";
13340
Requests[2039].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13341
Requests[2039].
Request
.Path = "/subscriptions/41b3f639-efac-/resourceGroups/c5cd53d3-03bd-4da/providers/Microsoft.SignalRService/SignalR/e9087412-d29";
13344
Requests[2040].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13345
Requests[2040].
Request
.Path = "/subscriptions/4c45aecc-33d1-/resourceGroups/33b1a8d4-57e8-4c4/providers/Microsoft.Solutions/applianceDefinitions/b4c795d6-7e33-431d-b7f6";
13348
Requests[2041].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13349
Requests[2041].
Request
.Path = "/subscriptions/4b121f1f-ca72-/resourceGroups/2dc01bc7-e21c-4a1/providers/Microsoft.Solutions/applianceDefinitions/3a001df0-0568-4a90-9a54";
13352
Requests[2042].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13353
Requests[2042].
Request
.Path = "/subscriptions/83058176-11ab-/resourceGroups/da33279a-468b-4f2/providers/Microsoft.Solutions/applianceDefinitions/7761610c-246d-45e2-bb45";
13356
Requests[2043].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13357
Requests[2043].
Request
.Path = "/subscriptions/0e14e1d6-957c-/resourceGroups/eefad31c-c015-4d1/providers/Microsoft.Solutions/appliances/dbd007ee-97fe";
13360
Requests[2044].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13361
Requests[2044].
Request
.Path = "/subscriptions/fca003da-e79e-/resourceGroups/2335edca-243d-4e1/providers/Microsoft.Solutions/appliances/09c4609e-a939";
13364
Requests[2045].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13365
Requests[2045].
Request
.Path = "/subscriptions/e2af7d07-d2d0-/resourceGroups/75e61821-4203-42a/providers/Microsoft.Solutions/appliances/89a08c2b-2ecd";
13368
Requests[2046].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13369
Requests[2046].
Request
.Path = "/subscriptions/96a83b21-290a-/resourceGroups/05967149-0cae-43d/providers/Microsoft.Solutions/appliances/fab35892-683b";
13372
Requests[2047].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13373
Requests[2047].
Request
.Path = "/subscriptions/ad1e5496-046a-/resourceGroups/be1587c4-aded-4ed/providers/Microsoft.Solutions/applicationDefinitions/f720f2f0-9207-42bb-980d-0";
13376
Requests[2048].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13377
Requests[2048].
Request
.Path = "/subscriptions/31f91337-25a2-/resourceGroups/21246306-e66d-47e/providers/Microsoft.Solutions/applicationDefinitions/020c466d-2382-4557-93c2-4";
13380
Requests[2049].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13381
Requests[2049].
Request
.Path = "/subscriptions/54c77dfa-f835-/resourceGroups/b9352952-bd42-49e/providers/Microsoft.Solutions/applicationDefinitions/6c7d2a06-8c98-4c7b-bfa2-0";
13384
Requests[2050].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13385
Requests[2050].
Request
.Path = "/subscriptions/05bd42ce-2c33-/resourceGroups/27a1399a-d735-4ed/providers/Microsoft.Solutions/applications/a156d465-ae0a-4";
13388
Requests[2051].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13389
Requests[2051].
Request
.Path = "/subscriptions/1614ba8a-40d3-/resourceGroups/79ef1486-9b2d-479/providers/Microsoft.Solutions/applications/83159f61-306f-4";
13392
Requests[2052].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13393
Requests[2052].
Request
.Path = "/subscriptions/79c2c79a-c0dd-/resourceGroups/11ebd1b6-f9d8-46f/providers/Microsoft.Solutions/applications/9ca84424-1271-4";
13396
Requests[2053].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13397
Requests[2053].
Request
.Path = "/subscriptions/a722d493-f2c5-/resourceGroups/2cd9bb3b-829c-4de/providers/Microsoft.Solutions/applications/731cb629-26e4-4";
13400
Requests[2054].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13401
Requests[2054].
Request
.Path = "/subscriptions/7a8af202-5bca-/resourceGroups/32025c0d-0ee7-49c/providers/Microsoft.Sql/managedInstances/a565453f-04f4-4b11-";
13404
Requests[2055].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13405
Requests[2055].
Request
.Path = "/subscriptions/156ac608-7ea6-/resourceGroups/414ac0aa-b5f2-4dc/providers/Microsoft.Sql/managedInstances/9c29c600-bd2a-47e8-";
13408
Requests[2056].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13409
Requests[2056].
Request
.Path = "/subscriptions/a302adfc-30c5-/resourceGroups/aad4fdcf-196e-4f0/providers/Microsoft.Sql/managedInstances/a340cd74-9dbc-46f3-";
13412
Requests[2057].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13413
Requests[2057].
Request
.Path = "/subscriptions/37b784bd-3655-/resourceGroups/34c1c90a-aee6-4c4/providers/Microsoft.Sql/managedInstances/48ae47b8-1baa-40f4-";
13416
Requests[2058].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13417
Requests[2058].
Request
.Path = "/subscriptions/a8d96c88-8bcd-/resourceGroups/3ce7f5ee-7d3b-4d8/providers/Microsoft.Sql/servers/e10f4f93-2";
13420
Requests[2059].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13421
Requests[2059].
Request
.Path = "/subscriptions/a63c0dcc-5a6a-/resourceGroups/84633148-388b-499/providers/Microsoft.Sql/servers/6e81e60f-e";
13424
Requests[2060].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13425
Requests[2060].
Request
.Path = "/subscriptions/67bda5b4-2f87-/resourceGroups/43b5fd40-8a57-4ba/providers/Microsoft.Sql/servers/80ce7297-4";
13428
Requests[2061].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13429
Requests[2061].
Request
.Path = "/subscriptions/f563a202-65d5-/resourceGroups/62406687-a1c8-48f/providers/Microsoft.Sql/servers/163bf16a-8";
13432
Requests[2062].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13433
Requests[2062].
Request
.Path = "/subscriptions/b7dd3f11-21ef-/resourcegroups/e679a48d-b428-403/providers/Microsoft.Storage.Admin/farms/63e860";
13436
Requests[2063].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13437
Requests[2063].
Request
.Path = "/subscriptions/494eacd0-2418-/resourcegroups/63784d16-100c-437/providers/Microsoft.Storage.Admin/farms/34f8fb";
13440
Requests[2064].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13441
Requests[2064].
Request
.Path = "/subscriptions/32af1e23-84a0-/resourcegroups/9ee2f5a9-6a04-49c/providers/Microsoft.Storage.Admin/farms/c4230e";
13444
Requests[2065].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13445
Requests[2065].
Request
.Path = "/subscriptions/ebabc381-bb7d-/resourceGroups/946b9e72-3409-488/providers/Microsoft.Storage/storageAccounts/13d7cbad-e2";
13448
Requests[2066].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13449
Requests[2066].
Request
.Path = "/subscriptions/18dd0552-be1d-/resourceGroups/a9e757db-4c11-4c5/providers/Microsoft.Storage/storageAccounts/7b10549b-f4";
13452
Requests[2067].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13453
Requests[2067].
Request
.Path = "/subscriptions/baaeea4b-9d24-/resourceGroups/49f86f22-981a-47c/providers/Microsoft.Storage/storageAccounts/2725ae38-0b";
13456
Requests[2068].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13457
Requests[2068].
Request
.Path = "/subscriptions/df0cdddf-5388-/resourceGroups/7f04988d-abb9-44b/providers/Microsoft.Storage/storageAccounts/18ec846d-03";
13460
Requests[2069].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13461
Requests[2069].
Request
.Path = "/subscriptions/ae3eca24-4634-/resourceGroups/c5b084cf-f097-479/providers/Microsoft.StorSimple/managers/86f47ea3-a8";
13464
Requests[2070].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13465
Requests[2070].
Request
.Path = "/subscriptions/7d4230cc-83ac-/resourceGroups/3748cff0-c6cd-4a1/providers/Microsoft.StorSimple/managers/822c6131-70";
13468
Requests[2071].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13469
Requests[2071].
Request
.Path = "/subscriptions/0f9e4375-8f2d-/resourceGroups/2f7f2bfb-2c03-4db/providers/Microsoft.StorSimple/managers/07b017d8-fe";
13472
Requests[2072].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13473
Requests[2072].
Request
.Path = "/subscriptions/0a70a95a-7f22-/resourceGroups/c8317499-3e95-437/providers/Microsoft.StorSimple/managers/e6191ed7-4a";
13476
Requests[2073].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13477
Requests[2073].
Request
.Path = "/subscriptions/538a3106-660b-/resourcegroups/25cd3385-ef20-41b/providers/Microsoft.StreamAnalytics/streamingjobs/96518d4";
13480
Requests[2074].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13481
Requests[2074].
Request
.Path = "/subscriptions/34956032-44cb-/resourcegroups/470c32b1-e43c-4ba/providers/Microsoft.StreamAnalytics/streamingjobs/8ef7f19";
13484
Requests[2075].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13485
Requests[2075].
Request
.Path = "/subscriptions/6eaff587-960c-/resourcegroups/be8622f9-d625-471/providers/Microsoft.StreamAnalytics/streamingjobs/7b5624c";
13488
Requests[2076].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13489
Requests[2076].
Request
.Path = "/subscriptions/ddb5cffe-a391-/resourcegroups/c2174ef8-cd8b-442/providers/Microsoft.StreamAnalytics/streamingjobs/0549041";
13492
Requests[2077].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13493
Requests[2077].
Request
.Path = "/subscriptions/c95d57b4-090c-/resourcegroups/c004a371-4a34-41e/providers/Microsoft.Subscriptions.Admin/directoryTenants/e4b2dd";
13496
Requests[2078].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13497
Requests[2078].
Request
.Path = "/subscriptions/3280388a-453a-/resourcegroups/a6c32482-9d95-464/providers/Microsoft.Subscriptions.Admin/directoryTenants/d8b3c4";
13500
Requests[2079].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13501
Requests[2079].
Request
.Path = "/subscriptions/ed82d120-3aed-/resourcegroups/85062cfe-e4fb-410/providers/Microsoft.Subscriptions.Admin/directoryTenants/17313c";
13504
Requests[2080].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13505
Requests[2080].
Request
.Path = "/subscriptions/3a505cc5-e48f-/resourcegroups/3d64ca76-9a36-466/providers/Microsoft.Subscriptions.Admin/offers/40b66";
13508
Requests[2081].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13509
Requests[2081].
Request
.Path = "/subscriptions/74281e28-f82e-/resourcegroups/2061a3bc-e2f9-42b/providers/Microsoft.Subscriptions.Admin/offers/f21ba";
13512
Requests[2082].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13513
Requests[2082].
Request
.Path = "/subscriptions/a890a721-fb35-/resourcegroups/6848f337-21db-4f5/providers/Microsoft.Subscriptions.Admin/offers/de9f7";
13516
Requests[2083].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13517
Requests[2083].
Request
.Path = "/subscriptions/5f33a9cd-e7c6-/resourcegroups/26e29525-aac1-4ae/providers/Microsoft.Subscriptions.Admin/plans/26125";
13520
Requests[2084].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13521
Requests[2084].
Request
.Path = "/subscriptions/79a27865-b6fa-/resourcegroups/0d19d87c-0016-4d7/providers/Microsoft.Subscriptions.Admin/plans/a8add";
13524
Requests[2085].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13525
Requests[2085].
Request
.Path = "/subscriptions/ef369630-e308-/resourcegroups/12cdcdf1-65af-4d1/providers/Microsoft.Subscriptions.Admin/plans/04e85";
13528
Requests[2086].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13529
Requests[2086].
Request
.Path = "/subscriptions/452a6792-dabe-/resourceGroups/f265bb8e-73c1-41b/providers/Microsoft.TimeSeriesInsights/environments/7db98a1a-d0ac-4";
13532
Requests[2087].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13533
Requests[2087].
Request
.Path = "/subscriptions/1ec13664-07ec-/resourceGroups/610e69a6-6c5f-477/providers/Microsoft.TimeSeriesInsights/environments/06caecf4-ecc2-4";
13536
Requests[2088].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13537
Requests[2088].
Request
.Path = "/subscriptions/394044d3-4901-/resourceGroups/630c0ffb-4b8d-436/providers/Microsoft.TimeSeriesInsights/environments/0b687740-f687-4";
13540
Requests[2089].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13541
Requests[2089].
Request
.Path = "/subscriptions/f14edb5d-138e-/resourceGroups/df89dfd1-b545-448/providers/Microsoft.TimeSeriesInsights/environments/9959f1df-8c8d-4";
13544
Requests[2090].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13545
Requests[2090].
Request
.Path = "/subscriptions/7a2cafe7-db80-/resourcegroups/f48aa181-db38-421/providers/Microsoft.Update.Admin/updateLocations/63241c8f-82e8-";
13548
Requests[2091].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13549
Requests[2091].
Request
.Path = "/subscriptions/f2ecc803-0695-/resourcegroups/5dd7bfe7-f6ca-47e/providers/microsoft.visualstudio/account/24ceab5d-a94";
13552
Requests[2092].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13553
Requests[2092].
Request
.Path = "/subscriptions/acda2408-3669-/resourcegroups/5c424abd-b0bf-4a9/providers/microsoft.visualstudio/account/d3db6f90-fc5";
13556
Requests[2093].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13557
Requests[2093].
Request
.Path = "/subscriptions/36111485-bc7a-/resourcegroups/3d70ce0a-0f18-4d0/providers/microsoft.visualstudio/account/4c84e41a-319";
13560
Requests[2094].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13561
Requests[2094].
Request
.Path = "/subscriptions/282c27f4-2dbd-/resourceGroups/de60ab31-5f27-483/providers/Microsoft.Web/certificates/39c0d";
13564
Requests[2095].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13565
Requests[2095].
Request
.Path = "/subscriptions/70946b2d-cf82-/resourceGroups/34e7fdfd-ba3b-4be/providers/Microsoft.Web/certificates/ee5d7";
13568
Requests[2096].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13569
Requests[2096].
Request
.Path = "/subscriptions/4a34323a-163e-/resourceGroups/4754f8e6-6ed1-47f/providers/Microsoft.Web/certificates/0d490";
13572
Requests[2097].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13573
Requests[2097].
Request
.Path = "/subscriptions/4a12a56f-d664-/resourceGroups/f11985de-bd6b-4d4/providers/Microsoft.Web/certificates/ce5b4";
13576
Requests[2098].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13577
Requests[2098].
Request
.Path = "/subscriptions/cfefd79e-3c65-/resourceGroups/3e3077b3-0eaf-413/providers/Microsoft.Web/classicMobileServices/2513e";
13580
Requests[2099].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13581
Requests[2099].
Request
.Path = "/subscriptions/20e1b9cb-bf32-/resourceGroups/388786fe-96fd-488/providers/Microsoft.Web/classicMobileServices/81015";
13584
Requests[2100].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13585
Requests[2100].
Request
.Path = "/subscriptions/61c889c3-0388-/resourceGroups/eb0f32b9-d89c-423/providers/Microsoft.Web/connectionGateways/6e40bd3f-02bb-4420-93";
13588
Requests[2101].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13589
Requests[2101].
Request
.Path = "/subscriptions/9880b942-7c49-/resourceGroups/956bcd5f-3983-45f/providers/Microsoft.Web/connectionGateways/e91a2b73-82f4-4363-a5";
13592
Requests[2102].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13593
Requests[2102].
Request
.Path = "/subscriptions/c4e7642b-8521-/resourceGroups/fe4c6a56-de57-436/providers/Microsoft.Web/connectionGateways/0f354ea4-a673-4da1-a5";
13596
Requests[2103].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13597
Requests[2103].
Request
.Path = "/subscriptions/423fd8f4-62cc-/resourceGroups/7b4d5b81-f255-406/providers/Microsoft.Web/connectionGateways/79a41ec5-4f3f-4771-b5";
13600
Requests[2104].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13601
Requests[2104].
Request
.Path = "/subscriptions/61d5e19e-c9fb-/resourceGroups/312773e7-d9c6-4b9/providers/Microsoft.Web/connections/aad4751d-15ca-";
13604
Requests[2105].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13605
Requests[2105].
Request
.Path = "/subscriptions/6ef70cb7-7b6b-/resourceGroups/b56a675e-fa58-469/providers/Microsoft.Web/connections/3aa0b6cf-b508-";
13608
Requests[2106].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13609
Requests[2106].
Request
.Path = "/subscriptions/73184159-1a6c-/resourceGroups/799783b2-e40e-4fd/providers/Microsoft.Web/connections/e5b4151b-6bc3-";
13612
Requests[2107].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13613
Requests[2107].
Request
.Path = "/subscriptions/02d3cf8f-9d51-/resourceGroups/0c8edcbf-efb6-499/providers/Microsoft.Web/connections/f08c1df1-3ea2-";
13616
Requests[2108].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13617
Requests[2108].
Request
.Path = "/subscriptions/df71b071-d9c2-/resourceGroups/9127343c-a8aa-48d/providers/Microsoft.Web/csrs/61962";
13620
Requests[2109].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13621
Requests[2109].
Request
.Path = "/subscriptions/32f57d57-15e1-/resourceGroups/ca03c2ec-cbd7-412/providers/Microsoft.Web/csrs/5d3e4";
13624
Requests[2110].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13625
Requests[2110].
Request
.Path = "/subscriptions/e0f5ff82-2e57-/resourceGroups/f88277a8-b3b8-4d6/providers/Microsoft.Web/csrs/ae7e6";
13628
Requests[2111].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13629
Requests[2111].
Request
.Path = "/subscriptions/e647156b-6fbf-/resourceGroups/283bc9ce-c39b-4cb/providers/Microsoft.Web/csrs/0456b";
13632
Requests[2112].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13633
Requests[2112].
Request
.Path = "/subscriptions/60cfb2f4-154a-/resourceGroups/90078f5f-d38f-454/providers/Microsoft.Web/customApis/b0e0a75";
13636
Requests[2113].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13637
Requests[2113].
Request
.Path = "/subscriptions/f157f08d-a749-/resourceGroups/12fd2382-debe-46e/providers/Microsoft.Web/customApis/ddf97ff";
13640
Requests[2114].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13641
Requests[2114].
Request
.Path = "/subscriptions/9640a146-5d06-/resourceGroups/971542d7-cfff-4df/providers/Microsoft.Web/customApis/557c398";
13644
Requests[2115].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13645
Requests[2115].
Request
.Path = "/subscriptions/a6f1893c-d898-/resourceGroups/316e4191-06f5-42c/providers/Microsoft.Web/customApis/8b10da4";
13648
Requests[2116].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13649
Requests[2116].
Request
.Path = "/subscriptions/0749e5ae-4729-/resourceGroups/207563ac-a4cc-4c1/providers/Microsoft.Web/hostingEnvironments/a3007";
13652
Requests[2117].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13653
Requests[2117].
Request
.Path = "/subscriptions/588d2720-08f3-/resourceGroups/e7dcea5f-e680-43d/providers/Microsoft.Web/hostingEnvironments/11628";
13656
Requests[2118].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13657
Requests[2118].
Request
.Path = "/subscriptions/9577002a-2f94-/resourceGroups/aba6b12f-18f4-4af/providers/Microsoft.Web/hostingEnvironments/47965";
13660
Requests[2119].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13661
Requests[2119].
Request
.Path = "/subscriptions/bf759da2-0835-/resourceGroups/84f04cb7-277d-479/providers/Microsoft.Web/hostingEnvironments/2b1f7";
13664
Requests[2120].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13665
Requests[2120].
Request
.Path = "/subscriptions/de5f8919-764e-/resourceGroups/0ea84275-47f9-495/providers/Microsoft.Web/managedHostingEnvironments/82577";
13668
Requests[2121].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13669
Requests[2121].
Request
.Path = "/subscriptions/85e06114-0642-/resourceGroups/c54d3265-92a7-47d/providers/Microsoft.Web/managedHostingEnvironments/a7920";
13672
Requests[2122].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13673
Requests[2122].
Request
.Path = "/subscriptions/af1e3dde-1b74-/resourceGroups/a89b2e91-1610-42d/providers/Microsoft.Web/managedHostingEnvironments/b0f54";
13676
Requests[2123].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13677
Requests[2123].
Request
.Path = "/subscriptions/680f97f7-76f0-/resourceGroups/a4986a47-9058-4d0/providers/Microsoft.Web/serverfarms/93d28";
13680
Requests[2124].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13681
Requests[2124].
Request
.Path = "/subscriptions/dbe7d5aa-1320-/resourceGroups/26bfeac1-3f93-44f/providers/Microsoft.Web/serverfarms/9f2b7";
13684
Requests[2125].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13685
Requests[2125].
Request
.Path = "/subscriptions/23296a6e-906c-/resourceGroups/e7f9a2ae-9081-41f/providers/Microsoft.Web/serverfarms/1ab13";
13688
Requests[2126].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13689
Requests[2126].
Request
.Path = "/subscriptions/145a18e0-1e70-/resourceGroups/dcc0f15e-c2aa-46b/providers/Microsoft.Web/serverfarms/39b91";
13692
Requests[2127].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
13693
Requests[2127].
Request
.Path = "/subscriptions/228778f3-1939-/resourceGroups/c1b991d4-5e98-4ca/providers/Microsoft.Web/sites/de1c2";
13696
Requests[2128].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13697
Requests[2128].
Request
.Path = "/subscriptions/3c5f1a56-940d-/resourceGroups/8664f154-3f60-495/providers/Microsoft.Web/sites/933d9";
13700
Requests[2129].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
13701
Requests[2129].
Request
.Path = "/subscriptions/ef063102-6f9e-/resourceGroups/62c27145-37da-4a9/providers/Microsoft.Web/sites/d12ad";
13704
Requests[2130].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
13705
Requests[2130].
Request
.Path = "/subscriptions/aa9f1169-5f1f-/resourceGroups/2a7beb7d-b62c-458/providers/Microsoft.Web/sites/cc474";
13708
Requests[2131].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13709
Requests[2131].
Request
.Path = "/providers/786036e1-90ac-421e-a6f7-4/managementGroups/ebdf33c9-4d81-4255-/providers/Microsoft.PolicyInsights/policyEvents/86fbbc36-78f1-48a7-8/queryResults";
13712
Requests[2132].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13713
Requests[2132].
Request
.Path = "/providers/50f5e2b6-d36e-4018-b1e6-b/managementGroups/174a0483-44f8-4136-/providers/Microsoft.PolicyInsights/policyStates/e1280a8f-4a43-4ffb-b/queryResults";
13716
Requests[2133].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13717
Requests[2133].
Request
.Path = "/providers/9c6da069-9de9-407f-9fce-8/managementGroups/aff76148-9110-4af8-/providers/Microsoft.PolicyInsights/policyStates/68e723a7-2d7a-47b2-a4a6-7be/summarize";
13720
Requests[2134].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13721
Requests[2134].
Request
.Path = "/subscriptions/546eeb6d-d44a-/resourceGroup/d64cfaa0-5211-48d/providers/Microsoft.MachineLearningServices/workspaces/f9b47726-965a/computes";
13724
Requests[2135].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13725
Requests[2135].
Request
.Path = "/subscriptions/c2f5829b-db49-/resourceGroups/0ebab4a3-/providers/Microsoft.DataMigration/services/69ce9b9d-1f/checkNameAvailability";
13728
Requests[2136].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13729
Requests[2136].
Request
.Path = "/subscriptions/ee1cfeb5-2ec9-/resourceGroups/1e0bed52-/providers/Microsoft.DataMigration/services/d2bfd51e-6a/checkStatus";
13732
Requests[2137].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13733
Requests[2137].
Request
.Path = "/subscriptions/3e5bb21c-a68d-/resourceGroups/1a39618d-/providers/Microsoft.DataMigration/services/26153172-57/projects";
13736
Requests[2138].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13737
Requests[2138].
Request
.Path = "/subscriptions/bfb7845b-2fc8-/resourceGroups/62fc002a-/providers/Microsoft.DataMigration/services/54a61426-5e/skus";
13740
Requests[2139].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13741
Requests[2139].
Request
.Path = "/subscriptions/f6003a14-088b-/resourceGroups/55434389-/providers/Microsoft.DataMigration/services/da79695f-cf/start";
13744
Requests[2140].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13745
Requests[2140].
Request
.Path = "/subscriptions/5c7d59bc-78b2-/resourceGroups/2998c8f1-/providers/Microsoft.DataMigration/services/55bb0aad-77/stop";
13748
Requests[2141].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13749
Requests[2141].
Request
.Path = "/subscriptions/e0be029d-4b8a-/resourcegroups/24e37403-e898/providers/Microsoft.AzureBridge.Admin/activations/89589257-218a-/downloadedProducts";
13752
Requests[2142].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13753
Requests[2142].
Request
.Path = "/subscriptions/8b506644-cd45-/resourcegroups/985f22a1-4843/providers/Microsoft.AzureBridge.Admin/activations/f9d8a661-79b3-/products";
13756
Requests[2143].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13757
Requests[2143].
Request
.Path = "/subscriptions/bf91b3d0-8b84-/resourceGroups/a4e66f9b-d990/providers/Microsoft.AzureStack/registrations/c2b1ab1d-66da-42/customerSubscriptions";
13760
Requests[2144].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13761
Requests[2144].
Request
.Path = "/subscriptions/6755e322-b656-/resourceGroups/4e19fc4b-30f9/providers/Microsoft.AzureStack/registrations/34acbe36-01ba-48/getactivationkey";
13764
Requests[2145].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13765
Requests[2145].
Request
.Path = "/subscriptions/7712f678-cf27-/resourceGroups/c76e2be9-c93d/providers/Microsoft.AzureStack/registrations/3955d2e8-9e9e-4a/products";
13768
Requests[2146].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13769
Requests[2146].
Request
.Path = "/subscriptions/6c66ac24-04ba-/resourceGroups/481f403d-3136-40c/providers/Microsoft.AnalysisServices/servers/8685762c-7/dissociateGateway";
13772
Requests[2147].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13773
Requests[2147].
Request
.Path = "/subscriptions/f7723d61-cc13-/resourceGroups/e511c4a0-f1f2-42a/providers/Microsoft.AnalysisServices/servers/ddf4d577-1/listGatewayStatus";
13776
Requests[2148].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13777
Requests[2148].
Request
.Path = "/subscriptions/082d98f4-7da7-/resourceGroups/73f39f47-a32a-49b/providers/Microsoft.AnalysisServices/servers/e3699d76-1/resume";
13780
Requests[2149].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13781
Requests[2149].
Request
.Path = "/subscriptions/548ece3b-281c-/resourceGroups/5b7fa050-39e7-4ee/providers/Microsoft.AnalysisServices/servers/0cbf63b1-7/skus";
13784
Requests[2150].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13785
Requests[2150].
Request
.Path = "/subscriptions/bbaa6dc3-3817-/resourceGroups/c2318e92-3df1-478/providers/Microsoft.AnalysisServices/servers/312e248b-5/suspend";
13788
Requests[2151].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13789
Requests[2151].
Request
.Path = "/subscriptions/79e9b621-47a8-/resourceGroups/da3a4733-203b-463/providers/Microsoft.ApiManagement/service/92f0dba6-d0/apis";
13792
Requests[2152].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13793
Requests[2152].
Request
.Path = "/subscriptions/5fd87b27-dcd8-/resourceGroups/c790c7fa-85d5-456/providers/Microsoft.ApiManagement/service/82de9bae-43/apisByTags";
13796
Requests[2153].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13797
Requests[2153].
Request
.Path = "/subscriptions/074df882-5c47-/resourceGroups/68fa5436-b61b-45d/providers/Microsoft.ApiManagement/service/25d7d7ce-ec/api-version-sets";
13800
Requests[2154].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
13801
Requests[2154].
Request
.Path = "/subscriptions/e58bf9ef-17ae-/resourceGroups/2a945e6b-99b6-42a/providers/Microsoft.ApiManagement/service/33412b10-1a/api-version-sets";
13804
Requests[2155].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13805
Requests[2155].
Request
.Path = "/subscriptions/c6a4affb-51ca-/resourceGroups/a672b2a7-a34c-45a/providers/Microsoft.ApiManagement/service/24f5f8db-9f/applynetworkconfigurationupdates";
13808
Requests[2156].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13809
Requests[2156].
Request
.Path = "/subscriptions/fff476a7-7927-/resourceGroups/5c9b542c-2759-4d9/providers/Microsoft.ApiManagement/service/74926315-4e/authorizationServers";
13812
Requests[2157].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13813
Requests[2157].
Request
.Path = "/subscriptions/3307efb4-d50f-/resourceGroups/8b2183d0-9234-470/providers/Microsoft.ApiManagement/service/c389a637-e1/backends";
13816
Requests[2158].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13817
Requests[2158].
Request
.Path = "/subscriptions/5c590551-8f9e-/resourceGroups/e0f349a4-7caa-402/providers/Microsoft.ApiManagement/service/13a6553d-9d/backup";
13820
Requests[2159].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13821
Requests[2159].
Request
.Path = "/subscriptions/a7182f44-8c6e-/resourceGroups/d44c665b-9aa7-407/providers/Microsoft.ApiManagement/service/b2935979-c9/certificates";
13824
Requests[2160].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13825
Requests[2160].
Request
.Path = "/subscriptions/cf7dee6c-7123-/resourceGroups/509b1fae-ceac-4f2/providers/Microsoft.ApiManagement/service/45090693-b6/diagnostics";
13828
Requests[2161].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13829
Requests[2161].
Request
.Path = "/subscriptions/11d399bd-7405-/resourceGroups/f2ceb036-75e8-41f/providers/Microsoft.ApiManagement/service/905a3208-15/getssotoken";
13832
Requests[2162].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13833
Requests[2162].
Request
.Path = "/subscriptions/8b3e54cc-70c7-/resourceGroups/953eaeb0-4f9d-4e6/providers/Microsoft.ApiManagement/service/d053fc29-69/getssotoken";
13836
Requests[2163].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13837
Requests[2163].
Request
.Path = "/subscriptions/6efec029-8e85-/resourceGroups/33623941-905e-4e8/providers/Microsoft.ApiManagement/service/9c37b84b-73/groups";
13840
Requests[2164].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13841
Requests[2164].
Request
.Path = "/subscriptions/5d88ccd5-4675-/resourceGroups/e425d834-aa3a-453/providers/Microsoft.ApiManagement/service/135b47bf-4d/identityProviders";
13844
Requests[2165].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13845
Requests[2165].
Request
.Path = "/subscriptions/3a742a08-e4d2-/resourceGroups/fcfd37dd-2dd1-4fd/providers/Microsoft.ApiManagement/service/be80c1b8-c6/issues";
13848
Requests[2166].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13849
Requests[2166].
Request
.Path = "/subscriptions/3ba82b05-e0fd-/resourceGroups/5143189f-45cf-447/providers/Microsoft.ApiManagement/service/3a86d814-a0/loggers";
13852
Requests[2167].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13853
Requests[2167].
Request
.Path = "/subscriptions/7d3eac0c-692e-/resourceGroups/c1fa55f5-5569-431/providers/Microsoft.ApiManagement/service/66722130-63/managedeployments";
13856
Requests[2168].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13857
Requests[2168].
Request
.Path = "/subscriptions/c0d7d417-36cb-/resourceGroups/d946078c-ea21-45a/providers/Microsoft.ApiManagement/service/b810f00e-70/networkstatus";
13860
Requests[2169].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13861
Requests[2169].
Request
.Path = "/subscriptions/45819142-2d37-/resourceGroups/60d24ee6-36e1-42e/providers/Microsoft.ApiManagement/service/03a425f3-1c/notifications";
13864
Requests[2170].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13865
Requests[2170].
Request
.Path = "/subscriptions/e9ebfd3e-927b-/resourceGroups/a7cd55a9-f9cf-464/providers/Microsoft.ApiManagement/service/922c12c3-cf/openidConnectProviders";
13868
Requests[2171].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13869
Requests[2171].
Request
.Path = "/subscriptions/5cb8becc-3bdb-/resourceGroups/118579e3-406f-4ee/providers/Microsoft.ApiManagement/service/25f48878-69/policies";
13872
Requests[2172].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13873
Requests[2172].
Request
.Path = "/subscriptions/aa033de5-d7fd-/resourceGroups/fcc25f11-b244-443/providers/Microsoft.ApiManagement/service/1e97d779-22/policySnippets";
13876
Requests[2173].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13877
Requests[2173].
Request
.Path = "/subscriptions/3f617d01-4553-/resourceGroups/e03f9103-5b94-477/providers/Microsoft.ApiManagement/service/e25d6db8-6f/products";
13880
Requests[2174].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13881
Requests[2174].
Request
.Path = "/subscriptions/0d1ab4cb-cd3f-/resourceGroups/f05c3c8b-82a7-408/providers/Microsoft.ApiManagement/service/1fcdf6f9-5a/properties";
13884
Requests[2175].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13885
Requests[2175].
Request
.Path = "/subscriptions/acaf2919-93af-/resourceGroups/e02e11e4-d7eb-49c/providers/Microsoft.ApiManagement/service/6ad0942d-52/regions";
13888
Requests[2176].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13889
Requests[2176].
Request
.Path = "/subscriptions/c184bf7b-0770-/resourceGroups/26417432-555e-4ec/providers/Microsoft.ApiManagement/service/8da1df4e-b0/restore";
13892
Requests[2177].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13893
Requests[2177].
Request
.Path = "/subscriptions/1da43ca2-a4b2-/resourceGroups/3a29b888-a2a2-451/providers/Microsoft.ApiManagement/service/d8641e4b-67/subscriptions";
13896
Requests[2178].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13897
Requests[2178].
Request
.Path = "/subscriptions/1303946a-9127-/resourceGroups/917471f5-5f4c-4a8/providers/Microsoft.ApiManagement/service/4c5c9f04-28/tagResources";
13900
Requests[2179].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13901
Requests[2179].
Request
.Path = "/subscriptions/3aa4c386-930e-/resourceGroups/cbb5685e-d1df-4b6/providers/Microsoft.ApiManagement/service/2e197987-b9/tags";
13904
Requests[2180].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13905
Requests[2180].
Request
.Path = "/subscriptions/cfb0e867-97e8-/resourceGroups/08c0fccc-e2bd-490/providers/Microsoft.ApiManagement/service/222b4270-ba/templates";
13908
Requests[2181].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13909
Requests[2181].
Request
.Path = "/subscriptions/bc963bf2-1824-/resourceGroups/61512d3f-853f-4fe/providers/Microsoft.ApiManagement/service/b96162a2-0c/updatecertificate";
13912
Requests[2182].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13913
Requests[2182].
Request
.Path = "/subscriptions/773ec69e-0cbb-/resourceGroups/158be695-6f3d-4db/providers/Microsoft.ApiManagement/service/828784d6-dc/updatehostname";
13916
Requests[2183].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13917
Requests[2183].
Request
.Path = "/subscriptions/d2149b59-7da3-/resourceGroups/ba998004-b11b-495/providers/Microsoft.ApiManagement/service/65d1c42b-55/uploadcertificate";
13920
Requests[2184].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13921
Requests[2184].
Request
.Path = "/subscriptions/82f7afe1-e5dc-/resourceGroups/569643a7-90b5-4f9/providers/Microsoft.ApiManagement/service/dd931498-db/users";
13924
Requests[2185].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13925
Requests[2185].
Request
.Path = "/subscriptions/394aefbb-d491-/resourceGroups/000e8582-1341-4c2/providers/Microsoft.Automation/automationAccounts/22b3ccdf-17d5-4c33-88/agentRegistrationInformation";
13928
Requests[2186].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13929
Requests[2186].
Request
.Path = "/subscriptions/a717b598-c399-/resourceGroups/0bd5def5-4c02-44a/providers/Microsoft.Automation/automationAccounts/b67a6ce6-bed2-43f3-b3/certificates";
13932
Requests[2187].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13933
Requests[2187].
Request
.Path = "/subscriptions/d5b66373-ddb9-/resourceGroups/bec50b00-601f-428/providers/Microsoft.Automation/automationAccounts/979717f7-b8bf-4014-95/compilationjobs";
13936
Requests[2188].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13937
Requests[2188].
Request
.Path = "/subscriptions/ae303810-0b73-/resourceGroups/8f698b51-ccdd-4b6/providers/Microsoft.Automation/automationAccounts/2acccea8-6a7f-4669-a4/configurations";
13940
Requests[2189].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13941
Requests[2189].
Request
.Path = "/subscriptions/4ec55c26-b1d6-/resourceGroups/49faff59-417f-417/providers/Microsoft.Automation/automationAccounts/6ccd8b32-96c9-4361-a6/connections";
13944
Requests[2190].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13945
Requests[2190].
Request
.Path = "/subscriptions/b654e077-f048-/resourceGroups/056739ac-f3a2-4ac/providers/Microsoft.Automation/automationAccounts/1938b071-feef-4fe7-ba/connectionTypes";
13948
Requests[2191].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13949
Requests[2191].
Request
.Path = "/subscriptions/6b359fca-2fdf-/resourceGroups/f1912940-7b62-447/providers/Microsoft.Automation/automationAccounts/c80f4530-1d25-4e80-ac/credentials";
13952
Requests[2192].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13953
Requests[2192].
Request
.Path = "/subscriptions/f16d7c7b-e994-/resourceGroups/81838a8e-5a04-489/providers/Microsoft.Automation/automationAccounts/eed38165-0cb8-44a8-90/hybridRunbookWorkerGroups";
13956
Requests[2193].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13957
Requests[2193].
Request
.Path = "/subscriptions/51cdec3d-4b83-/resourceGroups/ef8d3a00-5d17-4c5/providers/Microsoft.Automation/automationAccounts/e014bc15-c899-4c18-9d/jobs";
13960
Requests[2194].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13961
Requests[2194].
Request
.Path = "/subscriptions/45144aef-62b0-/resourceGroups/ea0e1438-d1ad-415/providers/Microsoft.Automation/automationAccounts/39ee5f61-aa3c-49ba-9c/jobSchedules";
13964
Requests[2195].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13965
Requests[2195].
Request
.Path = "/subscriptions/f9afdebb-cc29-/resourceGroups/fed46d0e-2749-4ff/providers/Microsoft.Automation/automationAccounts/29211d86-a44f-4e98-b7/linkedWorkspace";
13968
Requests[2196].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
13969
Requests[2196].
Request
.Path = "/subscriptions/2da7829f-7daa-/resourceGroups/88d60987-2e10-482/providers/Microsoft.Automation/automationAccounts/2843b12d-9054-4757-b8/listKeys";
13972
Requests[2197].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13973
Requests[2197].
Request
.Path = "/subscriptions/ddb854dc-2a3e-/resourceGroups/a477270f-a5ce-45b/providers/Microsoft.Automation/automationAccounts/5b9daac3-6e4e-4fa6-87/modules";
13976
Requests[2198].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13977
Requests[2198].
Request
.Path = "/subscriptions/7fe0912a-1d07-/resourceGroups/36a01180-eb95-455/providers/Microsoft.Automation/automationAccounts/dacc0a13-cad8-4bd7-aa/nodeConfigurations";
13980
Requests[2199].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13981
Requests[2199].
Request
.Path = "/subscriptions/3bf58515-713b-/resourceGroups/6cfb6a35-d079-478/providers/Microsoft.Automation/automationAccounts/bc6913c7-60fe-43a0-8f/nodes";
13984
Requests[2200].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13985
Requests[2200].
Request
.Path = "/subscriptions/aa10e874-1e71-/resourceGroups/1e12fbdf-9adf-40f/providers/Microsoft.Automation/automationAccounts/a217f667-916b-4f7d-b4/runbooks";
13988
Requests[2201].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13989
Requests[2201].
Request
.Path = "/subscriptions/4a6187d7-8801-/resourceGroups/9197cd87-4269-41f/providers/Microsoft.Automation/automationAccounts/a5bb823f-f0af-4d1b-af/schedules";
13992
Requests[2202].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13993
Requests[2202].
Request
.Path = "/subscriptions/a1607dc9-86c1-/resourceGroups/5358d542-3748-4dc/providers/Microsoft.Automation/automationAccounts/eb504eaa-8627-49ed-96/softwareUpdateConfigurationMachineRuns";
13996
Requests[2203].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
13997
Requests[2203].
Request
.Path = "/subscriptions/13b3e3e5-896d-/resourceGroups/a0c7a981-7728-49a/providers/Microsoft.Automation/automationAccounts/5d71876b-b3c9-47e9-b8/softwareUpdateConfigurationRuns";
14000
Requests[2204].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14001
Requests[2204].
Request
.Path = "/subscriptions/0e4d8c3f-b199-/resourceGroups/d1d0d5d6-673f-45f/providers/Microsoft.Automation/automationAccounts/055c75fb-38f6-47cc-91/softwareUpdateConfigurations";
14004
Requests[2205].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14005
Requests[2205].
Request
.Path = "/subscriptions/0d888cdb-845a-/resourceGroups/21db1d7e-7680-42d/providers/Microsoft.Automation/automationAccounts/fedbb029-3f3c-4aee-b5/sourceControls";
14008
Requests[2206].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14009
Requests[2206].
Request
.Path = "/subscriptions/2936046c-f686-/resourceGroups/7b28e9e3-435f-43b/providers/Microsoft.Automation/automationAccounts/03e0ce39-7d1e-4d05-a2/statistics";
14012
Requests[2207].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14013
Requests[2207].
Request
.Path = "/subscriptions/438bfcf7-cc55-/resourceGroups/89c83ecc-dbd5-4c1/providers/Microsoft.Automation/automationAccounts/1ebc71ff-b330-4c42-ae/usages";
14016
Requests[2208].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14017
Requests[2208].
Request
.Path = "/subscriptions/4bbc3111-dc7a-/resourceGroups/26495b06-708f-4c3/providers/Microsoft.Automation/automationAccounts/435059bf-d730-4c3e-9c/variables";
14020
Requests[2209].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14021
Requests[2209].
Request
.Path = "/subscriptions/13021b83-9d5f-/resourceGroups/6fb15784-c821-439/providers/Microsoft.Automation/automationAccounts/d0054398-a695-4953-85/watchers";
14024
Requests[2210].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14025
Requests[2210].
Request
.Path = "/subscriptions/0f3ffe7d-cd46-/resourceGroups/58465396-4dea-40d/providers/Microsoft.Automation/automationAccounts/bc1ba2ac-196b-4aac-b1/webhooks";
14028
Requests[2211].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14029
Requests[2211].
Request
.Path = "/subscriptions/63e5c196-f383-/resourcegroups/2ce2de13-5644-4ba/providers/Microsoft.Backup.Admin/backupLocations/ef528a89/backups";
14032
Requests[2212].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14033
Requests[2212].
Request
.Path = "/subscriptions/78a1996d-14eb-/resourcegroups/ebe6d87e-6000-442/providers/Microsoft.Backup.Admin/backupLocations/5ac52176/createBackup";
14036
Requests[2213].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14037
Requests[2213].
Request
.Path = "/subscriptions/e6267cb2-3a55-/resourceGroups/dc217f7e-898a-4f7/providers/Microsoft.Batch/batchAccounts/513fcb36-1d/applications";
14040
Requests[2214].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14041
Requests[2214].
Request
.Path = "/subscriptions/8340a5ed-02fc-/resourceGroups/2aebc416-06eb-425/providers/Microsoft.Batch/batchAccounts/0424c298-ae/certificates";
14044
Requests[2215].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14045
Requests[2215].
Request
.Path = "/subscriptions/91084fac-d984-/resourceGroups/3a48a108-6f00-453/providers/Microsoft.Batch/batchAccounts/abc67f64-e9/listKeys";
14048
Requests[2216].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14049
Requests[2216].
Request
.Path = "/subscriptions/60389a1d-8aff-/resourceGroups/2f5b3871-39af-4cc/providers/Microsoft.Batch/batchAccounts/1504287d-54/pools";
14052
Requests[2217].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14053
Requests[2217].
Request
.Path = "/subscriptions/d19a439c-8039-/resourceGroups/19952a5e-a87d-4d0/providers/Microsoft.Batch/batchAccounts/1101e27f-43/regenerateKeys";
14056
Requests[2218].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14057
Requests[2218].
Request
.Path = "/subscriptions/ee08241d-72dd-/resourceGroups/64f536c4-879b-4a5/providers/Microsoft.Batch/batchAccounts/ed811bb2-7d/syncAutoStorageKeys";
14060
Requests[2219].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14061
Requests[2219].
Request
.Path = "/subscriptions/49423daf-179e-/resourceGroups/15347ec8-ad6c-4ad/providers/Microsoft.BatchAI/clusters/1ac7cc82-bd/listRemoteLoginInformation";
14064
Requests[2220].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14065
Requests[2220].
Request
.Path = "/subscriptions/17050bf9-d89c-/resourceGroups/ad4f8f95-27eb-45f/providers/Microsoft.BatchAI/jobs/5f170da/listOutputFiles";
14068
Requests[2221].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14069
Requests[2221].
Request
.Path = "/subscriptions/e6a75c43-9bc6-/resourceGroups/b0b297e7-7d78-45c/providers/Microsoft.BatchAI/jobs/4bde8b6/listRemoteLoginInformation";
14072
Requests[2222].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14073
Requests[2222].
Request
.Path = "/subscriptions/fbbb9ebb-4b12-/resourceGroups/eb27335a-c390-466/providers/Microsoft.BatchAI/jobs/2a88ac1/terminate";
14076
Requests[2223].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14077
Requests[2223].
Request
.Path = "/subscriptions/16c2a984-830c-/resourceGroups/fdad9084-83ed-453/providers/Microsoft.BatchAI/workspaces/1822f731-e7cf/clusters";
14080
Requests[2224].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14081
Requests[2224].
Request
.Path = "/subscriptions/36a64da8-d744-/resourceGroups/d7ae7e5c-966d-4c4/providers/Microsoft.BatchAI/workspaces/e12bbad6-90c2/experiments";
14084
Requests[2225].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14085
Requests[2225].
Request
.Path = "/subscriptions/f3b98f91-4ca7-/resourceGroups/88b03890-f32f-480/providers/Microsoft.BatchAI/workspaces/9a011806-78d0/fileServers";
14088
Requests[2226].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14089
Requests[2226].
Request
.Path = "/subscriptions/ad6e74c3-b178-/resourceGroups/46f9e40e-2f8c-489/providers/Microsoft.BotService/botServices/9d587268-ce0/channels";
14092
Requests[2227].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14093
Requests[2227].
Request
.Path = "/subscriptions/6b622300-7c5d-/resourceGroups/b64fbfa4-4081-48e/providers/Microsoft.BotService/botServices/afaabe80-735/connections";
14096
Requests[2228].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14097
Requests[2228].
Request
.Path = "/subscriptions/b94e156a-6746-/resourceGroups/f45f1ae3-2282-442/providers/Microsoft.Cache/Redis/2df3a04e-/firewallRules";
14100
Requests[2229].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14101
Requests[2229].
Request
.Path = "/subscriptions/b712b380-9c58-/resourceGroups/b280c298-051d-4cf/providers/Microsoft.Cache/Redis/16a4b28a-/patchSchedules";
14104
Requests[2230].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14105
Requests[2230].
Request
.Path = "/subscriptions/5a881e1a-c694-/resourceGroups/fc3188dc-0820-411/providers/Microsoft.Cache/Redis/01d1e/export";
14108
Requests[2231].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14109
Requests[2231].
Request
.Path = "/subscriptions/eee1a5be-c93f-/resourceGroups/ed7a99fa-19a5-47d/providers/Microsoft.Cache/Redis/5b041/forceReboot";
14112
Requests[2232].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14113
Requests[2232].
Request
.Path = "/subscriptions/abe20ab4-d774-/resourceGroups/67797aee-d64f-4a7/providers/Microsoft.Cache/Redis/093d8/import";
14116
Requests[2233].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14117
Requests[2233].
Request
.Path = "/subscriptions/390fb5e5-7fed-/resourceGroups/04ce0cd9-9d6c-429/providers/Microsoft.Cache/Redis/e46fa/linkedServers";
14120
Requests[2234].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14121
Requests[2234].
Request
.Path = "/subscriptions/217f6aeb-9bd2-/resourceGroups/f8aef0d7-f37e-499/providers/Microsoft.Cache/Redis/3cb97/listKeys";
14124
Requests[2235].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14125
Requests[2235].
Request
.Path = "/subscriptions/2e65e68d-c680-/resourceGroups/31347f34-5aa3-49d/providers/Microsoft.Cache/Redis/d132d/listUpgradeNotifications";
14128
Requests[2236].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14129
Requests[2236].
Request
.Path = "/subscriptions/9e6be479-d889-/resourceGroups/3c535eb1-3ebe-439/providers/Microsoft.Cache/Redis/c3f18/regenerateKey";
14132
Requests[2237].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14133
Requests[2237].
Request
.Path = "/subscriptions/5fa01642-23d9-/resourceGroups/3a895869-2ba2-4cc/providers/Microsoft.Cdn/profiles/ab8ee22c-63/checkResourceUsage";
14136
Requests[2238].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14137
Requests[2238].
Request
.Path = "/subscriptions/a495ff12-f94a-/resourceGroups/c113a8fc-b334-443/providers/Microsoft.Cdn/profiles/738daa54-69/endpoints";
14140
Requests[2239].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14141
Requests[2239].
Request
.Path = "/subscriptions/1912a2d8-0618-/resourceGroups/6b10c5f2-e963-4cf/providers/Microsoft.Cdn/profiles/2a86360b-9f/generateSsoUri";
14144
Requests[2240].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14145
Requests[2240].
Request
.Path = "/subscriptions/60b7e6f7-8acc-/resourceGroups/70e4ea6f-0216-45b/providers/Microsoft.Cdn/profiles/c5db81ea-61/getSupportedOptimizationTypes";
14148
Requests[2241].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14149
Requests[2241].
Request
.Path = "/subscriptions/c0d1e1cc-51e5-/resourceGroups/fe1bbdb1-cb95-474/providers/Microsoft.CertificateRegistration/certificateOrders/0d513212-ccd1-4543-b/certificates";
14152
Requests[2242].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14153
Requests[2242].
Request
.Path = "/subscriptions/dc29c298-5447-/resourceGroups/e1c07c7d-4aee-43c/providers/Microsoft.CertificateRegistration/certificateOrders/5eb4395b-ae3c-47ac-a/resendRequestEmails";
14156
Requests[2243].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14157
Requests[2243].
Request
.Path = "/subscriptions/52f23ec1-9ae3-/resourceGroups/1788e95f-42dc-469/providers/Microsoft.CertificateRegistration/certificateOrders/ad445b1d-b130-4953-9/retrieveSiteSeal";
14160
Requests[2244].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14161
Requests[2244].
Request
.Path = "/subscriptions/47b76afa-577c-/resourceGroups/dc6e59e3-9925-484/providers/Microsoft.CertificateRegistration/certificateOrders/a964f/reissue";
14164
Requests[2245].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14165
Requests[2245].
Request
.Path = "/subscriptions/0250815e-9b09-/resourceGroups/e384d013-b0f6-40e/providers/Microsoft.CertificateRegistration/certificateOrders/50d1d/renew";
14168
Requests[2246].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14169
Requests[2246].
Request
.Path = "/subscriptions/7b54e51d-9598-/resourceGroups/6101f996-eafa-496/providers/Microsoft.CertificateRegistration/certificateOrders/6ffef/resendEmail";
14172
Requests[2247].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14173
Requests[2247].
Request
.Path = "/subscriptions/a256cc03-f6cc-/resourceGroups/e8bc3a7c-3a97-446/providers/Microsoft.CertificateRegistration/certificateOrders/1967b/retrieveCertificateActions";
14176
Requests[2248].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14177
Requests[2248].
Request
.Path = "/subscriptions/ab46c145-a34b-/resourceGroups/4c50f104-6f6d-4bc/providers/Microsoft.CertificateRegistration/certificateOrders/67986/retrieveEmailHistory";
14180
Requests[2249].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14181
Requests[2249].
Request
.Path = "/subscriptions/8340c487-2b8d-/resourceGroups/323af0b7-54a9-47d/providers/Microsoft.CertificateRegistration/certificateOrders/1803c/verifyDomainOwnership";
14184
Requests[2250].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14185
Requests[2250].
Request
.Path = "/subscriptions/7afd53ad-d963-/resourceGroups/dc9a25f7-e969-4ab/providers/Microsoft.CognitiveServices/accounts/2093692e-c5/listKeys";
14188
Requests[2251].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14189
Requests[2251].
Request
.Path = "/subscriptions/f29774bb-51bd-/resourceGroups/3cc0340c-252e-456/providers/Microsoft.CognitiveServices/accounts/7d3d63ba-b7/regenerateKey";
14192
Requests[2252].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14193
Requests[2252].
Request
.Path = "/subscriptions/ad1d23fb-fe40-/resourceGroups/95a8cbf6-ac10-412/providers/Microsoft.CognitiveServices/accounts/a69cc772-46/skus";
14196
Requests[2253].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14197
Requests[2253].
Request
.Path = "/subscriptions/9df59ccc-a83c-/resourceGroups/e10ba979-d53d-438/providers/Microsoft.CognitiveServices/accounts/c53be067-a4/usages";
14200
Requests[2254].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14201
Requests[2254].
Request
.Path = "/subscriptions/35b2bb7e-296a-/resourceGroups/15aa435a-c1f6-4ca/providers/Microsoft.Compute/availabilitySets/fbeea17d-460e-4ef9-/vmSizes";
14204
Requests[2255].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14205
Requests[2255].
Request
.Path = "/subscriptions/4cf6ee30-aadf-/resourceGroups/b8dd7f53-30a1-469/providers/Microsoft.Compute/disks/c220fbb9/beginGetAccess";
14208
Requests[2256].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14209
Requests[2256].
Request
.Path = "/subscriptions/ddaea11c-f3a5-/resourceGroups/b45739ea-ee02-461/providers/Microsoft.Compute/disks/a46abfac/endGetAccess";
14212
Requests[2257].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14213
Requests[2257].
Request
.Path = "/subscriptions/49876f36-7793-/resourceGroups/ee797f9f-d7c6-475/providers/Microsoft.Compute/galleries/16f5d14c-5e/images";
14216
Requests[2258].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14217
Requests[2258].
Request
.Path = "/subscriptions/c87f6846-6154-/resourceGroups/395d4902-e7d3-472/providers/Microsoft.Compute/snapshots/6ab1c6a8-154/beginGetAccess";
14220
Requests[2259].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14221
Requests[2259].
Request
.Path = "/subscriptions/beb77651-3e99-/resourceGroups/6a36c529-7df2-48f/providers/Microsoft.Compute/snapshots/8c980a87-92e/endGetAccess";
14224
Requests[2260].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14225
Requests[2260].
Request
.Path = "/subscriptions/7870dd1d-1c33-/resourceGroups/2c8dcddd-0587-4de/providers/Microsoft.Compute/virtualMachines/7be249/capture";
14228
Requests[2261].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14229
Requests[2261].
Request
.Path = "/subscriptions/4e736896-ba38-/resourceGroups/08333a47-220d-41b/providers/Microsoft.Compute/virtualMachines/028407/convertToManagedDisks";
14232
Requests[2262].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14233
Requests[2262].
Request
.Path = "/subscriptions/17cc6564-1ccb-/resourceGroups/a258b186-1c06-4a0/providers/Microsoft.Compute/virtualMachines/57d25d/deallocate";
14236
Requests[2263].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14237
Requests[2263].
Request
.Path = "/subscriptions/f8920025-fd43-/resourceGroups/c02e814a-737f-4a9/providers/Microsoft.Compute/virtualMachines/a77120/extensions";
14240
Requests[2264].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14241
Requests[2264].
Request
.Path = "/subscriptions/5b6db96b-b6e8-/resourceGroups/22463c90-b813-44b/providers/Microsoft.Compute/virtualMachines/594e8b/generalize";
14244
Requests[2265].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14245
Requests[2265].
Request
.Path = "/subscriptions/69c7321a-3df4-/resourceGroups/5624340b-c82d-4ad/providers/Microsoft.Compute/virtualMachines/1c7a8d/instanceView";
14248
Requests[2266].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14249
Requests[2266].
Request
.Path = "/subscriptions/5c89fc42-ce6f-/resourceGroups/23af0800-dd54-470/providers/Microsoft.Compute/virtualMachines/e13171/performMaintenance";
14252
Requests[2267].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14253
Requests[2267].
Request
.Path = "/subscriptions/dc096743-4aa1-/resourceGroups/89782e4d-f524-433/providers/Microsoft.Compute/virtualMachines/ff3893/powerOff";
14256
Requests[2268].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14257
Requests[2268].
Request
.Path = "/subscriptions/cbcb0bd3-244b-/resourceGroups/5311f155-c9d1-457/providers/Microsoft.Compute/virtualMachines/ad1b5e/redeploy";
14260
Requests[2269].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14261
Requests[2269].
Request
.Path = "/subscriptions/0c29c960-c78c-/resourceGroups/e83eb409-3fc4-4bd/providers/Microsoft.Compute/virtualMachines/0b83ef/restart";
14264
Requests[2270].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14265
Requests[2270].
Request
.Path = "/subscriptions/bb105cf4-d6ae-/resourceGroups/a230ca6b-97d1-401/providers/Microsoft.Compute/virtualMachines/7fd390/runCommand";
14268
Requests[2271].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14269
Requests[2271].
Request
.Path = "/subscriptions/52bd5d45-68ce-/resourceGroups/526a3f5e-1a6c-4a1/providers/Microsoft.Compute/virtualMachines/a58099/start";
14272
Requests[2272].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14273
Requests[2272].
Request
.Path = "/subscriptions/acd869fc-35e8-/resourceGroups/661d83c6-0507-4fa/providers/Microsoft.Compute/virtualMachines/ee205a/vmSizes";
14276
Requests[2273].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14277
Requests[2273].
Request
.Path = "/subscriptions/6ffd4d3c-2dba-/resourceGroups/1538d273-d383-4a2/providers/microsoft.Compute/virtualMachineScaleSets/f63552a0-d341-4635-a36a-4b/networkInterfaces";
14280
Requests[2274].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14281
Requests[2274].
Request
.Path = "/subscriptions/a7b63f7f-0bcf-/resourceGroups/839be712-c759-43c/providers/Microsoft.Compute/virtualMachineScaleSets/1c063be0-b6f4-4bfd-a32a-fb/publicipaddresses";
14284
Requests[2275].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14285
Requests[2275].
Request
.Path = "/subscriptions/76aa5d94-7f34-/resourceGroups/d268b2d2-c72d-45e/providers/Microsoft.Compute/virtualMachineScaleSets/3b3a01b6-83e4-45bb-a160-31/virtualMachines";
14288
Requests[2276].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14289
Requests[2276].
Request
.Path = "/subscriptions/7b949e29-b541-/resourceGroups/03c3c645-f726-441/providers/Microsoft.Compute/virtualMachineScaleSets/a5704769-f3c1-/deallocate";
14292
Requests[2277].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14293
Requests[2277].
Request
.Path = "/subscriptions/a7ac795f-5eb1-/resourceGroups/49bd9598-969a-46f/providers/Microsoft.Compute/virtualMachineScaleSets/5d004392-ded1-/delete";
14296
Requests[2278].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14297
Requests[2278].
Request
.Path = "/subscriptions/03215647-da6e-/resourceGroups/63a4e837-995b-45f/providers/Microsoft.Compute/virtualMachineScaleSets/2d2e00b4-93be-/extensions";
14300
Requests[2279].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14301
Requests[2279].
Request
.Path = "/subscriptions/0ec61cbe-cd7a-/resourceGroups/7c35efd4-2c2e-47c/providers/Microsoft.Compute/virtualMachineScaleSets/b01c9a10-a550-/forceRecoveryServiceFabricPlatformUpdateDomainWalk";
14304
Requests[2280].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14305
Requests[2280].
Request
.Path = "/subscriptions/99b143b6-41b0-/resourceGroups/2dfdba87-d0b3-42b/providers/Microsoft.Compute/virtualMachineScaleSets/7144390c-2ba1-/instanceView";
14308
Requests[2281].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14309
Requests[2281].
Request
.Path = "/subscriptions/f3fc91f5-d61e-/resourceGroups/4a718210-73a2-4ef/providers/Microsoft.Compute/virtualMachineScaleSets/67735dc8-129c-/manualupgrade";
14312
Requests[2282].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14313
Requests[2282].
Request
.Path = "/subscriptions/74a1f438-7657-/resourceGroups/b4d91349-cade-43d/providers/Microsoft.Compute/virtualMachineScaleSets/8958823d-6a19-/osRollingUpgrade";
14316
Requests[2283].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14317
Requests[2283].
Request
.Path = "/subscriptions/f0cba052-c914-/resourceGroups/347461e9-f7ec-4b8/providers/Microsoft.Compute/virtualMachineScaleSets/5519ac32-ec48-/osUpgradeHistory";
14320
Requests[2284].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14321
Requests[2284].
Request
.Path = "/subscriptions/d9a268f1-708a-/resourceGroups/40110d17-91df-417/providers/Microsoft.Compute/virtualMachineScaleSets/7c5f70a4-e3fa-/performMaintenance";
14324
Requests[2285].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14325
Requests[2285].
Request
.Path = "/subscriptions/5f5fbfc3-df27-/resourceGroups/2494774a-17c2-460/providers/Microsoft.Compute/virtualMachineScaleSets/32a65e4c-348d-/poweroff";
14328
Requests[2286].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14329
Requests[2286].
Request
.Path = "/subscriptions/5d0036e8-703b-/resourceGroups/52b3a983-e70f-40c/providers/Microsoft.Compute/virtualMachineScaleSets/74c6ac94-ff63-/redeploy";
14332
Requests[2287].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14333
Requests[2287].
Request
.Path = "/subscriptions/baa79c0f-539a-/resourceGroups/0a7e573c-f10c-4cf/providers/Microsoft.Compute/virtualMachineScaleSets/a13c6943-6bf1-/reimage";
14336
Requests[2288].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14337
Requests[2288].
Request
.Path = "/subscriptions/40fed805-a17c-/resourceGroups/c30f423e-7769-438/providers/Microsoft.Compute/virtualMachineScaleSets/1d03d066-04b8-/reimageall";
14340
Requests[2289].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14341
Requests[2289].
Request
.Path = "/subscriptions/a1e53ed4-ad1c-/resourceGroups/60adb5ae-eb2f-4e1/providers/Microsoft.Compute/virtualMachineScaleSets/563f8506-d97c-/restart";
14344
Requests[2290].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14345
Requests[2290].
Request
.Path = "/subscriptions/a2813359-796c-/resourceGroups/66c88277-22e2-494/providers/Microsoft.Compute/virtualMachineScaleSets/3f466327-0d20-/skus";
14348
Requests[2291].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14349
Requests[2291].
Request
.Path = "/subscriptions/bec6e0b4-916b-/resourceGroups/0216af91-e7dd-41a/providers/Microsoft.Compute/virtualMachineScaleSets/f9edabc1-ae2f-/start";
14352
Requests[2292].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14353
Requests[2292].
Request
.Path = "/subscriptions/e1789964-09a5-/resourceGroups/73a44b2c-f73d-4b1/providers/Microsoft.ContainerRegistry/registries/b7a2ad63-bdd/builds";
14356
Requests[2293].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14357
Requests[2293].
Request
.Path = "/subscriptions/2f5b985b-4efa-/resourceGroups/bfb56992-7e24-4a7/providers/Microsoft.ContainerRegistry/registries/2f2b9821-edc/buildTasks";
14360
Requests[2294].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14361
Requests[2294].
Request
.Path = "/subscriptions/a81f5589-7112-/resourceGroups/1f011536-004f-46e/providers/Microsoft.ContainerRegistry/registries/ebf59d4b-34a/getBuildSourceUploadUrl";
14364
Requests[2295].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14365
Requests[2295].
Request
.Path = "/subscriptions/bf5060ac-5de8-/resourceGroups/2543029f-8c23-4e5/providers/Microsoft.ContainerRegistry/registries/6c64eca3-159/getCredentials";
14368
Requests[2296].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14369
Requests[2296].
Request
.Path = "/subscriptions/e2ecc0cc-23aa-/resourceGroups/af7163af-2274-402/providers/Microsoft.ContainerRegistry/registries/71d66c33-4fb/importImage";
14372
Requests[2297].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14373
Requests[2297].
Request
.Path = "/subscriptions/89c3dafe-9482-/resourceGroups/5d6a3012-b21c-46a/providers/Microsoft.ContainerRegistry/registries/a9e68d3f-07d/listCredentials";
14376
Requests[2298].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14377
Requests[2298].
Request
.Path = "/subscriptions/a3a8e889-ea51-/resourceGroups/d6004cb2-49c6-4b3/providers/Microsoft.ContainerRegistry/registries/5093f501-fbd/listUsages";
14380
Requests[2299].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14381
Requests[2299].
Request
.Path = "/subscriptions/98aafb1e-6384-/resourceGroups/5497aa49-528d-439/providers/Microsoft.ContainerRegistry/registries/c4472d8c-eec/queueBuild";
14384
Requests[2300].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14385
Requests[2300].
Request
.Path = "/subscriptions/1f801e50-508b-/resourceGroups/c171c1d9-bfc1-456/providers/Microsoft.ContainerRegistry/registries/a29460a3-69d/regenerateCredential";
14388
Requests[2301].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14389
Requests[2301].
Request
.Path = "/subscriptions/8ae606b1-cc2d-/resourceGroups/92357605-9d33-462/providers/Microsoft.ContainerRegistry/registries/d7c22a81-1ed/regenerateCredentials";
14392
Requests[2302].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14393
Requests[2302].
Request
.Path = "/subscriptions/50b755da-ddbf-/resourceGroups/06862527-c9b3-40c/providers/Microsoft.ContainerRegistry/registries/bf0908e2-469/replications";
14396
Requests[2303].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14397
Requests[2303].
Request
.Path = "/subscriptions/162cae3b-a9b1-/resourceGroups/c48a5c83-8fb3-4de/providers/Microsoft.ContainerRegistry/registries/ffe1ef73-3d4/webhooks";
14400
Requests[2304].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14401
Requests[2304].
Request
.Path = "/subscriptions/22f292cd-43a3-/resourceGroups/29e280f8-57cf-491/providers/Microsoft.CustomerInsights/hubs/80c75e4/authorizationPolicies";
14404
Requests[2305].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14405
Requests[2305].
Request
.Path = "/subscriptions/c8c0f271-9046-/resourceGroups/411ed39a-9230-47f/providers/Microsoft.CustomerInsights/hubs/5d64cd3/connectors";
14408
Requests[2306].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14409
Requests[2306].
Request
.Path = "/subscriptions/bf02a15e-44f6-/resourceGroups/6fc87d45-e773-48b/providers/Microsoft.CustomerInsights/hubs/45474fb/interactions";
14412
Requests[2307].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14413
Requests[2307].
Request
.Path = "/subscriptions/639b36e3-97ad-/resourceGroups/4e8fd109-3f8a-46a/providers/Microsoft.CustomerInsights/hubs/1beb7ec/kpi";
14416
Requests[2308].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14417
Requests[2308].
Request
.Path = "/subscriptions/dc626650-ad72-/resourceGroups/fd37e727-dba7-418/providers/Microsoft.CustomerInsights/hubs/7d762d0/links";
14420
Requests[2309].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14421
Requests[2309].
Request
.Path = "/subscriptions/fb0c0cb2-016b-/resourceGroups/18ae8806-4324-476/providers/Microsoft.CustomerInsights/hubs/a49a346/predictions";
14424
Requests[2310].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14425
Requests[2310].
Request
.Path = "/subscriptions/0c6b15a6-ae23-/resourceGroups/54be881f-4073-4ce/providers/Microsoft.CustomerInsights/hubs/878bab7/profiles";
14428
Requests[2311].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14429
Requests[2311].
Request
.Path = "/subscriptions/e05aad97-c3d7-/resourceGroups/c0629cfd-6f8f-4bd/providers/Microsoft.CustomerInsights/hubs/e14abe7/relationshipLinks";
14432
Requests[2312].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14433
Requests[2312].
Request
.Path = "/subscriptions/3daccfed-c9ec-/resourceGroups/5a130ce4-0365-429/providers/Microsoft.CustomerInsights/hubs/07628d3/relationships";
14436
Requests[2313].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14437
Requests[2313].
Request
.Path = "/subscriptions/b4da7d2e-71bc-/resourceGroups/5bc496fa-d144-474/providers/Microsoft.CustomerInsights/hubs/629dcbd/roleAssignments";
14440
Requests[2314].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14441
Requests[2314].
Request
.Path = "/subscriptions/dff6a7dd-cc56-/resourceGroups/c86f3e84-9308-4c9/providers/Microsoft.CustomerInsights/hubs/ffa13c9/roles";
14444
Requests[2315].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14445
Requests[2315].
Request
.Path = "/subscriptions/79febd02-f673-/resourceGroups/ddb28fff-ded3-491/providers/Microsoft.CustomerInsights/hubs/72a845e/views";
14448
Requests[2316].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14449
Requests[2316].
Request
.Path = "/subscriptions/8d8c1bf4-0955-/resourceGroups/fc84e6ca-529e-49d/providers/Microsoft.CustomerInsights/hubs/622260a/widgetTypes";
14452
Requests[2317].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14453
Requests[2317].
Request
.Path = "/subscriptions/5743d4e0-cf99-/resourceGroups/d2f59cfd-88f0-40e/providers/Microsoft.DataBox/jobs/5cb7b2e/bookShipmentPickUp";
14456
Requests[2318].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14457
Requests[2318].
Request
.Path = "/subscriptions/96db5dd5-bc1f-/resourceGroups/e5a1b597-4a70-465/providers/Microsoft.DataBox/jobs/e493258/cancel";
14460
Requests[2319].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14461
Requests[2319].
Request
.Path = "/subscriptions/d60b6a25-2133-/resourceGroups/637d7267-0eb4-4c0/providers/Microsoft.DataBox/jobs/f15b217/copyLogsUri";
14464
Requests[2320].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14465
Requests[2320].
Request
.Path = "/subscriptions/9bf16963-e294-/resourceGroups/899f53ad-013c-464/providers/Microsoft.DataBox/jobs/a759409/downloadShippingLabel";
14468
Requests[2321].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14469
Requests[2321].
Request
.Path = "/subscriptions/eda098c1-bf26-/resourceGroups/96ee29b4-12bb-47b/providers/Microsoft.DataBox/jobs/591917c/listSecrets";
14472
Requests[2322].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14473
Requests[2322].
Request
.Path = "/subscriptions/18c1b8f7-444c-/resourceGroups/a8fe9026-bc56-48a/providers/Microsoft.DataBox/jobs/11dbc30/reportIssue";
14476
Requests[2323].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14477
Requests[2323].
Request
.Path = "/subscriptions/2c87e594-6545-/resourceGroups/084b1c9b-bc56-495/providers/Microsoft.DataFactory/factories/c4ae6d94-11/datasets";
14480
Requests[2324].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14481
Requests[2324].
Request
.Path = "/subscriptions/f096ef21-f7c2-/resourceGroups/90cbe96e-32af-4d6/providers/Microsoft.DataFactory/factories/b9412733-fe/integrationRuntimes";
14484
Requests[2325].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14485
Requests[2325].
Request
.Path = "/subscriptions/0ed7fe4e-2766-/resourceGroups/e907c634-93c7-436/providers/Microsoft.DataFactory/factories/44f82a59-66/linkedservices";
14488
Requests[2326].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14489
Requests[2326].
Request
.Path = "/subscriptions/c98159aa-ef6c-/resourceGroups/78f88ec2-0684-49d/providers/Microsoft.DataFactory/factories/392c0aa6-4f/pipelineruns";
14492
Requests[2327].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14493
Requests[2327].
Request
.Path = "/subscriptions/ddf4d891-69f3-/resourceGroups/9a3630bf-0890-449/providers/Microsoft.DataFactory/factories/7a17060c-4f/pipelines";
14496
Requests[2328].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14497
Requests[2328].
Request
.Path = "/subscriptions/c0251601-1880-/resourceGroups/05786b23-5c84-487/providers/Microsoft.DataFactory/factories/d67b55e6-0a/triggers";
14500
Requests[2329].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14501
Requests[2329].
Request
.Path = "/subscriptions/90846ab6-109d-/resourceGroups/3fa7fdef-61f9-4b7/providers/Microsoft.DataLakeAnalytics/accounts/d531b2ed-42/computePolicies";
14504
Requests[2330].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14505
Requests[2330].
Request
.Path = "/subscriptions/f2f22d12-545a-/resourceGroups/bd0f0e64-54b2-4d5/providers/Microsoft.DataLakeAnalytics/accounts/9a63b7c1-17/dataLakeStoreAccounts";
14508
Requests[2331].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14509
Requests[2331].
Request
.Path = "/subscriptions/c1a4d77f-3391-/resourceGroups/7919538c-1e19-4fa/providers/Microsoft.DataLakeAnalytics/accounts/1bd919e4-e5/firewallRules";
14512
Requests[2332].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14513
Requests[2332].
Request
.Path = "/subscriptions/63d68b26-0859-/resourceGroups/3133a6b9-80b0-458/providers/Microsoft.DataLakeAnalytics/accounts/d9f8e155-1b/storageAccounts";
14516
Requests[2333].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14517
Requests[2333].
Request
.Path = "/subscriptions/404be707-98b1-/resourceGroups/f21b3d81-5c97-4b7/providers/Microsoft.DataLakeStore/accounts/4e7aba44-e8/enableKeyVault";
14520
Requests[2334].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14521
Requests[2334].
Request
.Path = "/subscriptions/0417496d-b4b5-/resourceGroups/5c609994-f48b-4eb/providers/Microsoft.DataLakeStore/accounts/23d0e618-3e/firewallRules";
14524
Requests[2335].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14525
Requests[2335].
Request
.Path = "/subscriptions/24b2946b-84d3-/resourceGroups/9369c3ab-1ffe-448/providers/Microsoft.DataLakeStore/accounts/233673c9-32/trustedIdProviders";
14528
Requests[2336].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14529
Requests[2336].
Request
.Path = "/subscriptions/74b6b081-315c-/resourceGroups/e02f6e83-393d-421/providers/Microsoft.DataLakeStore/accounts/7bd89db6-a7/virtualNetworkRules";
14532
Requests[2337].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14533
Requests[2337].
Request
.Path = "/subscriptions/93f6179e-7d35-/resourceGroups/d43c4d93-f0a0-4f9/providers/Microsoft.DBforMySQL/servers/bd66af5b-c/configurations";
14536
Requests[2338].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14537
Requests[2338].
Request
.Path = "/subscriptions/e77794b9-9417-/resourceGroups/6ab12c8d-94c3-45b/providers/Microsoft.DBforMySQL/servers/1d6fe07c-b/databases";
14540
Requests[2339].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14541
Requests[2339].
Request
.Path = "/subscriptions/9bc5854f-6896-/resourceGroups/d36dd9da-7661-460/providers/Microsoft.DBforMySQL/servers/e36d0e3b-a/firewallRules";
14544
Requests[2340].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14545
Requests[2340].
Request
.Path = "/subscriptions/02294f48-08fb-/resourceGroups/1c47c8d6-94ac-49c/providers/Microsoft.DBforMySQL/servers/c2b6397e-2/logFiles";
14548
Requests[2341].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14549
Requests[2341].
Request
.Path = "/subscriptions/cf12a138-978a-/resourceGroups/24f88c1b-58fd-40a/providers/Microsoft.DBforMySQL/servers/3b780ff1-d/virtualNetworkRules";
14552
Requests[2342].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14553
Requests[2342].
Request
.Path = "/subscriptions/fe674c3c-25a1-/resourceGroups/be838f01-e985-47b/providers/Microsoft.DBforPostgreSQL/servers/6a03dc65-f/configurations";
14556
Requests[2343].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14557
Requests[2343].
Request
.Path = "/subscriptions/95c8b391-4c06-/resourceGroups/05fbce2f-342a-42a/providers/Microsoft.DBforPostgreSQL/servers/0c1be135-d/databases";
14560
Requests[2344].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14561
Requests[2344].
Request
.Path = "/subscriptions/a5d2a72d-2be7-/resourceGroups/31e4e843-c8a8-40d/providers/Microsoft.DBforPostgreSQL/servers/091d7ba3-0/firewallRules";
14564
Requests[2345].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14565
Requests[2345].
Request
.Path = "/subscriptions/454bbac8-573a-/resourceGroups/60cf34c6-7187-4cc/providers/Microsoft.DBforPostgreSQL/servers/29260ff8-b/logFiles";
14568
Requests[2346].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14569
Requests[2346].
Request
.Path = "/subscriptions/77ef79ab-7ff9-/resourceGroups/1dcaee4b-0631-41f/providers/Microsoft.DBforPostgreSQL/servers/cbb66656-9/virtualNetworkRules";
14572
Requests[2347].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14573
Requests[2347].
Request
.Path = "/subscriptions/61aa057d-16a4-/resourceGroups/b57b5634-7d63-498/providers/Microsoft.Devices/IotHubs/72f12a8a-c/routingEndpointsHealth";
14576
Requests[2348].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14577
Requests[2348].
Request
.Path = "/subscriptions/9258e0d2-66d1-/resourceGroups/76f6562d-2a67-436/providers/Microsoft.Devices/IotHubs/c997636d-5e7/certificates";
14580
Requests[2349].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14581
Requests[2349].
Request
.Path = "/subscriptions/55eae448-b471-/resourceGroups/24297b62-cf9d-42f/providers/Microsoft.Devices/IotHubs/4bdacaab-534/exportDevices";
14584
Requests[2350].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14585
Requests[2350].
Request
.Path = "/subscriptions/7ea62829-09cd-/resourceGroups/8c426e1e-cb74-427/providers/Microsoft.Devices/IotHubs/8fec5c9a-883/importDevices";
14588
Requests[2351].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14589
Requests[2351].
Request
.Path = "/subscriptions/45906e53-044f-/resourceGroups/461023f2-c7d0-4d4/providers/Microsoft.Devices/IotHubs/bfc612b3-9e1/IotHubStats";
14592
Requests[2352].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14593
Requests[2352].
Request
.Path = "/subscriptions/4f299567-9bed-/resourceGroups/26abdd9f-8563-438/providers/Microsoft.Devices/IotHubs/95702ee8-6d5/jobs";
14596
Requests[2353].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14597
Requests[2353].
Request
.Path = "/subscriptions/7a963a44-33c8-/resourceGroups/272b9327-91d9-4cc/providers/Microsoft.Devices/IotHubs/741f1ce3-e02/listkeys";
14600
Requests[2354].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14601
Requests[2354].
Request
.Path = "/subscriptions/365aa7c0-dd73-/resourceGroups/e5453639-9d32-49c/providers/Microsoft.Devices/IotHubs/af923135-30c/quotaMetrics";
14604
Requests[2355].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14605
Requests[2355].
Request
.Path = "/subscriptions/27b6e3ff-9469-/resourceGroups/d57aa509-01c3-45e/providers/Microsoft.Devices/IotHubs/d303c69c-b8e/skus";
14608
Requests[2356].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14609
Requests[2356].
Request
.Path = "/subscriptions/52ae4d8d-3757-/resourceGroups/496a528b-b885-46d/providers/Microsoft.Devices/provisioningServices/605bf1a0-7227-475f-9963/certificates";
14612
Requests[2357].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14613
Requests[2357].
Request
.Path = "/subscriptions/07c093ba-fac6-/resourceGroups/4582d808-25f6-41c/providers/Microsoft.Devices/provisioningServices/373dae6f-ed86-407f-8858/listkeys";
14616
Requests[2358].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14617
Requests[2358].
Request
.Path = "/subscriptions/bd41ef95-e3b0-/resourceGroups/72e4c032-0b0c-400/providers/Microsoft.Devices/provisioningServices/ed423f0c-24b2-45cc-8859/skus";
14620
Requests[2359].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14621
Requests[2359].
Request
.Path = "/subscriptions/164bcf67-6fd1-/resourceGroups/88490251-ebde-48b/providers/Microsoft.DevTestLab/labs/9e3099f/artifactsources";
14624
Requests[2360].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14625
Requests[2360].
Request
.Path = "/subscriptions/2f72209d-3420-/resourceGroups/0d90afea-3d5d-45c/providers/Microsoft.DevTestLab/labs/3dc3417/costinsights";
14628
Requests[2361].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14629
Requests[2361].
Request
.Path = "/subscriptions/a13c1f33-f31b-/resourceGroups/beee4ae7-ffd0-429/providers/Microsoft.DevTestLab/labs/be7e92f/costs";
14632
Requests[2362].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14633
Requests[2362].
Request
.Path = "/subscriptions/0416bdb0-20fe-/resourceGroups/4e101de7-82e0-434/providers/Microsoft.DevTestLab/labs/b14f9dc/customimages";
14636
Requests[2363].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14637
Requests[2363].
Request
.Path = "/subscriptions/c507ff08-8630-/resourceGroups/b4189490-3804-4fd/providers/Microsoft.DevTestLab/labs/ea0e810/formulas";
14640
Requests[2364].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14641
Requests[2364].
Request
.Path = "/subscriptions/d0ebab98-eb07-/resourceGroups/9ad8f24d-1f04-4fd/providers/Microsoft.DevTestLab/labs/532c972/galleryimages";
14644
Requests[2365].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14645
Requests[2365].
Request
.Path = "/subscriptions/13d3ee50-9fe1-/resourceGroups/4bbdd6fe-e545-4bc/providers/Microsoft.DevTestLab/labs/7b038ec/notificationchannels";
14648
Requests[2366].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14649
Requests[2366].
Request
.Path = "/subscriptions/b8465bef-c3bb-/resourceGroups/29b68972-de56-459/providers/Microsoft.DevTestLab/labs/16d4dc8/schedules";
14652
Requests[2367].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14653
Requests[2367].
Request
.Path = "/subscriptions/d73a36d5-80df-/resourceGroups/65581861-953d-407/providers/Microsoft.DevTestLab/labs/f6ec44d/servicerunners";
14656
Requests[2368].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14657
Requests[2368].
Request
.Path = "/subscriptions/237d7d24-5f65-/resourceGroups/1a7a6090-5812-45a/providers/Microsoft.DevTestLab/labs/ddf24e5/users";
14660
Requests[2369].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14661
Requests[2369].
Request
.Path = "/subscriptions/ba0a0530-4eba-/resourceGroups/9db5d3e3-899d-487/providers/Microsoft.DevTestLab/labs/061f9b6/virtualmachines";
14664
Requests[2370].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14665
Requests[2370].
Request
.Path = "/subscriptions/92ff9fcb-28fb-/resourceGroups/712b8b26-e17f-4fa/providers/Microsoft.DevTestLab/labs/deb7d1e/virtualnetworks";
14668
Requests[2371].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14669
Requests[2371].
Request
.Path = "/subscriptions/93fb7aa0-d6af-/resourceGroups/a773acc6-b590-4e6/providers/Microsoft.DevTestLab/labs/1a342/claimAnyVm";
14672
Requests[2372].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14673
Requests[2372].
Request
.Path = "/subscriptions/0425c12b-9083-/resourceGroups/cb9a2774-d4cd-4bd/providers/Microsoft.DevTestLab/labs/6bf8c/createEnvironment";
14676
Requests[2373].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14677
Requests[2373].
Request
.Path = "/subscriptions/c8788197-a4e6-/resourceGroups/d8e0af9d-df15-480/providers/Microsoft.DevTestLab/labs/a03f6/exportResourceUsage";
14680
Requests[2374].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14681
Requests[2374].
Request
.Path = "/subscriptions/775d7a21-c60f-/resourceGroups/9d8a5376-d301-407/providers/Microsoft.DevTestLab/labs/9d644/generateUploadUri";
14684
Requests[2375].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14685
Requests[2375].
Request
.Path = "/subscriptions/6281961f-6808-/resourceGroups/1022c290-0822-419/providers/Microsoft.DevTestLab/labs/7b737/listVhds";
14688
Requests[2376].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14689
Requests[2376].
Request
.Path = "/subscriptions/215afc2e-266a-/resourceGroups/b1110cdf-83ed-474/providers/Microsoft.DevTestLab/schedules/69b23/execute";
14692
Requests[2377].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14693
Requests[2377].
Request
.Path = "/subscriptions/1fed1957-39f7-/resourceGroups/44e05af9-64da-4dd/providers/Microsoft.DevTestLab/schedules/e58c2/retarget";
14696
Requests[2378].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14697
Requests[2378].
Request
.Path = "/subscriptions/9113a290-fb08-/resourceGroups/18636feb-9bf4-4ea/providers/Microsoft.DocumentDB/databaseAccounts/cc087092-12/failoverPriorityChange";
14700
Requests[2379].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14701
Requests[2379].
Request
.Path = "/subscriptions/12eb7b34-4b75-/resourceGroups/9ebfc4ef-ddee-4c9/providers/Microsoft.DocumentDB/databaseAccounts/2254ff8d-bb/listConnectionStrings";
14704
Requests[2380].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14705
Requests[2380].
Request
.Path = "/subscriptions/741599a2-b3ba-/resourceGroups/cb5ae435-659a-400/providers/Microsoft.DocumentDB/databaseAccounts/0cbb9a5a-9e/listKeys";
14708
Requests[2381].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14709
Requests[2381].
Request
.Path = "/subscriptions/2b4d0069-204c-/resourceGroups/e7370607-8b6e-40d/providers/Microsoft.DocumentDB/databaseAccounts/9d90a3e0-17/metricDefinitions";
14712
Requests[2382].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14713
Requests[2382].
Request
.Path = "/subscriptions/a103bed0-e379-/resourceGroups/488d5a08-75fa-447/providers/Microsoft.DocumentDB/databaseAccounts/8664d213-4c/metrics";
14716
Requests[2383].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14717
Requests[2383].
Request
.Path = "/subscriptions/a1376f80-398b-/resourceGroups/5c530738-9bdb-4af/providers/Microsoft.DocumentDB/databaseAccounts/662e0ff1-f3/offlineRegion";
14720
Requests[2384].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14721
Requests[2384].
Request
.Path = "/subscriptions/832899e8-b826-/resourceGroups/b049ad9e-0d36-400/providers/Microsoft.DocumentDB/databaseAccounts/54da2e7e-ff/onlineRegion";
14724
Requests[2385].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14725
Requests[2385].
Request
.Path = "/subscriptions/f91ef0f1-b358-/resourceGroups/65cb22f6-9aa3-4fb/providers/Microsoft.DocumentDB/databaseAccounts/98719802-1a/readonlykeys";
14728
Requests[2386].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14729
Requests[2386].
Request
.Path = "/subscriptions/2b2ae487-67d4-/resourceGroups/67285803-dd50-4c8/providers/Microsoft.DocumentDB/databaseAccounts/476d8789-f2/regenerateKey";
14732
Requests[2387].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14733
Requests[2387].
Request
.Path = "/subscriptions/63fc87ee-f13b-/resourceGroups/068d32fd-ae46-45b/providers/Microsoft.DocumentDB/databaseAccounts/84d19579-d6/usages";
14736
Requests[2388].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14737
Requests[2388].
Request
.Path = "/subscriptions/da04cb18-7b0c-/resourceGroups/11064f0a-0c02-4db/providers/Microsoft.DomainRegistration/domains/b57eefc1-7/domainOwnershipIdentifiers";
14740
Requests[2389].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14741
Requests[2389].
Request
.Path = "/subscriptions/b0afacb5-379a-/resourceGroups/b42cb630-938c-4bb/providers/Microsoft.DomainRegistration/domains/b8fd0a90-6/renew";
14744
Requests[2390].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14745
Requests[2390].
Request
.Path = "/subscriptions/3daabbf0-3fa6-/resourceGroups/72525e02-b11f-49c/providers/Microsoft.EventGrid/locations/00c3d84f/eventSubscriptions";
14748
Requests[2391].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14749
Requests[2391].
Request
.Path = "/subscriptions/3f4afd71-0725-/resourceGroups/f4eca3a2-4766-4a9/providers/Microsoft.EventGrid/topics/4b092c32-/listKeys";
14752
Requests[2392].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14753
Requests[2392].
Request
.Path = "/subscriptions/73a20738-f036-/resourceGroups/79a3b705-5a56-479/providers/Microsoft.EventGrid/topics/7f4dd137-/regenerateKey";
14756
Requests[2393].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14757
Requests[2393].
Request
.Path = "/subscriptions/2b5be291-7f6f-/resourceGroups/0b0d83c6-e29f-4b3/providers/Microsoft.EventGrid/topicTypes/ec7ca112-e00a/eventSubscriptions";
14760
Requests[2394].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14761
Requests[2394].
Request
.Path = "/subscriptions/f2ad7b75-f010-/resourceGroups/d9bed0a9-4566-432/providers/Microsoft.EventHub/namespaces/129ee83c-7af6/AuthorizationRules";
14764
Requests[2395].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14765
Requests[2395].
Request
.Path = "/subscriptions/3d39d85b-e926-/resourceGroups/2b360384-3229-4c8/providers/Microsoft.EventHub/namespaces/b2a6a6b6-955d/AuthorizationRules";
14768
Requests[2396].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14769
Requests[2396].
Request
.Path = "/subscriptions/6d142232-bd52-/resourceGroups/7943304f-d364-43e/providers/Microsoft.EventHub/namespaces/9ce0676a-4eb9/disasterRecoveryConfigs";
14772
Requests[2397].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14773
Requests[2397].
Request
.Path = "/subscriptions/3cbf6b9a-0a68-/resourceGroups/b2076a95-e483-43c/providers/Microsoft.EventHub/namespaces/e6a7dd25-9cf9/eventhubs";
14776
Requests[2398].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14777
Requests[2398].
Request
.Path = "/subscriptions/8ccd4f0f-c859-/resourceGroups/e58d9131-51a1-4fc/providers/Microsoft.EventHub/namespaces/610d2991-d2c5/messagingplan";
14780
Requests[2399].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14781
Requests[2399].
Request
.Path = "/subscriptions/392f50fc-8ccb-/resourceGroups/155cd4e4-71ad-4a7/providers/Microsoft.Fabric.Admin/fabricLocations/6028f335/edgeGatewayPools";
14784
Requests[2400].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14785
Requests[2400].
Request
.Path = "/subscriptions/1f883658-d94c-/resourceGroups/fe8b3382-0575-499/providers/Microsoft.Fabric.Admin/fabricLocations/61b336b3/edgeGateways";
14788
Requests[2401].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14789
Requests[2401].
Request
.Path = "/subscriptions/12781d36-3f1c-/resourceGroups/55000685-4937-476/providers/Microsoft.Fabric.Admin/fabricLocations/f871b07b/fileShares";
14792
Requests[2402].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14793
Requests[2402].
Request
.Path = "/subscriptions/91c773c7-83a9-/resourceGroups/958b16c3-971f-4bc/providers/Microsoft.Fabric.Admin/fabricLocations/d798dd04/infraRoleInstances";
14796
Requests[2403].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14797
Requests[2403].
Request
.Path = "/subscriptions/77dcc0cb-917a-/resourceGroups/fbfec1d6-2e3b-499/providers/Microsoft.Fabric.Admin/fabricLocations/c2b383c7/infraRoles";
14800
Requests[2404].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14801
Requests[2404].
Request
.Path = "/subscriptions/e9889d94-a4bd-/resourceGroups/0b02a36b-f88b-451/providers/Microsoft.Fabric.Admin/fabricLocations/fe876785/ipPools";
14804
Requests[2405].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14805
Requests[2405].
Request
.Path = "/subscriptions/8b46d9a0-83c2-/resourceGroups/ca618674-cc6d-4e5/providers/Microsoft.Fabric.Admin/fabricLocations/bae94e27/logicalNetworks";
14808
Requests[2406].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14809
Requests[2406].
Request
.Path = "/subscriptions/f06fd3b8-7609-/resourceGroups/8dfde893-c77e-4e0/providers/Microsoft.Fabric.Admin/fabricLocations/492ce36e/macAddressPools";
14812
Requests[2407].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14813
Requests[2407].
Request
.Path = "/subscriptions/f8708a2a-bbed-/resourceGroups/0155d07b-7049-425/providers/Microsoft.Fabric.Admin/fabricLocations/babdfa15/scaleUnitNodes";
14816
Requests[2408].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14817
Requests[2408].
Request
.Path = "/subscriptions/8b1cd55e-cab8-/resourceGroups/f570f3c4-a64d-4bd/providers/Microsoft.Fabric.Admin/fabricLocations/2d873c62/scaleUnits";
14820
Requests[2409].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14821
Requests[2409].
Request
.Path = "/subscriptions/833a2ed3-b181-/resourceGroups/e8c9e308-c345-47f/providers/Microsoft.Fabric.Admin/fabricLocations/3f57c767/slbMuxInstances";
14824
Requests[2410].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14825
Requests[2410].
Request
.Path = "/subscriptions/2a23a705-c889-/resourceGroups/c40833b2-e43a-45c/providers/Microsoft.Fabric.Admin/fabricLocations/6d027a1b/storageSubSystems";
14828
Requests[2411].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14829
Requests[2411].
Request
.Path = "/subscriptions/6f782003-89e8-/resourceGroups/95200c2f-d7f2-478/providers/Microsoft.HDInsight/clusters/7fe5ae9c-03/applications";
14832
Requests[2412].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14833
Requests[2412].
Request
.Path = "/subscriptions/d6f5c3e5-869f-/resourceGroups/741b23fd-a9e6-40a/providers/Microsoft.HDInsight/clusters/52ff7ece-32/executeScriptActions";
14836
Requests[2413].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14837
Requests[2413].
Request
.Path = "/subscriptions/44f85668-d80a-/resourceGroups/082a6457-9738-485/providers/Microsoft.HDInsight/clusters/82dedf91-ff/scriptActions";
14840
Requests[2414].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14841
Requests[2414].
Request
.Path = "/subscriptions/120db55e-2967-/resourceGroups/31ce5be0-100b-424/providers/Microsoft.HDInsight/clusters/afbd9bc3-12/scriptExecutionHistory";
14844
Requests[2415].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14845
Requests[2415].
Request
.Path = "/subscriptions/6edcda91-76a9-/resourceGroups/78c554bb-b985-425/providers/Microsoft.ImportExport/jobs/8d06b23/listBitLockerKeys";
14848
Requests[2416].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14849
Requests[2416].
Request
.Path = "/subscriptions/36621aae-6baa-/resourceGroups/fbee9e40-64a2-4bc/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/48a55622/alerts";
14852
Requests[2417].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14853
Requests[2417].
Request
.Path = "/subscriptions/426311ba-914b-/resourceGroups/4c220240-449b-4f3/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/1f8a7d92/serviceHealths";
14856
Requests[2418].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14857
Requests[2418].
Request
.Path = "/subscriptions/d9009777-f6e4-/resourceGroups/81605d0c-5348-409/providers/microsoft.insights/actionGroups/bc59baed-1fb3-4/subscribe";
14860
Requests[2419].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14861
Requests[2419].
Request
.Path = "/subscriptions/3f3288b5-bc14-/resourcegroups/daaeaeb2-0396-44f/providers/microsoft.insights/alertrules/c07f67af/incidents";
14864
Requests[2420].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14865
Requests[2420].
Request
.Path = "/subscriptions/3b6e5052-0ca5-/resourceGroups/0d2cda6f-5139-421/providers/Microsoft.Insights/components/0cebe3c4-a326/webtests";
14868
Requests[2421].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
14869
Requests[2421].
Request
.Path = "/subscriptions/02169175-6bc8-/resourceGroups/d4ae599b-223c-46f/providers/Microsoft.Insights/components/fd311d09-2c5/Annotations";
14872
Requests[2422].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14873
Requests[2422].
Request
.Path = "/subscriptions/ca0ea866-2542-/resourceGroups/7399622e-81e2-47c/providers/Microsoft.Insights/components/0cdc335c-519/Annotations";
14876
Requests[2423].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14877
Requests[2423].
Request
.Path = "/subscriptions/6b1486e6-525a-/resourceGroups/528df4e2-39b4-473/providers/Microsoft.Insights/components/93079dc7-f20/ApiKeys";
14880
Requests[2424].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14881
Requests[2424].
Request
.Path = "/subscriptions/5ce6f766-b661-/resourceGroups/03095bf0-15e0-47f/providers/Microsoft.Insights/components/8ece28c7-c73/ApiKeys";
14884
Requests[2425].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
14885
Requests[2425].
Request
.Path = "/subscriptions/b68d7b37-3bb9-/resourceGroups/8f2c9140-4863-473/providers/Microsoft.Insights/components/81b185c0-114/currentbillingfeatures";
14888
Requests[2426].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14889
Requests[2426].
Request
.Path = "/subscriptions/d2ff1134-5583-/resourceGroups/ad87d64c-503e-4f6/providers/Microsoft.Insights/components/3d6299bc-90a/currentbillingfeatures";
14892
Requests[2427].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14893
Requests[2427].
Request
.Path = "/subscriptions/5b603267-9167-/resourceGroups/1bcf371f-7887-45c/providers/Microsoft.Insights/components/d0057ccd-7a5/DefaultWorkItemConfig";
14896
Requests[2428].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14897
Requests[2428].
Request
.Path = "/subscriptions/76ed07d7-a36e-/resourceGroups/6095f8fe-7da2-4bc/providers/Microsoft.Insights/components/62528b6f-45a/exportconfiguration";
14900
Requests[2429].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14901
Requests[2429].
Request
.Path = "/subscriptions/70789e34-8a3d-/resourceGroups/1cd4b96e-5a8c-482/providers/Microsoft.Insights/components/aec8b67b-5f7/exportconfiguration";
14904
Requests[2430].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14905
Requests[2430].
Request
.Path = "/subscriptions/1f5640a1-a1b2-/resourceGroups/5af995c3-b3a2-415/providers/Microsoft.Insights/components/abc57574-475/favorites";
14908
Requests[2431].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14909
Requests[2431].
Request
.Path = "/subscriptions/7b44cc5a-ea3c-/resourceGroups/871924ce-3fed-468/providers/Microsoft.Insights/components/6dd11bc3-306/featurecapabilities";
14912
Requests[2432].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14913
Requests[2432].
Request
.Path = "/subscriptions/02b4ef49-d4b3-/resourceGroups/1bab2cad-ba16-4c6/providers/Microsoft.Insights/components/c44ca8c5-3b4/getavailablebillingfeatures";
14916
Requests[2433].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14917
Requests[2433].
Request
.Path = "/subscriptions/8347daba-3447-/resourceGroups/71e6d8de-7b79-49f/providers/Microsoft.Insights/components/3846c1e7-788/ProactiveDetectionConfigs";
14920
Requests[2434].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14921
Requests[2434].
Request
.Path = "/subscriptions/9674bb72-0606-/resourceGroups/a954179b-41ef-4c9/providers/Microsoft.Insights/components/e48ed1b0-ad0/purge";
14924
Requests[2435].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14925
Requests[2435].
Request
.Path = "/subscriptions/fcd1bb21-7747-/resourceGroups/b159f2e3-1bc5-41e/providers/Microsoft.Insights/components/cd31ed42-673/quotastatus";
14928
Requests[2436].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14929
Requests[2436].
Request
.Path = "/subscriptions/12d1122c-6b64-/resourceGroups/34666675-a751-40b/providers/Microsoft.Insights/components/93a63655-9d3/syntheticmonitorlocations";
14932
Requests[2437].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14933
Requests[2437].
Request
.Path = "/subscriptions/5d11ff98-778d-/resourceGroups/626c0991-4343-45b/providers/Microsoft.Insights/components/eac801f1-fab/WorkItemConfigs";
14936
Requests[2438].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14937
Requests[2438].
Request
.Path = "/subscriptions/fbad2c35-7ee9-/resourceGroups/3af28f67-0272-4e7/providers/Microsoft.Insights/components/e0ef114e-bbe/WorkItemConfigs";
14940
Requests[2439].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14941
Requests[2439].
Request
.Path = "/subscriptions/83fa995e-53f0-/resourceGroups/e233caa1-a230-43a/providers/Microsoft.Insights/metricAlerts/f420e3f2/status";
14944
Requests[2440].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14945
Requests[2440].
Request
.Path = "/subscriptions/59960f61-a719-/resourceGroups/5405a2e9-b3cf-4d6/providers/Microsoft.KeyVault/vaults/24b1c79b-/secrets";
14948
Requests[2441].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14949
Requests[2441].
Request
.Path = "/subscriptions/0d6d1ef6-abd5-/resourceGroups/fb8bdcbe-5cd8-43e/providers/Microsoft.Logic/integrationAccounts/43136dc1-6a1e-41eb-87c/agreements";
14952
Requests[2442].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14953
Requests[2442].
Request
.Path = "/subscriptions/9dd209a3-3f6e-/resourceGroups/a5e34aaf-56aa-464/providers/Microsoft.Logic/integrationAccounts/e842b239-1c02-4508-8cc/assemblies";
14956
Requests[2443].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14957
Requests[2443].
Request
.Path = "/subscriptions/430254b2-159f-/resourceGroups/0c1efcfc-9aaa-4f9/providers/Microsoft.Logic/integrationAccounts/6ff327c1-1008-45f0-9ad/batchConfigurations";
14960
Requests[2444].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14961
Requests[2444].
Request
.Path = "/subscriptions/eed709a5-ce5b-/resourceGroups/b33f9643-a223-45d/providers/Microsoft.Logic/integrationAccounts/5bff32b5-c342-4bb6-ae9/certificates";
14964
Requests[2445].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14965
Requests[2445].
Request
.Path = "/subscriptions/22d36142-e207-/resourceGroups/a95f462b-4724-482/providers/Microsoft.Logic/integrationAccounts/2fbae2b4-71b7-431c-986/listCallbackUrl";
14968
Requests[2446].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14969
Requests[2446].
Request
.Path = "/subscriptions/a925e4f7-86fd-/resourceGroups/441a770e-a534-49f/providers/Microsoft.Logic/integrationAccounts/6e233e25-4f2e-4655-975/listKeyVaultKeys";
14972
Requests[2447].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14973
Requests[2447].
Request
.Path = "/subscriptions/3d197d87-3dad-/resourceGroups/82cc607c-2b40-4a3/providers/Microsoft.Logic/integrationAccounts/db1f2bed-479e-4876-9d0/logTrackingEvents";
14976
Requests[2448].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14977
Requests[2448].
Request
.Path = "/subscriptions/d4ae2de4-552c-/resourceGroups/2b8baf8d-a5e6-4f1/providers/Microsoft.Logic/integrationAccounts/ef0e4cfc-fe51-4fde-972/maps";
14980
Requests[2449].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14981
Requests[2449].
Request
.Path = "/subscriptions/ce8640e5-8dcd-/resourceGroups/e6b587dc-4d20-436/providers/Microsoft.Logic/integrationAccounts/ce91ea4c-4a50-4c51-89a/partners";
14984
Requests[2450].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
14985
Requests[2450].
Request
.Path = "/subscriptions/c95e4875-9391-/resourceGroups/342473bd-403b-461/providers/Microsoft.Logic/integrationAccounts/512d79c7-6bc2-4f50-9ae/regenerateAccessKey";
14988
Requests[2451].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14989
Requests[2451].
Request
.Path = "/subscriptions/622dc1b4-f9cc-/resourceGroups/1ee72e25-73fa-475/providers/Microsoft.Logic/integrationAccounts/84005798-52ac-4c50-827/schemas";
14992
Requests[2452].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14993
Requests[2452].
Request
.Path = "/subscriptions/39152a41-c5a4-/resourceGroups/7c192b1d-41b2-4b0/providers/Microsoft.Logic/integrationAccounts/c2be329d-8094-4500-84d/sessions";
14996
Requests[2453].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
14997
Requests[2453].
Request
.Path = "/subscriptions/7fa871b9-0d77-/resourceGroups/b7e9655f-8033-422/providers/Microsoft.Logic/workflows/2fece0c5-102/accessKeys";
15000
Requests[2454].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15001
Requests[2454].
Request
.Path = "/subscriptions/b18ad83f-3139-/resourceGroups/fdbca50a-af58-474/providers/Microsoft.Logic/workflows/14262dcb-b25/disable";
15004
Requests[2455].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15005
Requests[2455].
Request
.Path = "/subscriptions/25b6b1d7-4586-/resourceGroups/896eefbd-22a2-495/providers/Microsoft.Logic/workflows/01318ecf-8f6/enable";
15008
Requests[2456].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15009
Requests[2456].
Request
.Path = "/subscriptions/82c7aa6e-9bef-/resourceGroups/da499722-2456-42d/providers/Microsoft.Logic/workflows/d4bc5d05-421/generateUpgradedDefinition";
15012
Requests[2457].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15013
Requests[2457].
Request
.Path = "/subscriptions/81cffe24-bd07-/resourceGroups/f50cc3b5-da2f-46b/providers/Microsoft.Logic/workflows/e50f0aee-d7a/listCallbackUrl";
15016
Requests[2458].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15017
Requests[2458].
Request
.Path = "/subscriptions/2e758515-82f2-/resourceGroups/7ef90a3b-9c97-42f/providers/Microsoft.Logic/workflows/24dfbe98-780/listSwagger";
15020
Requests[2459].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15021
Requests[2459].
Request
.Path = "/subscriptions/70504882-1100-/resourceGroups/174200c1-ff2b-443/providers/Microsoft.Logic/workflows/211e6328-0c3/move";
15024
Requests[2460].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15025
Requests[2460].
Request
.Path = "/subscriptions/da0226c0-753a-/resourceGroups/9f034559-29b8-488/providers/Microsoft.Logic/workflows/4c1c986a-61d/regenerateAccessKey";
15028
Requests[2461].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15029
Requests[2461].
Request
.Path = "/subscriptions/ab2aa36c-b4f8-/resourceGroups/2d630230-c02a-4cd/providers/Microsoft.Logic/workflows/d7acdcf6-003/run";
15032
Requests[2462].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15033
Requests[2462].
Request
.Path = "/subscriptions/9f242de0-0ce6-/resourceGroups/765a4cfa-602b-470/providers/Microsoft.Logic/workflows/6dc2a4a5-07c/runs";
15036
Requests[2463].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15037
Requests[2463].
Request
.Path = "/subscriptions/fb2b0ef0-b3ae-/resourceGroups/537056af-1c03-450/providers/Microsoft.Logic/workflows/c69df099-503/triggers";
15040
Requests[2464].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15041
Requests[2464].
Request
.Path = "/subscriptions/4f0a70dd-c942-/resourceGroups/5f0e7aea-d1a0-4b0/providers/Microsoft.Logic/workflows/a1f4cc1d-e44/validate";
15044
Requests[2465].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15045
Requests[2465].
Request
.Path = "/subscriptions/a784c792-16f1-/resourceGroups/788be499-5c26-45f/providers/Microsoft.Logic/workflows/4b0c6783-1e6/versions";
15048
Requests[2466].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15049
Requests[2466].
Request
.Path = "/subscriptions/687006eb-3942-/resourceGroups/de05b370-096f-476/providers/Microsoft.MachineLearning/commitmentPlans/8a281bb6-d0e3-4f1d/commitmentAssociations";
15052
Requests[2467].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15053
Requests[2467].
Request
.Path = "/subscriptions/6676e290-39e9-/resourceGroups/35fded2e-7a87-4f9/providers/Microsoft.MachineLearning/commitmentPlans/e0b72c32-18b9-47fc/usageHistory";
15056
Requests[2468].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15057
Requests[2468].
Request
.Path = "/subscriptions/1fb0005c-57ea-/resourceGroups/d86037b8-6377-447/providers/Microsoft.MachineLearning/webServices/30b17d6c-1202-/CreateRegionalBlob";
15060
Requests[2469].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15061
Requests[2469].
Request
.Path = "/subscriptions/7add62db-4a58-/resourceGroups/4569970c-8d3e-428/providers/Microsoft.MachineLearning/webServices/7dd5bea2-7e39-/listKeys";
15064
Requests[2470].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15065
Requests[2470].
Request
.Path = "/subscriptions/5b87bc69-7eda-/resourceGroups/e4ce4933-6aa4-40d/providers/Microsoft.MachineLearning/workspaces/200597cd-0731/listWorkspaceKeys";
15068
Requests[2471].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15069
Requests[2471].
Request
.Path = "/subscriptions/9b736de6-ddee-/resourceGroups/c9009192-cdae-410/providers/Microsoft.MachineLearning/workspaces/e9d828a9-5122/resyncStorageKeys";
15072
Requests[2472].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15073
Requests[2472].
Request
.Path = "/subscriptions/ed4ab297-45c0-/resourceGroups/369bcd04-6b13-44a/providers/Microsoft.MachineLearningCompute/operationalizationClusters/45274610-4e/checkSystemServicesUpdatesAvailable";
15076
Requests[2473].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15077
Requests[2473].
Request
.Path = "/subscriptions/007f74f6-8803-/resourceGroups/58a4917a-c1c3-4a7/providers/Microsoft.MachineLearningCompute/operationalizationClusters/dcba7da8-17/checkUpdate";
15080
Requests[2474].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15081
Requests[2474].
Request
.Path = "/subscriptions/2ce62f6e-b444-/resourceGroups/0705efd7-e10b-480/providers/Microsoft.MachineLearningCompute/operationalizationClusters/806c483b-89/listKeys";
15084
Requests[2475].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15085
Requests[2475].
Request
.Path = "/subscriptions/381967f8-b0c8-/resourceGroups/b7ea4fca-ff22-4fc/providers/Microsoft.MachineLearningCompute/operationalizationClusters/e871889b-67/updateSystem";
15088
Requests[2476].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15089
Requests[2476].
Request
.Path = "/subscriptions/6aee2c0f-f391-/resourceGroups/9d0b298f-eac3-453/providers/Microsoft.MachineLearningCompute/operationalizationClusters/a6897f89-c4/updateSystemServices";
15092
Requests[2477].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15093
Requests[2477].
Request
.Path = "/subscriptions/1572af86-5885-/resourceGroups/4a3976ce-a217-48b/providers/Microsoft.MachineLearningExperimentation/accounts/81a20d99-1c/workspaces";
15096
Requests[2478].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15097
Requests[2478].
Request
.Path = "/subscriptions/f3c04d31-4f19-/resourceGroups/32406294-fd5b-4e8/providers/Microsoft.MachineLearningServices/workspaces/779ed6cf-a34f/listKeys";
15100
Requests[2479].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15101
Requests[2479].
Request
.Path = "/subscriptions/7caad3ef-ece3-/resourceGroups/6f20152c-21e8-4fd/providers/Microsoft.MachineLearningServices/workspaces/a6343a66-19e7/resyncKeys";
15104
Requests[2480].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15105
Requests[2480].
Request
.Path = "/subscriptions/fec878ef-7ad5-/resourceGroups/0f1db200-73a6-416/providers/Microsoft.Maps/accounts/98b6794e-2e/listKeys";
15108
Requests[2481].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15109
Requests[2481].
Request
.Path = "/subscriptions/e983b564-6a12-/resourceGroups/28ce4e2b-f17e-4ca/providers/Microsoft.Maps/accounts/10a16b33-f4/regenerateKey";
15112
Requests[2482].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15113
Requests[2482].
Request
.Path = "/subscriptions/650fea78-31d7-/resourceGroups/0a5868d1-9950-45f/providers/Microsoft.Media/mediaServices/3ec27ab8-79/assets";
15116
Requests[2483].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15117
Requests[2483].
Request
.Path = "/subscriptions/e4f6399c-914b-/resourceGroups/90e0d438-446c-49e/providers/Microsoft.Media/mediaServices/fd910963-fb/contentKeyPolicies";
15120
Requests[2484].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15121
Requests[2484].
Request
.Path = "/subscriptions/3a915b85-9855-/resourceGroups/f95f118a-dc19-4c6/providers/Microsoft.Media/mediaservices/4dd6f81a-9b/liveEvents";
15124
Requests[2485].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15125
Requests[2485].
Request
.Path = "/subscriptions/33bfed9f-4837-/resourceGroups/7678b3f8-26cb-431/providers/Microsoft.Media/mediaservices/bf5fdbe6-9a/streamingEndpoints";
15128
Requests[2486].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15129
Requests[2486].
Request
.Path = "/subscriptions/3897a437-ab22-/resourceGroups/e739d84f-481b-47a/providers/Microsoft.Media/mediaServices/ba8ee4fd-5a/streamingLocators";
15132
Requests[2487].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15133
Requests[2487].
Request
.Path = "/subscriptions/34a86834-d078-/resourceGroups/7a66d981-b0a1-4a2/providers/Microsoft.Media/mediaServices/81443267-d2/streamingPolicies";
15136
Requests[2488].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15137
Requests[2488].
Request
.Path = "/subscriptions/bcca70ae-b45a-/resourceGroups/84991711-41c7-464/providers/Microsoft.Media/mediaServices/a419ef57-8c/transforms";
15140
Requests[2489].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15141
Requests[2489].
Request
.Path = "/subscriptions/d0b4bb30-4fdc-/resourceGroups/b5278abe-f0e9-434/providers/Microsoft.Media/mediaservices/4ec5f31e-8a10-43/listKeys";
15144
Requests[2490].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15145
Requests[2490].
Request
.Path = "/subscriptions/a62fbd69-af9a-/resourceGroups/20a8eb9a-5ba4-40e/providers/Microsoft.Media/mediaservices/d5573144-2014-4d/regenerateKey";
15148
Requests[2491].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15149
Requests[2491].
Request
.Path = "/subscriptions/2864ac80-3cd1-/resourceGroups/a5a9cdcb-f96f-4d5/providers/Microsoft.Media/mediaservices/45b1b7c4-8563-4a/syncStorageKeys";
15152
Requests[2492].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15153
Requests[2492].
Request
.Path = "/subscriptions/e8d2da40-67da-/resourceGroups/c9621aac-20cf-4fe/providers/Microsoft.Migrate/projects/214674fb-f5/assessments";
15156
Requests[2493].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15157
Requests[2493].
Request
.Path = "/subscriptions/b9beb251-c62d-/resourceGroups/e34c664d-6a1b-4a9/providers/Microsoft.Migrate/projects/00aa9fbd-16/groups";
15160
Requests[2494].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15161
Requests[2494].
Request
.Path = "/subscriptions/cc535e66-c44c-/resourcegroups/100169f6-65f4-4c0/providers/Microsoft.Migrate/projects/01014f95-34/keys";
15164
Requests[2495].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15165
Requests[2495].
Request
.Path = "/subscriptions/d944dad3-b8ab-/resourceGroups/625ec46d-12fc-402/providers/Microsoft.Migrate/projects/6099e05c-21/machines";
15168
Requests[2496].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15169
Requests[2496].
Request
.Path = "/subscriptions/61a26768-f11a-/resourceGroups/7d86f419-6a03-4fc/providers/Microsoft.Network/applicationGateways/39f94cba-3521-4f80-b9d/backendhealth";
15172
Requests[2497].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15173
Requests[2497].
Request
.Path = "/subscriptions/0a056503-cd0c-/resourceGroups/16ac728d-2df0-43b/providers/Microsoft.Network/applicationGateways/f4b79f27-e424-4fcc-ba2/start";
15176
Requests[2498].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15177
Requests[2498].
Request
.Path = "/subscriptions/974b224b-dfdd-/resourceGroups/8608466c-874e-49e/providers/Microsoft.Network/applicationGateways/ff7ee07e-d2a2-4ff3-be2/stop";
15180
Requests[2499].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15181
Requests[2499].
Request
.Path = "/subscriptions/5acc9efd-fdb7-/resourceGroups/03fa8363-04c7-48a/providers/Microsoft.Network/connections/03256960-f6c8-423b-8cc8-5aa05901925/sharedkey";
15184
Requests[2500].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
15185
Requests[2500].
Request
.Path = "/subscriptions/4c13b784-52a0-/resourceGroups/d50796a7-ea1d-44f/providers/Microsoft.Network/connections/75175933-803e-4033-bbb0-85ed1312909/sharedkey";
15188
Requests[2501].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15189
Requests[2501].
Request
.Path = "/subscriptions/c02b18f5-9c9a-/resourceGroups/00d74d07-08a7-400/providers/Microsoft.Network/connections/0537e116-b3b9-47b0-84da-67a010e879a/vpndeviceconfigurationscript";
15192
Requests[2502].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15193
Requests[2502].
Request
.Path = "/subscriptions/5f59a0ed-aee1-/resourceGroups/55c49bc3-4729-42f/providers/Microsoft.Network/dnsZones/c82d7285/all";
15196
Requests[2503].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15197
Requests[2503].
Request
.Path = "/subscriptions/cb932a3d-a02f-/resourceGroups/3d026708-e6a9-41e/providers/Microsoft.Network/dnsZones/69d44dbe/recordsets";
15200
Requests[2504].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15201
Requests[2504].
Request
.Path = "/subscriptions/02f36d73-f34e-/resourceGroups/07b4df3e-fda7-4c8/providers/Microsoft.Network/expressRouteCircuits/02de2791-c2/arpTable";
15204
Requests[2505].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15205
Requests[2505].
Request
.Path = "/subscriptions/6f2bad0b-2e11-/resourceGroups/7e84ce27-7cc7-4b4/providers/Microsoft.Network/expressRouteCircuits/80f7ddb3-93/authorizations";
15208
Requests[2506].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15209
Requests[2506].
Request
.Path = "/subscriptions/875800cc-deaf-/resourceGroups/2b0236cd-5bd6-4d2/providers/Microsoft.Network/expressRouteCircuits/bce17d92-31/peerings";
15212
Requests[2507].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15213
Requests[2507].
Request
.Path = "/subscriptions/317d9db9-f3df-/resourceGroups/83b605a9-c99f-48c/providers/Microsoft.Network/expressRouteCircuits/1c4966fe-88/routesTable";
15216
Requests[2508].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15217
Requests[2508].
Request
.Path = "/subscriptions/c4447820-e2ae-/resourceGroups/9df5df3b-93c9-436/providers/Microsoft.Network/expressRouteCircuits/619cd66a-4d/stats";
15220
Requests[2509].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15221
Requests[2509].
Request
.Path = "/subscriptions/cd2aa2ca-01fb-/resourceGroups/814ccb5c-72f0-403/providers/Microsoft.Network/expressRouteCrossConnections/a2b28e8a-9b7a-4bff-/peerings";
15224
Requests[2510].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15225
Requests[2510].
Request
.Path = "/subscriptions/e1a66519-c4ed-/resourceGroups/e0c5775a-5a4c-45b/providers/Microsoft.Network/loadBalancers/78f08e8e-71d1-4f/backendAddressPools";
15228
Requests[2511].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15229
Requests[2511].
Request
.Path = "/subscriptions/7d4f6624-6d82-/resourceGroups/2239a9ae-43cd-401/providers/Microsoft.Network/loadBalancers/f2c2a276-4e02-48/frontendIPConfigurations";
15232
Requests[2512].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15233
Requests[2512].
Request
.Path = "/subscriptions/c3c9ddfd-7fa4-/resourceGroups/3f1f6ad1-b00d-4b1/providers/Microsoft.Network/loadBalancers/5d290c90-5864-4f/inboundNatRules";
15236
Requests[2513].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15237
Requests[2513].
Request
.Path = "/subscriptions/c010c490-bfbc-/resourceGroups/03920f5c-defa-407/providers/Microsoft.Network/loadBalancers/e936598c-6a13-47/loadBalancingRules";
15240
Requests[2514].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15241
Requests[2514].
Request
.Path = "/subscriptions/2c524a16-8a0a-/resourceGroups/15fe80c5-0b67-4ca/providers/Microsoft.Network/loadBalancers/157dfbcb-447f-42/networkInterfaces";
15244
Requests[2515].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15245
Requests[2515].
Request
.Path = "/subscriptions/a3986d8d-c58b-/resourceGroups/72f65c60-92e7-4cf/providers/Microsoft.Network/loadBalancers/92aa1b53-01fe-4c/probes";
15248
Requests[2516].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15249
Requests[2516].
Request
.Path = "/subscriptions/f166fcc7-b76e-/resourceGroups/3a587762-20b0-445/providers/Microsoft.Network/networkInterfaces/5621db23-3874-41af-a/effectiveNetworkSecurityGroups";
15252
Requests[2517].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15253
Requests[2517].
Request
.Path = "/subscriptions/3c82d018-7643-/resourceGroups/5abd7738-5a8f-478/providers/Microsoft.Network/networkInterfaces/245fc307-83c5-4d1c-9/effectiveRouteTable";
15256
Requests[2518].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15257
Requests[2518].
Request
.Path = "/subscriptions/7ed359a2-d070-/resourceGroups/3cc3a18f-1c7e-4ab/providers/Microsoft.Network/networkInterfaces/3b954f91-fe99-4440-b/ipConfigurations";
15260
Requests[2519].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15261
Requests[2519].
Request
.Path = "/subscriptions/f9ebf061-379b-/resourceGroups/d85c573f-988b-40c/providers/Microsoft.Network/networkInterfaces/f322d9b5-f5c0-46fd-b/loadBalancers";
15264
Requests[2520].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15265
Requests[2520].
Request
.Path = "/subscriptions/c746f5f1-93a2-/resourceGroups/75a8eb1a-f352-413/providers/Microsoft.Network/networkSecurityGroups/27dc2a07-67f7-43a9-8c94-/defaultSecurityRules";
15268
Requests[2521].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15269
Requests[2521].
Request
.Path = "/subscriptions/fd9693dd-71c5-/resourceGroups/8e157748-e0d8-488/providers/Microsoft.Network/networkSecurityGroups/e87fd5f6-b709-4f79-a2f3-/securityRules";
15272
Requests[2522].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15273
Requests[2522].
Request
.Path = "/subscriptions/e94f4cc3-b47c-/resourceGroups/6cfe26db-6276-435/providers/Microsoft.Network/networkWatchers/e7d5b948-1b3b-477c/availableProvidersList";
15276
Requests[2523].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15277
Requests[2523].
Request
.Path = "/subscriptions/6e0acf34-2e78-/resourceGroups/8133c95f-f9ba-4ba/providers/Microsoft.Network/networkWatchers/a6bb422c-a79c-4533/azureReachabilityReport";
15280
Requests[2524].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15281
Requests[2524].
Request
.Path = "/subscriptions/d5a3a73f-dce5-/resourceGroups/87be2abd-a864-4bc/providers/Microsoft.Network/networkWatchers/d478f11b-2065-4637/configureFlowLog";
15284
Requests[2525].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15285
Requests[2525].
Request
.Path = "/subscriptions/2b40d75c-ffe2-/resourceGroups/706c9e18-1cf1-4c0/providers/Microsoft.Network/networkWatchers/268d0b84-7c55-40bd/connectionMonitors";
15288
Requests[2526].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15289
Requests[2526].
Request
.Path = "/subscriptions/aa2f10ac-db03-/resourceGroups/c5c829c2-c4f3-431/providers/Microsoft.Network/networkWatchers/664e3cab-25c0-478c/connectivityCheck";
15292
Requests[2527].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15293
Requests[2527].
Request
.Path = "/subscriptions/42c68cba-0578-/resourceGroups/d784a0ae-4cb1-4d2/providers/Microsoft.Network/networkWatchers/3e53388a-e173-49a5/ipFlowVerify";
15296
Requests[2528].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15297
Requests[2528].
Request
.Path = "/subscriptions/42ede897-4f1c-/resourceGroups/d0074ae9-3ce7-4ef/providers/Microsoft.Network/networkWatchers/68f10327-63bb-45ec/nextHop";
15300
Requests[2529].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15301
Requests[2529].
Request
.Path = "/subscriptions/1fcc94c9-0436-/resourceGroups/933260d7-d9f6-4e7/providers/Microsoft.Network/networkWatchers/91607772-0d1c-4fd8/packetCaptures";
15304
Requests[2530].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15305
Requests[2530].
Request
.Path = "/subscriptions/9b1aa376-3adc-/resourceGroups/ea5ef52f-d94f-44c/providers/Microsoft.Network/networkWatchers/acd94b3e-323d-41f3/queryFlowLogStatus";
15308
Requests[2531].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15309
Requests[2531].
Request
.Path = "/subscriptions/938ae6fd-7d53-/resourceGroups/d1463303-4ea9-412/providers/Microsoft.Network/networkWatchers/6dee5924-3dac-4feb/queryTroubleshootResult";
15312
Requests[2532].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15313
Requests[2532].
Request
.Path = "/subscriptions/5ccdb802-93c5-/resourceGroups/e3c4f928-ae6b-475/providers/Microsoft.Network/networkWatchers/c7bc8624-f2e1-4330/securityGroupView";
15316
Requests[2533].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15317
Requests[2533].
Request
.Path = "/subscriptions/615aad33-27c8-/resourceGroups/a2123e16-7aeb-4fe/providers/Microsoft.Network/networkWatchers/54424ac5-4c38-4967/topology";
15320
Requests[2534].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15321
Requests[2534].
Request
.Path = "/subscriptions/c9bd217d-aa1d-/resourceGroups/d11b3c78-a380-41b/providers/Microsoft.Network/networkWatchers/479f8529-5e41-4187/troubleshoot";
15324
Requests[2535].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15325
Requests[2535].
Request
.Path = "/subscriptions/349ddc84-50bb-/resourceGroups/cbd4d755-9001-4c0/providers/Microsoft.Network/routeFilters/b8790b91-2ca8-4/routeFilterRules";
15328
Requests[2536].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15329
Requests[2536].
Request
.Path = "/subscriptions/82263d5b-a05c-/resourceGroups/5089813f-ec0f-422/providers/Microsoft.Network/routeTables/d641b2fb-db55-/routes";
15332
Requests[2537].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15333
Requests[2537].
Request
.Path = "/subscriptions/06ca919d-972f-/resourceGroups/f4ae6a85-92b6-4e9/providers/Microsoft.Network/virtualNetworkGateways/6fdce78d-443e-47ee-ae2c-f/connections";
15336
Requests[2538].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15337
Requests[2538].
Request
.Path = "/subscriptions/afca0b21-7b04-/resourceGroups/3ff81554-de52-431/providers/Microsoft.Network/virtualNetworkGateways/0f8dcd55-0e19-4e65-a6b6-4/generatevpnclientpackage";
15340
Requests[2539].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15341
Requests[2539].
Request
.Path = "/subscriptions/ed8b1141-bfe7-/resourceGroups/e2b57b80-47ac-467/providers/Microsoft.Network/virtualNetworkGateways/f29d1d28-75a1-4b38-bc04-6/generatevpnprofile";
15344
Requests[2540].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15345
Requests[2540].
Request
.Path = "/subscriptions/93eac03b-9edd-/resourceGroups/3fd53200-7168-493/providers/Microsoft.Network/virtualNetworkGateways/09df8ad2-1c49-4e69-9816-e/getAdvertisedRoutes";
15348
Requests[2541].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15349
Requests[2541].
Request
.Path = "/subscriptions/81638484-76f1-/resourceGroups/b4a77776-2984-4c4/providers/Microsoft.Network/virtualNetworkGateways/52138686-5ba2-4651-b385-7/getBgpPeerStatus";
15352
Requests[2542].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15353
Requests[2542].
Request
.Path = "/subscriptions/ef19d246-234a-/resourceGroups/3a481677-1e51-471/providers/Microsoft.Network/virtualNetworkGateways/b1ed2406-1038-458a-b6c6-4/getLearnedRoutes";
15356
Requests[2543].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15357
Requests[2543].
Request
.Path = "/subscriptions/454df7b5-f4c5-/resourceGroups/3928d3b2-6c1c-409/providers/Microsoft.Network/virtualNetworkGateways/bd1ccc6b-52b1-4a1e-a15a-8/getvpnclientipsecparameters";
15360
Requests[2544].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15361
Requests[2544].
Request
.Path = "/subscriptions/e958472a-1130-/resourceGroups/ba801e73-4770-46d/providers/Microsoft.Network/virtualNetworkGateways/69903777-68b2-47c2-b9c8-a/getvpnprofilepackageurl";
15364
Requests[2545].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15365
Requests[2545].
Request
.Path = "/subscriptions/fa70acad-db5c-/resourceGroups/7b71f4e7-e155-4c6/providers/Microsoft.Network/virtualNetworkGateways/253b3a69-f21f-4de9-9727-c/reset";
15368
Requests[2546].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15369
Requests[2546].
Request
.Path = "/subscriptions/0e4e3294-e384-/resourceGroups/8c77af56-0136-489/providers/Microsoft.Network/virtualNetworkGateways/1dcdb5e3-a092-46ba-aef4-e/setvpnclientipsecparameters";
15372
Requests[2547].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15373
Requests[2547].
Request
.Path = "/subscriptions/b94f7678-c5ab-/resourceGroups/d01bd974-0ca0-424/providers/Microsoft.Network/virtualNetworkGateways/5f333acf-f828-4a36-b335-e/supportedvpndevices";
15376
Requests[2548].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15377
Requests[2548].
Request
.Path = "/subscriptions/2ce880be-c3a0-/resourceGroups/15e2cf07-c204-48c/providers/Microsoft.Network/virtualNetworks/990fe251-e54f-4372/CheckIPAddressAvailability";
15380
Requests[2549].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15381
Requests[2549].
Request
.Path = "/subscriptions/880cb4c6-497c-/resourceGroups/55a13a18-9e70-472/providers/Microsoft.Network/virtualNetworks/d3368414-fe65-427b/subnets";
15384
Requests[2550].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15385
Requests[2550].
Request
.Path = "/subscriptions/4b851da6-899f-/resourceGroups/77ee5314-110b-45c/providers/Microsoft.Network/virtualNetworks/431008f4-b70d-4614/usages";
15388
Requests[2551].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15389
Requests[2551].
Request
.Path = "/subscriptions/531d27d7-f8c1-/resourceGroups/4358bd59-e0fa-499/providers/Microsoft.Network/virtualNetworks/6ec18e91-d960-4a4f/virtualNetworkPeerings";
15392
Requests[2552].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15393
Requests[2552].
Request
.Path = "/subscriptions/e5d8c57d-6ce3-/resourceGroups/c9118105-2154-4a1/providers/Microsoft.NotificationHubs/namespaces/c4d4c514-fd7e/AuthorizationRules";
15396
Requests[2553].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15397
Requests[2553].
Request
.Path = "/subscriptions/46bd6d3e-46d7-/resourceGroups/69443073-b3e1-413/providers/Microsoft.NotificationHubs/namespaces/57102c51-6b3c/AuthorizationRules";
15400
Requests[2554].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15401
Requests[2554].
Request
.Path = "/subscriptions/b23109c1-6837-/resourceGroups/45efc86d-d5cf-4f4/providers/Microsoft.NotificationHubs/namespaces/24b5d6e3-b94b/checkNotificationHubAvailability";
15404
Requests[2555].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15405
Requests[2555].
Request
.Path = "/subscriptions/6b43fab2-5c5e-/resourceGroups/586ca1c2-de0a-471/providers/Microsoft.NotificationHubs/namespaces/726070a1-44b5/notificationHubs";
15408
Requests[2556].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15409
Requests[2556].
Request
.Path = "/subscriptions/21e6cdd0-6129-/resourcegroups/71cc1a43-c39c-485/providers/Microsoft.OperationalInsights/workspaces/cec5556a-50bc/dataSources";
15412
Requests[2557].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15413
Requests[2557].
Request
.Path = "/subscriptions/95b1eca5-0d4e-/resourcegroups/b0cd8958-96e7-4ea/providers/Microsoft.OperationalInsights/workspaces/d64be9d9-df83/intelligencePacks";
15416
Requests[2558].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15417
Requests[2558].
Request
.Path = "/subscriptions/b35e50a2-d15f-/resourcegroups/ea55e903-9667-4a0/providers/Microsoft.OperationalInsights/workspaces/7a28a24c-2c3f/linkedServices";
15420
Requests[2559].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15421
Requests[2559].
Request
.Path = "/subscriptions/d76b0dab-9b3b-/resourcegroups/6c1e0731-95b9-43d/providers/Microsoft.OperationalInsights/workspaces/0585c769-280a/managementGroups";
15424
Requests[2560].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15425
Requests[2560].
Request
.Path = "/subscriptions/4c041ea5-d7cd-/resourceGroups/969715e9-e32a-4ed/providers/Microsoft.OperationalInsights/workspaces/f6d62394-f5ef/purge";
15428
Requests[2561].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15429
Requests[2561].
Request
.Path = "/subscriptions/09bf0c65-e5a8-/resourcegroups/a0f9d6b9-6773-4db/providers/Microsoft.OperationalInsights/workspaces/9d96c88e-a3c9/savedSearches";
15432
Requests[2562].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15433
Requests[2562].
Request
.Path = "/subscriptions/c7d87617-333a-/resourcegroups/a769cecc-b490-46b/providers/Microsoft.OperationalInsights/workspaces/63d9ce22-09b3/schema";
15436
Requests[2563].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15437
Requests[2563].
Request
.Path = "/subscriptions/b4a74b70-9dfe-/resourcegroups/72d8cbe6-6042-40a/providers/Microsoft.OperationalInsights/workspaces/5c269c04-6ba7/search";
15440
Requests[2564].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15441
Requests[2564].
Request
.Path = "/subscriptions/366916c5-4d7a-/resourcegroups/30067995-ad2a-4c1/providers/Microsoft.OperationalInsights/workspaces/8982bb77-c973/sharedKeys";
15444
Requests[2565].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15445
Requests[2565].
Request
.Path = "/subscriptions/8b2a3926-7265-/resourcegroups/52048063-57f7-42c/providers/Microsoft.OperationalInsights/workspaces/8cafb879-9527/storageInsightConfigs";
15448
Requests[2566].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15449
Requests[2566].
Request
.Path = "/subscriptions/cf0c6598-8a09-/resourcegroups/6fb45bda-ef44-467/providers/Microsoft.OperationalInsights/workspaces/a36c6b43-f893/usages";
15452
Requests[2567].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15453
Requests[2567].
Request
.Path = "/subscriptions/8aac6250-4aa8-/resourceGroups/95cb0632-da18-43a/providers/Microsoft.PolicyInsights/policyEvents/f92e3d08-e841-4a66-b/queryResults";
15456
Requests[2568].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15457
Requests[2568].
Request
.Path = "/subscriptions/e38f256c-ab9d-/resourceGroups/f254e4c5-4bc7-484/providers/Microsoft.PolicyInsights/policyStates/28d98781-0338-46ba-b/queryResults";
15460
Requests[2569].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15461
Requests[2569].
Request
.Path = "/subscriptions/d19961de-3088-/resourceGroups/aa67a4cc-235f-460/providers/Microsoft.PolicyInsights/policyStates/a3a9982a-23e1-439a-a1e8-d2e/summarize";
15464
Requests[2570].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15465
Requests[2570].
Request
.Path = "/subscriptions/09b9649f-2ebc-/resourceGroups/7628cd97-1360-46d/providers/Microsoft.PowerBI/workspaceCollections/74746673-c00a-465f-ab0b/listKeys";
15468
Requests[2571].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15469
Requests[2571].
Request
.Path = "/subscriptions/4a3f422c-f7a3-/resourceGroups/bbecc031-3680-4cd/providers/Microsoft.PowerBI/workspaceCollections/3daa9ca2-724c-4817-bf4d/regenerateKey";
15472
Requests[2572].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15473
Requests[2572].
Request
.Path = "/subscriptions/16412f17-7060-/resourceGroups/c9a45c54-a781-4dc/providers/Microsoft.PowerBI/workspaceCollections/b51acf15-5f7a-4cfe-b076/workspaces";
15476
Requests[2573].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15477
Requests[2573].
Request
.Path = "/subscriptions/8aa9331c-a073-/resourceGroups/ab542bc6-fc0b-408/providers/Microsoft.PowerBIDedicated/capacities/187d9c18-8545-4f6d-ba/resume";
15480
Requests[2574].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15481
Requests[2574].
Request
.Path = "/subscriptions/72efe90d-62c6-/resourceGroups/7d993dc2-f017-4a8/providers/Microsoft.PowerBIDedicated/capacities/630734b2-be9a-4370-89/skus";
15484
Requests[2575].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15485
Requests[2575].
Request
.Path = "/subscriptions/b164d1f5-d092-/resourceGroups/a20cf17e-757e-452/providers/Microsoft.PowerBIDedicated/capacities/2086492d-d045-49c7-87/suspend";
15488
Requests[2576].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15489
Requests[2576].
Request
.Path = "/Subscriptions/34585ccf-ee57-/resourceGroups/bbf89515-6b55-43a/providers/Microsoft.RecoveryServices/vaults/7b8fe93b-3cf/replicationAlertSettings";
15492
Requests[2577].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15493
Requests[2577].
Request
.Path = "/Subscriptions/50ecf6bd-bcb4-/resourceGroups/51c46f5a-697f-4ee/providers/Microsoft.RecoveryServices/vaults/0d64a92d-b31/replicationEvents";
15496
Requests[2578].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15497
Requests[2578].
Request
.Path = "/Subscriptions/b601c990-50f8-/resourceGroups/5b75931f-5398-4dc/providers/Microsoft.RecoveryServices/vaults/e4aba4fa-2ed/replicationFabrics";
15500
Requests[2579].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15501
Requests[2579].
Request
.Path = "/Subscriptions/165b7744-99d0-/resourceGroups/5e75fa27-6c04-458/providers/Microsoft.RecoveryServices/vaults/2da92e1f-c32/replicationJobs";
15504
Requests[2580].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15505
Requests[2580].
Request
.Path = "/Subscriptions/d97dddc7-0fee-/resourceGroups/5247802a-ca45-4f5/providers/Microsoft.RecoveryServices/vaults/1614168d-8f1/replicationNetworkMappings";
15508
Requests[2581].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15509
Requests[2581].
Request
.Path = "/Subscriptions/ddeb207e-9aeb-/resourceGroups/c41530db-f875-453/providers/Microsoft.RecoveryServices/vaults/eba9743a-568/replicationNetworks";
15512
Requests[2582].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15513
Requests[2582].
Request
.Path = "/Subscriptions/c05905c3-1e92-/resourceGroups/0fa0278e-565a-498/providers/Microsoft.RecoveryServices/vaults/b1f4e251-ac2/replicationPolicies";
15516
Requests[2583].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15517
Requests[2583].
Request
.Path = "/Subscriptions/94d40226-e0d0-/resourceGroups/b80a19e5-569c-476/providers/Microsoft.RecoveryServices/vaults/ed706c87-81d/replicationProtectedItems";
15520
Requests[2584].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15521
Requests[2584].
Request
.Path = "/Subscriptions/c25a66ff-fe11-/resourceGroups/784190d8-7132-4da/providers/Microsoft.RecoveryServices/vaults/081e67d6-a74/replicationProtectionContainerMappings";
15524
Requests[2585].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15525
Requests[2585].
Request
.Path = "/Subscriptions/fcd36a19-c3b2-/resourceGroups/e8970bb0-b7b1-4b7/providers/Microsoft.RecoveryServices/vaults/88f1d8bd-0f8/replicationProtectionContainers";
15528
Requests[2586].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15529
Requests[2586].
Request
.Path = "/Subscriptions/95f06da5-6c02-/resourceGroups/5b3c25f6-a6e7-4b4/providers/Microsoft.RecoveryServices/vaults/c45f193c-4ca/replicationRecoveryPlans";
15532
Requests[2587].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15533
Requests[2587].
Request
.Path = "/Subscriptions/34146c38-1654-/resourceGroups/6c656482-8a91-436/providers/Microsoft.RecoveryServices/vaults/8bd84331-d5d/replicationRecoveryServicesProviders";
15536
Requests[2588].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15537
Requests[2588].
Request
.Path = "/Subscriptions/b7de2436-e684-/resourceGroups/8d97cfab-698f-42f/providers/Microsoft.RecoveryServices/vaults/86e2127f-d3a/replicationStorageClassificationMappings";
15540
Requests[2589].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15541
Requests[2589].
Request
.Path = "/Subscriptions/825a3e4a-3c3c-/resourceGroups/eebbc25f-e482-405/providers/Microsoft.RecoveryServices/vaults/6d2f692f-224/replicationStorageClassifications";
15544
Requests[2590].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15545
Requests[2590].
Request
.Path = "/Subscriptions/ae4847d2-e0b5-/resourceGroups/98e4879e-7af7-4a7/providers/Microsoft.RecoveryServices/vaults/d62370bc-988/replicationVaultHealth";
15548
Requests[2591].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15549
Requests[2591].
Request
.Path = "/Subscriptions/07789cae-e55a-/resourceGroups/2a55b658-5921-44a/providers/Microsoft.RecoveryServices/vaults/bde762a9-f92/replicationvCenters";
15552
Requests[2592].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15553
Requests[2592].
Request
.Path = "/Subscriptions/36f001c9-b95d-/resourceGroups/fe3eea16-af0c-4af/providers/Microsoft.RecoveryServices/vaults/65ede5f5-/backupEngines";
15556
Requests[2593].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15557
Requests[2593].
Request
.Path = "/Subscriptions/a39ff8ec-47a8-/resourceGroups/36166faf-7dfe-40c/providers/Microsoft.RecoveryServices/vaults/b246cc8d-/backupJobs";
15560
Requests[2594].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15561
Requests[2594].
Request
.Path = "/Subscriptions/e6447d30-d704-/resourceGroups/da5f68ab-ebb3-47e/providers/Microsoft.RecoveryServices/vaults/8b871257-/backupJobsExport";
15564
Requests[2595].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15565
Requests[2595].
Request
.Path = "/Subscriptions/7e525877-14a3-/resourceGroups/f3bb08d9-8204-453/providers/Microsoft.RecoveryServices/vaults/88c0e3ae-/backupPolicies";
15568
Requests[2596].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15569
Requests[2596].
Request
.Path = "/Subscriptions/2454bfd9-c359-/resourceGroups/09d396c6-6b54-429/providers/Microsoft.RecoveryServices/vaults/1defe14e-/backupProtectableItems";
15572
Requests[2597].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15573
Requests[2597].
Request
.Path = "/Subscriptions/19ab92fc-af23-/resourceGroups/d636677f-3b89-420/providers/Microsoft.RecoveryServices/vaults/0f3e140f-/backupProtectedItems";
15576
Requests[2598].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15577
Requests[2598].
Request
.Path = "/Subscriptions/abbc5c06-7656-/resourceGroups/0e8b940a-918a-4ef/providers/Microsoft.RecoveryServices/vaults/22fc8925-/backupProtectionContainers";
15580
Requests[2599].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15581
Requests[2599].
Request
.Path = "/Subscriptions/ec034391-eef7-/resourceGroups/84cd3eee-cdd6-42b/providers/Microsoft.RecoveryServices/vaults/43f01b15-/backupSecurityPIN";
15584
Requests[2600].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15585
Requests[2600].
Request
.Path = "/Subscriptions/89a11686-667b-/resourceGroups/3de2ffe1-b726-43c/providers/Microsoft.RecoveryServices/vaults/17099de0-/backupUsageSummaries";
15588
Requests[2601].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15589
Requests[2601].
Request
.Path = "/Subscriptions/6f70f82c-5ebc-/resourceGroups/5d3e5d35-9dc6-4e9/providers/Microsoft.RecoveryServices/vaults/6dc9c271-/replicationUsages";
15592
Requests[2602].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15593
Requests[2602].
Request
.Path = "/Subscriptions/a33c8489-aa56-/resourceGroups/62c565f6-9c5c-4c4/providers/Microsoft.RecoveryServices/vaults/6adb11c6-/usages";
15596
Requests[2603].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15597
Requests[2603].
Request
.Path = "/subscriptions/e1170540-1361-/resourceGroups/b6da519f-8d1e-4f4/providers/Microsoft.Relay/namespaces/a652c985-b6f8/authorizationRules";
15600
Requests[2604].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15601
Requests[2604].
Request
.Path = "/subscriptions/176fdff8-f6f9-/resourceGroups/9104d8ec-e912-4a6/providers/Microsoft.Relay/namespaces/08eb9b47-932d/AuthorizationRules";
15604
Requests[2605].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15605
Requests[2605].
Request
.Path = "/subscriptions/459c2eff-80af-/resourceGroups/eb139283-d840-452/providers/Microsoft.Relay/namespaces/a6408a74-fae3/hybridConnections";
15608
Requests[2606].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15609
Requests[2606].
Request
.Path = "/subscriptions/fce1e490-9a80-/resourceGroups/b7ee4f56-629f-422/providers/Microsoft.Relay/namespaces/013deb77-754c/wcfRelays";
15612
Requests[2607].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15613
Requests[2607].
Request
.Path = "/subscriptions/39dd870b-8f0b-/resourcegroups/5d134258-21ac-47e/providers/Microsoft.Resources/deployments/fe102b00-af32-/cancel";
15616
Requests[2608].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15617
Requests[2608].
Request
.Path = "/subscriptions/8cc582fe-a6a0-/resourcegroups/48ca9240-b5a1-485/providers/Microsoft.Resources/deployments/49b60014-239b-/exportTemplate";
15620
Requests[2609].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15621
Requests[2609].
Request
.Path = "/subscriptions/5b8c6655-c8bc-/resourcegroups/75a0bae8-72c4-448/providers/Microsoft.Resources/deployments/5e481ab2-bcd8-/validate";
15624
Requests[2610].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15625
Requests[2610].
Request
.Path = "/subscriptions/e813cd47-707b-/resourceGroups/02013ba4-0ad3-452/providers/Microsoft.Scheduler/jobCollections/6a7d2510-6a9e-4a4/disable";
15628
Requests[2611].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15629
Requests[2611].
Request
.Path = "/subscriptions/3eb4179b-d495-/resourceGroups/1fbe716c-894f-45d/providers/Microsoft.Scheduler/jobCollections/a0a6582a-e5fc-4d5/enable";
15632
Requests[2612].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15633
Requests[2612].
Request
.Path = "/subscriptions/9fc849b9-961e-/resourceGroups/50e3d124-d298-4e3/providers/Microsoft.Scheduler/jobCollections/c6909d19-1621-422/jobs";
15636
Requests[2613].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15637
Requests[2613].
Request
.Path = "/subscriptions/fd01b761-08fb-/resourceGroups/0e2d0c5b-ebb5-4f8/providers/Microsoft.Search/searchServices/480af91f-fa19-4d0/listAdminKeys";
15640
Requests[2614].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15641
Requests[2614].
Request
.Path = "/subscriptions/43cefd98-4448-/resourceGroups/1acbbc2c-ac8a-462/providers/Microsoft.Search/searchServices/51a24a7b-2a5b-471/listQueryKeys";
15644
Requests[2615].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15645
Requests[2615].
Request
.Path = "/subscriptions/23251edf-8993-/resourceGroups/8a51f685-caf9-4f0/providers/Microsoft.Security/locations/77dcfa16-e3/alerts";
15648
Requests[2616].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15649
Requests[2616].
Request
.Path = "/subscriptions/083665f2-0b8c-/resourceGroups/bb19726e-83bc-4cb/providers/Microsoft.Security/locations/cbdd176f-2c/jitNetworkAccessPolicies";
15652
Requests[2617].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15653
Requests[2617].
Request
.Path = "/subscriptions/150f7b12-4eda-/resourceGroups/d4240df4-d6ff-473/providers/Microsoft.Security/locations/38c98d83-8b/tasks";
15656
Requests[2618].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15657
Requests[2618].
Request
.Path = "/subscriptions/64b9c209-057b-/resourceGroups/13118bba-f411-42c/providers/Microsoft.ServerManagement/gateways/57398856-02/profile";
15660
Requests[2619].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15661
Requests[2619].
Request
.Path = "/subscriptions/69aaa9c7-4bc4-/resourceGroups/da481315-3f26-460/providers/Microsoft.ServerManagement/gateways/902299ab-58/regenerateprofile";
15664
Requests[2620].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15665
Requests[2620].
Request
.Path = "/subscriptions/128f7941-eb75-/resourceGroups/64cd31fa-7c96-443/providers/Microsoft.ServerManagement/gateways/dd606469-04/upgradetolatest";
15668
Requests[2621].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15669
Requests[2621].
Request
.Path = "/subscriptions/8c547543-7d48-/resourceGroups/213a4a15-3c7d-4ed/providers/Microsoft.ServiceBus/namespaces/5238fef8-05d0/AuthorizationRules";
15672
Requests[2622].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15673
Requests[2622].
Request
.Path = "/subscriptions/94d05e0d-07e6-/resourceGroups/eb73a9ba-2645-4e1/providers/Microsoft.ServiceBus/namespaces/19e7d2a5-2ef3/AuthorizationRules";
15676
Requests[2623].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15677
Requests[2623].
Request
.Path = "/subscriptions/41b1d6bc-86e0-/resourceGroups/0f21e29c-d363-4e1/providers/Microsoft.ServiceBus/namespaces/7653bf41-8c34/disasterRecoveryConfigs";
15680
Requests[2624].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15681
Requests[2624].
Request
.Path = "/subscriptions/a4433260-a942-/resourceGroups/684b9889-fbbc-4c2/providers/Microsoft.ServiceBus/namespaces/ba26e870-c8e0/eventhubs";
15684
Requests[2625].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15685
Requests[2625].
Request
.Path = "/subscriptions/a4950609-7f75-/resourceGroups/8ab5c2e1-bc2b-48e/providers/Microsoft.ServiceBus/namespaces/af156b3c-de5d/messagingplan";
15688
Requests[2626].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
15689
Requests[2626].
Request
.Path = "/subscriptions/65bae425-0272-/resourceGroups/4958d9c8-dd71-4d0/providers/Microsoft.ServiceBus/namespaces/613aa8f2-5a3e/messagingplan";
15692
Requests[2627].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15693
Requests[2627].
Request
.Path = "/subscriptions/3e84e179-467e-/resourceGroups/356f79bb-d21e-4c9/providers/Microsoft.ServiceBus/namespaces/a9e051d3-1783/migrationConfigurations";
15696
Requests[2628].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15697
Requests[2628].
Request
.Path = "/subscriptions/47a61493-5757-/resourceGroups/3e0e8d9d-06f0-4c9/providers/Microsoft.ServiceBus/namespaces/c689e601-2ef7/queues";
15700
Requests[2629].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15701
Requests[2629].
Request
.Path = "/subscriptions/6203031c-5a5f-/resourceGroups/dd5f6142-b48f-4ac/providers/Microsoft.ServiceBus/namespaces/cc7b6790-68da/topics";
15704
Requests[2630].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15705
Requests[2630].
Request
.Path = "/subscriptions/59aa1090-6474-/resourceGroups/e33fe5bf-d924-4fa/providers/Microsoft.ServiceFabric/clusters/fc1b2cf3-dc/applications";
15708
Requests[2631].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15709
Requests[2631].
Request
.Path = "/subscriptions/1540fc1b-d942-/resourceGroups/c7388b4f-62fa-4ae/providers/Microsoft.ServiceFabric/clusters/f1bd97a4-19/applicationTypes";
15712
Requests[2632].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15713
Requests[2632].
Request
.Path = "/subscriptions/2fceaa91-86f4-/resourceGroups/083cd55c-0788-468/providers/Microsoft.SignalRService/SignalR/5f3eb793-605/listKeys";
15716
Requests[2633].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15717
Requests[2633].
Request
.Path = "/subscriptions/e0ed5a4f-4257-/resourceGroups/33200d1c-62c8-46e/providers/Microsoft.SignalRService/SignalR/873bc140-4f7/regenerateKey";
15720
Requests[2634].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15721
Requests[2634].
Request
.Path = "/subscriptions/b9f31335-c1dd-/resourceGroups/bff2eff6-ceb7-482/providers/Microsoft.Sql/locations/fa0dedd5-ede/instanceFailoverGroups";
15724
Requests[2635].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15725
Requests[2635].
Request
.Path = "/subscriptions/477f4a0a-5bc7-/resourceGroups/5ad754cb-dbb7-445/providers/Microsoft.Sql/managedInstances/ec4e2dd0-0765-422e-/databases";
15728
Requests[2636].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15729
Requests[2636].
Request
.Path = "/subscriptions/863992f8-2a5e-/resourceGroups/4c46a2bb-14e6-4d4/providers/Microsoft.Sql/servers/0e69de27-a/administrators";
15732
Requests[2637].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15733
Requests[2637].
Request
.Path = "/subscriptions/cf4f8dc8-5d6a-/resourceGroups/7eb0f545-78cf-45d/providers/Microsoft.Sql/servers/e0fef700-2/advisors";
15736
Requests[2638].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15737
Requests[2638].
Request
.Path = "/subscriptions/8a72c1d3-df24-/resourceGroups/767ef99f-9704-439/providers/Microsoft.Sql/servers/a58cad5f-1/auditingPolicies";
15740
Requests[2639].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15741
Requests[2639].
Request
.Path = "/subscriptions/32bfe811-6238-/resourceGroups/c1985d5e-0767-4c8/providers/Microsoft.Sql/servers/8d82421f-2/backupLongTermRetentionVaults";
15744
Requests[2640].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15745
Requests[2640].
Request
.Path = "/subscriptions/9920e32d-4fed-/resourceGroups/75d22ef7-246a-4c0/providers/Microsoft.Sql/servers/ddf873a8-5/communicationLinks";
15748
Requests[2641].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15749
Requests[2641].
Request
.Path = "/subscriptions/bd01c846-7365-/resourceGroups/a4b51e2f-9e5d-444/providers/Microsoft.Sql/servers/f1f51c5f-4/databases";
15752
Requests[2642].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15753
Requests[2642].
Request
.Path = "/subscriptions/f91b1307-91ba-/resourceGroups/774410a2-d634-43c/providers/Microsoft.Sql/servers/7b6ef860-c/disasterRecoveryConfiguration";
15756
Requests[2643].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15757
Requests[2643].
Request
.Path = "/subscriptions/3fcf1732-8fc7-/resourceGroups/c4a62167-30e0-471/providers/Microsoft.Sql/servers/c047c2ba-c/dnsAliases";
15760
Requests[2644].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15761
Requests[2644].
Request
.Path = "/subscriptions/b31b1877-e2fd-/resourceGroups/4ac0c6a6-c66e-484/providers/Microsoft.Sql/servers/8ad2d088-8/elasticPools";
15764
Requests[2645].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15765
Requests[2645].
Request
.Path = "/subscriptions/458d508c-4df9-/resourceGroups/d865b811-4f53-449/providers/Microsoft.Sql/servers/dfb59dd4-5/encryptionProtector";
15768
Requests[2646].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15769
Requests[2646].
Request
.Path = "/subscriptions/a4a9c7cb-1198-/resourceGroups/ea34084c-7999-4f1/providers/Microsoft.Sql/servers/0353a455-9/failoverGroups";
15772
Requests[2647].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
15773
Requests[2647].
Request
.Path = "/subscriptions/fbd5666a-07c6-/resourceGroups/73064926-fbc3-40c/providers/Microsoft.Sql/servers/f7eb9746-e/firewallRules";
15776
Requests[2648].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15777
Requests[2648].
Request
.Path = "/subscriptions/f98534ec-541b-/resourceGroups/a30d18dd-7741-4d8/providers/Microsoft.Sql/servers/84226b59-5/firewallRules";
15780
Requests[2649].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15781
Requests[2649].
Request
.Path = "/subscriptions/3026825f-5371-/resourceGroups/c5856315-52e7-4ce/providers/Microsoft.Sql/servers/dbfb8e3d-a/import";
15784
Requests[2650].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15785
Requests[2650].
Request
.Path = "/subscriptions/efacabe1-d46d-/resourceGroups/d098e9a3-37b1-41d/providers/Microsoft.Sql/servers/005ad2ba-a/jobAgents";
15788
Requests[2651].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15789
Requests[2651].
Request
.Path = "/subscriptions/a4efa562-3bfc-/resourceGroups/77402161-5ff8-4d0/providers/Microsoft.Sql/servers/7641de7c-c/keys";
15792
Requests[2652].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15793
Requests[2652].
Request
.Path = "/subscriptions/6ae0e156-c656-/resourceGroups/67272c45-b3ed-41b/providers/Microsoft.Sql/servers/6a12a1f8-8/recommendedElasticPools";
15796
Requests[2653].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15797
Requests[2653].
Request
.Path = "/subscriptions/d372d250-b86f-/resourceGroups/b4c4400a-b923-4a1/providers/Microsoft.Sql/servers/d9093807-c/recoverableDatabases";
15800
Requests[2654].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15801
Requests[2654].
Request
.Path = "/subscriptions/3f71185a-d8f3-/resourceGroups/a6bff1a2-d69f-4b4/providers/Microsoft.Sql/servers/509a0da3-0/restorableDroppedDatabases";
15804
Requests[2655].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15805
Requests[2655].
Request
.Path = "/subscriptions/20b708db-9214-/resourceGroups/66259f05-87b8-4f3/providers/Microsoft.Sql/servers/e9b46ead-1/serviceObjectives";
15808
Requests[2656].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15809
Requests[2656].
Request
.Path = "/subscriptions/5145f2d0-fda6-/resourceGroups/c2b7a990-b12e-454/providers/Microsoft.Sql/servers/dcd0c8af-0/syncAgents";
15812
Requests[2657].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15813
Requests[2657].
Request
.Path = "/subscriptions/4a1ed953-f4d1-/resourceGroups/932f5c92-f1fd-4b1/providers/Microsoft.Sql/servers/8a31564c-c/usages";
15816
Requests[2658].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15817
Requests[2658].
Request
.Path = "/subscriptions/f3df457b-d30a-/resourceGroups/f176a5f9-31f8-446/providers/Microsoft.Sql/servers/f89ef74d-f/virtualNetworkRules";
15820
Requests[2659].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15821
Requests[2659].
Request
.Path = "/subscriptions/eb6aa8ef-3821-/resourcegroups/3b5e60ec-86ee-4e3/providers/Microsoft.Storage.Admin/farms/589a4e/acquisitions";
15824
Requests[2660].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15825
Requests[2660].
Request
.Path = "/subscriptions/57c4bd77-5313-/resourcegroups/1f38ad21-84e4-4e2/providers/Microsoft.Storage.Admin/farms/475ade/metricdefinitions";
15828
Requests[2661].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15829
Requests[2661].
Request
.Path = "/subscriptions/3baaa167-3e9e-/resourcegroups/7f136b87-0364-430/providers/Microsoft.Storage.Admin/farms/3e1b3a/metrics";
15832
Requests[2662].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15833
Requests[2662].
Request
.Path = "/subscriptions/b9f8d8f3-3bb4-/resourcegroups/19b6041a-2187-483/providers/Microsoft.Storage.Admin/farms/71a8aa/ondemandgc";
15836
Requests[2663].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15837
Requests[2663].
Request
.Path = "/subscriptions/b3896dc8-8ee3-/resourcegroups/c0916483-59d7-42a/providers/Microsoft.Storage.Admin/farms/e73d8a/shares";
15840
Requests[2664].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15841
Requests[2664].
Request
.Path = "/subscriptions/b6d5020e-b681-/resourcegroups/176d36f1-3976-444/providers/Microsoft.Storage.Admin/farms/da1758/storageaccounts";
15844
Requests[2665].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15845
Requests[2665].
Request
.Path = "/subscriptions/6b69808c-583f-/resourceGroups/e3a74a9d-5d85-405/providers/Microsoft.Storage/storageAccounts/5c067843-29/ListAccountSas";
15848
Requests[2666].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15849
Requests[2666].
Request
.Path = "/subscriptions/e85fc4b8-10fe-/resourceGroups/b7676416-39e6-41f/providers/Microsoft.Storage/storageAccounts/e5ef76bb-7a/listKeys";
15852
Requests[2667].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15853
Requests[2667].
Request
.Path = "/subscriptions/4c6c5650-74d6-/resourceGroups/279dc70a-f9fe-415/providers/Microsoft.Storage/storageAccounts/c27ca217-92/ListServiceSas";
15856
Requests[2668].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15857
Requests[2668].
Request
.Path = "/subscriptions/8f7c0b2a-196c-/resourceGroups/b5b7da1d-87d0-4d1/providers/Microsoft.Storage/storageAccounts/4ff0fc70-d8/regenerateKey";
15860
Requests[2669].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15861
Requests[2669].
Request
.Path = "/subscriptions/410fba3d-2dc9-/resourceGroups/c9f489a8-14d5-413/providers/Microsoft.StorSimple/managers/1b49787f-7b/accessControlRecords";
15864
Requests[2670].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15865
Requests[2670].
Request
.Path = "/subscriptions/2a0e3745-e28b-/resourceGroups/8cc992f0-9bfc-4fe/providers/Microsoft.StorSimple/managers/d4ddc9a7-bf/alerts";
15868
Requests[2671].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15869
Requests[2671].
Request
.Path = "/subscriptions/7ffb4c67-0f8c-/resourceGroups/a678eea3-7437-44a/providers/Microsoft.StorSimple/managers/1f56ab39-5f/bandwidthSettings";
15872
Requests[2672].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15873
Requests[2672].
Request
.Path = "/subscriptions/a04ccd3d-6d91-/resourceGroups/d3f3c7e9-fed4-445/providers/Microsoft.StorSimple/managers/aa625fe9-ef/clearAlerts";
15876
Requests[2673].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15877
Requests[2673].
Request
.Path = "/subscriptions/e6a7d82b-0a33-/resourceGroups/109dc6c1-c872-4fd/providers/Microsoft.StorSimple/managers/996353b4-ba/cloudApplianceConfigurations";
15880
Requests[2674].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15881
Requests[2674].
Request
.Path = "/subscriptions/5522e324-b278-/resourceGroups/1752288f-47af-49e/providers/Microsoft.StorSimple/managers/ad6a4cb7-90/configureDevice";
15884
Requests[2675].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15885
Requests[2675].
Request
.Path = "/subscriptions/3b324e24-f112-/resourceGroups/59b806f4-3699-446/providers/Microsoft.StorSimple/managers/a63a09f8-5b/devices";
15888
Requests[2676].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15889
Requests[2676].
Request
.Path = "/subscriptions/fc0a9220-d3fa-/resourceGroups/c7f37eea-f1cf-491/providers/Microsoft.StorSimple/managers/b78f676b-53/features";
15892
Requests[2677].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15893
Requests[2677].
Request
.Path = "/subscriptions/8597d52a-72bb-/resourceGroups/81873300-4ef5-47c/providers/Microsoft.StorSimple/managers/be6c05d8-71/jobs";
15896
Requests[2678].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15897
Requests[2678].
Request
.Path = "/subscriptions/10d335e2-d145-/resourceGroups/6141d8c4-fb8e-4de/providers/Microsoft.StorSimple/managers/26811a83-a8/listActivationKey";
15900
Requests[2679].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15901
Requests[2679].
Request
.Path = "/subscriptions/17f91076-052c-/resourceGroups/459025b7-8d2c-44a/providers/Microsoft.StorSimple/managers/b8f37181-d6/listPublicEncryptionKey";
15904
Requests[2680].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15905
Requests[2680].
Request
.Path = "/subscriptions/6bfe69b5-366a-/resourceGroups/9c263d4f-dbe9-4fb/providers/Microsoft.StorSimple/managers/9548a507-b4/metrics";
15908
Requests[2681].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15909
Requests[2681].
Request
.Path = "/subscriptions/fd45b314-d178-/resourceGroups/1ce77fc4-e5dd-4ee/providers/Microsoft.StorSimple/managers/bbdce1b2-99/metricsDefinitions";
15912
Requests[2682].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15913
Requests[2682].
Request
.Path = "/subscriptions/35e62cc7-97df-/resourceGroups/45e03b3a-9c47-451/providers/Microsoft.StorSimple/managers/cf397eec-e7/provisionCloudAppliance";
15916
Requests[2683].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15917
Requests[2683].
Request
.Path = "/subscriptions/b61bac52-623f-/resourceGroups/ba19c43d-17a6-422/providers/Microsoft.StorSimple/managers/23ee2c30-bd/regenerateActivationKey";
15920
Requests[2684].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15921
Requests[2684].
Request
.Path = "/subscriptions/da63bc14-b55a-/resourceGroups/ca2ef8fd-73a2-40f/providers/Microsoft.StorSimple/managers/6acc2bae-f4/storageAccountCredentials";
15924
Requests[2685].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15925
Requests[2685].
Request
.Path = "/subscriptions/eaca811f-6530-/resourcegroups/a2580af8-2918-43b/providers/Microsoft.StreamAnalytics/streamingjobs/fe3c3d4/functions";
15928
Requests[2686].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15929
Requests[2686].
Request
.Path = "/subscriptions/fed38ab8-63ac-/resourcegroups/036ba90a-f25c-4be/providers/Microsoft.StreamAnalytics/streamingjobs/f1e1a8b/inputs";
15932
Requests[2687].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15933
Requests[2687].
Request
.Path = "/subscriptions/6d4f8478-8593-/resourcegroups/7536edef-8996-45d/providers/Microsoft.StreamAnalytics/streamingjobs/2fe1e8c/outputs";
15936
Requests[2688].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15937
Requests[2688].
Request
.Path = "/subscriptions/4abf8303-4baa-/resourcegroups/feae29ec-7442-4af/providers/Microsoft.StreamAnalytics/streamingjobs/d1aff8c/start";
15940
Requests[2689].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15941
Requests[2689].
Request
.Path = "/subscriptions/4176329f-beb9-/resourcegroups/3387cbf7-21d0-47b/providers/Microsoft.StreamAnalytics/streamingjobs/dbda36d/stop";
15944
Requests[2690].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15945
Requests[2690].
Request
.Path = "/subscriptions/70d6193e-2f86-/resourcegroups/efba5d09-3ef7-4b5/providers/Microsoft.Subscriptions.Admin/offers/007ed/link";
15948
Requests[2691].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15949
Requests[2691].
Request
.Path = "/subscriptions/2cfe1e0f-25c6-/resourcegroups/d5180e3b-ed9b-430/providers/Microsoft.Subscriptions.Admin/offers/d126a/MetricDefinitions";
15952
Requests[2692].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15953
Requests[2692].
Request
.Path = "/subscriptions/772ecbae-8b81-/resourcegroups/b44e2b9b-0131-428/providers/Microsoft.Subscriptions.Admin/offers/20ef8/Metrics";
15956
Requests[2693].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15957
Requests[2693].
Request
.Path = "/subscriptions/440e9476-b7ad-/resourcegroups/45bc3eb8-1799-478/providers/Microsoft.Subscriptions.Admin/offers/4984b/offerDelegations";
15960
Requests[2694].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
15961
Requests[2694].
Request
.Path = "/subscriptions/767226dd-e627-/resourcegroups/a516ef66-0efc-4db/providers/Microsoft.Subscriptions.Admin/offers/e286c/unlink";
15964
Requests[2695].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15965
Requests[2695].
Request
.Path = "/subscriptions/6bf35d4d-00bd-/resourcegroups/c6cc80d9-0ebb-42e/providers/Microsoft.Subscriptions.Admin/plans/74072/MetricDefinitions";
15968
Requests[2696].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15969
Requests[2696].
Request
.Path = "/subscriptions/f6a56cfa-bd19-/resourcegroups/255261a3-7d27-45e/providers/Microsoft.Subscriptions.Admin/plans/b4003/Metrics";
15972
Requests[2697].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15973
Requests[2697].
Request
.Path = "/subscriptions/c26082de-a95a-/resourceGroups/cc7675b8-dc89-42c/providers/Microsoft.TimeSeriesInsights/environments/52235db5-c35a-4/accessPolicies";
15976
Requests[2698].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15977
Requests[2698].
Request
.Path = "/subscriptions/9cde9ea1-3ea5-/resourceGroups/44b0ce23-582a-428/providers/Microsoft.TimeSeriesInsights/environments/b8207dd9-f94d-4/eventSources";
15980
Requests[2699].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15981
Requests[2699].
Request
.Path = "/subscriptions/95ac4520-c3b3-/resourceGroups/6d459466-27a5-46d/providers/Microsoft.TimeSeriesInsights/environments/eeddbe08-deae-4/referenceDataSets";
15984
Requests[2700].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15985
Requests[2700].
Request
.Path = "/subscriptions/573541a2-aad9-/resourcegroups/84b72b69-2cfc-465/providers/Microsoft.Update.Admin/updateLocations/5303c90c-4c9f-/updates";
15988
Requests[2701].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15989
Requests[2701].
Request
.Path = "/subscriptions/54cf945f-f532-/resourcegroups/44a6e073-cdda-450/providers/microsoft.visualstudio/account/c66db755-2902-47f9-/extension";
15992
Requests[2702].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15993
Requests[2702].
Request
.Path = "/subscriptions/e44cdeeb-f25c-/resourceGroups/c167ac2b-fc7e-411/providers/microsoft.visualstudio/account/234e1070-588f-4d/project";
15996
Requests[2703].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
15997
Requests[2703].
Request
.Path = "/subscriptions/afaa133c-6ea9-/resourceGroups/b7ef4c9e-71a6-4d7/providers/Microsoft.Web.Admin/environments/c0482972-e93b-4/usage";
16000
Requests[2704].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16001
Requests[2704].
Request
.Path = "/subscriptions/6c7d9a59-42b6-/resourceGroups/025bd756-9582-40c/providers/Microsoft.Web/connections/38252347-7ad9-/confirmConsentCode";
16004
Requests[2705].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16005
Requests[2705].
Request
.Path = "/subscriptions/420df0ec-caba-/resourceGroups/20204c67-6d83-467/providers/Microsoft.Web/connections/76aab7ff-0f5d-/listConnectionKeys";
16008
Requests[2706].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16009
Requests[2706].
Request
.Path = "/subscriptions/61ab2537-10d5-/resourceGroups/3e7dfc9d-8271-452/providers/Microsoft.Web/connections/3ec2e022-3584-/listConsentLinks";
16012
Requests[2707].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16013
Requests[2707].
Request
.Path = "/subscriptions/1d7e1bff-f0b0-/resourceGroups/2f59d253-786c-420/providers/Microsoft.Web/customApis/172344b/move";
16016
Requests[2708].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16017
Requests[2708].
Request
.Path = "/subscriptions/aff61bec-d9d2-/resourceGroups/35fd1a45-f3ee-45e/providers/Microsoft.Web/hostingEnvironments/45da4/changeVirtualNetwork";
16020
Requests[2709].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16021
Requests[2709].
Request
.Path = "/subscriptions/56412a76-686c-/resourceGroups/f89d6ff7-c19a-4c4/providers/Microsoft.Web/hostingEnvironments/adc0f/detectors";
16024
Requests[2710].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16025
Requests[2710].
Request
.Path = "/subscriptions/6363a6a6-adb7-/resourceGroups/d0b78cb7-c9b8-41b/providers/Microsoft.Web/hostingEnvironments/347dd/diagnostics";
16028
Requests[2711].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16029
Requests[2711].
Request
.Path = "/subscriptions/8744fa73-cbae-/resourceGroups/bb49e812-a2f2-410/providers/Microsoft.Web/hostingEnvironments/3e706/metricdefinitions";
16032
Requests[2712].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16033
Requests[2712].
Request
.Path = "/subscriptions/3eb52e52-665a-/resourceGroups/3b9338c3-7434-422/providers/Microsoft.Web/hostingEnvironments/aeedd/metrics";
16036
Requests[2713].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16037
Requests[2713].
Request
.Path = "/subscriptions/b648d495-7aa6-/resourceGroups/9472f6fc-e6a3-4e3/providers/Microsoft.Web/hostingEnvironments/81f1e/multiRolePools";
16040
Requests[2714].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16041
Requests[2714].
Request
.Path = "/subscriptions/b3ba5dc3-65ca-/resourceGroups/9d6c098c-66a6-490/providers/Microsoft.Web/hostingEnvironments/dee98/operations";
16044
Requests[2715].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16045
Requests[2715].
Request
.Path = "/subscriptions/f1e10d6b-55f0-/resourceGroups/fffd8316-cdee-476/providers/Microsoft.Web/hostingEnvironments/37f5f/reboot";
16048
Requests[2716].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16049
Requests[2716].
Request
.Path = "/subscriptions/eab17dde-f986-/resourceGroups/614a3992-8e1d-4e4/providers/Microsoft.Web/hostingEnvironments/a925e/resume";
16052
Requests[2717].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16053
Requests[2717].
Request
.Path = "/subscriptions/03189473-85db-/resourceGroups/3bf96faa-5f7c-4e2/providers/Microsoft.Web/hostingEnvironments/00c45/serverfarms";
16056
Requests[2718].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16057
Requests[2718].
Request
.Path = "/subscriptions/2ec2a86c-0e84-/resourceGroups/0661b2f5-adbd-454/providers/Microsoft.Web/hostingEnvironments/18e1d/sites";
16060
Requests[2719].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16061
Requests[2719].
Request
.Path = "/subscriptions/a3761c13-1c06-/resourceGroups/73b1e16d-1d08-44e/providers/Microsoft.Web/hostingEnvironments/e78fe/suspend";
16064
Requests[2720].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16065
Requests[2720].
Request
.Path = "/subscriptions/0958a7e9-6924-/resourceGroups/36b6435f-7b8c-45a/providers/Microsoft.Web/hostingEnvironments/17dc1/syncVirtualNetwork";
16068
Requests[2721].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16069
Requests[2721].
Request
.Path = "/subscriptions/c4a66bdb-61c6-/resourceGroups/fbefe7d4-f10f-459/providers/Microsoft.Web/hostingEnvironments/11109/usages";
16072
Requests[2722].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16073
Requests[2722].
Request
.Path = "/subscriptions/49a29e33-3935-/resourceGroups/4a05439e-f9fd-431/providers/Microsoft.Web/hostingEnvironments/7cf7e/webhostingplans";
16076
Requests[2723].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16077
Requests[2723].
Request
.Path = "/subscriptions/9bfe6895-b5d1-/resourceGroups/5f44db9f-0879-48f/providers/Microsoft.Web/hostingEnvironments/3b0dd/workerPools";
16080
Requests[2724].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16081
Requests[2724].
Request
.Path = "/subscriptions/56b9b725-a28f-/resourceGroups/2d44ef23-a54f-4f6/providers/Microsoft.Web/managedHostingEnvironments/839f0/serverfarms";
16084
Requests[2725].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16085
Requests[2725].
Request
.Path = "/subscriptions/803ab048-a985-/resourceGroups/bd75ad7c-7b8f-4aa/providers/Microsoft.Web/managedHostingEnvironments/1e99a/sites";
16088
Requests[2726].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16089
Requests[2726].
Request
.Path = "/subscriptions/5a4b237e-f168-/resourceGroups/79c70805-78f8-4ea/providers/Microsoft.Web/managedHostingEnvironments/c7fbc/webhostingplans";
16092
Requests[2727].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16093
Requests[2727].
Request
.Path = "/subscriptions/3e8c8b1a-d1bb-/resourceGroups/537df491-3841-4e4/providers/Microsoft.Web/serverfarms/dacef/capabilities";
16096
Requests[2728].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16097
Requests[2728].
Request
.Path = "/subscriptions/43df7eba-c6c3-/resourceGroups/a9a43876-0d81-467/providers/Microsoft.Web/serverfarms/4be9f/hybridConnectionRelays";
16100
Requests[2729].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16101
Requests[2729].
Request
.Path = "/subscriptions/ed503071-23a2-/resourceGroups/72fa4a75-e3fe-4cb/providers/Microsoft.Web/serverfarms/42313/metricdefinitions";
16104
Requests[2730].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16105
Requests[2730].
Request
.Path = "/subscriptions/ecbf9627-d598-/resourceGroups/2da9b927-3bde-4eb/providers/Microsoft.Web/serverfarms/e093e/metrics";
16108
Requests[2731].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16109
Requests[2731].
Request
.Path = "/subscriptions/dcf95135-591a-/resourceGroups/3abb7141-410d-449/providers/Microsoft.Web/serverfarms/0b1d4/restartSites";
16112
Requests[2732].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16113
Requests[2732].
Request
.Path = "/subscriptions/3e48fcb3-76f4-/resourceGroups/32a2ab95-58be-409/providers/Microsoft.Web/serverfarms/6549b/sites";
16116
Requests[2733].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16117
Requests[2733].
Request
.Path = "/subscriptions/2a25ed50-6f0a-/resourceGroups/cfaef9cb-7a8c-4de/providers/Microsoft.Web/serverfarms/91dc1/skus";
16120
Requests[2734].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16121
Requests[2734].
Request
.Path = "/subscriptions/08fc63b0-64e4-/resourceGroups/07e1ef96-eedf-411/providers/Microsoft.Web/serverfarms/db8a1/usages";
16124
Requests[2735].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16125
Requests[2735].
Request
.Path = "/subscriptions/7fac1ba7-a902-/resourceGroups/28983ad5-e65a-489/providers/Microsoft.Web/serverfarms/69bcf/virtualNetworkConnections";
16128
Requests[2736].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16129
Requests[2736].
Request
.Path = "/subscriptions/35167dd1-5109-/resourceGroups/f3ada67f-ddff-4d1/providers/Microsoft.Web/sites/8f98d/analyzeCustomHostname";
16132
Requests[2737].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16133
Requests[2737].
Request
.Path = "/subscriptions/e391f217-2634-/resourceGroups/3cbe288f-994f-490/providers/Microsoft.Web/sites/2aec4/applySlotConfig";
16136
Requests[2738].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16137
Requests[2738].
Request
.Path = "/subscriptions/ad32687a-d4f8-/resourceGroups/6bddb917-47fb-406/providers/Microsoft.Web/sites/a6c83/backup";
16140
Requests[2739].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16141
Requests[2739].
Request
.Path = "/subscriptions/eee93fd7-bd72-/resourceGroups/8c185b07-563c-4a7/providers/Microsoft.Web/sites/e6b10/backups";
16144
Requests[2740].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16145
Requests[2740].
Request
.Path = "/subscriptions/a25fce38-09e2-/resourceGroups/07a20902-a2fb-428/providers/Microsoft.Web/sites/0c0bf/config";
16148
Requests[2741].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16149
Requests[2741].
Request
.Path = "/subscriptions/dff0edfb-2096-/resourceGroups/f571d277-c24b-47c/providers/Microsoft.Web/sites/bf7dc/containerlogs";
16152
Requests[2742].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16153
Requests[2742].
Request
.Path = "/subscriptions/96bd8ade-1f83-/resourceGroups/bba570a3-0652-469/providers/Microsoft.Web/sites/2e806/continuouswebjobs";
16156
Requests[2743].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16157
Requests[2743].
Request
.Path = "/subscriptions/65af9f84-c5fb-/resourceGroups/73f4566a-4c99-428/providers/Microsoft.Web/sites/e7e80/deployments";
16160
Requests[2744].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16161
Requests[2744].
Request
.Path = "/subscriptions/9ff7c052-280b-/resourceGroups/5c0b61a8-0511-441/providers/Microsoft.Web/sites/2a6d3/domainOwnershipIdentifiers";
16164
Requests[2745].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16165
Requests[2745].
Request
.Path = "/subscriptions/8024b26b-06ec-/resourceGroups/adef00f9-6222-4ec/providers/Microsoft.Web/sites/348d2/functions";
16168
Requests[2746].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16169
Requests[2746].
Request
.Path = "/subscriptions/46cdfaf5-440c-/resourceGroups/02b1e3e4-a8d0-401/providers/Microsoft.Web/sites/97b97/hostNameBindings";
16172
Requests[2747].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16173
Requests[2747].
Request
.Path = "/subscriptions/57a79f4d-944b-/resourceGroups/a20763cf-2e9f-404/providers/Microsoft.Web/sites/06afa/hybridconnection";
16176
Requests[2748].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16177
Requests[2748].
Request
.Path = "/subscriptions/1826e8b8-98fa-/resourceGroups/5de1f7d3-5a1e-439/providers/Microsoft.Web/sites/74976/hybridConnectionRelays";
16180
Requests[2749].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16181
Requests[2749].
Request
.Path = "/subscriptions/21889818-96d6-/resourceGroups/efc8cedc-6d7a-4f2/providers/Microsoft.Web/sites/dfb27/instances";
16184
Requests[2750].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16185
Requests[2750].
Request
.Path = "/subscriptions/981ef5cf-1648-/resourceGroups/26251c21-bf2c-464/providers/Microsoft.Web/sites/6ccbd/iscloneable";
16188
Requests[2751].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16189
Requests[2751].
Request
.Path = "/subscriptions/8e09d18e-a0b2-/resourceGroups/a52f1f08-3666-4fa/providers/Microsoft.Web/sites/e51bc/listsyncfunctiontriggerstatus";
16192
Requests[2752].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16193
Requests[2752].
Request
.Path = "/subscriptions/5859de04-868f-/resourceGroups/2622d29a-f174-45b/providers/Microsoft.Web/sites/10bb5/metricdefinitions";
16196
Requests[2753].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16197
Requests[2753].
Request
.Path = "/subscriptions/322f680b-315e-/resourceGroups/9bfee610-307d-45b/providers/Microsoft.Web/sites/8f693/metrics";
16200
Requests[2754].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16201
Requests[2754].
Request
.Path = "/subscriptions/8a070a0f-26e1-/resourceGroups/7e40e879-4cf8-42a/providers/Microsoft.Web/sites/4fdc3/migrate";
16204
Requests[2755].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16205
Requests[2755].
Request
.Path = "/subscriptions/4a99eb29-2f87-/resourceGroups/cb5f2ff5-9fa3-4a0/providers/Microsoft.Web/sites/04832/migratemysql";
16208
Requests[2756].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16209
Requests[2756].
Request
.Path = "/subscriptions/472c8dd2-66d8-/resourceGroups/874bc560-027a-464/providers/Microsoft.Web/sites/3de85/newpassword";
16212
Requests[2757].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16213
Requests[2757].
Request
.Path = "/subscriptions/2404586a-f040-/resourceGroups/16894f25-af0c-457/providers/Microsoft.Web/sites/a8164/perfcounters";
16216
Requests[2758].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16217
Requests[2758].
Request
.Path = "/subscriptions/e9db74ea-0af6-/resourceGroups/c147af92-3f64-4ff/providers/Microsoft.Web/sites/62c1c/phplogging";
16220
Requests[2759].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16221
Requests[2759].
Request
.Path = "/subscriptions/a6f79100-2527-/resourceGroups/be81fdb3-0878-4f0/providers/Microsoft.Web/sites/5ceda/premieraddons";
16224
Requests[2760].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16225
Requests[2760].
Request
.Path = "/subscriptions/1a2b7963-50b0-/resourceGroups/25268570-bc47-4b7/providers/Microsoft.Web/sites/ec009/processes";
16228
Requests[2761].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16229
Requests[2761].
Request
.Path = "/subscriptions/669281d1-47a2-/resourceGroups/c0cd0d29-1c62-493/providers/Microsoft.Web/sites/35c6d/publicCertificates";
16232
Requests[2762].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16233
Requests[2762].
Request
.Path = "/subscriptions/e65ec136-bd42-/resourceGroups/f14d50e1-e2d6-422/providers/Microsoft.Web/sites/521f0/publishxml";
16236
Requests[2763].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16237
Requests[2763].
Request
.Path = "/subscriptions/55553798-add0-/resourceGroups/d372253f-5e47-42d/providers/Microsoft.Web/sites/e3f82/recover";
16240
Requests[2764].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16241
Requests[2764].
Request
.Path = "/subscriptions/58f79f67-9ae3-/resourceGroups/000dfab8-12ff-446/providers/Microsoft.Web/sites/6a677/resetSlotConfig";
16244
Requests[2765].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16245
Requests[2765].
Request
.Path = "/subscriptions/db5a3714-2a4e-/resourceGroups/634a6df2-d9aa-46f/providers/Microsoft.Web/sites/d9bad/resourceHealthMetadata";
16248
Requests[2766].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16249
Requests[2766].
Request
.Path = "/subscriptions/4cbfb59b-e314-/resourceGroups/6bacc8d5-bf2d-4c2/providers/Microsoft.Web/sites/7f360/restart";
16252
Requests[2767].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16253
Requests[2767].
Request
.Path = "/subscriptions/469bcec8-c9ef-/resourceGroups/88b7a2bd-96a2-40e/providers/Microsoft.Web/sites/5c497/restoreFromBackupBlob";
16256
Requests[2768].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16257
Requests[2768].
Request
.Path = "/subscriptions/eabca370-3832-/resourceGroups/15c6e364-65e2-4a4/providers/Microsoft.Web/sites/9a623/restoreFromDeletedApp";
16260
Requests[2769].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16261
Requests[2769].
Request
.Path = "/subscriptions/11b51cf7-8783-/resourceGroups/81915547-5a3e-449/providers/Microsoft.Web/sites/9710d/restoreSnapshot";
16264
Requests[2770].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16265
Requests[2770].
Request
.Path = "/subscriptions/c532415c-54aa-/resourceGroups/a9e6508e-7147-42f/providers/Microsoft.Web/sites/8486e/siteextensions";
16268
Requests[2771].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16269
Requests[2771].
Request
.Path = "/subscriptions/d4de8b4c-5685-/resourceGroups/2d97c2ed-2438-420/providers/Microsoft.Web/sites/40e26/slots";
16272
Requests[2772].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16273
Requests[2772].
Request
.Path = "/subscriptions/76a9b79a-4d50-/resourceGroups/9777df9a-fc4a-470/providers/Microsoft.Web/sites/f5dbb/slotsdiffs";
16276
Requests[2773].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16277
Requests[2773].
Request
.Path = "/subscriptions/9ab5ea58-afb7-/resourceGroups/8ac728b6-f27f-448/providers/Microsoft.Web/sites/8149a/slotsswap";
16280
Requests[2774].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16281
Requests[2774].
Request
.Path = "/subscriptions/a4631c5c-5c08-/resourceGroups/fb3ad7dd-5c93-4aa/providers/Microsoft.Web/sites/bed03/snapshots";
16284
Requests[2775].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16285
Requests[2775].
Request
.Path = "/subscriptions/be2e04af-5d2e-/resourceGroups/e7412e2f-7630-4d6/providers/Microsoft.Web/sites/b7c4b/snapshots";
16288
Requests[2776].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16289
Requests[2776].
Request
.Path = "/subscriptions/28756880-6cf7-/resourceGroups/f9ae625b-960b-4db/providers/Microsoft.Web/sites/77c8b/start";
16292
Requests[2777].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16293
Requests[2777].
Request
.Path = "/subscriptions/3ac6a310-ff06-/resourceGroups/2dd0f50f-0821-459/providers/Microsoft.Web/sites/39b0c/stop";
16296
Requests[2778].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16297
Requests[2778].
Request
.Path = "/subscriptions/46048828-6dda-/resourceGroups/268c5ec1-cba9-416/providers/Microsoft.Web/sites/6214d/sync";
16300
Requests[2779].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16301
Requests[2779].
Request
.Path = "/subscriptions/44063301-c131-/resourceGroups/947c30c6-8fd5-42e/providers/Microsoft.Web/sites/b4b40/syncfunctiontriggers";
16304
Requests[2780].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16305
Requests[2780].
Request
.Path = "/subscriptions/5b82b3d0-e42e-/resourceGroups/fcd8d801-b67b-470/providers/Microsoft.Web/sites/0aba6/triggeredwebjobs";
16308
Requests[2781].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16309
Requests[2781].
Request
.Path = "/subscriptions/83a6e736-28b0-/resourceGroups/a32fe97d-45a0-456/providers/Microsoft.Web/sites/0c6cb/usages";
16312
Requests[2782].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16313
Requests[2782].
Request
.Path = "/subscriptions/13c8db45-1fa8-/resourceGroups/4dfaba38-8a15-416/providers/Microsoft.Web/sites/7d733/virtualNetworkConnections";
16316
Requests[2783].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16317
Requests[2783].
Request
.Path = "/subscriptions/dc8553b1-8711-/resourceGroups/d909787d-d7be-4ac/providers/Microsoft.Web/sites/3d99d/webjobs";
16320
Requests[2784].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16321
Requests[2784].
Request
.Path = "/subscriptions/6ef3ab07-d9c1-/resourceGroups/27beac56-f86f-41a/providers/Microsoft.Web/sites/63514852/detectors";
16324
Requests[2785].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16325
Requests[2785].
Request
.Path = "/subscriptions/d9ae6fed-d128-/resourceGroups/108a0966-795a-4e1/providers/Microsoft.Web/sites/641464c0/diagnostics";
16328
Requests[2786].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16329
Requests[2786].
Request
.Path = "/subscriptions/97421d93-14d3-/resourceGroups/dbe6bcea-d66a-4d6/providers/Microsoft.Web/sites/7e84ecd8/recommendationHistory";
16332
Requests[2787].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16333
Requests[2787].
Request
.Path = "/subscriptions/4965937f-22c5-/resourceGroups/acdd1804-5eeb-41a/providers/Microsoft.Web/sites/a30ad79c/recommendations";
16336
Requests[2788].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16337
Requests[2788].
Request
.Path = "/subscriptions/13b6ec0c-c271-/resourceGroups/b6984b5a-4529-4d0/providers/Microsoft.ApiManagement/service/5f7f4a48-b9/portalsettings/delegation";
16340
Requests[2789].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16341
Requests[2789].
Request
.Path = "/subscriptions/fb400526-a6db-/resourceGroups/09d622bd-b743-425/providers/Microsoft.ApiManagement/service/b1bf3790-a8/portalsettings/delegation";
16344
Requests[2790].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
16345
Requests[2790].
Request
.Path = "/subscriptions/94b3a1f1-68f0-/resourceGroups/cea1db38-5d19-4bf/providers/Microsoft.ApiManagement/service/ef383c16-53/portalsettings/delegation";
16348
Requests[2791].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16349
Requests[2791].
Request
.Path = "/subscriptions/40595c97-a803-/resourceGroups/45c733eb-8bc7-439/providers/Microsoft.ApiManagement/service/9727e592-e0/portalsettings/delegation";
16352
Requests[2792].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16353
Requests[2792].
Request
.Path = "/subscriptions/70a0f7a0-ac89-/resourceGroups/19dc104f-4641-4c8/providers/Microsoft.ApiManagement/service/adc1dab0-a6/portalsettings/signin";
16356
Requests[2793].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16357
Requests[2793].
Request
.Path = "/subscriptions/cc06cfe0-82ab-/resourceGroups/425cbffe-0ae4-44d/providers/Microsoft.ApiManagement/service/95f67abf-4a/portalsettings/signin";
16360
Requests[2794].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16361
Requests[2794].
Request
.Path = "/subscriptions/9cd89267-041d-/resourceGroups/56b26ebe-62ae-43e/providers/Microsoft.ApiManagement/service/ca7236d2-0f/portalsettings/signin";
16364
Requests[2795].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
16365
Requests[2795].
Request
.Path = "/subscriptions/2166ecd0-9935-/resourceGroups/23dc1449-383f-418/providers/Microsoft.ApiManagement/service/4f0fde11-1d/portalsettings/signin";
16368
Requests[2796].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16369
Requests[2796].
Request
.Path = "/subscriptions/e5e6680c-79eb-/resourceGroups/28f6c72a-7d74-44c/providers/Microsoft.ApiManagement/service/5a97e9e0-c6/portalsettings/signup";
16372
Requests[2797].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16373
Requests[2797].
Request
.Path = "/subscriptions/367f266a-5bca-/resourceGroups/8ed335fa-a143-453/providers/Microsoft.ApiManagement/service/24e10fb4-a3/portalsettings/signup";
16376
Requests[2798].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
16377
Requests[2798].
Request
.Path = "/subscriptions/a465d961-ccb0-/resourceGroups/fd151ed3-c7a5-469/providers/Microsoft.ApiManagement/service/57ac3e79-59/portalsettings/signup";
16380
Requests[2799].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16381
Requests[2799].
Request
.Path = "/subscriptions/6211f726-2d6f-/resourceGroups/a7020935-2988-4f8/providers/Microsoft.ApiManagement/service/c8142093-aa/portalsettings/signup";
16384
Requests[2800].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16385
Requests[2800].
Request
.Path = "/subscriptions/0e975e09-218e-/resourceGroups/1ce48ce9-ad05-471/providers/Microsoft.ApiManagement/service/daa33844-c0/reports/byApi";
16388
Requests[2801].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16389
Requests[2801].
Request
.Path = "/subscriptions/2277180e-cb18-/resourceGroups/821465b0-7999-411/providers/Microsoft.ApiManagement/service/3ab09453-9f/reports/byGeo";
16392
Requests[2802].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16393
Requests[2802].
Request
.Path = "/subscriptions/c4cc2cf2-f919-/resourceGroups/9f0e55c0-f9ca-476/providers/Microsoft.ApiManagement/service/e3669064-eb/reports/byOperation";
16396
Requests[2803].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16397
Requests[2803].
Request
.Path = "/subscriptions/5be3d482-b800-/resourceGroups/cd1c9313-8c6b-481/providers/Microsoft.ApiManagement/service/5700941d-1c/reports/byProduct";
16400
Requests[2804].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16401
Requests[2804].
Request
.Path = "/subscriptions/0dcc5201-fe99-/resourceGroups/f5527951-6d49-4c6/providers/Microsoft.ApiManagement/service/4a2ca6f5-49/reports/byRequest";
16404
Requests[2805].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16405
Requests[2805].
Request
.Path = "/subscriptions/c5f19705-06d6-/resourceGroups/892cda56-6da5-45d/providers/Microsoft.ApiManagement/service/3081f7c0-60/reports/bySubscription";
16408
Requests[2806].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16409
Requests[2806].
Request
.Path = "/subscriptions/aa5227b7-52ee-/resourceGroups/2604b62d-acd9-476/providers/Microsoft.ApiManagement/service/88ec6c5e-30/reports/byTime";
16412
Requests[2807].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16413
Requests[2807].
Request
.Path = "/subscriptions/2ca21d70-e9a4-/resourceGroups/7267d790-ffb3-45b/providers/Microsoft.ApiManagement/service/6715303e-eb/reports/byUser";
16416
Requests[2808].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16417
Requests[2808].
Request
.Path = "/subscriptions/b3370e27-c79c-/resourceGroups/9e4a7346-6c4f-4aa/providers/Microsoft.ApiManagement/service/90f1552b-d3/tenant/access";
16420
Requests[2809].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16421
Requests[2809].
Request
.Path = "/subscriptions/fe4c5f16-8742-/resourceGroups/2b61d57f-88ed-4e0/providers/Microsoft.ApiManagement/service/561affcd-fb/tenant/access";
16424
Requests[2810].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16425
Requests[2810].
Request
.Path = "/subscriptions/7414de47-6eec-/resourceGroups/c0db3bc8-3996-42f/providers/Microsoft.ApiManagement/service/a307e4ff-5f/tenant/policy";
16428
Requests[2811].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16429
Requests[2811].
Request
.Path = "/subscriptions/5e96e893-4527-/resourceGroups/53084bf9-b651-4b7/providers/Microsoft.ApiManagement/service/8f95ee46-62/tenant/policy";
16432
Requests[2812].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16433
Requests[2812].
Request
.Path = "/subscriptions/24425e06-472f-/resourceGroups/94585dec-8e70-4bd/providers/Microsoft.ApiManagement/service/10188f13-f7/tenant/policy";
16436
Requests[2813].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16437
Requests[2813].
Request
.Path = "/subscriptions/2bd32e22-2dc6-/resourceGroups/4da4e25b-d774-473/providers/Microsoft.Automation/automationAccounts/69c87fe9-d91e-4fc3-83/agentRegistrationInformation/regenerateKey";
16440
Requests[2814].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16441
Requests[2814].
Request
.Path = "/subscriptions/e9683898-7ec6-/resourceGroups/5234ece1-a534-441/providers/Microsoft.Automation/automationAccounts/7db27884-7081-4257-94/webhooks/generateUri";
16444
Requests[2815].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16445
Requests[2815].
Request
.Path = "/subscriptions/ec4be1b0-1ce0-/resourceGroups/6d8a6073-e17f-446/providers/Microsoft.Cache/Redis/4d028/patchSchedules/default";
16448
Requests[2816].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16449
Requests[2816].
Request
.Path = "/subscriptions/4aa4bb55-8eaf-/resourceGroups/43e33299-5946-40a/providers/Microsoft.Cache/Redis/1e972/patchSchedules/default";
16452
Requests[2817].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16453
Requests[2817].
Request
.Path = "/subscriptions/095a6ecc-7077-/resourceGroups/e736b58c-fd6b-423/providers/Microsoft.Cache/Redis/1d716/patchSchedules/default";
16456
Requests[2818].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16457
Requests[2818].
Request
.Path = "/subscriptions/decc0877-a4ea-/resourceGroups/8352b6a4-6cbb-42c/providers/Microsoft.Compute/virtualMachineScaleSets/94178a7c-e68f-/rollingUpgrades/cancel";
16460
Requests[2819].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16461
Requests[2819].
Request
.Path = "/subscriptions/90a5ce03-a2fe-/resourceGroups/ae6e55df-f78e-426/providers/Microsoft.Compute/virtualMachineScaleSets/84bddec5-2743-/rollingUpgrades/latest";
16464
Requests[2820].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16465
Requests[2820].
Request
.Path = "/subscriptions/94d84d4b-e337-/resourceGroups/e56778dd-fdff-447/providers/Microsoft.ContainerService/managedClusters/d6fe35c5-f55/upgradeProfiles/default";
16468
Requests[2821].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16469
Requests[2821].
Request
.Path = "/subscriptions/d0a4e223-d279-/resourceGroups/38e92367-5a35-478/providers/Microsoft.CustomerInsights/hubs/fb0ba9b/images/getDataImageUploadUrl";
16472
Requests[2822].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16473
Requests[2822].
Request
.Path = "/subscriptions/954730fd-3120-/resourceGroups/2ce1fbc4-5123-464/providers/Microsoft.CustomerInsights/hubs/94b8e9b/images/getEntityTypeImageUploadUrl";
16476
Requests[2823].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16477
Requests[2823].
Request
.Path = "/subscriptions/41e85190-312f-/resourceGroups/9a982d9e-2e70-44e/providers/Microsoft.DocumentDB/databaseAccounts/74b29bd3-16/percentile/metrics";
16480
Requests[2824].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16481
Requests[2824].
Request
.Path = "/subscriptions/c79028ee-d046-/resourceGroups/71bbce8a-24cb-4e2/providers/Microsoft.EventHub/clusters/6c9504d3-9d/quotaConfiguration/default";
16484
Requests[2825].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16485
Requests[2825].
Request
.Path = "/subscriptions/56a26679-c6fa-/resourceGroups/1a57b509-ff3b-4cb/providers/Microsoft.EventHub/clusters/11b5486f-8b/quotaConfiguration/default";
16488
Requests[2826].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16489
Requests[2826].
Request
.Path = "/subscriptions/db92f9be-de3f-/resourceGroups/3a5c52f6-5215-410/providers/Microsoft.EventHub/namespaces/fdf0f2ef-a7e1/disasterRecoveryConfigs/CheckNameAvailability";
16492
Requests[2827].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16493
Requests[2827].
Request
.Path = "/subscriptions/dabc9790-5e1c-/resourceGroups/f0737d7a-93e1-4ce/providers/Microsoft.HDInsight/clusters/d1ea20d5-cf/extensions/clustermonitoring";
16496
Requests[2828].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16497
Requests[2828].
Request
.Path = "/subscriptions/8900299e-41b1-/resourceGroups/fbf77a89-2771-4ba/providers/Microsoft.HDInsight/clusters/d13ec2d3-fc/extensions/clustermonitoring";
16500
Requests[2829].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16501
Requests[2829].
Request
.Path = "/subscriptions/f40debb9-157a-/resourceGroups/1ccf3a4d-4c08-433/providers/Microsoft.HDInsight/clusters/7e91f092-e2/extensions/clustermonitoring";
16504
Requests[2830].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16505
Requests[2830].
Request
.Path = "/subscriptions/8513bef6-a4b1-/resourceGroups/b60fabcc-daf1-436/providers/microsoft.insights/components/2964355b-e9d/pricingPlans/current";
16508
Requests[2831].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16509
Requests[2831].
Request
.Path = "/subscriptions/1c7aecad-bb29-/resourceGroups/c80faec7-a08e-4fd/providers/microsoft.insights/components/b00c07b3-681/pricingPlans/current";
16512
Requests[2832].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16513
Requests[2832].
Request
.Path = "/subscriptions/72ff621d-2518-/resourceGroups/8ae50573-b981-49b/providers/microsoft.insights/components/3f3fb043-be7/pricingPlans/current";
16516
Requests[2833].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16517
Requests[2833].
Request
.Path = "/subscriptions/226396ea-d2d9-/resourceGroups/1ca0f0ad-5f2a-49e/providers/Microsoft.Network/connections/a5779011-83a5-4a90-89c3-3c34d6ad608/sharedkey/reset";
16520
Requests[2834].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16521
Requests[2834].
Request
.Path = "/Subscriptions/d5fee9d1-f860-/resourceGroups/cd098aec-6870-469/providers/Microsoft.RecoveryServices/vaults/87ad4430-226/replicationJobs/export";
16524
Requests[2835].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16525
Requests[2835].
Request
.Path = "/Subscriptions/21fa17b4-5d58-/resourceGroups/a18f4433-9237-417/providers/Microsoft.RecoveryServices/vaults/fc11f229-/backupconfig/vaultconfig";
16528
Requests[2836].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16529
Requests[2836].
Request
.Path = "/Subscriptions/d1755df3-a0c3-/resourceGroups/6f837ef5-0843-46e/providers/Microsoft.RecoveryServices/vaults/deb85497-/backupconfig/vaultconfig";
16532
Requests[2837].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16533
Requests[2837].
Request
.Path = "/Subscriptions/9f481e9d-930c-/resourceGroups/5945b77f-4fa4-4e5/providers/Microsoft.RecoveryServices/vaults/61dccd35-/backupstorageconfig/vaultstorageconfig";
16536
Requests[2838].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16537
Requests[2838].
Request
.Path = "/Subscriptions/04c6663f-77c4-/resourceGroups/1287af59-293d-453/providers/Microsoft.RecoveryServices/vaults/ea56a7bf-/backupstorageconfig/vaultstorageconfig";
16540
Requests[2839].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16541
Requests[2839].
Request
.Path = "/subscriptions/ebe7d06d-a3bb-/resourceGroups/4bc2b366-797b-4c9/providers/Microsoft.RecoveryServices/vaults/26b633c7-/extendedInformation/vaultExtendedInfo";
16544
Requests[2840].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16545
Requests[2840].
Request
.Path = "/subscriptions/c1165156-220f-/resourceGroups/d560820b-fb78-404/providers/Microsoft.RecoveryServices/vaults/6a2c32cc-/extendedInformation/vaultExtendedInfo";
16548
Requests[2841].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16549
Requests[2841].
Request
.Path = "/subscriptions/4d973798-2cd4-/resourceGroups/b68a8d1a-1ca1-4fe/providers/Microsoft.RecoveryServices/vaults/6601296a-/extendedInformation/vaultExtendedInfo";
16552
Requests[2842].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16553
Requests[2842].
Request
.Path = "/subscriptions/ee3d96e7-6a68-/resourceGroups/3fdbe8c4-5554-4b2/providers/Microsoft.ServiceBus/namespaces/b91a4b2e-2c5a/disasterRecoveryConfigs/CheckNameAvailability";
16556
Requests[2843].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16557
Requests[2843].
Request
.Path = "/subscriptions/fe9b893c-cc02-/resourceGroups/7f558c7c-4328-42d/providers/Microsoft.Sql/servers/7e51f1ec-9/automaticTuning/current";
16560
Requests[2844].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16561
Requests[2844].
Request
.Path = "/subscriptions/d792883e-0c5d-/resourceGroups/f887ba1f-d375-451/providers/Microsoft.Sql/servers/a3b546b4-2/automaticTuning/current";
16564
Requests[2845].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16565
Requests[2845].
Request
.Path = "/subscriptions/c7e8019f-f2cf-/resourceGroups/2805c9c8-f821-4db/providers/Microsoft.StorSimple/managers/88e6dcc0-d3/encryptionSettings/default";
16568
Requests[2846].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16569
Requests[2846].
Request
.Path = "/subscriptions/34910e68-6239-/resourceGroups/bb1f81eb-2315-4cd/providers/Microsoft.StorSimple/managers/f5139c77-58/extendedInformation/vaultExtendedInfo";
16572
Requests[2847].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16573
Requests[2847].
Request
.Path = "/subscriptions/86cffec5-7e7a-/resourceGroups/c666ab6c-ec7a-499/providers/Microsoft.StorSimple/managers/91eab166-62/extendedInformation/vaultExtendedInfo";
16576
Requests[2848].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16577
Requests[2848].
Request
.Path = "/subscriptions/9d21172b-a6e7-/resourceGroups/0a90ed07-fac9-42d/providers/Microsoft.StorSimple/managers/23df2368-5d/extendedInformation/vaultExtendedInfo";
16580
Requests[2849].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16581
Requests[2849].
Request
.Path = "/subscriptions/e37a4a41-f4c7-/resourceGroups/87d38aeb-accb-444/providers/Microsoft.StorSimple/managers/a21957d8-39/extendedInformation/vaultExtendedInfo";
16584
Requests[2850].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16585
Requests[2850].
Request
.Path = "/subscriptions/85bf2882-d001-/resourceGroups/29546527-875a-422/providers/Microsoft.Web/hostingEnvironments/97aa1/capacities/compute";
16588
Requests[2851].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16589
Requests[2851].
Request
.Path = "/subscriptions/d8af6205-e3da-/resourceGroups/2a1939e9-04ae-49f/providers/Microsoft.Web/hostingEnvironments/1ae6d/capacities/virtualip";
16592
Requests[2852].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16593
Requests[2852].
Request
.Path = "/subscriptions/a2607f91-a5b4-/resourceGroups/cfc03d4f-6ad6-46a/providers/Microsoft.Web/hostingEnvironments/0038b/multiRolePools/default";
16596
Requests[2853].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16597
Requests[2853].
Request
.Path = "/subscriptions/36680d99-fdcd-/resourceGroups/1c3a76a6-871d-4b5/providers/Microsoft.Web/hostingEnvironments/46d02/multiRolePools/default";
16600
Requests[2854].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16601
Requests[2854].
Request
.Path = "/subscriptions/7d70ad09-37cf-/resourceGroups/6c0940ae-706d-401/providers/Microsoft.Web/hostingEnvironments/8e1d7/multiRolePools/default";
16604
Requests[2855].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16605
Requests[2855].
Request
.Path = "/subscriptions/2c00ee7a-052d-/resourceGroups/3441ec98-b0dc-4d6/providers/Microsoft.Web/managedHostingEnvironments/22340/capacities/virtualip";
16608
Requests[2856].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16609
Requests[2856].
Request
.Path = "/subscriptions/54aafda4-1ce1-/resourceGroups/8ff0660a-f63a-47b/providers/Microsoft.Web/serverfarms/8b460/hybridConnectionPlanLimits/limit";
16612
Requests[2857].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16613
Requests[2857].
Request
.Path = "/subscriptions/9901d2fc-00e4-/resourceGroups/38b93efb-0fe6-4e2/providers/Microsoft.Web/sites/497f3/backups/discover";
16616
Requests[2858].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16617
Requests[2858].
Request
.Path = "/subscriptions/9ec9fb34-d5a6-/resourceGroups/72d9ee4c-1211-431/providers/Microsoft.Web/sites/b1605/config/appsettings";
16620
Requests[2859].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16621
Requests[2859].
Request
.Path = "/subscriptions/2a57d086-9f51-/resourceGroups/45b37779-c061-4a1/providers/Microsoft.Web/sites/99a41/config/authsettings";
16624
Requests[2860].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16625
Requests[2860].
Request
.Path = "/subscriptions/f5aef3fb-083e-/resourceGroups/90dbcf45-1489-47b/providers/Microsoft.Web/sites/d7962/config/backup";
16628
Requests[2861].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16629
Requests[2861].
Request
.Path = "/subscriptions/ad60d8a5-72df-/resourceGroups/13f3b9d9-fa0b-4be/providers/Microsoft.Web/sites/5bc85/config/backup";
16632
Requests[2862].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16633
Requests[2862].
Request
.Path = "/subscriptions/3f7035e8-a95d-/resourceGroups/61c8d55d-720f-4e5/providers/Microsoft.Web/sites/f0f41/config/connectionstrings";
16636
Requests[2863].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16637
Requests[2863].
Request
.Path = "/subscriptions/3f05ede4-1e9b-/resourceGroups/1f570b76-40a1-4c2/providers/Microsoft.Web/sites/289c6/config/logs";
16640
Requests[2864].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16641
Requests[2864].
Request
.Path = "/subscriptions/1fc2ea88-6316-/resourceGroups/540006d7-3d7e-4cf/providers/Microsoft.Web/sites/1d691/config/logs";
16644
Requests[2865].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16645
Requests[2865].
Request
.Path = "/subscriptions/b4dc3356-ce73-/resourceGroups/5d7fe10a-c1a2-4a1/providers/Microsoft.Web/sites/df798/config/metadata";
16648
Requests[2866].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16649
Requests[2866].
Request
.Path = "/subscriptions/5f70dab3-db45-/resourceGroups/8a1025da-4ea9-4ab/providers/Microsoft.Web/sites/bad44/config/pushsettings";
16652
Requests[2867].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16653
Requests[2867].
Request
.Path = "/subscriptions/255db266-8044-/resourceGroups/b0c45c3f-173d-4e4/providers/Microsoft.Web/sites/1a900/config/slotConfigNames";
16656
Requests[2868].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16657
Requests[2868].
Request
.Path = "/subscriptions/e808d843-0ad3-/resourceGroups/9cdc76c6-8352-4f9/providers/Microsoft.Web/sites/c7c3c/config/slotConfigNames";
16660
Requests[2869].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16661
Requests[2869].
Request
.Path = "/subscriptions/2de73392-9394-/resourceGroups/28c0aa2c-e9df-4b5/providers/Microsoft.Web/sites/5a371/config/web";
16664
Requests[2870].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16665
Requests[2870].
Request
.Path = "/subscriptions/33d4fe65-312b-/resourceGroups/6d1bb784-84a2-470/providers/Microsoft.Web/sites/83268/config/web";
16668
Requests[2871].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16669
Requests[2871].
Request
.Path = "/subscriptions/ffd0a810-7248-/resourceGroups/79e2f883-eb2f-417/providers/Microsoft.Web/sites/73d04/config/web";
16672
Requests[2872].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16673
Requests[2872].
Request
.Path = "/subscriptions/4f20f1c1-ff7b-/resourceGroups/b0fd4a64-2eda-478/providers/Microsoft.Web/sites/64e24/extensions/MSDeploy";
16676
Requests[2873].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16677
Requests[2873].
Request
.Path = "/subscriptions/4ed9fd02-1925-/resourceGroups/aa14053b-006a-4fc/providers/Microsoft.Web/sites/81774/extensions/MSDeploy";
16680
Requests[2874].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16681
Requests[2874].
Request
.Path = "/subscriptions/6be98a46-5930-/resourceGroups/2d36c9b4-060a-477/providers/Microsoft.Web/sites/b0d4c/migratemysql/status";
16684
Requests[2875].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16685
Requests[2875].
Request
.Path = "/subscriptions/12059745-2394-/resourceGroups/6e46535f-c91e-4af/providers/Microsoft.Web/sites/cf9da/networkTrace/start";
16688
Requests[2876].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16689
Requests[2876].
Request
.Path = "/subscriptions/d7884531-6555-/resourceGroups/8645ed51-5c8a-476/providers/Microsoft.Web/sites/c11e7/networkTrace/stop";
16692
Requests[2877].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16693
Requests[2877].
Request
.Path = "/subscriptions/89f269ce-68bd-/resourceGroups/d2660434-de34-4be/providers/Microsoft.Web/sites/7cedb/privateAccess/virtualNetworks";
16696
Requests[2878].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16697
Requests[2878].
Request
.Path = "/subscriptions/d305f71e-23cd-/resourceGroups/25b8adab-8c56-440/providers/Microsoft.Web/sites/3f048/privateAccess/virtualNetworks";
16700
Requests[2879].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16701
Requests[2879].
Request
.Path = "/subscriptions/ab386275-b581-/resourceGroups/6c5a9781-bce9-4d9/providers/Microsoft.Web/sites/c655a/resourceHealthMetadata/default";
16704
Requests[2880].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16705
Requests[2880].
Request
.Path = "/subscriptions/a89084a4-9b22-/resourceGroups/5aee4870-511d-49c/providers/Microsoft.Web/sites/d7328/sourcecontrols/web";
16708
Requests[2881].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16709
Requests[2881].
Request
.Path = "/subscriptions/1fd27bf1-eefd-/resourceGroups/f5db06a9-6f95-4b2/providers/Microsoft.Web/sites/8de5d/sourcecontrols/web";
16712
Requests[2882].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16713
Requests[2882].
Request
.Path = "/subscriptions/e0557f6f-652f-/resourceGroups/7a77d56e-2d77-4fe/providers/Microsoft.Web/sites/bf9b3/sourcecontrols/web";
16716
Requests[2883].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16717
Requests[2883].
Request
.Path = "/subscriptions/337e4ca3-a973-/resourceGroups/7b0c81a8-08de-477/providers/Microsoft.Web/sites/6d8c1/sourcecontrols/web";
16720
Requests[2884].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16721
Requests[2884].
Request
.Path = "/subscriptions/101a9a9f-6f9a-/resourceGroups/3158844f-c5ca-488/providers/Microsoft.Web/sites/9fb93b69/recommendations/disable";
16724
Requests[2885].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16725
Requests[2885].
Request
.Path = "/subscriptions/9b840bbf-7b04-/resourceGroups/c4e8a835-1ada-415/providers/Microsoft.Web/sites/ccd208b0/recommendations/reset";
16728
Requests[2886].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16729
Requests[2886].
Request
.Path = "/subscriptions/5e945aff-26c1-/resourceGroups/9416fbf6-7871-472/providers/Microsoft.ApiManagement/service/be7963b1-b5/tenant/access/git";
16732
Requests[2887].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16733
Requests[2887].
Request
.Path = "/subscriptions/b0c986a4-1c54-/resourceGroups/36beee13-5cd5-4ad/providers/Microsoft.ApiManagement/service/604fd38d-5c/tenant/access/regeneratePrimaryKey";
16736
Requests[2888].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16737
Requests[2888].
Request
.Path = "/subscriptions/1620900d-2bba-/resourceGroups/0b066871-8a14-425/providers/Microsoft.ApiManagement/service/e8fb01c2-3d/tenant/access/regenerateSecondaryKey";
16740
Requests[2889].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16741
Requests[2889].
Request
.Path = "/subscriptions/fd8a61ee-dc78-/resourceGroups/43f58a9b-76b6-42a/providers/Microsoft.ApiManagement/service/779b5226-f4/tenant/configuration/deploy";
16744
Requests[2890].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16745
Requests[2890].
Request
.Path = "/subscriptions/707baa00-1e42-/resourceGroups/83a089e5-f89a-487/providers/Microsoft.ApiManagement/service/a86614d7-95/tenant/configuration/save";
16748
Requests[2891].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16749
Requests[2891].
Request
.Path = "/subscriptions/57a236b2-838f-/resourceGroups/6c1ea24b-a5c1-427/providers/Microsoft.ApiManagement/service/e618f63b-48/tenant/configuration/syncState";
16752
Requests[2892].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16753
Requests[2892].
Request
.Path = "/subscriptions/446174df-94e6-/resourceGroups/cc538ac7-5fc0-427/providers/Microsoft.ApiManagement/service/1c193544-32/tenant/configuration/validate";
16756
Requests[2893].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16757
Requests[2893].
Request
.Path = "/subscriptions/381e1662-1e91-/resourceGroups/c5979d08-5ece-43b/providers/Microsoft.Devices/IotHubs/7289f418-c/routing/routes/$testall";
16760
Requests[2894].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16761
Requests[2894].
Request
.Path = "/subscriptions/2ab25799-5c87-/resourceGroups/9f017336-7af7-4eb/providers/Microsoft.Devices/IotHubs/65210e6a-f/routing/routes/$testnew";
16764
Requests[2895].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16765
Requests[2895].
Request
.Path = "/subscriptions/8f60b439-ac38-/resourceGroups/da3769e2-1abd-43b/providers/Microsoft.OperationalInsights/workspaces/9c6d7766-6f40/features/serviceMap/generateMap";
16768
Requests[2896].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16769
Requests[2896].
Request
.Path = "/subscriptions/5644e177-10f4-/resourceGroups/fd12a661-377f-490/providers/Microsoft.OperationalInsights/workspaces/3fc0178f-6a4f/features/serviceMap/machineGroups";
16772
Requests[2897].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16773
Requests[2897].
Request
.Path = "/subscriptions/86c4cd0b-ed39-/resourceGroups/4dfc8444-3035-475/providers/Microsoft.OperationalInsights/workspaces/4abac5b8-4a11/features/serviceMap/machineGroups";
16776
Requests[2898].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16777
Requests[2898].
Request
.Path = "/subscriptions/5a3fd3fc-42e8-/resourceGroups/973151eb-78ba-4f1/providers/Microsoft.OperationalInsights/workspaces/947d887f-9081/features/serviceMap/machines";
16780
Requests[2899].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16781
Requests[2899].
Request
.Path = "/Subscriptions/07439263-5298-/resourceGroups/5a287d13-8789-4ba/providers/Microsoft.RecoveryServices/vaults/0215176b-5ef/replicationVaultHealth/default/refresh";
16784
Requests[2900].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16785
Requests[2900].
Request
.Path = "/subscriptions/f9ef2486-aa03-/resourceGroups/b0a7a315-0780-48d/providers/Microsoft.Storage/storageAccounts/ccb40c5b-e4/blobServices/default/containers";
16788
Requests[2901].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16789
Requests[2901].
Request
.Path = "/subscriptions/e20f9b93-1f86-/resourceGroups/ab066640-b5b3-437/providers/Microsoft.Web/hostingEnvironments/26527/multiRolePools/default/metricdefinitions";
16792
Requests[2902].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16793
Requests[2902].
Request
.Path = "/subscriptions/4252a302-6f0c-/resourceGroups/b84f2a48-c980-442/providers/Microsoft.Web/hostingEnvironments/8650f/multiRolePools/default/metrics";
16796
Requests[2903].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16797
Requests[2903].
Request
.Path = "/subscriptions/548b79a0-395f-/resourceGroups/1c154bc3-4194-4fc/providers/Microsoft.Web/hostingEnvironments/98d7a/multiRolePools/default/skus";
16800
Requests[2904].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16801
Requests[2904].
Request
.Path = "/subscriptions/3a228f63-0df7-/resourceGroups/82dfb926-9d84-419/providers/Microsoft.Web/hostingEnvironments/70e74/multiRolePools/default/usages";
16804
Requests[2905].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16805
Requests[2905].
Request
.Path = "/subscriptions/b97f84fe-ab8f-/resourceGroups/cac74313-1a13-444/providers/Microsoft.Web/sites/f6b31/config/appsettings/list";
16808
Requests[2906].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16809
Requests[2906].
Request
.Path = "/subscriptions/543d84ea-9c6f-/resourceGroups/c6a10ae9-558d-443/providers/Microsoft.Web/sites/9e380/config/authsettings/list";
16812
Requests[2907].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16813
Requests[2907].
Request
.Path = "/subscriptions/03a212a8-f609-/resourceGroups/05bab127-ca81-4f2/providers/Microsoft.Web/sites/c603e/config/backup/list";
16816
Requests[2908].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16817
Requests[2908].
Request
.Path = "/subscriptions/c1a2223f-bd5c-/resourceGroups/d28e74ab-4e98-406/providers/Microsoft.Web/sites/8246c/config/connectionstrings/list";
16820
Requests[2909].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16821
Requests[2909].
Request
.Path = "/subscriptions/31bb39e0-53ea-/resourceGroups/2d3be9dd-e29b-4e6/providers/Microsoft.Web/sites/b1c88/config/metadata/list";
16824
Requests[2910].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16825
Requests[2910].
Request
.Path = "/subscriptions/36cf1ccf-9af2-/resourceGroups/44cffed6-6e29-43a/providers/Microsoft.Web/sites/fad72/config/publishingcredentials/list";
16828
Requests[2911].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16829
Requests[2911].
Request
.Path = "/subscriptions/b0c1f61b-2b9e-/resourceGroups/b6eeb473-502f-4f1/providers/Microsoft.Web/sites/43421/config/pushsettings/list";
16832
Requests[2912].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16833
Requests[2912].
Request
.Path = "/subscriptions/76563061-a2f2-/resourceGroups/ebea7ed1-e5b4-492/providers/Microsoft.Web/sites/bb690/config/web/snapshots";
16836
Requests[2913].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16837
Requests[2913].
Request
.Path = "/subscriptions/8c3f3871-69ef-/resourceGroups/fb2620df-179c-489/providers/Microsoft.Web/sites/c96f3/containerlogs/zip/download";
16840
Requests[2914].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16841
Requests[2914].
Request
.Path = "/subscriptions/567bbecf-7778-/resourceGroups/30650e6e-eba1-46f/providers/Microsoft.Web/sites/170c5/extensions/MSDeploy/log";
16844
Requests[2915].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16845
Requests[2915].
Request
.Path = "/subscriptions/1ddab599-3d28-/resourceGroups/76e4e131-df3c-4ad/providers/Microsoft.Web/sites/b637b/functions/admin/token";
16848
Requests[2916].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16849
Requests[2916].
Request
.Path = "/subscriptions/48b50f23-06b9-/resourceGroups/bbe91601-28dd-42c/providers/Microsoft.ApiManagement/service/9b6c6599-fa/tenant/access/git/regeneratePrimaryKey";
16852
Requests[2917].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16853
Requests[2917].
Request
.Path = "/subscriptions/3ad91b13-2aba-/resourceGroups/242268a5-6661-48f/providers/Microsoft.ApiManagement/service/9b7bceff-8d/tenant/access/git/regenerateSecondaryKey";
16856
Requests[2918].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16857
Requests[2918].
Request
.Path = "/subscriptions/7ba7e2fd-8be2-/resourceGroups/6efff822-6e0a-45c/providers/Microsoft.OperationalInsights/workspaces/1152ad3a-965a/features/serviceMap/summaries/machines";
16860
Requests[2919].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16861
Requests[2919].
Request
.Path = "/subscriptions/a29117e5-2dd3-/resourceGroups/3ddfeff6-2f01-459/providers/Microsoft.OperationalInsights/workspaces/6af9976e-0150/features/serviceMap/clientGroups/80d8c882-c25e-4";
16864
Requests[2920].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16865
Requests[2920].
Request
.Path = "/subscriptions/579a0d3a-8e25-/resourceGroups/b96fc04c-52d5-43c/providers/Microsoft.OperationalInsights/workspaces/5531ca94-a9a7/features/serviceMap/machineGroups/cb813092-645d-49";
16868
Requests[2921].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16869
Requests[2921].
Request
.Path = "/subscriptions/c40dc4e1-c5d1-/resourceGroups/783b9285-0b90-4c1/providers/Microsoft.OperationalInsights/workspaces/18584f0e-eab6/features/serviceMap/machineGroups/2c6c03f7-279c-46";
16872
Requests[2922].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16873
Requests[2922].
Request
.Path = "/subscriptions/a13ebeb8-9c13-/resourceGroups/1de61a68-6038-421/providers/Microsoft.OperationalInsights/workspaces/08223cb8-5fbb/features/serviceMap/machineGroups/abb7f33a-1f43-4a";
16876
Requests[2923].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16877
Requests[2923].
Request
.Path = "/subscriptions/86374978-af0e-/resourceGroups/48e5c11d-3080-441/providers/Microsoft.OperationalInsights/workspaces/1a4cec37-85d1/features/serviceMap/machines/2eec9e03-1d";
16880
Requests[2924].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
16881
Requests[2924].
Request
.Path = "/subscriptions/883d2106-3ccc-/resourceGroups/5ffa27d0-3611-422/providers/Microsoft.Storage/storageAccounts/93e06dd3-1e/blobServices/default/containers/37a4fcda-5a38";
16884
Requests[2925].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16885
Requests[2925].
Request
.Path = "/subscriptions/df23d8c1-88b0-/resourceGroups/b8cecee8-2b26-4ed/providers/Microsoft.Storage/storageAccounts/2cc0af3e-18/blobServices/default/containers/ccf8abcc-011f";
16888
Requests[2926].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16889
Requests[2926].
Request
.Path = "/subscriptions/017cb9da-008b-/resourceGroups/7e9fe602-973a-4f2/providers/Microsoft.Storage/storageAccounts/58fe1881-83/blobServices/default/containers/2ca33c13-5b7d";
16892
Requests[2927].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16893
Requests[2927].
Request
.Path = "/subscriptions/1cc2d03a-68da-/resourceGroups/117eeed7-1642-4be/providers/Microsoft.Storage/storageAccounts/1e6d09ff-af/blobServices/default/containers/8ca32980-5329";
16896
Requests[2928].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16897
Requests[2928].
Request
.Path = "/subscriptions/7f4dea19-d521-/resourceGroups/0c67d0fb-b8c2-421/providers/Microsoft.Web/sites/73d18/config/web/snapshots/acfd0142-a";
16900
Requests[2929].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16901
Requests[2929].
Request
.Path = "/subscriptions/9941ddf6-6d80-/resourceGroups/86951fd3-6e50-453/providers/Microsoft.OperationalInsights/workspaces/7a67d15d-6c1f/features/serviceMap/clientGroups/b7b6d946-f5ae-4/members";
16904
Requests[2930].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16905
Requests[2930].
Request
.Path = "/subscriptions/69404a44-1df0-/resourceGroups/836ef9eb-7b64-40f/providers/Microsoft.OperationalInsights/workspaces/7e9d9f7d-7fa5/features/serviceMap/clientGroups/42e42663-ade7-4/membersCount";
16908
Requests[2931].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16909
Requests[2931].
Request
.Path = "/subscriptions/e248b657-4c22-/resourceGroups/229c04b6-3d2c-4db/providers/Microsoft.OperationalInsights/workspaces/a4713130-548e/features/serviceMap/machines/27e48d94-e1/connections";
16912
Requests[2932].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16913
Requests[2932].
Request
.Path = "/subscriptions/51cf8985-d8f3-/resourceGroups/a56d6494-f995-43b/providers/Microsoft.OperationalInsights/workspaces/b9798816-0b2e/features/serviceMap/machines/248074ab-c9/liveness";
16916
Requests[2933].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16917
Requests[2933].
Request
.Path = "/subscriptions/e7c1c270-32d7-/resourceGroups/f78d920a-439e-438/providers/Microsoft.OperationalInsights/workspaces/b8518a8d-a79d/features/serviceMap/machines/525ff651-2e/machineGroups";
16920
Requests[2934].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16921
Requests[2934].
Request
.Path = "/subscriptions/8ad0f175-427c-/resourceGroups/ca95b742-706c-42c/providers/Microsoft.OperationalInsights/workspaces/d526ffc9-a0d9/features/serviceMap/machines/35230518-6f/ports";
16924
Requests[2935].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16925
Requests[2935].
Request
.Path = "/subscriptions/71cf5c2f-c213-/resourceGroups/25805ee1-235e-44b/providers/Microsoft.OperationalInsights/workspaces/bcdb94bf-e86e/features/serviceMap/machines/295e42ba-1a/processes";
16928
Requests[2936].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16929
Requests[2936].
Request
.Path = "/subscriptions/a18be7eb-8e66-/resourceGroups/970a9cff-2d88-43c/providers/Microsoft.Storage/storageAccounts/5fe55a9c-d7/blobServices/default/containers/2ca04e44-7b1a/clearLegalHold";
16932
Requests[2937].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16933
Requests[2937].
Request
.Path = "/subscriptions/f7ea0fc1-80f6-/resourceGroups/d7211526-03bb-487/providers/Microsoft.Storage/storageAccounts/3ffa4aeb-99/blobServices/default/containers/f05f8032-2959/setLegalHold";
16936
Requests[2938].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16937
Requests[2938].
Request
.Path = "/subscriptions/03c13c38-5d95-/resourceGroups/163d1094-16dc-413/providers/Microsoft.Web/hostingEnvironments/3adf9/multiRolePools/default/instances/494eb1e7/metricdefinitions";
16940
Requests[2939].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16941
Requests[2939].
Request
.Path = "/subscriptions/dbdd400f-99cc-/resourceGroups/4f7b2fbb-0eaf-419/providers/Microsoft.Web/hostingEnvironments/1a85c/multiRolePools/default/instances/72322969/metrics";
16944
Requests[2940].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16945
Requests[2940].
Request
.Path = "/subscriptions/d69d51b3-3647-/resourceGroups/46c7cd3a-db7e-4b2/providers/Microsoft.Web/sites/e2c3f/config/web/snapshots/40b64303-3/recover";
16948
Requests[2941].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16949
Requests[2941].
Request
.Path = "/subscriptions/45f176e8-e179-/resourceGroups/9c25b417-9213-45d/providers/Microsoft.Storage/storageAccounts/860c0bba-bc/blobServices/default/containers/44761f56-aa6b/immutabilityPolicies/default/extend";
16952
Requests[2942].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
16953
Requests[2942].
Request
.Path = "/subscriptions/f6da0121-63d5-/resourceGroups/1b58ff81-bfd5-444/providers/Microsoft.Storage/storageAccounts/cc209ea8-55/blobServices/default/containers/fe53148f-1eb8/immutabilityPolicies/default/lock";
16956
Requests[2943].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16957
Requests[2943].
Request
.Path = "/subscriptions/2879425a-9cdc-/resourceGroups/fce95a2e-8b81-4ac/providers/Microsoft.OperationalInsights/workspaces/d4aeede1-9e78/features/serviceMap/machines/a23fed31-9b/ports/caa07cb3";
16960
Requests[2944].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16961
Requests[2944].
Request
.Path = "/subscriptions/6beb076d-f11a-/resourceGroups/be75d81b-a850-49e/providers/Microsoft.OperationalInsights/workspaces/162f2784-c4be/features/serviceMap/machines/7ddeabb4-fb/processes/8c22eab6-2e";
16964
Requests[2945].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16965
Requests[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";
16968
Requests[2946].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
16969
Requests[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";
16972
Requests[2947].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
16973
Requests[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";
16976
Requests[2948].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16977
Requests[2948].
Request
.Path = "/subscriptions/24bb2ced-979b-/resourceGroups/0e5ec9f6-38bd-417/providers/Microsoft.OperationalInsights/workspaces/4b898e52-735b/features/serviceMap/machines/51f5ae7c-8b/ports/74d52171/acceptingProcesses";
16980
Requests[2949].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16981
Requests[2949].
Request
.Path = "/subscriptions/032c94f2-f4da-/resourceGroups/918fd311-f84b-46a/providers/Microsoft.OperationalInsights/workspaces/36511d76-82f9/features/serviceMap/machines/4e0eb8c5-68/ports/c0d900c8/connections";
16984
Requests[2950].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16985
Requests[2950].
Request
.Path = "/subscriptions/5f040c0e-bd4e-/resourceGroups/bc330b0a-7469-454/providers/Microsoft.OperationalInsights/workspaces/58fd1608-931a/features/serviceMap/machines/3c9fd9a5-86/ports/5a4e1c6d/liveness";
16988
Requests[2951].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16989
Requests[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";
16992
Requests[2952].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16993
Requests[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";
16996
Requests[2953].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
16997
Requests[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";
17000
Requests[2954].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17001
Requests[2954].
Request
.Path = "/Subscriptions/4d821db6-7cad-/resourceGroups/1ae87d02-0a12-4c0/providers/Microsoft.RecoveryServices/vaults/e809942f-/backupJobs/operationResults/ee4d9e84-59";
17004
Requests[2955].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
17005
Requests[2955].
Request
.Path = "/subscriptions/068e489b-155d-/resourcegroups/dec74986-a1f7-4a7/providers/Microsoft.Storage.Admin/farms/8858ee/shares/operationresults/3c0fe0c2-35";
17008
Requests[2956].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17009
Requests[2956].
Request
.Path = "/subscriptions/4f9a33c4-b5f4-/resourcegroups/79c4533b-03e0-46f/providers/Microsoft.Storage.Admin/farms/d488a0/shares/operationresults/b9fe335c-d3";
17012
Requests[2957].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17013
Requests[2957].
Request
.Path = "/subscriptions/20ff8131-1a48-/resourceGroup/5d70c143-63e3-418/providers/Microsoft.MachineLearningServices/workspaces/0306ae8e-53fe/computes/34a93725-ba";
17016
Requests[2958].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17017
Requests[2958].
Request
.Path = "/subscriptions/3e833b4c-b8c4-/resourceGroup/4135b13a-ce0c-450/providers/Microsoft.MachineLearningServices/workspaces/631185ba-014e/computes/c681152b-57";
17020
Requests[2959].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17021
Requests[2959].
Request
.Path = "/subscriptions/258f126d-1967-/resourceGroup/a420b6bb-cd1d-4e4/providers/Microsoft.MachineLearningServices/workspaces/da767a46-9aae/computes/0943fa06-72";
17024
Requests[2960].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17025
Requests[2960].
Request
.Path = "/subscriptions/42a82f0e-034e-/resourceGroups/f9612835-/providers/Microsoft.DataMigration/services/d47aed37-6c/projects/dd310e7e-03";
17028
Requests[2961].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17029
Requests[2961].
Request
.Path = "/subscriptions/ac46e81a-6a97-/resourceGroups/ac588f2d-/providers/Microsoft.DataMigration/services/bb9c126f-89/projects/f5e7e6db-47";
17032
Requests[2962].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17033
Requests[2962].
Request
.Path = "/subscriptions/04a607de-c556-/resourceGroups/d0c430f4-/providers/Microsoft.DataMigration/services/903f68c8-4c/projects/b30b303f-b8";
17036
Requests[2963].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17037
Requests[2963].
Request
.Path = "/subscriptions/82a0394a-de3d-/resourceGroups/356cf4fa-/providers/Microsoft.DataMigration/services/8bce1ba1-16/projects/2d4f4ab8-2f";
17040
Requests[2964].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
17041
Requests[2964].
Request
.Path = "/subscriptions/a5f0d2b1-559a-/resourceGroups/0985517e-/providers/Microsoft.DataMigration/services/810e4f83-54/projects/9207050a-5d";
17044
Requests[2965].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17045
Requests[2965].
Request
.Path = "/subscriptions/b1ea3083-1ec8-/resourcegroups/ed071ff1-6752/providers/Microsoft.AzureBridge.Admin/activations/7d940ac4-e839-/downloadedProducts/29d52386-88";
17048
Requests[2966].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17049
Requests[2966].
Request
.Path = "/subscriptions/53e0a721-2016-/resourcegroups/d7188377-f9de/providers/Microsoft.AzureBridge.Admin/activations/b378806e-d305-/downloadedProducts/771e0bc0-e3";
17052
Requests[2967].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17053
Requests[2967].
Request
.Path = "/subscriptions/80e66663-8898-/resourcegroups/473df903-b8bc/providers/Microsoft.AzureBridge.Admin/activations/a3c3a2ba-ec27-/products/a7c39dff-bd";
17056
Requests[2968].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17057
Requests[2968].
Request
.Path = "/subscriptions/85459ae0-fcad-/resourceGroups/b3712f7b-7205/providers/Microsoft.AzureStack/registrations/93f57b1e-2ef6-4c/customerSubscriptions/4c18401b-c92f-480a-82b8-";
17060
Requests[2969].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17061
Requests[2969].
Request
.Path = "/subscriptions/3c53eb75-6a41-/resourceGroups/f178cd16-0a26/providers/Microsoft.AzureStack/registrations/754e3885-6b85-45/customerSubscriptions/2ff6ee33-fc93-43c2-8cd2-";
17064
Requests[2970].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17065
Requests[2970].
Request
.Path = "/subscriptions/02e711e6-708d-/resourceGroups/45103859-626c/providers/Microsoft.AzureStack/registrations/c7a5641e-7289-43/customerSubscriptions/a938fb1a-3d84-4115-8900-";
17068
Requests[2971].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17069
Requests[2971].
Request
.Path = "/subscriptions/97316cda-26ce-/resourceGroups/fd4def52-2b8d/providers/Microsoft.AzureStack/registrations/dc7263bc-017d-4f/products/f6b7fb23-c3";
17072
Requests[2972].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17073
Requests[2972].
Request
.Path = "/subscriptions/c2b8fb8d-6abf-/resourceGroups/e841c65f-1373-411/providers/Microsoft.ApiManagement/service/37406ec6-97/apis/1a91e";
17076
Requests[2973].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17077
Requests[2973].
Request
.Path = "/subscriptions/ebc6d7cc-d7ef-/resourceGroups/2f099d6c-e2b8-430/providers/Microsoft.ApiManagement/service/095a4a80-a1/apis/410dc";
17080
Requests[2974].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17081
Requests[2974].
Request
.Path = "/subscriptions/e0d9387a-1df0-/resourceGroups/3e2c03b6-a7a3-475/providers/Microsoft.ApiManagement/service/2d7afe64-0e/apis/50885";
17084
Requests[2975].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17085
Requests[2975].
Request
.Path = "/subscriptions/ba40e904-fa86-/resourceGroups/88e06f13-6116-4c3/providers/Microsoft.ApiManagement/service/608411f3-66/apis/68d69";
17088
Requests[2976].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17089
Requests[2976].
Request
.Path = "/subscriptions/75a6baa7-0abe-/resourceGroups/b0f039eb-7ae6-49b/providers/Microsoft.ApiManagement/service/47555aae-bb/apis/fc01f";
17092
Requests[2977].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17093
Requests[2977].
Request
.Path = "/subscriptions/97cff903-acd8-/resourceGroups/6b6d8dcd-66aa-4dc/providers/Microsoft.ApiManagement/service/bcadf16e-99/api-version-sets/43de1b8c-3be";
17096
Requests[2978].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17097
Requests[2978].
Request
.Path = "/subscriptions/3760ab11-a853-/resourceGroups/f22b8c3e-c50e-466/providers/Microsoft.ApiManagement/service/27e8fd44-7b/api-version-sets/a55f2f40-327";
17100
Requests[2979].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17101
Requests[2979].
Request
.Path = "/subscriptions/e4b60afc-fec6-/resourceGroups/eb60ec0d-2ca8-44c/providers/Microsoft.ApiManagement/service/72d352eb-fa/api-version-sets/649cfe33-f78";
17104
Requests[2980].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17105
Requests[2980].
Request
.Path = "/subscriptions/dee154aa-4add-/resourceGroups/a5cb41bb-872e-464/providers/Microsoft.ApiManagement/service/d70070bc-91/api-version-sets/2deb3c69-5eb";
17108
Requests[2981].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17109
Requests[2981].
Request
.Path = "/subscriptions/620fa6fb-2392-/resourceGroups/d818719e-fd7c-44d/providers/Microsoft.ApiManagement/service/7755633b-88/api-version-sets/9238a65c-379";
17112
Requests[2982].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
17113
Requests[2982].
Request
.Path = "/subscriptions/4f320d72-1e03-/resourceGroups/8f1d6b48-0a75-4cd/providers/Microsoft.ApiManagement/service/0f212093-21/api-version-sets/b16a3104-993";
17116
Requests[2983].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17117
Requests[2983].
Request
.Path = "/subscriptions/fe2d6786-4ae7-/resourceGroups/b51e9a20-2335-402/providers/Microsoft.ApiManagement/service/7b975106-d4/authorizationServers/a345bfa";
17120
Requests[2984].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17121
Requests[2984].
Request
.Path = "/subscriptions/46667647-cd9f-/resourceGroups/76c6098f-738d-4a3/providers/Microsoft.ApiManagement/service/1505ba62-de/authorizationServers/206d389";
17124
Requests[2985].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17125
Requests[2985].
Request
.Path = "/subscriptions/fe58b0a3-c2a4-/resourceGroups/30d4565e-9518-4f4/providers/Microsoft.ApiManagement/service/af3ed4b0-93/authorizationServers/9cc8ab2";
17128
Requests[2986].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17129
Requests[2986].
Request
.Path = "/subscriptions/c3609445-f1c6-/resourceGroups/5e0c9db9-2182-469/providers/Microsoft.ApiManagement/service/6bf1f248-7f/authorizationServers/d2a4f40";
17132
Requests[2987].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17133
Requests[2987].
Request
.Path = "/subscriptions/1e6eb197-ece9-/resourceGroups/f0176929-7350-406/providers/Microsoft.ApiManagement/service/9a3bb9d0-aa/authorizationServers/59695aa";
17136
Requests[2988].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17137
Requests[2988].
Request
.Path = "/subscriptions/a286008a-f578-/resourceGroups/cbf2a9a3-62a9-4e1/providers/Microsoft.ApiManagement/service/e6195e47-2a/backends/bb0227c5-";
17140
Requests[2989].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17141
Requests[2989].
Request
.Path = "/subscriptions/f0a89759-be26-/resourceGroups/b5564fba-4429-4a0/providers/Microsoft.ApiManagement/service/3c570a59-a8/backends/43683750-";
17144
Requests[2990].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17145
Requests[2990].
Request
.Path = "/subscriptions/d6a2b1fc-3115-/resourceGroups/8de97dba-2bf6-44d/providers/Microsoft.ApiManagement/service/afaa1314-d0/backends/de8c2885-";
17148
Requests[2991].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17149
Requests[2991].
Request
.Path = "/subscriptions/67e38d11-5703-/resourceGroups/f11cc59e-f1bb-40a/providers/Microsoft.ApiManagement/service/6ea5b8f2-e4/backends/6dd9a573-";
17152
Requests[2992].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17153
Requests[2992].
Request
.Path = "/subscriptions/dec623de-06c8-/resourceGroups/51cee1ce-20fa-4d1/providers/Microsoft.ApiManagement/service/645105c7-a5/backends/6b3a0ace-";
17156
Requests[2993].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17157
Requests[2993].
Request
.Path = "/subscriptions/ed74d376-5d8f-/resourceGroups/dabf2883-9898-482/providers/Microsoft.ApiManagement/service/2ef3e9de-90/certificates/6f48a19b-554d";
17160
Requests[2994].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17161
Requests[2994].
Request
.Path = "/subscriptions/8be2d8ae-e246-/resourceGroups/ccaa4bd2-540c-46b/providers/Microsoft.ApiManagement/service/4faebbe6-26/certificates/682b4091-0e9d";
17164
Requests[2995].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17165
Requests[2995].
Request
.Path = "/subscriptions/bf85fb61-3e48-/resourceGroups/ee455d21-4d81-44d/providers/Microsoft.ApiManagement/service/132239f1-d6/certificates/f023b1f6-75f8";
17168
Requests[2996].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17169
Requests[2996].
Request
.Path = "/subscriptions/defdf4e7-af42-/resourceGroups/9f6ac094-eb42-459/providers/Microsoft.ApiManagement/service/76503ea1-e8/certificates/e9c01b43-08e4";
17172
Requests[2997].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17173
Requests[2997].
Request
.Path = "/subscriptions/3a48a5bc-3252-/resourceGroups/177975ca-0178-411/providers/Microsoft.ApiManagement/service/813a04d1-19/diagnostics/db3ba92c-9dd";
17176
Requests[2998].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17177
Requests[2998].
Request
.Path = "/subscriptions/7710e56c-57af-/resourceGroups/c6cde74a-669e-412/providers/Microsoft.ApiManagement/service/a9d38522-b0/diagnostics/8ca53e3f-ad9";
17180
Requests[2999].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17181
Requests[2999].
Request
.Path = "/subscriptions/f142565c-e121-/resourceGroups/0029d02e-60cb-482/providers/Microsoft.ApiManagement/service/b279f0a7-76/diagnostics/75997d1c-021";
17184
Requests[3000].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17185
Requests[3000].
Request
.Path = "/subscriptions/8b1cac27-0225-/resourceGroups/408db9e5-afb0-4a1/providers/Microsoft.ApiManagement/service/bc26895c-85/diagnostics/ecf1378c-e1e";
17188
Requests[3001].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17189
Requests[3001].
Request
.Path = "/subscriptions/ef29915b-6e23-/resourceGroups/53cd3320-8969-429/providers/Microsoft.ApiManagement/service/965e57cb-2b/diagnostics/69d5cc5a-6aa";
17192
Requests[3002].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17193
Requests[3002].
Request
.Path = "/subscriptions/ee0e8a46-c97e-/resourceGroups/84a69bf6-e714-46f/providers/Microsoft.ApiManagement/service/813c84fa-17/groups/ae5cd31";
17196
Requests[3003].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17197
Requests[3003].
Request
.Path = "/subscriptions/38b8904a-35a0-/resourceGroups/81779466-62c2-460/providers/Microsoft.ApiManagement/service/00876d0e-b4/groups/d051597";
17200
Requests[3004].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17201
Requests[3004].
Request
.Path = "/subscriptions/256d98c0-29aa-/resourceGroups/5e0864de-0851-46f/providers/Microsoft.ApiManagement/service/e238a53c-a1/groups/31bed2f";
17204
Requests[3005].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17205
Requests[3005].
Request
.Path = "/subscriptions/03f6fdee-1f8e-/resourceGroups/3908cd0a-0072-4ff/providers/Microsoft.ApiManagement/service/d535c1ba-1d/groups/0a2cdca";
17208
Requests[3006].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17209
Requests[3006].
Request
.Path = "/subscriptions/d49370c4-ae89-/resourceGroups/65ccec5e-6826-4eb/providers/Microsoft.ApiManagement/service/4d885ee8-11/groups/bc2d83d";
17212
Requests[3007].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17213
Requests[3007].
Request
.Path = "/subscriptions/5d565a53-2e82-/resourceGroups/3e55b6e8-e12f-459/providers/Microsoft.ApiManagement/service/9b1e20d0-ec/identityProviders/6b5e2648-4262-4862-a";
17216
Requests[3008].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17217
Requests[3008].
Request
.Path = "/subscriptions/9783e7f5-fcc1-/resourceGroups/03a0293f-9d8b-43e/providers/Microsoft.ApiManagement/service/78d8857d-c7/identityProviders/a999ad23-0187-4ab6-a";
17220
Requests[3009].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17221
Requests[3009].
Request
.Path = "/subscriptions/45a9dc9c-018b-/resourceGroups/b6b89258-f1d5-41b/providers/Microsoft.ApiManagement/service/d24dd9d6-72/identityProviders/5e448e76-c35e-4e71-9";
17224
Requests[3010].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17225
Requests[3010].
Request
.Path = "/subscriptions/2decda53-953f-/resourceGroups/055673a2-fa94-44f/providers/Microsoft.ApiManagement/service/534f3103-ac/identityProviders/0a557fe3-f415-4f2c-b";
17228
Requests[3011].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17229
Requests[3011].
Request
.Path = "/subscriptions/e9087213-7a1e-/resourceGroups/51364ccf-4b1e-46b/providers/Microsoft.ApiManagement/service/829648f0-90/identityProviders/2d0749e4-eb29-44ba-a";
17232
Requests[3012].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17233
Requests[3012].
Request
.Path = "/subscriptions/8542c7de-ef4b-/resourceGroups/072cccdd-f278-458/providers/Microsoft.ApiManagement/service/e7c97461-46/loggers/a4dbac87";
17236
Requests[3013].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17237
Requests[3013].
Request
.Path = "/subscriptions/2f9a02f9-de0c-/resourceGroups/f05ea938-0ee3-4d2/providers/Microsoft.ApiManagement/service/278749bc-d2/loggers/aea473b3";
17240
Requests[3014].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17241
Requests[3014].
Request
.Path = "/subscriptions/17ccc322-55a1-/resourceGroups/bea9aaeb-7f94-4a6/providers/Microsoft.ApiManagement/service/01f1ce91-79/loggers/b9584901";
17244
Requests[3015].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17245
Requests[3015].
Request
.Path = "/subscriptions/a93b62ab-3cd1-/resourceGroups/9d33f101-2b3d-4de/providers/Microsoft.ApiManagement/service/e9b65f1a-bf/loggers/22665e98";
17248
Requests[3016].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17249
Requests[3016].
Request
.Path = "/subscriptions/903c9002-79bb-/resourceGroups/a96b6680-0b73-419/providers/Microsoft.ApiManagement/service/a86f4b42-24/loggers/a89cb7dc";
17252
Requests[3017].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17253
Requests[3017].
Request
.Path = "/subscriptions/ff8b9918-9058-/resourceGroups/1cd47a54-5c2a-410/providers/Microsoft.ApiManagement/service/0e2c281f-3c/notifications/5762c692-abbb-4c";
17256
Requests[3018].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17257
Requests[3018].
Request
.Path = "/subscriptions/e470c69d-1166-/resourceGroups/dc34a7a2-2b9a-454/providers/Microsoft.ApiManagement/service/64b82b29-1a/notifications/a222a270-59af-4f";
17260
Requests[3019].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17261
Requests[3019].
Request
.Path = "/subscriptions/8695b3ba-a51b-/resourceGroups/74d7d192-cdb1-4cf/providers/Microsoft.ApiManagement/service/ab14f1ef-f1/openidConnectProviders/29ebf";
17264
Requests[3020].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17265
Requests[3020].
Request
.Path = "/subscriptions/3478d87c-3cfe-/resourceGroups/e694fcbb-fb7d-402/providers/Microsoft.ApiManagement/service/7bb290e5-08/openidConnectProviders/0357c";
17268
Requests[3021].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17269
Requests[3021].
Request
.Path = "/subscriptions/24bc47ee-d70d-/resourceGroups/c5514dc1-7433-44a/providers/Microsoft.ApiManagement/service/906cab44-e3/openidConnectProviders/36586";
17272
Requests[3022].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17273
Requests[3022].
Request
.Path = "/subscriptions/53e658b3-5e6d-/resourceGroups/7075c5c0-695e-410/providers/Microsoft.ApiManagement/service/d0eb77c6-43/openidConnectProviders/00e2f";
17276
Requests[3023].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17277
Requests[3023].
Request
.Path = "/subscriptions/3a341b39-fb2f-/resourceGroups/af60c4f8-84f0-4ea/providers/Microsoft.ApiManagement/service/f3a436bb-71/openidConnectProviders/64448";
17280
Requests[3024].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17281
Requests[3024].
Request
.Path = "/subscriptions/5e7fb988-512d-/resourceGroups/29543082-7da0-4b2/providers/Microsoft.ApiManagement/service/4c809c28-50/policies/4279759e";
17284
Requests[3025].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17285
Requests[3025].
Request
.Path = "/subscriptions/bcd8a2b9-5a52-/resourceGroups/e6c5b16d-f585-476/providers/Microsoft.ApiManagement/service/8a9f12e1-b1/policies/5469b0b2";
17288
Requests[3026].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17289
Requests[3026].
Request
.Path = "/subscriptions/e48059c8-a93b-/resourceGroups/f1e6aab5-9e67-48c/providers/Microsoft.ApiManagement/service/d814d1be-1f/policies/26eb4283";
17292
Requests[3027].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17293
Requests[3027].
Request
.Path = "/subscriptions/991dc958-12a5-/resourceGroups/da5b9162-25c7-417/providers/Microsoft.ApiManagement/service/e678330e-c7/policies/e2f16039";
17296
Requests[3028].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17297
Requests[3028].
Request
.Path = "/subscriptions/f06dcc82-44e7-/resourceGroups/96354e65-58d8-441/providers/Microsoft.ApiManagement/service/b86bfb8e-db/products/8a93cc29-";
17300
Requests[3029].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17301
Requests[3029].
Request
.Path = "/subscriptions/4965274b-7654-/resourceGroups/2993eb87-cb21-4bf/providers/Microsoft.ApiManagement/service/1946a657-fc/products/80e8bb00-";
17304
Requests[3030].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17305
Requests[3030].
Request
.Path = "/subscriptions/2ceb4526-7fcd-/resourceGroups/c3a9b601-601f-49e/providers/Microsoft.ApiManagement/service/aa6685ca-ae/products/03dd0095-";
17308
Requests[3031].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17309
Requests[3031].
Request
.Path = "/subscriptions/0f0226f5-0dde-/resourceGroups/c3f4836d-194f-491/providers/Microsoft.ApiManagement/service/152b04d2-2e/products/e7f7e47b-";
17312
Requests[3032].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17313
Requests[3032].
Request
.Path = "/subscriptions/95c8e255-b08f-/resourceGroups/b31d92ea-78bf-4e1/providers/Microsoft.ApiManagement/service/18b4a487-3b/products/62344162-";
17316
Requests[3033].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17317
Requests[3033].
Request
.Path = "/subscriptions/72f3cd01-62eb-/resourceGroups/b2eaea41-c60d-4cb/providers/Microsoft.ApiManagement/service/5d51a9ae-83/properties/ef3c95";
17320
Requests[3034].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17321
Requests[3034].
Request
.Path = "/subscriptions/3994542d-adcc-/resourceGroups/7779c05e-330c-48c/providers/Microsoft.ApiManagement/service/87986799-76/properties/e5fd1a";
17324
Requests[3035].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17325
Requests[3035].
Request
.Path = "/subscriptions/d18353bd-68c8-/resourceGroups/97b0fc39-ace1-466/providers/Microsoft.ApiManagement/service/e9085253-93/properties/64a76b";
17328
Requests[3036].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17329
Requests[3036].
Request
.Path = "/subscriptions/5cb6c805-d71a-/resourceGroups/6af7c672-7380-433/providers/Microsoft.ApiManagement/service/d1ba35f6-2b/properties/7dfe75";
17332
Requests[3037].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17333
Requests[3037].
Request
.Path = "/subscriptions/f0830b5b-7b3d-/resourceGroups/1b2710b9-a5e5-431/providers/Microsoft.ApiManagement/service/8bb3a388-37/properties/0d2538";
17336
Requests[3038].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17337
Requests[3038].
Request
.Path = "/subscriptions/536171fe-862b-/resourceGroups/2136bfca-8b4f-46d/providers/Microsoft.ApiManagement/service/a0e6c822-1b/quotas/40faedad-f3eb-4";
17340
Requests[3039].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17341
Requests[3039].
Request
.Path = "/subscriptions/65bd6861-f13f-/resourceGroups/df76693c-af29-441/providers/Microsoft.ApiManagement/service/5ce2123b-3b/quotas/4aeef56f-efad-4";
17344
Requests[3040].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17345
Requests[3040].
Request
.Path = "/subscriptions/d3190b27-ce25-/resourceGroups/16c3d61d-1706-4f4/providers/Microsoft.ApiManagement/service/fdff089e-5a/reports/dcd1a41c-01";
17348
Requests[3041].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17349
Requests[3041].
Request
.Path = "/subscriptions/7dfdb3e8-fc62-/resourceGroups/7cade622-e2a2-4cd/providers/Microsoft.ApiManagement/service/4bdb177a-a4/subscriptions/8c0ab";
17352
Requests[3042].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17353
Requests[3042].
Request
.Path = "/subscriptions/49212dc6-a414-/resourceGroups/4fd03937-0807-40b/providers/Microsoft.ApiManagement/service/00228d75-fb/subscriptions/332b7";
17356
Requests[3043].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17357
Requests[3043].
Request
.Path = "/subscriptions/0e6b63f1-f1db-/resourceGroups/c96985c0-8a71-4c4/providers/Microsoft.ApiManagement/service/988173d8-f8/subscriptions/32e55";
17360
Requests[3044].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17361
Requests[3044].
Request
.Path = "/subscriptions/b61dc822-402c-/resourceGroups/6fe2d0d0-f848-468/providers/Microsoft.ApiManagement/service/05b5445d-cd/subscriptions/b001f";
17364
Requests[3045].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17365
Requests[3045].
Request
.Path = "/subscriptions/30d24d63-cac8-/resourceGroups/9018a0f3-6871-443/providers/Microsoft.ApiManagement/service/39ac14d2-67/subscriptions/7d383";
17368
Requests[3046].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17369
Requests[3046].
Request
.Path = "/subscriptions/53b87572-5bb7-/resourceGroups/d2444c6b-8fe7-499/providers/Microsoft.ApiManagement/service/85f5bdcd-59/tags/6ec8c";
17372
Requests[3047].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17373
Requests[3047].
Request
.Path = "/subscriptions/526ddc98-4b4e-/resourceGroups/afb46eae-871f-437/providers/Microsoft.ApiManagement/service/c54626cb-31/tags/6d746";
17376
Requests[3048].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17377
Requests[3048].
Request
.Path = "/subscriptions/868689e0-04f8-/resourceGroups/d9fb5e3c-8fcc-436/providers/Microsoft.ApiManagement/service/a958584e-9c/tags/1ee57";
17380
Requests[3049].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17381
Requests[3049].
Request
.Path = "/subscriptions/74113d28-6b49-/resourceGroups/e0a7b56c-bd82-48c/providers/Microsoft.ApiManagement/service/e3c1e678-16/tags/22ace";
17384
Requests[3050].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17385
Requests[3050].
Request
.Path = "/subscriptions/113a3930-d51b-/resourceGroups/34f40b9c-93b8-4cd/providers/Microsoft.ApiManagement/service/bc2930a2-4c/tags/56061";
17388
Requests[3051].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17389
Requests[3051].
Request
.Path = "/subscriptions/7a22a6b2-fba7-/resourceGroups/07d06021-a1be-4fa/providers/Microsoft.ApiManagement/service/fbd3df26-59/templates/1490474b-90f";
17392
Requests[3052].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17393
Requests[3052].
Request
.Path = "/subscriptions/142106b2-bd19-/resourceGroups/b48d4289-7803-47b/providers/Microsoft.ApiManagement/service/fc5c45fd-7f/templates/e82da1a3-86a";
17396
Requests[3053].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17397
Requests[3053].
Request
.Path = "/subscriptions/89abb97d-b392-/resourceGroups/0a4bcdae-806b-40e/providers/Microsoft.ApiManagement/service/c191a065-1b/templates/ea7872b1-5ba";
17400
Requests[3054].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17401
Requests[3054].
Request
.Path = "/subscriptions/c61a432b-32bd-/resourceGroups/503aa104-7502-43e/providers/Microsoft.ApiManagement/service/db4d66a7-85/templates/3e1cd73d-cc4";
17404
Requests[3055].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17405
Requests[3055].
Request
.Path = "/subscriptions/34ec5e97-9d49-/resourceGroups/4315de35-8203-4d3/providers/Microsoft.ApiManagement/service/4b328510-2f/templates/45fff909-317";
17408
Requests[3056].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17409
Requests[3056].
Request
.Path = "/subscriptions/9ef00301-7900-/resourceGroups/481dc838-3216-463/providers/Microsoft.ApiManagement/service/de510650-76/tenant/7c2383df-d";
17412
Requests[3057].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17413
Requests[3057].
Request
.Path = "/subscriptions/27b48a68-af45-/resourceGroups/f27bd94b-98cb-4e9/providers/Microsoft.ApiManagement/service/76736659-7f/tenant/eb1071bb-2";
17416
Requests[3058].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17417
Requests[3058].
Request
.Path = "/subscriptions/d2655b8d-af7d-/resourceGroups/c64109c3-6e09-402/providers/Microsoft.ApiManagement/service/83f23fd7-f3/users/dcf1b";
17420
Requests[3059].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17421
Requests[3059].
Request
.Path = "/subscriptions/5ac7c366-b196-/resourceGroups/5dad4c87-0076-4d6/providers/Microsoft.ApiManagement/service/48870894-84/users/ae4d5";
17424
Requests[3060].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
17425
Requests[3060].
Request
.Path = "/subscriptions/02b665f4-043f-/resourceGroups/ac4f4432-9318-46d/providers/Microsoft.ApiManagement/service/a5e00d7d-4f/users/796ef";
17428
Requests[3061].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17429
Requests[3061].
Request
.Path = "/subscriptions/4c69db2a-6544-/resourceGroups/66f7b926-1af3-40d/providers/Microsoft.ApiManagement/service/7906d1b4-37/users/7ee78";
17432
Requests[3062].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17433
Requests[3062].
Request
.Path = "/subscriptions/1fb66107-105e-/resourceGroups/badfa65f-a39e-44d/providers/Microsoft.ApiManagement/service/b97d5a82-e2/users/4a922";
17436
Requests[3063].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17437
Requests[3063].
Request
.Path = "/subscriptions/8c0d13b7-c022-/resourceGroups/57f8946f-ceba-48b/providers/Microsoft.Automation/automationAccounts/fe2fa66e-9fe9-4698-aa/certificates/ed86f1eb-8d2b-4";
17440
Requests[3064].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17441
Requests[3064].
Request
.Path = "/subscriptions/8152a45d-a250-/resourceGroups/63910a64-cb4b-4a6/providers/Microsoft.Automation/automationAccounts/3ecfedb6-054a-43b5-88/certificates/9bcb4420-8a76-4";
17444
Requests[3065].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17445
Requests[3065].
Request
.Path = "/subscriptions/73a5335f-8199-/resourceGroups/301d2518-5376-441/providers/Microsoft.Automation/automationAccounts/a63f6562-a4d8-4364-91/certificates/b2767ea5-7702-4";
17448
Requests[3066].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17449
Requests[3066].
Request
.Path = "/subscriptions/02d8cd9f-24f0-/resourceGroups/da387c13-f6de-4ed/providers/Microsoft.Automation/automationAccounts/ab0fa6dc-15f6-42d3-8b/certificates/f2a4b410-f1ac-4";
17452
Requests[3067].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17453
Requests[3067].
Request
.Path = "/subscriptions/68e89e34-fb45-/resourceGroups/172577b8-9e00-415/providers/Microsoft.Automation/automationAccounts/642efcd3-9e3c-4425-8c/compilationjobs/270bd442-1947-45df";
17456
Requests[3068].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17457
Requests[3068].
Request
.Path = "/subscriptions/c59bfdc0-ebba-/resourceGroups/f1609978-7b69-47f/providers/Microsoft.Automation/automationAccounts/acffc8a2-ab80-4acc-9c/compilationjobs/2c8717b3-0ea1-4d99";
17460
Requests[3069].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17461
Requests[3069].
Request
.Path = "/subscriptions/2cb06ebe-58c5-/resourceGroups/cb8af96c-5981-444/providers/Microsoft.Automation/automationAccounts/b99af91d-ddc9-4320-b0/configurations/5db6a334-ab69-4f6";
17464
Requests[3070].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17465
Requests[3070].
Request
.Path = "/subscriptions/3b8888e0-8e6f-/resourceGroups/0ed30bcc-e5fa-496/providers/Microsoft.Automation/automationAccounts/4f536c8c-4ad8-4f52-96/configurations/0de0ae69-9d76-4e3";
17468
Requests[3071].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17469
Requests[3071].
Request
.Path = "/subscriptions/681f90b4-0f8f-/resourceGroups/8c6108f5-c8ce-4ed/providers/Microsoft.Automation/automationAccounts/aa5e8e6b-f004-45f5-8a/configurations/75ba48a3-41ee-44f";
17472
Requests[3072].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17473
Requests[3072].
Request
.Path = "/subscriptions/d51c0a84-19e2-/resourceGroups/9cb3373b-4b89-4cd/providers/Microsoft.Automation/automationAccounts/1d5eb55b-1162-4e41-8f/configurations/f5a6a3f8-bf32-4a6";
17476
Requests[3073].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17477
Requests[3073].
Request
.Path = "/subscriptions/8e9c65da-b94c-/resourceGroups/278242b7-b858-4b6/providers/Microsoft.Automation/automationAccounts/4c6dbcb9-bb7e-4407-8f/connections/b37a7756-7679-";
17480
Requests[3074].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17481
Requests[3074].
Request
.Path = "/subscriptions/9cddf19b-ce2e-/resourceGroups/c0e918ac-33fe-4fd/providers/Microsoft.Automation/automationAccounts/d4a7c01f-0e1f-485e-92/connections/9f422a41-8812-";
17484
Requests[3075].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17485
Requests[3075].
Request
.Path = "/subscriptions/3640a0ec-ee81-/resourceGroups/6ffc2f76-05af-4bc/providers/Microsoft.Automation/automationAccounts/e0700816-e65c-4b06-a4/connections/5d54bdaf-2f98-";
17488
Requests[3076].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17489
Requests[3076].
Request
.Path = "/subscriptions/f2d986eb-98ef-/resourceGroups/136bcbdf-ff5e-496/providers/Microsoft.Automation/automationAccounts/a9e96bb8-f355-4ee4-ac/connections/bec749aa-4007-";
17492
Requests[3077].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17493
Requests[3077].
Request
.Path = "/subscriptions/ef4b1150-8f67-/resourceGroups/a3a1c5a0-85de-467/providers/Microsoft.Automation/automationAccounts/44dc038a-b6df-410b-ab/connectionTypes/b869a637-655c-42b8";
17496
Requests[3078].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17497
Requests[3078].
Request
.Path = "/subscriptions/2830d4b5-43c7-/resourceGroups/1436189b-9622-4a8/providers/Microsoft.Automation/automationAccounts/a6cb4619-b8ff-4dd8-a4/connectionTypes/ab92c304-52a6-457a";
17500
Requests[3079].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17501
Requests[3079].
Request
.Path = "/subscriptions/52945d57-79af-/resourceGroups/57f823d1-8103-446/providers/Microsoft.Automation/automationAccounts/8937837c-fc70-4391-bf/connectionTypes/b5e631c2-868d-496e";
17504
Requests[3080].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17505
Requests[3080].
Request
.Path = "/subscriptions/17dc841a-be8c-/resourceGroups/04b78a0d-122a-454/providers/Microsoft.Automation/automationAccounts/fda6fe88-1e3b-46eb-94/credentials/37f0b4bf-ed3a-";
17508
Requests[3081].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17509
Requests[3081].
Request
.Path = "/subscriptions/5db38561-9ed9-/resourceGroups/73c5ac4e-0bcd-4b5/providers/Microsoft.Automation/automationAccounts/03827224-6d02-4eb2-b4/credentials/2fbd5336-d28b-";
17512
Requests[3082].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17513
Requests[3082].
Request
.Path = "/subscriptions/2e6c5512-45a5-/resourceGroups/8a1d85fa-2839-4cc/providers/Microsoft.Automation/automationAccounts/22efd9c6-2727-4ac3-97/credentials/acc194d5-d1fd-";
17516
Requests[3083].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17517
Requests[3083].
Request
.Path = "/subscriptions/10108e3c-4785-/resourceGroups/0d83c041-f8ae-4e8/providers/Microsoft.Automation/automationAccounts/27e82ebf-3acd-4b5b-a5/credentials/23b4db2a-c04e-";
17520
Requests[3084].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17521
Requests[3084].
Request
.Path = "/subscriptions/5e93d8d0-5990-/resourceGroups/1eeacc7b-13f7-457/providers/Microsoft.Automation/automationAccounts/71ed6cab-c47f-4158-85/hybridRunbookWorkerGroups/4ee5a92f-d8d6-47b5-a073-c8bb";
17524
Requests[3085].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17525
Requests[3085].
Request
.Path = "/subscriptions/511fccf2-6fdf-/resourceGroups/a36015fc-d5eb-4e2/providers/Microsoft.Automation/automationAccounts/bd7f0991-d81f-4a22-85/hybridRunbookWorkerGroups/10e96e01-810f-4818-8e6c-5494";
17528
Requests[3086].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17529
Requests[3086].
Request
.Path = "/subscriptions/6bb121be-1e9d-/resourceGroups/454bfbde-9643-44d/providers/Microsoft.Automation/automationAccounts/0fd59c6e-5552-47c0-96/hybridRunbookWorkerGroups/84a96805-e304-4620-a42f-6686";
17532
Requests[3087].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17533
Requests[3087].
Request
.Path = "/subscriptions/41e9b8ca-36a5-/resourceGroups/3c8e43f4-7e38-468/providers/Microsoft.Automation/automationAccounts/4814cf86-556a-4d15-af/jobs/1213d";
17536
Requests[3088].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17537
Requests[3088].
Request
.Path = "/subscriptions/c6704bda-0e46-/resourceGroups/5b7ddbd5-6860-4f1/providers/Microsoft.Automation/automationAccounts/eb5b7646-0f8c-4e2e-8a/jobs/abf5e";
17540
Requests[3089].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17541
Requests[3089].
Request
.Path = "/subscriptions/2fe2afd1-21ed-/resourceGroups/b0e436e0-017d-411/providers/Microsoft.Automation/automationAccounts/f2896e66-f301-424d-93/jobSchedules/1299bd09-3b1d";
17544
Requests[3090].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17545
Requests[3090].
Request
.Path = "/subscriptions/7eed7f20-7fea-/resourceGroups/6631fc2d-23d5-4a4/providers/Microsoft.Automation/automationAccounts/f4c2db95-5518-47d3-a3/jobSchedules/54fc8eec-9b54";
17548
Requests[3091].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17549
Requests[3091].
Request
.Path = "/subscriptions/ec97f276-334a-/resourceGroups/077acbe0-f388-456/providers/Microsoft.Automation/automationAccounts/4a7a4404-5b7f-44a6-a6/jobSchedules/6dcd12c4-a6c2";
17552
Requests[3092].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17553
Requests[3092].
Request
.Path = "/subscriptions/04df760b-ed88-/resourceGroups/f23b592e-f395-459/providers/Microsoft.Automation/automationAccounts/87043ac9-6085-4758-97/modules/215ed900-4";
17556
Requests[3093].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17557
Requests[3093].
Request
.Path = "/subscriptions/dc57c9d8-15f1-/resourceGroups/a26b4081-5618-4fa/providers/Microsoft.Automation/automationAccounts/3e652b9e-75a7-4c91-93/modules/fb4857dc-5";
17560
Requests[3094].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17561
Requests[3094].
Request
.Path = "/subscriptions/cc655fc2-dc05-/resourceGroups/714a77de-22a7-4ec/providers/Microsoft.Automation/automationAccounts/7ea09f67-6aa3-4491-99/modules/3aad3058-f";
17564
Requests[3095].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17565
Requests[3095].
Request
.Path = "/subscriptions/2673d7ca-7a99-/resourceGroups/73d718a5-505b-4dc/providers/Microsoft.Automation/automationAccounts/ef10561e-54d4-4d90-a3/modules/d61bb2f9-5";
17568
Requests[3096].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17569
Requests[3096].
Request
.Path = "/subscriptions/12d46d7b-8338-/resourceGroups/bb435d9e-7c02-46a/providers/Microsoft.Automation/automationAccounts/ef7e2063-4aae-4995-8c/nodeConfigurations/e71abf42-1bc1-4647-b7";
17572
Requests[3097].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17573
Requests[3097].
Request
.Path = "/subscriptions/956c0d3a-5265-/resourceGroups/4356ab5b-bf1d-46d/providers/Microsoft.Automation/automationAccounts/bbec7674-9d88-4de8-9b/nodeConfigurations/43502ffb-2f57-4e14-84";
17576
Requests[3098].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17577
Requests[3098].
Request
.Path = "/subscriptions/c85ff2e1-60b6-/resourceGroups/8b20acac-a692-4e2/providers/Microsoft.Automation/automationAccounts/87ab0df6-4245-478c-88/nodeConfigurations/4006cbae-0af2-4c17-b9";
17580
Requests[3099].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17581
Requests[3099].
Request
.Path = "/subscriptions/918b34b2-f322-/resourceGroups/27831ba5-0a31-464/providers/Microsoft.Automation/automationAccounts/d2afd480-50f9-4d0f-a9/nodecounts/f6dd0fdc-";
17584
Requests[3100].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17585
Requests[3100].
Request
.Path = "/subscriptions/1f50a44e-5da9-/resourceGroups/3254252c-8562-4d8/providers/Microsoft.Automation/automationAccounts/61331d79-a3c2-4371-8f/nodes/865083";
17588
Requests[3101].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17589
Requests[3101].
Request
.Path = "/subscriptions/f759d3bd-0cca-/resourceGroups/4af3e660-fb99-4a5/providers/Microsoft.Automation/automationAccounts/6f489ce6-5325-4e95-b1/nodes/3966a3";
17592
Requests[3102].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17593
Requests[3102].
Request
.Path = "/subscriptions/407b70e7-0f10-/resourceGroups/0673cb13-3e62-431/providers/Microsoft.Automation/automationAccounts/386eb18b-b83c-4ccf-85/nodes/449ecb";
17596
Requests[3103].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17597
Requests[3103].
Request
.Path = "/subscriptions/2e36437c-03cc-/resourceGroups/8934cfd5-d833-477/providers/Microsoft.Automation/automationAccounts/2b6fc51a-6ea6-402b-93/runbooks/0b567141-c5";
17600
Requests[3104].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17601
Requests[3104].
Request
.Path = "/subscriptions/e8870771-5980-/resourceGroups/32321226-d569-4f1/providers/Microsoft.Automation/automationAccounts/96044a77-adf7-41b4-be/runbooks/a749d577-c4";
17604
Requests[3105].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17605
Requests[3105].
Request
.Path = "/subscriptions/768220c0-f516-/resourceGroups/0d82757a-214e-422/providers/Microsoft.Automation/automationAccounts/934dd07b-7829-4353-b7/runbooks/d8a2867d-a4";
17608
Requests[3106].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17609
Requests[3106].
Request
.Path = "/subscriptions/e92e3ad5-e481-/resourceGroups/b75cf3c9-9a84-438/providers/Microsoft.Automation/automationAccounts/e1821107-2d99-4cfc-91/runbooks/7542c1b2-c8";
17612
Requests[3107].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17613
Requests[3107].
Request
.Path = "/subscriptions/662c8aaa-c711-/resourceGroups/f4f962fc-1b5c-454/providers/Microsoft.Automation/automationAccounts/3cee5970-1827-43ec-a8/schedules/ce903436-397";
17616
Requests[3108].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17617
Requests[3108].
Request
.Path = "/subscriptions/5f7ba516-ff6e-/resourceGroups/362ced5e-60c9-4e0/providers/Microsoft.Automation/automationAccounts/37390b6b-ac36-446a-a3/schedules/81db88eb-ed9";
17620
Requests[3109].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17621
Requests[3109].
Request
.Path = "/subscriptions/d5de57d3-7e31-/resourceGroups/ea67ef7c-5448-4ec/providers/Microsoft.Automation/automationAccounts/9c849fbf-798c-4a71-98/schedules/490d4f7d-b55";
17624
Requests[3110].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17625
Requests[3110].
Request
.Path = "/subscriptions/672e2a41-36cc-/resourceGroups/7886342b-6483-441/providers/Microsoft.Automation/automationAccounts/bce3f555-db80-48f8-a2/schedules/dec07a3e-5a5";
17628
Requests[3111].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17629
Requests[3111].
Request
.Path = "/subscriptions/d1c46c03-8e59-/resourceGroups/9066218d-e095-4d9/providers/Microsoft.Automation/automationAccounts/a2d1c680-6b91-4b71-9f/softwareUpdateConfigurationMachineRuns/5e1e04fe-b89a-4de3-9bb2-ddcd3add11c1";
17632
Requests[3112].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17633
Requests[3112].
Request
.Path = "/subscriptions/b2ff3236-a54d-/resourceGroups/9a35ad8f-b314-400/providers/Microsoft.Automation/automationAccounts/a73381d5-5657-4c70-89/softwareUpdateConfigurationRuns/5feccf4c-4e47-4dca-8f92-a3cd4bfd";
17636
Requests[3113].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17637
Requests[3113].
Request
.Path = "/subscriptions/d2576d23-7684-/resourceGroups/9b70d008-4443-49c/providers/Microsoft.Automation/automationAccounts/bf124235-f4ad-429d-85/softwareUpdateConfigurations/0dbcb7a0-5ee1-4396-90ed-7c0c53e";
17640
Requests[3114].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17641
Requests[3114].
Request
.Path = "/subscriptions/e371d4ed-0407-/resourceGroups/f2ac3219-413e-4a0/providers/Microsoft.Automation/automationAccounts/906fe21a-2b81-45e8-a8/softwareUpdateConfigurations/dc07f766-504b-455e-87ef-2a10e21";
17644
Requests[3115].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17645
Requests[3115].
Request
.Path = "/subscriptions/78008973-60a6-/resourceGroups/8070be3c-6e09-4e7/providers/Microsoft.Automation/automationAccounts/004670d8-e030-41d7-8c/softwareUpdateConfigurations/5b9e8b36-7704-46ec-ae0e-81f2132";
17648
Requests[3116].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17649
Requests[3116].
Request
.Path = "/subscriptions/68c44ac9-e2cb-/resourceGroups/b52aed6b-a24e-446/providers/Microsoft.Automation/automationAccounts/2b005435-72e8-443d-93/sourceControls/f46e6fdc-80e8-409";
17652
Requests[3117].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17653
Requests[3117].
Request
.Path = "/subscriptions/7b7bae8a-86a0-/resourceGroups/42f361e9-deac-490/providers/Microsoft.Automation/automationAccounts/3d645f24-27af-471b-89/sourceControls/3b886788-93ba-451";
17656
Requests[3118].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17657
Requests[3118].
Request
.Path = "/subscriptions/a386974c-6868-/resourceGroups/524a763d-52ea-4f3/providers/Microsoft.Automation/automationAccounts/855a8572-9497-4b40-be/sourceControls/3d9ce267-b655-459";
17660
Requests[3119].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17661
Requests[3119].
Request
.Path = "/subscriptions/3e07c5f7-0df8-/resourceGroups/1a8cae5c-8012-47f/providers/Microsoft.Automation/automationAccounts/80e79926-8e2b-404b-a3/sourceControls/38269635-94a1-429";
17664
Requests[3120].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17665
Requests[3120].
Request
.Path = "/subscriptions/0abcf6e8-b457-/resourceGroups/075e721d-a352-4da/providers/Microsoft.Automation/automationAccounts/383dd9a9-bd1f-4ca3-8d/variables/8c887415-3f0";
17668
Requests[3121].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17669
Requests[3121].
Request
.Path = "/subscriptions/289a4fde-dc38-/resourceGroups/32cf5c2c-ed3b-4d2/providers/Microsoft.Automation/automationAccounts/0d978534-1ae6-4d96-a0/variables/53fbe406-6ca";
17672
Requests[3122].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17673
Requests[3122].
Request
.Path = "/subscriptions/a9bfa23c-7b5a-/resourceGroups/d06b9211-74b8-4a2/providers/Microsoft.Automation/automationAccounts/8c063c48-8084-4df8-83/variables/27474804-1ef";
17676
Requests[3123].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17677
Requests[3123].
Request
.Path = "/subscriptions/56a24df0-8df6-/resourceGroups/cc4b5169-bc8c-450/providers/Microsoft.Automation/automationAccounts/7c012562-768d-41e1-bc/variables/868e2aab-fdf";
17680
Requests[3124].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17681
Requests[3124].
Request
.Path = "/subscriptions/6f637cd0-572b-/resourceGroups/3338dabd-4169-42c/providers/Microsoft.Automation/automationAccounts/67b69c77-f5b3-44f8-ad/watchers/51988d9d-e0";
17684
Requests[3125].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17685
Requests[3125].
Request
.Path = "/subscriptions/4d7b60ee-dc5f-/resourceGroups/b074e6cc-c7a1-4a8/providers/Microsoft.Automation/automationAccounts/bf295cbd-e59f-4469-ac/watchers/14a75a19-a4";
17688
Requests[3126].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17689
Requests[3126].
Request
.Path = "/subscriptions/5e178611-abff-/resourceGroups/4ae26e45-bead-4c9/providers/Microsoft.Automation/automationAccounts/b430fb95-a3d7-417b-86/watchers/bdf42300-fd";
17692
Requests[3127].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17693
Requests[3127].
Request
.Path = "/subscriptions/c3bef65b-b8dd-/resourceGroups/53f40dab-c574-402/providers/Microsoft.Automation/automationAccounts/4a1d8ee6-15d8-43e4-96/watchers/0e006427-9c";
17696
Requests[3128].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17697
Requests[3128].
Request
.Path = "/subscriptions/24b3b49b-2ff6-/resourceGroups/948e4c2e-e339-422/providers/Microsoft.Automation/automationAccounts/a73c7828-bff6-46cf-ae/webhooks/5de7698b-a4";
17700
Requests[3129].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17701
Requests[3129].
Request
.Path = "/subscriptions/2bb733b9-1757-/resourceGroups/b04469d0-99fa-46f/providers/Microsoft.Automation/automationAccounts/ed6f8963-eee8-47f9-b0/webhooks/552a63bb-2d";
17704
Requests[3130].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17705
Requests[3130].
Request
.Path = "/subscriptions/51d79b46-ebfb-/resourceGroups/5d16214e-dc82-46a/providers/Microsoft.Automation/automationAccounts/efd88a57-e14f-494d-85/webhooks/821938d5-07";
17708
Requests[3131].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17709
Requests[3131].
Request
.Path = "/subscriptions/1795ab1e-8ce3-/resourceGroups/1bbc24f7-baeb-452/providers/Microsoft.Automation/automationAccounts/430b675e-2ad6-4366-84/webhooks/6bf54bd8-ff";
17712
Requests[3132].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17713
Requests[3132].
Request
.Path = "/subscriptions/0c702b30-1260-/resourcegroups/b47820a3-dd7e-498/providers/Microsoft.Backup.Admin/backupLocations/5928b4e9/backups/407a9c";
17716
Requests[3133].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17717
Requests[3133].
Request
.Path = "/subscriptions/182c3197-5f8a-/resourceGroups/44d4f7cb-7f8b-43b/providers/Microsoft.Batch/batchAccounts/3ce6b72c-17/applications/0c7e9027-6837";
17720
Requests[3134].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17721
Requests[3134].
Request
.Path = "/subscriptions/94021efb-5700-/resourceGroups/cf0c8e66-61eb-417/providers/Microsoft.Batch/batchAccounts/10c0ece2-a3/applications/c0202748-668e";
17724
Requests[3135].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17725
Requests[3135].
Request
.Path = "/subscriptions/337b6e82-f2ab-/resourceGroups/408a2b37-1654-45d/providers/Microsoft.Batch/batchAccounts/e6465821-49/applications/9f9876e4-0530";
17728
Requests[3136].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17729
Requests[3136].
Request
.Path = "/subscriptions/00bd06d4-2397-/resourceGroups/befe7653-79be-49b/providers/Microsoft.Batch/batchAccounts/37fcb2f1-84/applications/b74d56f5-fae8";
17732
Requests[3137].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17733
Requests[3137].
Request
.Path = "/subscriptions/5544659b-7bdd-/resourceGroups/66002cc3-632d-4df/providers/Microsoft.Batch/batchAccounts/8857ce97-57/certificates/ed6e3129-a553-4";
17736
Requests[3138].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17737
Requests[3138].
Request
.Path = "/subscriptions/5ec64fcc-8707-/resourceGroups/e2a01c92-cb99-41b/providers/Microsoft.Batch/batchAccounts/5d34bd8d-ed/certificates/8f3b3767-1381-4";
17740
Requests[3139].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17741
Requests[3139].
Request
.Path = "/subscriptions/b599e7f4-52e4-/resourceGroups/7bfce9e0-f565-481/providers/Microsoft.Batch/batchAccounts/66a2a687-a9/certificates/54962a39-6720-4";
17744
Requests[3140].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17745
Requests[3140].
Request
.Path = "/subscriptions/9518a45c-1d83-/resourceGroups/5d02fde2-c8f0-475/providers/Microsoft.Batch/batchAccounts/aa08d062-d5/certificates/5255853e-d755-4";
17748
Requests[3141].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17749
Requests[3141].
Request
.Path = "/subscriptions/19a52de0-ccda-/resourceGroups/6e3ea7c2-240b-4b5/providers/Microsoft.Batch/batchAccounts/a0b51cef-59/pools/56708831";
17752
Requests[3142].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17753
Requests[3142].
Request
.Path = "/subscriptions/d0fe75be-e804-/resourceGroups/a6ae43ab-d210-4c9/providers/Microsoft.Batch/batchAccounts/41032ccf-f3/pools/2f23003d";
17756
Requests[3143].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17757
Requests[3143].
Request
.Path = "/subscriptions/ca128058-5c82-/resourceGroups/2e227078-6c63-4be/providers/Microsoft.Batch/batchAccounts/da66edfd-14/pools/2b5ba1c6";
17760
Requests[3144].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17761
Requests[3144].
Request
.Path = "/subscriptions/49ba0e2a-44c0-/resourceGroups/8cdaf807-9b83-488/providers/Microsoft.Batch/batchAccounts/e2ff9288-c6/pools/dacbad26";
17764
Requests[3145].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17765
Requests[3145].
Request
.Path = "/subscriptions/f392b1b6-9634-/resourceGroups/9ae9abbc-21fc-445/providers/Microsoft.BatchAI/workspaces/84244b11-d893/clusters/826d2724-8b";
17768
Requests[3146].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17769
Requests[3146].
Request
.Path = "/subscriptions/c0e1d9a8-798e-/resourceGroups/9d4f9e4a-3872-455/providers/Microsoft.BatchAI/workspaces/fc41be3f-aa03/clusters/4fef7be1-e2";
17772
Requests[3147].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17773
Requests[3147].
Request
.Path = "/subscriptions/0e518bda-21a0-/resourceGroups/6e8c8094-c8d2-436/providers/Microsoft.BatchAI/workspaces/e8dc0e88-3452/clusters/9dc0efe9-3d";
17776
Requests[3148].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17777
Requests[3148].
Request
.Path = "/subscriptions/905e244e-3b85-/resourceGroups/4ce38365-5ecb-457/providers/Microsoft.BatchAI/workspaces/82ffdc24-24d3/clusters/344de303-3a";
17780
Requests[3149].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17781
Requests[3149].
Request
.Path = "/subscriptions/aa1a09f4-4b5d-/resourceGroups/27f7d1cb-4c98-4f3/providers/Microsoft.BatchAI/workspaces/c4479347-5f53/experiments/a54f8402-90a0-";
17784
Requests[3150].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17785
Requests[3150].
Request
.Path = "/subscriptions/c9b6fece-b87d-/resourceGroups/b6955b0e-ece6-439/providers/Microsoft.BatchAI/workspaces/5dd5949b-683f/experiments/32c82ae9-bf1a-";
17788
Requests[3151].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17789
Requests[3151].
Request
.Path = "/subscriptions/7f4254ed-5f9e-/resourceGroups/29b26f38-2267-493/providers/Microsoft.BatchAI/workspaces/592378ae-7ba0/experiments/f272df06-6350-";
17792
Requests[3152].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17793
Requests[3152].
Request
.Path = "/subscriptions/b43349f3-c1f0-/resourceGroups/ed7ea0f7-2658-435/providers/Microsoft.BatchAI/workspaces/6255a4a0-c12a/fileServers/45032f20-960d-";
17796
Requests[3153].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17797
Requests[3153].
Request
.Path = "/subscriptions/7ba9320e-7901-/resourceGroups/68824242-f406-4e9/providers/Microsoft.BatchAI/workspaces/a9445a32-4d58/fileServers/ed3b6f6c-475e-";
17800
Requests[3154].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17801
Requests[3154].
Request
.Path = "/subscriptions/43143722-cc6f-/resourceGroups/79d8c8c6-e645-405/providers/Microsoft.BatchAI/workspaces/ee157c8b-1f88/fileServers/11654561-88a0-";
17804
Requests[3155].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17805
Requests[3155].
Request
.Path = "/subscriptions/eda11e7a-95e0-/resourceGroups/805de5cb-29cc-406/providers/Microsoft.BotService/botServices/4bde8877-62f/channels/9c2cddaa-2d";
17808
Requests[3156].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17809
Requests[3156].
Request
.Path = "/subscriptions/243a78b9-0529-/resourceGroups/48f7ad1b-01c3-48e/providers/Microsoft.BotService/botServices/76973058-261/channels/f273de4a-10";
17812
Requests[3157].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17813
Requests[3157].
Request
.Path = "/subscriptions/e4ba7b2c-9232-/resourceGroups/413c4f28-1c9a-491/providers/Microsoft.BotService/botServices/3bb4dccf-735/channels/1d736b2e-47";
17816
Requests[3158].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17817
Requests[3158].
Request
.Path = "/subscriptions/0b9abf05-d88b-/resourceGroups/c37b5020-88d0-4b3/providers/Microsoft.BotService/botServices/faaef165-eb2/channels/81b8cf74-b8";
17820
Requests[3159].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17821
Requests[3159].
Request
.Path = "/subscriptions/0db78f26-17ea-/resourceGroups/23ea66a1-6b8f-4c0/providers/Microsoft.BotService/botServices/ebd13dd2-571/Connections/57a8ab0b-31bc-";
17824
Requests[3160].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17825
Requests[3160].
Request
.Path = "/subscriptions/86aeacf9-16ed-/resourceGroups/4fcacb02-ed03-425/providers/Microsoft.BotService/botServices/f258b910-35e/Connections/8ec527de-393e-";
17828
Requests[3161].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17829
Requests[3161].
Request
.Path = "/subscriptions/52ddb069-05a4-/resourceGroups/021c776f-6d5a-4fc/providers/Microsoft.BotService/botServices/a9ee7c78-3d7/Connections/7604286a-7504-";
17832
Requests[3162].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17833
Requests[3162].
Request
.Path = "/subscriptions/8d30d9de-bf51-/resourceGroups/45678a68-342f-492/providers/Microsoft.BotService/botServices/a7ffce5c-13d/Connections/18fff1d8-24b4-";
17836
Requests[3163].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17837
Requests[3163].
Request
.Path = "/subscriptions/73d1bdf2-32c1-/resourceGroups/fea486d7-9f82-4cc/providers/Microsoft.Cache/Redis/248a931d-/firewallRules/80557267";
17840
Requests[3164].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17841
Requests[3164].
Request
.Path = "/subscriptions/cc8bfdcd-a31d-/resourceGroups/2967fa1e-0b5f-455/providers/Microsoft.Cache/Redis/7fe8a5a2-/firewallRules/35d67bfa";
17844
Requests[3165].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17845
Requests[3165].
Request
.Path = "/subscriptions/a5a823ba-8b94-/resourceGroups/c72989fd-9ad4-452/providers/Microsoft.Cache/Redis/07c99c61-/firewallRules/2e90d015";
17848
Requests[3166].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17849
Requests[3166].
Request
.Path = "/subscriptions/fb978744-9160-/resourceGroups/e81bc747-3fb2-472/providers/Microsoft.Cache/Redis/6901f/linkedServers/e878e1d9-f53a-48";
17852
Requests[3167].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17853
Requests[3167].
Request
.Path = "/subscriptions/1ff36b06-da5d-/resourceGroups/96267d27-ad51-4a0/providers/Microsoft.Cache/Redis/bebe7/linkedServers/f4befbe3-673f-4f";
17856
Requests[3168].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17857
Requests[3168].
Request
.Path = "/subscriptions/8b5a80c8-a8d3-/resourceGroups/6ff1ed1d-dcc6-426/providers/Microsoft.Cache/Redis/fc350/linkedServers/dea73de3-44bf-4a";
17860
Requests[3169].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17861
Requests[3169].
Request
.Path = "/subscriptions/0802c7ac-9be7-/resourceGroups/e41edd80-d0da-451/providers/Microsoft.Cache/Redis/13ccb/patchSchedules/88196c0";
17864
Requests[3170].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17865
Requests[3170].
Request
.Path = "/subscriptions/b56dfb0b-bbd8-/resourceGroups/5b05d06c-f4a8-444/providers/Microsoft.Cache/Redis/729f4/patchSchedules/ee31f71";
17868
Requests[3171].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17869
Requests[3171].
Request
.Path = "/subscriptions/805fd567-9821-/resourceGroups/9f27ae7c-7990-4e9/providers/Microsoft.Cache/Redis/b3e2c/patchSchedules/7e3bed9";
17872
Requests[3172].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17873
Requests[3172].
Request
.Path = "/subscriptions/9d1b1886-5bfd-/resourceGroups/e3944ac4-fc08-44d/providers/Microsoft.Cdn/profiles/cf3bda2f-7c/endpoints/404331ce-ca1";
17876
Requests[3173].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17877
Requests[3173].
Request
.Path = "/subscriptions/29fcce9b-2483-/resourceGroups/3432ae26-a940-440/providers/Microsoft.Cdn/profiles/a7464ecf-c0/endpoints/d29895cd-767";
17880
Requests[3174].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17881
Requests[3174].
Request
.Path = "/subscriptions/cd7130e0-85ac-/resourceGroups/c82e9c6f-69cb-4cc/providers/Microsoft.Cdn/profiles/423d8826-16/endpoints/55bdb275-bb0";
17884
Requests[3175].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17885
Requests[3175].
Request
.Path = "/subscriptions/3f861e80-00f8-/resourceGroups/238285e4-a969-4da/providers/Microsoft.Cdn/profiles/7939794f-3f/endpoints/3caaf38a-e19";
17888
Requests[3176].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17889
Requests[3176].
Request
.Path = "/subscriptions/21cc8918-2658-/resourceGroups/d0a21376-3eca-40c/providers/Microsoft.CertificateRegistration/certificateOrders/44ef59ab-6775-4163-b/certificates/c9b35";
17892
Requests[3177].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17893
Requests[3177].
Request
.Path = "/subscriptions/c9e3777a-5151-/resourceGroups/8aff917b-4f51-483/providers/Microsoft.CertificateRegistration/certificateOrders/19f8c14e-bbb4-45b9-a/certificates/89d3c";
17896
Requests[3178].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17897
Requests[3178].
Request
.Path = "/subscriptions/76f19a38-734b-/resourceGroups/d0558ce3-13b6-407/providers/Microsoft.CertificateRegistration/certificateOrders/3aa9b1e0-3996-4dab-8/certificates/6472a";
17900
Requests[3179].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17901
Requests[3179].
Request
.Path = "/subscriptions/af37a1eb-775c-/resourceGroups/da9e4ca5-a08d-4ad/providers/Microsoft.CertificateRegistration/certificateOrders/64621ba0-55a0-4ade-9/certificates/1cdce";
17904
Requests[3180].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17905
Requests[3180].
Request
.Path = "/subscriptions/7a7e016e-2ca9-/resourceGroups/220c48b6-2e2c-4ec/providers/Microsoft.Compute/galleries/8f14e667-c2/images/bfed7932-bf5a-43";
17908
Requests[3181].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17909
Requests[3181].
Request
.Path = "/subscriptions/be1b9912-5a07-/resourceGroups/88e2e9e6-e802-473/providers/Microsoft.Compute/galleries/26a8513c-ef/images/d289b0d7-31c0-40";
17912
Requests[3182].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17913
Requests[3182].
Request
.Path = "/subscriptions/fbb0cafe-b0d3-/resourceGroups/3ba30256-094b-4f4/providers/Microsoft.Compute/galleries/6f840928-d2/images/4e2ddbab-0eb6-4c";
17916
Requests[3183].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17917
Requests[3183].
Request
.Path = "/subscriptions/03764a14-f598-/resourceGroups/3d976650-872a-481/providers/Microsoft.Compute/virtualMachines/ad40f6/extensions/a0fb6c66-9da4-4";
17920
Requests[3184].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17921
Requests[3184].
Request
.Path = "/subscriptions/efb69047-ec3e-/resourceGroups/b62a7d47-28a4-471/providers/Microsoft.Compute/virtualMachines/0bc0ee/extensions/2a4f2a1f-58b8-4";
17924
Requests[3185].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17925
Requests[3185].
Request
.Path = "/subscriptions/6037bbb6-ee61-/resourceGroups/10aa935a-2486-45a/providers/Microsoft.Compute/virtualMachines/e178c7/extensions/de0611bf-6edf-4";
17928
Requests[3186].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17929
Requests[3186].
Request
.Path = "/subscriptions/f048d009-6370-/resourceGroups/016834f2-f8b6-447/providers/Microsoft.Compute/virtualMachines/0ed5e7/extensions/9fe89f46-f96e-4";
17932
Requests[3187].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17933
Requests[3187].
Request
.Path = "/subscriptions/93dd4c67-0b2b-/resourceGroups/a19f2a7d-78fe-4cf/providers/Microsoft.Compute/virtualMachineScaleSets/e1cfc243-4074-/extensions/28548944-7cee-4f7";
17936
Requests[3188].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17937
Requests[3188].
Request
.Path = "/subscriptions/8d8cea01-5a2d-/resourceGroups/06539fbf-0b5e-43d/providers/Microsoft.Compute/virtualMachineScaleSets/680bd233-18ad-/extensions/bfcf6af6-28af-405";
17940
Requests[3189].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17941
Requests[3189].
Request
.Path = "/subscriptions/9890acd7-c7ce-/resourceGroups/074f366d-a539-4aa/providers/Microsoft.Compute/virtualMachineScaleSets/8b668b56-bac7-/extensions/56116377-0a7b-44d";
17944
Requests[3190].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17945
Requests[3190].
Request
.Path = "/subscriptions/344d3bcb-f300-/resourceGroups/2da790d8-2459-4d4/providers/Microsoft.Compute/virtualMachineScaleSets/9ef151d7-edbe-/virtualmachines/12d5960f-f";
17948
Requests[3191].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17949
Requests[3191].
Request
.Path = "/subscriptions/7ea2fe40-5aa0-/resourceGroups/22bf9cb1-ba50-4d0/providers/Microsoft.Compute/virtualMachineScaleSets/d340721d-9935-/virtualmachines/e77a378e-e";
17952
Requests[3192].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17953
Requests[3192].
Request
.Path = "/subscriptions/960b73d8-015e-/resourceGroups/a6420a43-dd82-436/providers/Microsoft.Compute/virtualMachineScaleSets/a20ab165-71e5-/virtualmachines/a63c4c71-e";
17956
Requests[3193].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17957
Requests[3193].
Request
.Path = "/subscriptions/a7226e52-1496-/resourceGroups/62c19e4e-d7cc-4cd/providers/Microsoft.ContainerRegistry/registries/1eab03ae-1de/builds/59fd372";
17960
Requests[3194].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17961
Requests[3194].
Request
.Path = "/subscriptions/fa853918-1f88-/resourceGroups/146a4e32-fa2d-4e7/providers/Microsoft.ContainerRegistry/registries/f6b9ec62-dea/builds/044a97f";
17964
Requests[3195].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17965
Requests[3195].
Request
.Path = "/subscriptions/3d6b22a2-21b8-/resourceGroups/48a21572-c8fd-4c6/providers/Microsoft.ContainerRegistry/registries/c3d86f2a-007/buildTasks/c1398489-9f81";
17968
Requests[3196].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17969
Requests[3196].
Request
.Path = "/subscriptions/aa1f275f-9074-/resourceGroups/013c3c94-4fd7-44f/providers/Microsoft.ContainerRegistry/registries/9441fa12-c1a/buildTasks/2f6cd4bc-c679";
17972
Requests[3197].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17973
Requests[3197].
Request
.Path = "/subscriptions/24b15599-f6f1-/resourceGroups/14f1a660-9694-4c7/providers/Microsoft.ContainerRegistry/registries/218196a7-9a2/buildTasks/a87740db-ca40";
17976
Requests[3198].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17977
Requests[3198].
Request
.Path = "/subscriptions/2b28d619-c50b-/resourceGroups/88858008-4ad3-42d/providers/Microsoft.ContainerRegistry/registries/c79b97ed-d5d/buildTasks/3c526cd6-35d2";
17980
Requests[3199].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
17981
Requests[3199].
Request
.Path = "/subscriptions/6ae0ee7f-16ea-/resourceGroups/63790ba6-9e68-40a/providers/Microsoft.ContainerRegistry/registries/922a1cee-095/replications/1d2594e1-35b7-4";
17984
Requests[3200].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
17985
Requests[3200].
Request
.Path = "/subscriptions/541e1e43-5b2a-/resourceGroups/e32a98a6-0176-480/providers/Microsoft.ContainerRegistry/registries/9ce1ee99-cc3/replications/5ade2877-739d-4";
17988
Requests[3201].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
17989
Requests[3201].
Request
.Path = "/subscriptions/1d56b556-520d-/resourceGroups/f5fdc819-8b3a-490/providers/Microsoft.ContainerRegistry/registries/77a7795b-833/replications/118a018f-d7c8-4";
17992
Requests[3202].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17993
Requests[3202].
Request
.Path = "/subscriptions/535b89b6-c1f8-/resourceGroups/9acc2c99-1e0c-4e6/providers/Microsoft.ContainerRegistry/registries/72531f5e-b7a/replications/cb066bad-d63a-4";
17996
Requests[3203].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
17997
Requests[3203].
Request
.Path = "/subscriptions/8c05b9ee-4ebb-/resourceGroups/f2e8064b-8b27-460/providers/Microsoft.ContainerRegistry/registries/9aa2356f-677/webhooks/651fefbf-72";
18000
Requests[3204].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18001
Requests[3204].
Request
.Path = "/subscriptions/bb5b6596-2e2a-/resourceGroups/6c110b04-98bb-42a/providers/Microsoft.ContainerRegistry/registries/ddd21abb-8b5/webhooks/3fa2af58-31";
18004
Requests[3205].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18005
Requests[3205].
Request
.Path = "/subscriptions/2475aeca-b7f7-/resourceGroups/2271a31f-5858-437/providers/Microsoft.ContainerRegistry/registries/cca650e6-85e/webhooks/786530eb-8d";
18008
Requests[3206].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18009
Requests[3206].
Request
.Path = "/subscriptions/df589778-fc29-/resourceGroups/511a327b-f762-43c/providers/Microsoft.ContainerRegistry/registries/610415ad-547/webhooks/21075409-81";
18012
Requests[3207].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18013
Requests[3207].
Request
.Path = "/subscriptions/ae750838-d373-/resourceGroups/6fe264da-90d5-490/providers/Microsoft.ContainerService/managedClusters/6abf4cf1-28d/accessProfiles/26566545";
18016
Requests[3208].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18017
Requests[3208].
Request
.Path = "/subscriptions/43285b2f-230c-/resourceGroups/2ce432d2-0cb8-410/providers/Microsoft.CustomerInsights/hubs/a19e032/authorizationPolicies/6e12fe51-bfe0-4f6c-ba32";
18020
Requests[3209].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18021
Requests[3209].
Request
.Path = "/subscriptions/ed3ce779-825b-/resourceGroups/acaaf706-a8a4-4c7/providers/Microsoft.CustomerInsights/hubs/27f0f6e/authorizationPolicies/ac32438a-bec4-4940-99d3";
18024
Requests[3210].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18025
Requests[3210].
Request
.Path = "/subscriptions/f502b6c0-895a-/resourceGroups/86a1f060-73ba-4b4/providers/Microsoft.CustomerInsights/hubs/5ef0e47/connectors/ccbf5713-09d6";
18028
Requests[3211].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18029
Requests[3211].
Request
.Path = "/subscriptions/a09d51d9-ed7a-/resourceGroups/1c9633ad-a6cc-429/providers/Microsoft.CustomerInsights/hubs/692d779/connectors/3505aee4-0501";
18032
Requests[3212].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18033
Requests[3212].
Request
.Path = "/subscriptions/728d0b48-94cd-/resourceGroups/d7bfb1be-af3e-468/providers/Microsoft.CustomerInsights/hubs/c2db8a6/connectors/6229c841-dbd6";
18036
Requests[3213].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18037
Requests[3213].
Request
.Path = "/subscriptions/0d37588c-ab25-/resourceGroups/9fad3206-20df-4ee/providers/Microsoft.CustomerInsights/hubs/c5488c1/interactions/9cdab60e-96b5-4";
18040
Requests[3214].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18041
Requests[3214].
Request
.Path = "/subscriptions/631ab1c9-a12f-/resourceGroups/f5594fac-1fca-4cd/providers/Microsoft.CustomerInsights/hubs/4c02c00/interactions/2e3daab9-93c3-4";
18044
Requests[3215].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18045
Requests[3215].
Request
.Path = "/subscriptions/ecb1652a-136d-/resourceGroups/cbea5a06-302f-4a9/providers/Microsoft.CustomerInsights/hubs/d54d57d/kpi/2e7837f";
18048
Requests[3216].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18049
Requests[3216].
Request
.Path = "/subscriptions/b74bf062-f9a6-/resourceGroups/9ba49593-5f77-4f8/providers/Microsoft.CustomerInsights/hubs/4d195b0/kpi/2467a0a";
18052
Requests[3217].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18053
Requests[3217].
Request
.Path = "/subscriptions/aac6856c-332a-/resourceGroups/270ab3c1-2c65-431/providers/Microsoft.CustomerInsights/hubs/9a99793/kpi/72cbd15";
18056
Requests[3218].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18057
Requests[3218].
Request
.Path = "/subscriptions/9cea25ac-ee67-/resourceGroups/6f752ffe-0415-4c3/providers/Microsoft.CustomerInsights/hubs/a9a4d20/links/1d696947";
18060
Requests[3219].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18061
Requests[3219].
Request
.Path = "/subscriptions/d30ccfe4-aae3-/resourceGroups/8bb2eb33-8ac4-453/providers/Microsoft.CustomerInsights/hubs/65eeb5e/links/675bc8ed";
18064
Requests[3220].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18065
Requests[3220].
Request
.Path = "/subscriptions/a18f06e2-d72f-/resourceGroups/566cc6b0-ad97-4b3/providers/Microsoft.CustomerInsights/hubs/730a0e7/links/83b8a981";
18068
Requests[3221].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18069
Requests[3221].
Request
.Path = "/subscriptions/630a00d7-5f02-/resourceGroups/64dcd845-323d-433/providers/Microsoft.CustomerInsights/hubs/826e654/predictions/f3fa0448-3c23-";
18072
Requests[3222].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18073
Requests[3222].
Request
.Path = "/subscriptions/60e442d6-6039-/resourceGroups/b770bbca-63e1-4a5/providers/Microsoft.CustomerInsights/hubs/1a4d429/predictions/1d7d92b7-3b5f-";
18076
Requests[3223].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18077
Requests[3223].
Request
.Path = "/subscriptions/633c0aab-dee3-/resourceGroups/35308989-ca78-431/providers/Microsoft.CustomerInsights/hubs/9b92018/predictions/c4bf97b3-df5f-";
18080
Requests[3224].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18081
Requests[3224].
Request
.Path = "/subscriptions/423c0f6c-f4c9-/resourceGroups/f91956da-aaae-406/providers/Microsoft.CustomerInsights/hubs/8360c14/profiles/5acd1728-2d";
18084
Requests[3225].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18085
Requests[3225].
Request
.Path = "/subscriptions/5abb336c-3342-/resourceGroups/36305322-024f-432/providers/Microsoft.CustomerInsights/hubs/f5c1a2d/profiles/43cad0ad-7e";
18088
Requests[3226].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18089
Requests[3226].
Request
.Path = "/subscriptions/c437ecd0-26ee-/resourceGroups/6eebf0e1-4791-44a/providers/Microsoft.CustomerInsights/hubs/45356bb/profiles/ff745938-d7";
18092
Requests[3227].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18093
Requests[3227].
Request
.Path = "/subscriptions/d645f967-54a7-/resourceGroups/5b1cf5ec-0808-419/providers/Microsoft.CustomerInsights/hubs/3ad35cb/relationshipLinks/442cdd7b-e530-446e-b";
18096
Requests[3228].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18097
Requests[3228].
Request
.Path = "/subscriptions/719cea6e-744a-/resourceGroups/540a474a-5b0e-4a3/providers/Microsoft.CustomerInsights/hubs/1584d3b/relationshipLinks/f91e0e93-2d75-4f5c-a";
18100
Requests[3229].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18101
Requests[3229].
Request
.Path = "/subscriptions/b1022f0e-9d08-/resourceGroups/f0a2b676-7ce9-4a8/providers/Microsoft.CustomerInsights/hubs/deaff13/relationshipLinks/f7c51924-c531-4b02-b";
18104
Requests[3230].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18105
Requests[3230].
Request
.Path = "/subscriptions/407ecf68-e225-/resourceGroups/dced862b-d0c9-47f/providers/Microsoft.CustomerInsights/hubs/c8e5636/relationships/a34e6c9c-48de-40";
18108
Requests[3231].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18109
Requests[3231].
Request
.Path = "/subscriptions/81b6db86-8f6b-/resourceGroups/c51cc330-5d4b-4a1/providers/Microsoft.CustomerInsights/hubs/9b7730d/relationships/c22cf1ba-9461-44";
18112
Requests[3232].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18113
Requests[3232].
Request
.Path = "/subscriptions/b2f687d2-469f-/resourceGroups/dc489880-fc2e-4c1/providers/Microsoft.CustomerInsights/hubs/b1b6ac8/relationships/8309d018-f81f-42";
18116
Requests[3233].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18117
Requests[3233].
Request
.Path = "/subscriptions/e2df591d-cb22-/resourceGroups/38d4cddf-3e8c-492/providers/Microsoft.CustomerInsights/hubs/d89dc8e/roleAssignments/02eb1d1d-5403-";
18120
Requests[3234].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18121
Requests[3234].
Request
.Path = "/subscriptions/cc447069-5e14-/resourceGroups/8a08124f-72ef-482/providers/Microsoft.CustomerInsights/hubs/43bd303/roleAssignments/6a073c63-1b9b-";
18124
Requests[3235].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18125
Requests[3235].
Request
.Path = "/subscriptions/6ad2e1df-5045-/resourceGroups/7872f776-6e47-49c/providers/Microsoft.CustomerInsights/hubs/b26ab25/roleAssignments/4924eb9a-89e6-";
18128
Requests[3236].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18129
Requests[3236].
Request
.Path = "/subscriptions/82758579-fb4c-/resourceGroups/d1baa73f-bf56-4bd/providers/Microsoft.CustomerInsights/hubs/eabed77/views/680ba089";
18132
Requests[3237].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18133
Requests[3237].
Request
.Path = "/subscriptions/0a08e262-0263-/resourceGroups/db6c7f11-2fae-42b/providers/Microsoft.CustomerInsights/hubs/b09d9af/views/451ce2a6";
18136
Requests[3238].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18137
Requests[3238].
Request
.Path = "/subscriptions/f80fa6fb-0f28-/resourceGroups/4ca8ed5a-fa7f-4b4/providers/Microsoft.CustomerInsights/hubs/d34a3b7/views/254d7eef";
18140
Requests[3239].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18141
Requests[3239].
Request
.Path = "/subscriptions/b2f486df-1e59-/resourceGroups/b540fb7b-e1c5-40d/providers/Microsoft.CustomerInsights/hubs/0a7be00/widgetTypes/f7c2bec8-87e6-";
18144
Requests[3240].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
18145
Requests[3240].
Request
.Path = "/subscriptions/994dc681-5382-/resourceGroups/9fb8492c-97ac-492/providers/Microsoft.DataFactory/factories/cdac5c31-55/cancelpipelinerun/54282";
18148
Requests[3241].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18149
Requests[3241].
Request
.Path = "/subscriptions/fabfe797-e853-/resourceGroups/5073a852-3a5f-402/providers/Microsoft.DataFactory/factories/77eefa44-aa/datasets/d30f756b-49";
18152
Requests[3242].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18153
Requests[3242].
Request
.Path = "/subscriptions/e9d0d5dd-bf42-/resourceGroups/2744bc21-88f4-4a6/providers/Microsoft.DataFactory/factories/9b334bd9-14/datasets/a4864ee8-bf";
18156
Requests[3243].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18157
Requests[3243].
Request
.Path = "/subscriptions/77b69811-6b2d-/resourceGroups/500fd66f-7e72-48c/providers/Microsoft.DataFactory/factories/5a7a0086-71/datasets/7d5984b8-2e";
18160
Requests[3244].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18161
Requests[3244].
Request
.Path = "/subscriptions/73e42e2f-5d3e-/resourceGroups/e0c6d6df-eebf-4c7/providers/Microsoft.DataFactory/factories/85f3d63e-e1/integrationRuntimes/922c68aa-beac-4dc9-935";
18164
Requests[3245].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18165
Requests[3245].
Request
.Path = "/subscriptions/d3cde6bf-83cb-/resourceGroups/f10eeae0-c9eb-4e4/providers/Microsoft.DataFactory/factories/d9f7bce6-55/integrationRuntimes/707cd55d-cefb-4439-826";
18168
Requests[3246].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18169
Requests[3246].
Request
.Path = "/subscriptions/abc4d98a-8c5b-/resourceGroups/597e0a4f-ea29-468/providers/Microsoft.DataFactory/factories/1e43a4b1-4d/integrationRuntimes/144b486a-f1f8-4991-9cc";
18172
Requests[3247].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18173
Requests[3247].
Request
.Path = "/subscriptions/1cae88e4-5b40-/resourceGroups/d28760c9-f2ed-411/providers/Microsoft.DataFactory/factories/a95c31e5-d8/integrationRuntimes/bf648da0-f34e-4d99-b68";
18176
Requests[3248].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18177
Requests[3248].
Request
.Path = "/subscriptions/0680b2f0-a1d1-/resourceGroups/301ede59-a433-4cf/providers/Microsoft.DataFactory/factories/610f4a42-de/linkedservices/c69f7b73-0a2d-40b";
18180
Requests[3249].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18181
Requests[3249].
Request
.Path = "/subscriptions/7247da51-b260-/resourceGroups/c286910d-3d77-455/providers/Microsoft.DataFactory/factories/017eb700-17/linkedservices/b9972136-10ec-43a";
18184
Requests[3250].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18185
Requests[3250].
Request
.Path = "/subscriptions/2a4404a9-8fba-/resourceGroups/5e5e35e1-f142-4b6/providers/Microsoft.DataFactory/factories/84cd810c-81/linkedservices/7541e626-3f32-494";
18188
Requests[3251].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18189
Requests[3251].
Request
.Path = "/subscriptions/1a183dae-05c9-/resourceGroups/80bd0388-3d17-4be/providers/Microsoft.DataFactory/factories/4b6b48d9-51/pipelineruns/13a67";
18192
Requests[3252].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18193
Requests[3252].
Request
.Path = "/subscriptions/6eba88a5-3634-/resourceGroups/c52c934f-56a1-4ef/providers/Microsoft.DataFactory/factories/48c9ed64-ce/pipelines/0936656e-05e";
18196
Requests[3253].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18197
Requests[3253].
Request
.Path = "/subscriptions/803835e4-6ecf-/resourceGroups/1c11bb08-d671-4e1/providers/Microsoft.DataFactory/factories/eb926941-f5/pipelines/eb53a01a-885";
18200
Requests[3254].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18201
Requests[3254].
Request
.Path = "/subscriptions/cf6b88bc-0d05-/resourceGroups/2e02eecb-4fcf-410/providers/Microsoft.DataFactory/factories/42631591-55/pipelines/990c5f6e-9b4";
18204
Requests[3255].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18205
Requests[3255].
Request
.Path = "/subscriptions/cc91571f-58b6-/resourceGroups/150b077e-3db3-4fe/providers/Microsoft.DataFactory/factories/9dbf4ead-5c/triggers/0ccc478e-64";
18208
Requests[3256].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18209
Requests[3256].
Request
.Path = "/subscriptions/8a52cfdd-450e-/resourceGroups/8ecf7188-8ec3-479/providers/Microsoft.DataFactory/factories/58966022-78/triggers/5879bd8b-32";
18212
Requests[3257].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18213
Requests[3257].
Request
.Path = "/subscriptions/1f045159-e0b9-/resourceGroups/cd584e94-c8d8-419/providers/Microsoft.DataFactory/factories/9dec22d5-a5/triggers/7f0457c2-b6";
18216
Requests[3258].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18217
Requests[3258].
Request
.Path = "/subscriptions/411d6f6c-6341-/resourceGroups/31a1dd1c-6cbe-41f/providers/Microsoft.DataLakeAnalytics/accounts/08563d30-59/computePolicies/c0615065-ce4d-4d9";
18220
Requests[3259].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18221
Requests[3259].
Request
.Path = "/subscriptions/817a8089-87fa-/resourceGroups/db4ceeda-9f3c-4b2/providers/Microsoft.DataLakeAnalytics/accounts/8af37315-83/computePolicies/b049d89c-b70e-4bc";
18224
Requests[3260].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18225
Requests[3260].
Request
.Path = "/subscriptions/84db810a-bc8e-/resourceGroups/674d6e58-7cf1-49d/providers/Microsoft.DataLakeAnalytics/accounts/8637a8b2-1d/computePolicies/a393c7b4-4871-44f";
18228
Requests[3261].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18229
Requests[3261].
Request
.Path = "/subscriptions/7002107c-00ad-/resourceGroups/8afc9ffa-d5ee-48c/providers/Microsoft.DataLakeAnalytics/accounts/c191d0c6-3d/computePolicies/e304a0ee-e721-48f";
18232
Requests[3262].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18233
Requests[3262].
Request
.Path = "/subscriptions/bf829d64-8e80-/resourceGroups/202b9c80-5885-455/providers/Microsoft.DataLakeAnalytics/accounts/f90cb834-25/dataLakeStoreAccounts/c1e3246a-8fab-4913-84e9-";
18236
Requests[3263].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18237
Requests[3263].
Request
.Path = "/subscriptions/f4c73e2a-d87d-/resourceGroups/e2870594-dcd6-4bf/providers/Microsoft.DataLakeAnalytics/accounts/2afbaee4-7e/dataLakeStoreAccounts/7e4004fa-23ca-47dd-bd70-";
18240
Requests[3264].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18241
Requests[3264].
Request
.Path = "/subscriptions/67b0cc16-3052-/resourceGroups/f3cb57d6-bfea-428/providers/Microsoft.DataLakeAnalytics/accounts/3fc6eb9e-5e/dataLakeStoreAccounts/98976533-951d-46b7-ab6b-";
18244
Requests[3265].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18245
Requests[3265].
Request
.Path = "/subscriptions/cb3676a0-4710-/resourceGroups/b8febce3-97e2-4fe/providers/Microsoft.DataLakeAnalytics/accounts/d2db00fb-4d/firewallRules/7724934e-748f-4e";
18248
Requests[3266].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18249
Requests[3266].
Request
.Path = "/subscriptions/69342a01-8890-/resourceGroups/5c7564ae-695d-481/providers/Microsoft.DataLakeAnalytics/accounts/bbb9e308-d4/firewallRules/a5c03bf6-e38a-45";
18252
Requests[3267].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18253
Requests[3267].
Request
.Path = "/subscriptions/cd1f2584-a4ac-/resourceGroups/73e78cdc-6808-49a/providers/Microsoft.DataLakeAnalytics/accounts/b7178abf-49/firewallRules/ebb111d9-6f22-4f";
18256
Requests[3268].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18257
Requests[3268].
Request
.Path = "/subscriptions/81a4ecf6-4f93-/resourceGroups/7ffd12b7-aa30-470/providers/Microsoft.DataLakeAnalytics/accounts/f3615c19-f2/firewallRules/fc2a29c1-3057-44";
18260
Requests[3269].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18261
Requests[3269].
Request
.Path = "/subscriptions/50598ea9-c772-/resourceGroups/79f9c590-56e4-4d2/providers/Microsoft.DataLakeAnalytics/accounts/7efd9227-2b/storageAccounts/cf2bd279-14c1-44cb";
18264
Requests[3270].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18265
Requests[3270].
Request
.Path = "/subscriptions/43ec7e25-0163-/resourceGroups/dd00a932-0a1d-41c/providers/Microsoft.DataLakeAnalytics/accounts/aa81e175-1a/storageAccounts/8ae783cb-3306-4fda";
18268
Requests[3271].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18269
Requests[3271].
Request
.Path = "/subscriptions/4b58835d-d298-/resourceGroups/528fb27f-1b3e-4ca/providers/Microsoft.DataLakeAnalytics/accounts/dc1d5147-e5/storageAccounts/599dfb76-a621-4090";
18272
Requests[3272].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18273
Requests[3272].
Request
.Path = "/subscriptions/a199fd8e-e5d8-/resourceGroups/84e802bd-7ee2-4fa/providers/Microsoft.DataLakeAnalytics/accounts/fa1a0711-ea/storageAccounts/8e5739ce-803e-4eee";
18276
Requests[3273].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18277
Requests[3273].
Request
.Path = "/subscriptions/eb3b18c3-23ac-/resourceGroups/14287f28-66df-44b/providers/Microsoft.DataLakeStore/accounts/9831f92f-d4/firewallRules/2a163772-db7b-48";
18280
Requests[3274].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18281
Requests[3274].
Request
.Path = "/subscriptions/55e65673-a9d9-/resourceGroups/24fb2c9e-f0c3-4f3/providers/Microsoft.DataLakeStore/accounts/9b71de5a-13/firewallRules/143148f1-f5f8-47";
18284
Requests[3275].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18285
Requests[3275].
Request
.Path = "/subscriptions/ec9cd399-745e-/resourceGroups/624aea6b-06ef-4b1/providers/Microsoft.DataLakeStore/accounts/45e659f8-5f/firewallRules/15f72e23-75bd-44";
18288
Requests[3276].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18289
Requests[3276].
Request
.Path = "/subscriptions/429dc0b4-110b-/resourceGroups/614b82b9-9cd1-414/providers/Microsoft.DataLakeStore/accounts/a4676464-bc/firewallRules/2f117444-bde0-4b";
18292
Requests[3277].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18293
Requests[3277].
Request
.Path = "/subscriptions/5e48e7d3-0f0f-/resourceGroups/bff37667-2f71-4d3/providers/Microsoft.DataLakeStore/accounts/781feac2-9c/trustedIdProviders/f36df3a9-45b7-464a-b9";
18296
Requests[3278].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18297
Requests[3278].
Request
.Path = "/subscriptions/00b5eab5-1428-/resourceGroups/f4124a76-53d7-47f/providers/Microsoft.DataLakeStore/accounts/6f0c7e9e-5d/trustedIdProviders/12bd5403-36bc-49ca-b1";
18300
Requests[3279].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18301
Requests[3279].
Request
.Path = "/subscriptions/bb31e79b-b28e-/resourceGroups/399c0847-402a-456/providers/Microsoft.DataLakeStore/accounts/e72e6d74-e1/trustedIdProviders/7890b478-b1c7-4e57-84";
18304
Requests[3280].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18305
Requests[3280].
Request
.Path = "/subscriptions/5b46f7c0-dbea-/resourceGroups/c2e8e5ee-bf7e-40a/providers/Microsoft.DataLakeStore/accounts/6136aee9-9c/trustedIdProviders/1cddef77-d8bc-4e59-a0";
18308
Requests[3281].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18309
Requests[3281].
Request
.Path = "/subscriptions/313b53e1-0823-/resourceGroups/c10575cb-df18-4cb/providers/Microsoft.DataLakeStore/accounts/541f8d20-e7/virtualNetworkRules/08471677-554a-4e6e-b31";
18312
Requests[3282].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18313
Requests[3282].
Request
.Path = "/subscriptions/afa95250-2e55-/resourceGroups/e087b069-824e-42b/providers/Microsoft.DataLakeStore/accounts/7b4f990c-e9/virtualNetworkRules/d0aa5129-bffe-4c6d-831";
18316
Requests[3283].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18317
Requests[3283].
Request
.Path = "/subscriptions/e0795dbf-57c8-/resourceGroups/983ab409-49bd-464/providers/Microsoft.DataLakeStore/accounts/6d342f25-cd/virtualNetworkRules/42d236ef-dd08-47f5-a33";
18320
Requests[3284].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18321
Requests[3284].
Request
.Path = "/subscriptions/654269d1-255b-/resourceGroups/a8998b62-05c3-46b/providers/Microsoft.DataLakeStore/accounts/eea2e218-07/virtualNetworkRules/9e44a307-d049-41b0-8c3";
18324
Requests[3285].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18325
Requests[3285].
Request
.Path = "/subscriptions/718a69f5-620d-/resourceGroups/d6a29d14-38d3-41f/providers/Microsoft.DBforMySQL/servers/ae491e9f-3/configurations/ffcb9b26-7c93-4e2";
18328
Requests[3286].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18329
Requests[3286].
Request
.Path = "/subscriptions/1699bbf6-519e-/resourceGroups/40cc6789-9c25-4f8/providers/Microsoft.DBforMySQL/servers/f72cb1c2-4/configurations/36440f9d-4d98-447";
18332
Requests[3287].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18333
Requests[3287].
Request
.Path = "/subscriptions/6affd3bb-79b1-/resourceGroups/e8777d78-2d7c-4c3/providers/Microsoft.DBforMySQL/servers/7f63058e-e/databases/33bcbedf-292";
18336
Requests[3288].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18337
Requests[3288].
Request
.Path = "/subscriptions/3baf41a5-fb01-/resourceGroups/c8b5c8bb-7229-43c/providers/Microsoft.DBforMySQL/servers/07d6e5e4-6/databases/0eb8f7ce-64c";
18340
Requests[3289].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18341
Requests[3289].
Request
.Path = "/subscriptions/1ff4a6d3-b988-/resourceGroups/8c6b1850-af80-41c/providers/Microsoft.DBforMySQL/servers/71e873df-7/databases/1b7553a4-01e";
18344
Requests[3290].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18345
Requests[3290].
Request
.Path = "/subscriptions/a039ded1-36ea-/resourceGroups/6c6d78f1-f822-4d7/providers/Microsoft.DBforMySQL/servers/5e8cbcfc-1/firewallRules/69736c05-170e-4f";
18348
Requests[3291].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18349
Requests[3291].
Request
.Path = "/subscriptions/97af86d2-5d83-/resourceGroups/709d007b-9966-42a/providers/Microsoft.DBforMySQL/servers/14f7638b-5/firewallRules/0077dcef-9fad-48";
18352
Requests[3292].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18353
Requests[3292].
Request
.Path = "/subscriptions/a4d16cfa-31da-/resourceGroups/e85f0a06-7fe2-42a/providers/Microsoft.DBforMySQL/servers/09ee6f71-c/firewallRules/f1c8e111-e651-42";
18356
Requests[3293].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18357
Requests[3293].
Request
.Path = "/subscriptions/efd21a8d-07a1-/resourceGroups/62d5b28e-f581-47b/providers/Microsoft.DBforMySQL/servers/e18e2b73-d/virtualNetworkRules/ed1acd8a-330b-47ca-813";
18360
Requests[3294].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18361
Requests[3294].
Request
.Path = "/subscriptions/1b787c19-5501-/resourceGroups/36ac7f1d-5d0a-4a6/providers/Microsoft.DBforMySQL/servers/353d7bbb-d/virtualNetworkRules/b5ae5b20-66e1-48d6-a84";
18364
Requests[3295].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18365
Requests[3295].
Request
.Path = "/subscriptions/0936ae7b-600c-/resourceGroups/6a94955e-79e2-40c/providers/Microsoft.DBforMySQL/servers/5182c700-1/virtualNetworkRules/53611ba9-7d0d-46c3-b87";
18368
Requests[3296].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18369
Requests[3296].
Request
.Path = "/subscriptions/f71d0a19-ca71-/resourceGroups/e057ee09-9016-463/providers/Microsoft.DBforPostgreSQL/servers/5e9cc08c-a/configurations/29a78beb-8455-44b";
18372
Requests[3297].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18373
Requests[3297].
Request
.Path = "/subscriptions/75d3c7e7-bd92-/resourceGroups/2d7f62b2-2323-4fd/providers/Microsoft.DBforPostgreSQL/servers/ed98d647-f/configurations/943841d1-4b76-407";
18376
Requests[3298].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18377
Requests[3298].
Request
.Path = "/subscriptions/ea405d01-4ee9-/resourceGroups/1b96c7e4-ee98-40a/providers/Microsoft.DBforPostgreSQL/servers/0bbd8067-8/databases/c8f8530f-0c4";
18380
Requests[3299].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18381
Requests[3299].
Request
.Path = "/subscriptions/c92569d1-6124-/resourceGroups/5097f821-9815-499/providers/Microsoft.DBforPostgreSQL/servers/cda18583-8/databases/e3e844da-d11";
18384
Requests[3300].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18385
Requests[3300].
Request
.Path = "/subscriptions/bee43a96-8922-/resourceGroups/fcd4c568-322b-4dd/providers/Microsoft.DBforPostgreSQL/servers/64340cd0-1/databases/ee30c61c-9fb";
18388
Requests[3301].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18389
Requests[3301].
Request
.Path = "/subscriptions/8c53848e-bc73-/resourceGroups/e7185759-a1d9-486/providers/Microsoft.DBforPostgreSQL/servers/51673f61-a/firewallRules/d1db9a27-21c6-40";
18392
Requests[3302].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18393
Requests[3302].
Request
.Path = "/subscriptions/4ce37339-874c-/resourceGroups/80ee4af7-76ef-48d/providers/Microsoft.DBforPostgreSQL/servers/b57f88d3-f/firewallRules/0b656473-ca3a-4f";
18396
Requests[3303].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18397
Requests[3303].
Request
.Path = "/subscriptions/305c0cb6-87be-/resourceGroups/daedecf8-da43-4dd/providers/Microsoft.DBforPostgreSQL/servers/a6a240ef-e/firewallRules/ebb2bb98-79f1-45";
18400
Requests[3304].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18401
Requests[3304].
Request
.Path = "/subscriptions/6a2c74df-372a-/resourceGroups/b807e5c6-d147-434/providers/Microsoft.DBforPostgreSQL/servers/837dfb82-4/securityAlertPolicies/5d9ac267-31af-48a8-b881";
18404
Requests[3305].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18405
Requests[3305].
Request
.Path = "/subscriptions/9a781fb3-1457-/resourceGroups/86ce2ef3-159c-4fa/providers/Microsoft.DBforPostgreSQL/servers/227c4de1-c/securityAlertPolicies/003e86de-ae1e-4665-826f";
18408
Requests[3306].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18409
Requests[3306].
Request
.Path = "/subscriptions/d3776290-35b6-/resourceGroups/f263f7f6-85ba-476/providers/Microsoft.DBforPostgreSQL/servers/089ca6fa-1/virtualNetworkRules/3656b8b4-9da7-4b28-949";
18412
Requests[3307].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18413
Requests[3307].
Request
.Path = "/subscriptions/835e542a-ab7f-/resourceGroups/6968a590-45c3-4b8/providers/Microsoft.DBforPostgreSQL/servers/0ad015d9-2/virtualNetworkRules/28c68bf3-a2e7-4fcc-9c3";
18416
Requests[3308].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18417
Requests[3308].
Request
.Path = "/subscriptions/9a66e23d-c66a-/resourceGroups/3cc50aa3-1723-4b3/providers/Microsoft.DBforPostgreSQL/servers/6c0dad0d-d/virtualNetworkRules/05dc9c49-e336-4bd6-800";
18420
Requests[3309].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18421
Requests[3309].
Request
.Path = "/subscriptions/19864397-1c3e-/resourceGroups/ef721d97-e854-441/providers/Microsoft.Devices/IotHubs/8cc57d86-f02/certificates/7a5eb507-3b62-4";
18424
Requests[3310].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18425
Requests[3310].
Request
.Path = "/subscriptions/9686d0c3-41ee-/resourceGroups/4ce4cb91-4844-472/providers/Microsoft.Devices/IotHubs/225bcf21-025/certificates/1ee68ef1-f240-4";
18428
Requests[3311].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18429
Requests[3311].
Request
.Path = "/subscriptions/1cc060e7-95e4-/resourceGroups/b3332fd1-e369-4f0/providers/Microsoft.Devices/IotHubs/22cae28d-822/certificates/6530ba8d-b17d-4";
18432
Requests[3312].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18433
Requests[3312].
Request
.Path = "/subscriptions/d7071c9b-ffce-/resourceGroups/3a657494-9aa6-4fa/providers/Microsoft.Devices/IotHubs/062f130e-26f/jobs/39c8d";
18436
Requests[3313].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18437
Requests[3313].
Request
.Path = "/subscriptions/9d20efa3-e385-/resourceGroups/c2e3eb0a-ce12-43d/providers/Microsoft.Devices/provisioningServices/5071ec2c-659f-46cd-b501/certificates/4b0ad731-7ad2-4";
18440
Requests[3314].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18441
Requests[3314].
Request
.Path = "/subscriptions/3408d739-40d9-/resourceGroups/9aec2105-7123-4b4/providers/Microsoft.Devices/provisioningServices/da66ee27-0f04-48dd-9022/certificates/de033251-8c1e-4";
18444
Requests[3315].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18445
Requests[3315].
Request
.Path = "/subscriptions/366717c6-6da3-/resourceGroups/633159be-ed5c-494/providers/Microsoft.Devices/provisioningServices/b53adebe-316b-4c92-8b55/certificates/f4962a55-8b1b-4";
18448
Requests[3316].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18449
Requests[3316].
Request
.Path = "/subscriptions/573b6fb9-6eab-/resourceGroups/ff90c6f3-31ca-44c/providers/Microsoft.Devices/provisioningServices/23d4bcd8-d67f-4ef0-bbe4/operationresults/71ac46b8-85";
18452
Requests[3317].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18453
Requests[3317].
Request
.Path = "/subscriptions/59c7d074-a627-/resourceGroups/566e10e4-b8d1-447/providers/Microsoft.DevTestLab/labs/07f13ff/artifactsources/8a40b";
18456
Requests[3318].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18457
Requests[3318].
Request
.Path = "/subscriptions/65c5db43-c668-/resourceGroups/2c766feb-7f42-46d/providers/Microsoft.DevTestLab/labs/0f27dc9/artifactsources/54c2d";
18460
Requests[3319].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18461
Requests[3319].
Request
.Path = "/subscriptions/ed4b8ab5-3851-/resourceGroups/478ef68e-701a-445/providers/Microsoft.DevTestLab/labs/fa933b4/artifactsources/919ea";
18464
Requests[3320].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18465
Requests[3320].
Request
.Path = "/subscriptions/8747c820-aaa9-/resourceGroups/2fb7773a-2cf8-410/providers/Microsoft.DevTestLab/labs/7e69c87/artifactsources/5cf25";
18468
Requests[3321].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18469
Requests[3321].
Request
.Path = "/subscriptions/7a07526c-05fc-/resourceGroups/37e5c640-c7db-452/providers/Microsoft.DevTestLab/labs/ea0eacc/costinsights/669eb";
18472
Requests[3322].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18473
Requests[3322].
Request
.Path = "/subscriptions/82ebb964-b1ca-/resourceGroups/891e765e-084f-459/providers/Microsoft.DevTestLab/labs/47ad73e/costs/465b3";
18476
Requests[3323].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18477
Requests[3323].
Request
.Path = "/subscriptions/240668a4-342a-/resourceGroups/4fa075e0-71be-4af/providers/Microsoft.DevTestLab/labs/41d87fc/costs/52f84";
18480
Requests[3324].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18481
Requests[3324].
Request
.Path = "/subscriptions/9ef65464-77ae-/resourceGroups/f6d7f940-e0d7-49f/providers/Microsoft.DevTestLab/labs/6ca31a9/customimages/4deaf";
18484
Requests[3325].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18485
Requests[3325].
Request
.Path = "/subscriptions/4bfe781e-6f26-/resourceGroups/c209f8fd-0243-497/providers/Microsoft.DevTestLab/labs/a2222a1/customimages/ee766";
18488
Requests[3326].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18489
Requests[3326].
Request
.Path = "/subscriptions/cb2e7a6a-a007-/resourceGroups/d87590ae-1577-4fe/providers/Microsoft.DevTestLab/labs/1abe00a/customimages/47848";
18492
Requests[3327].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18493
Requests[3327].
Request
.Path = "/subscriptions/f58dbffb-e010-/resourceGroups/311c0f6e-30c6-46d/providers/Microsoft.DevTestLab/labs/93e773e/formulas/ecede";
18496
Requests[3328].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18497
Requests[3328].
Request
.Path = "/subscriptions/c107cc04-9e27-/resourceGroups/ca49246d-43d8-4bc/providers/Microsoft.DevTestLab/labs/cba58af/formulas/9f233";
18500
Requests[3329].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18501
Requests[3329].
Request
.Path = "/subscriptions/5c6a6bc8-38f9-/resourceGroups/0e650a9c-4ea3-482/providers/Microsoft.DevTestLab/labs/737f53e/formulas/3b155";
18504
Requests[3330].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18505
Requests[3330].
Request
.Path = "/subscriptions/51fb22fc-6577-/resourceGroups/71bb36bd-5568-414/providers/Microsoft.DevTestLab/labs/97ba7ce/notificationchannels/3a20a";
18508
Requests[3331].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18509
Requests[3331].
Request
.Path = "/subscriptions/464234a2-4df2-/resourceGroups/3b6543d3-a73d-4f0/providers/Microsoft.DevTestLab/labs/409cf53/notificationchannels/a3fa3";
18512
Requests[3332].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18513
Requests[3332].
Request
.Path = "/subscriptions/18b1af85-6964-/resourceGroups/17a06894-a6fc-4aa/providers/Microsoft.DevTestLab/labs/25c4f29/notificationchannels/203d0";
18516
Requests[3333].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18517
Requests[3333].
Request
.Path = "/subscriptions/8f70a958-7f4e-/resourceGroups/70365a2a-60af-414/providers/Microsoft.DevTestLab/labs/5953304/notificationchannels/066c4";
18520
Requests[3334].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18521
Requests[3334].
Request
.Path = "/subscriptions/3b81286e-e472-/resourceGroups/c9db874d-05f9-405/providers/Microsoft.DevTestLab/labs/a0aef12/schedules/079b4";
18524
Requests[3335].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18525
Requests[3335].
Request
.Path = "/subscriptions/7211e999-c534-/resourceGroups/36abedd6-9741-4fe/providers/Microsoft.DevTestLab/labs/93fa90a/schedules/d02ee";
18528
Requests[3336].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18529
Requests[3336].
Request
.Path = "/subscriptions/8bdf8b2b-7395-/resourceGroups/01e1a2bc-9768-4ad/providers/Microsoft.DevTestLab/labs/6219948/schedules/22fbb";
18532
Requests[3337].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18533
Requests[3337].
Request
.Path = "/subscriptions/d30fb32f-5a4c-/resourceGroups/5e7d9d16-3889-420/providers/Microsoft.DevTestLab/labs/86d2731/schedules/3b99b";
18536
Requests[3338].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18537
Requests[3338].
Request
.Path = "/subscriptions/c98055a5-1dbf-/resourceGroups/2fb800b8-98c8-411/providers/Microsoft.DevTestLab/labs/9c9f0bb/servicerunners/4ed6c";
18540
Requests[3339].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18541
Requests[3339].
Request
.Path = "/subscriptions/b6f2aa85-8e4c-/resourceGroups/537c5357-23af-4d8/providers/Microsoft.DevTestLab/labs/386b6ad/servicerunners/58d65";
18544
Requests[3340].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18545
Requests[3340].
Request
.Path = "/subscriptions/6781ad81-92cc-/resourceGroups/9a28c44b-8be0-4da/providers/Microsoft.DevTestLab/labs/c56a384/servicerunners/9534b";
18548
Requests[3341].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18549
Requests[3341].
Request
.Path = "/subscriptions/0bdce12c-8c88-/resourceGroups/6f2ac3db-915c-49d/providers/Microsoft.DevTestLab/labs/a0a15aa/users/414dd";
18552
Requests[3342].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18553
Requests[3342].
Request
.Path = "/subscriptions/05d01c49-787f-/resourceGroups/0afc3f1b-1d03-444/providers/Microsoft.DevTestLab/labs/3ab9845/users/2b9f3";
18556
Requests[3343].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18557
Requests[3343].
Request
.Path = "/subscriptions/220fd84a-115c-/resourceGroups/fdf85ba9-deff-496/providers/Microsoft.DevTestLab/labs/71a4942/users/5ac40";
18560
Requests[3344].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18561
Requests[3344].
Request
.Path = "/subscriptions/76763d83-4c08-/resourceGroups/cf41c903-4bfe-4d0/providers/Microsoft.DevTestLab/labs/5d32669/users/94058";
18564
Requests[3345].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18565
Requests[3345].
Request
.Path = "/subscriptions/2c8d932c-39b0-/resourceGroups/fb86db9f-fa17-45e/providers/Microsoft.DevTestLab/labs/692d2cc/virtualmachines/25152";
18568
Requests[3346].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18569
Requests[3346].
Request
.Path = "/subscriptions/5ca11c2a-52e7-/resourceGroups/a540fb29-7445-439/providers/Microsoft.DevTestLab/labs/5592d78/virtualmachines/c899d";
18572
Requests[3347].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18573
Requests[3347].
Request
.Path = "/subscriptions/39ff1035-9ce9-/resourceGroups/194f061b-7bb6-4f7/providers/Microsoft.DevTestLab/labs/7f7470c/virtualmachines/c07b7";
18576
Requests[3348].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18577
Requests[3348].
Request
.Path = "/subscriptions/7f9b298e-19c0-/resourceGroups/74d616a4-67ed-4a1/providers/Microsoft.DevTestLab/labs/7a1f506/virtualmachines/a15c8";
18580
Requests[3349].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18581
Requests[3349].
Request
.Path = "/subscriptions/cb92cf57-475b-/resourceGroups/b823fa93-26fe-48b/providers/Microsoft.DevTestLab/labs/c05489d/virtualnetworks/2d893";
18584
Requests[3350].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18585
Requests[3350].
Request
.Path = "/subscriptions/a8587cdc-be8b-/resourceGroups/c7cc3d3d-8444-440/providers/Microsoft.DevTestLab/labs/7e70167/virtualnetworks/6b8e5";
18588
Requests[3351].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18589
Requests[3351].
Request
.Path = "/subscriptions/667b8e98-3a20-/resourceGroups/b5396589-e938-4ba/providers/Microsoft.DevTestLab/labs/94cf8c1/virtualnetworks/23743";
18592
Requests[3352].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18593
Requests[3352].
Request
.Path = "/subscriptions/a7f5142a-2fd3-/resourceGroups/844129af-4d90-436/providers/Microsoft.DevTestLab/labs/e82cd99/virtualnetworks/a6943";
18596
Requests[3353].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18597
Requests[3353].
Request
.Path = "/subscriptions/86ba4e3d-e710-/resourceGroups/61eb1780-5fee-40f/providers/Microsoft.DomainRegistration/domains/6c552d7e-e/domainOwnershipIdentifiers/3d8b5";
18600
Requests[3354].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18601
Requests[3354].
Request
.Path = "/subscriptions/adea34b2-089b-/resourceGroups/9f7d2796-e2f2-411/providers/Microsoft.DomainRegistration/domains/69636791-f/domainOwnershipIdentifiers/4880d";
18604
Requests[3355].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18605
Requests[3355].
Request
.Path = "/subscriptions/fba78ec5-fdb7-/resourceGroups/00cb3332-2f1b-454/providers/Microsoft.DomainRegistration/domains/960bff62-d/domainOwnershipIdentifiers/58326";
18608
Requests[3356].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18609
Requests[3356].
Request
.Path = "/subscriptions/57721672-3269-/resourceGroups/b58886a1-0e84-4cf/providers/Microsoft.DomainRegistration/domains/03e0af28-5/domainOwnershipIdentifiers/0aae0";
18612
Requests[3357].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18613
Requests[3357].
Request
.Path = "/subscriptions/6d5730d6-e2f3-/resourceGroups/b14c49da-cdbd-45a/providers/Microsoft.DomainRegistration/domains/8885430d-e/operationresults/ac4033c5-27";
18616
Requests[3358].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18617
Requests[3358].
Request
.Path = "/subscriptions/86a6de46-2b56-/resourceGroups/1c3fdec5-3267-4ea/providers/Microsoft.EventHub/namespaces/93dab2ae-0d90/AuthorizationRules/e063678c-d1d9-4549-87";
18620
Requests[3359].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18621
Requests[3359].
Request
.Path = "/subscriptions/e46b19c3-e39d-/resourceGroups/0effc4fc-dae0-4bc/providers/Microsoft.EventHub/namespaces/3323b33f-bcbb/AuthorizationRules/05e9d411-ace3-483a-b7";
18624
Requests[3360].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
18625
Requests[3360].
Request
.Path = "/subscriptions/e6433cb7-25b8-/resourceGroups/60505573-ea5a-484/providers/Microsoft.EventHub/namespaces/b7494581-60b9/AuthorizationRules/9b8d7cf2-7070-402b-83";
18628
Requests[3361].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18629
Requests[3361].
Request
.Path = "/subscriptions/b07abb9b-6e38-/resourceGroups/7080ba45-969d-438/providers/Microsoft.EventHub/namespaces/df0be321-c236/AuthorizationRules/56b153ae-9b89-495d-87";
18632
Requests[3362].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18633
Requests[3362].
Request
.Path = "/subscriptions/63825588-0fa7-/resourceGroups/07200c4e-b42a-43f/providers/Microsoft.EventHub/namespaces/11e1d14f-6fce/disasterRecoveryConfigs/6ccca";
18636
Requests[3363].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18637
Requests[3363].
Request
.Path = "/subscriptions/f23c07a8-d070-/resourceGroups/8bc5104f-c1af-477/providers/Microsoft.EventHub/namespaces/f4b34246-7329/disasterRecoveryConfigs/014a4";
18640
Requests[3364].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18641
Requests[3364].
Request
.Path = "/subscriptions/d676d25b-261c-/resourceGroups/d7156a20-3756-467/providers/Microsoft.EventHub/namespaces/f62f9285-1ebf/disasterRecoveryConfigs/b521e";
18644
Requests[3365].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18645
Requests[3365].
Request
.Path = "/subscriptions/a9dd8015-3a9e-/resourceGroups/d2a6b28d-6290-4f5/providers/Microsoft.EventHub/namespaces/25628983-c29b/eventhubs/e292c262-a7a";
18648
Requests[3366].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18649
Requests[3366].
Request
.Path = "/subscriptions/8245ce58-5b91-/resourceGroups/d0f26433-38fb-414/providers/Microsoft.EventHub/namespaces/7916cd2a-b685/eventhubs/20b23e8b-faf";
18652
Requests[3367].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18653
Requests[3367].
Request
.Path = "/subscriptions/458069f6-a89d-/resourceGroups/f8bfef7a-51b7-414/providers/Microsoft.EventHub/namespaces/c037d5e7-9337/eventhubs/de7c2f9c-ba5";
18656
Requests[3368].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18657
Requests[3368].
Request
.Path = "/subscriptions/25b76931-5fc9-/resourceGroups/24a9fd7a-77f2-443/providers/Microsoft.Fabric.Admin/fabricLocations/888fffbe/edgeGatewayPools/7bc8685b-1907-4";
18660
Requests[3369].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18661
Requests[3369].
Request
.Path = "/subscriptions/e2c9ca06-4020-/resourceGroups/9d360a02-2346-4e3/providers/Microsoft.Fabric.Admin/fabricLocations/e135c41a/edgeGateways/6573a524-60";
18664
Requests[3370].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18665
Requests[3370].
Request
.Path = "/subscriptions/59f15b36-470d-/resourceGroups/cb51a063-d8eb-44a/providers/Microsoft.Fabric.Admin/fabricLocations/f28c26e4/fileShares/3749c9ae-";
18668
Requests[3371].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18669
Requests[3371].
Request
.Path = "/subscriptions/a6cffdcc-1be8-/resourceGroups/2a9d91c4-9bac-44a/providers/Microsoft.Fabric.Admin/fabricLocations/8c63f058/infraRoleInstances/13c19aab-e29f-4aa";
18672
Requests[3372].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18673
Requests[3372].
Request
.Path = "/subscriptions/f69f041a-10f7-/resourceGroups/85530446-0d6a-4ac/providers/Microsoft.Fabric.Admin/fabricLocations/31ce57e5/infraRoles/357a95e0-";
18676
Requests[3373].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18677
Requests[3373].
Request
.Path = "/subscriptions/b055c01a-2205-/resourceGroups/2b4cd670-f1f5-4ba/providers/Microsoft.Fabric.Admin/fabricLocations/473414f9/ipPools/e0cadd";
18680
Requests[3374].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18681
Requests[3374].
Request
.Path = "/subscriptions/607e0a5c-9ec3-/resourceGroups/f2046b73-4bc4-411/providers/Microsoft.Fabric.Admin/fabricLocations/68c05827/ipPools/fbdc06";
18684
Requests[3375].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18685
Requests[3375].
Request
.Path = "/subscriptions/af6944b0-4488-/resourceGroups/96965296-0eb6-496/providers/Microsoft.Fabric.Admin/fabricLocations/1fc92547/logicalNetworks/b82509b1-2f46-";
18688
Requests[3376].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18689
Requests[3376].
Request
.Path = "/subscriptions/a608e910-b580-/resourceGroups/aefb76fa-eaf1-40c/providers/Microsoft.Fabric.Admin/fabricLocations/9524ab4d/macAddressPools/782d68bb-c97b-";
18692
Requests[3377].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18693
Requests[3377].
Request
.Path = "/subscriptions/c0322e01-76ad-/resourceGroups/5f5fedf9-624e-45b/providers/Microsoft.Fabric.Admin/fabricLocations/caa1b26f/scaleUnitNodes/affdefc4-e6d5";
18696
Requests[3378].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18697
Requests[3378].
Request
.Path = "/subscriptions/d6ead371-c303-/resourceGroups/294246dd-2e03-4dc/providers/Microsoft.Fabric.Admin/fabricLocations/c696e4a5/scaleUnits/7f60922d-";
18700
Requests[3379].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18701
Requests[3379].
Request
.Path = "/subscriptions/ec855de5-fd42-/resourceGroups/2425691a-109f-48c/providers/Microsoft.Fabric.Admin/fabricLocations/70228030/slbMuxInstances/c78aad27-2a1e-";
18704
Requests[3380].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18705
Requests[3380].
Request
.Path = "/subscriptions/45e3d360-438a-/resourceGroups/e1112a0c-cd02-442/providers/Microsoft.Fabric.Admin/fabricLocations/86ec0b20/storageSubSystems/420268fa-0d4e-4f";
18708
Requests[3381].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18709
Requests[3381].
Request
.Path = "/subscriptions/57fb55b7-f927-/resourceGroups/083aabc1-c511-43a/providers/Microsoft.HDInsight/clusters/af0a3ac0-4b/applications/80caa166-df58-4";
18712
Requests[3382].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18713
Requests[3382].
Request
.Path = "/subscriptions/c94a8523-be81-/resourceGroups/90f73fcf-12b0-4f0/providers/Microsoft.HDInsight/clusters/86e9a7cc-e9/applications/331802e5-7243-4";
18716
Requests[3383].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18717
Requests[3383].
Request
.Path = "/subscriptions/86518104-a76a-/resourceGroups/f5f9ef31-5f26-4fa/providers/Microsoft.HDInsight/clusters/7d8d2930-71/applications/16ba760b-58d4-4";
18720
Requests[3384].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
18721
Requests[3384].
Request
.Path = "/subscriptions/ec0ff1bf-7a24-/resourceGroups/f335941a-09d2-4db/providers/Microsoft.HDInsight/clusters/74c47d1e-ca/configurations/47375384-7f14-40a";
18724
Requests[3385].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18725
Requests[3385].
Request
.Path = "/subscriptions/84989d71-4649-/resourceGroups/7d8a4e21-4bde-46d/providers/Microsoft.HDInsight/clusters/600b673a-a9/configurations/4f34dad8-fbd0-463";
18728
Requests[3386].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18729
Requests[3386].
Request
.Path = "/subscriptions/895adc7a-e6d7-/resourceGroups/5aec0f3c-3f35-4f8/providers/Microsoft.HDInsight/clusters/fd9f2077-e8/extensions/738b2267-5834";
18732
Requests[3387].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18733
Requests[3387].
Request
.Path = "/subscriptions/40dfacd0-88b7-/resourceGroups/95b0592b-8b30-484/providers/Microsoft.HDInsight/clusters/d66af711-41/extensions/eddf2322-f849";
18736
Requests[3388].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18737
Requests[3388].
Request
.Path = "/subscriptions/a5268cf5-f38e-/resourceGroups/3222354b-6d79-4e5/providers/Microsoft.HDInsight/clusters/7ab5314f-c3/extensions/6191cf63-170b";
18740
Requests[3389].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18741
Requests[3389].
Request
.Path = "/subscriptions/ba17eac9-4688-/resourceGroups/01d17d09-8b6b-45b/providers/Microsoft.HDInsight/clusters/8e7d7570-ff/scriptActions/c84ee3be-e";
18744
Requests[3390].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18745
Requests[3390].
Request
.Path = "/subscriptions/c9cb6624-2b5f-/resourceGroups/b9450e47-22f2-4d4/providers/Microsoft.HDInsight/clusters/40e019e9-0b/scriptExecutionHistory/f8de71ae-c1a9-40f";
18748
Requests[3391].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18749
Requests[3391].
Request
.Path = "/subscriptions/7ec477e5-ac16-/resourceGroups/c7f4325f-0d73-497/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/c41e81a4/alerts/3da84651-";
18752
Requests[3392].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18753
Requests[3392].
Request
.Path = "/subscriptions/bdfa19f5-5a49-/resourceGroups/75aa0f90-c478-4a7/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/be5d02eb/alerts/99a7ba49-";
18756
Requests[3393].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18757
Requests[3393].
Request
.Path = "/subscriptions/6fff71b3-f607-/resourceGroups/7e748805-a8bf-48a/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/e9c924a7/serviceHealths/90824631-9564";
18760
Requests[3394].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18761
Requests[3394].
Request
.Path = "/subscriptions/2a027b58-2cc4-/resourcegroups/d3b7f39d-2f52-456/providers/microsoft.insights/alertrules/8c880bcc/incidents/160930b8-908";
18764
Requests[3395].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18765
Requests[3395].
Request
.Path = "/subscriptions/91f08de7-3e16-/resourceGroups/b791199d-a916-4f9/providers/Microsoft.Insights/components/b68673d7-e47/Annotations/38ab4753-4ce";
18768
Requests[3396].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18769
Requests[3396].
Request
.Path = "/subscriptions/a01836a1-4237-/resourceGroups/7e9cb7ce-7141-459/providers/Microsoft.Insights/components/66177e4a-565/Annotations/57e8b636-97d";
18772
Requests[3397].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18773
Requests[3397].
Request
.Path = "/subscriptions/1e4cfe00-98e2-/resourceGroups/6bcaa751-d800-422/providers/Microsoft.Insights/components/24aa5bb7-291/APIKeys/061a5";
18776
Requests[3398].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18777
Requests[3398].
Request
.Path = "/subscriptions/21517f54-ce1d-/resourceGroups/8b66ce4c-7a57-41c/providers/Microsoft.Insights/components/ce38dda7-2ba/APIKeys/38984";
18780
Requests[3399].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18781
Requests[3399].
Request
.Path = "/subscriptions/6432cce1-84bb-/resourceGroups/d36ad5d3-ab58-407/providers/Microsoft.Insights/components/c43ba01d-f25/exportconfiguration/7a4d5df6";
18784
Requests[3400].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18785
Requests[3400].
Request
.Path = "/subscriptions/c5277787-8dfe-/resourceGroups/2ac7cedb-3175-4f5/providers/Microsoft.Insights/components/28486ac1-532/exportconfiguration/e2f45ed3";
18788
Requests[3401].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18789
Requests[3401].
Request
.Path = "/subscriptions/3809cbaa-3fef-/resourceGroups/4e3eaafe-49ab-4e7/providers/Microsoft.Insights/components/6c7e4407-114/exportconfiguration/07c9b8fd";
18792
Requests[3402].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18793
Requests[3402].
Request
.Path = "/subscriptions/8ea3c354-a636-/resourceGroups/237a1060-030e-424/providers/Microsoft.Insights/components/c0c9e35b-3ff/favorites/b6a305b0-7";
18796
Requests[3403].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18797
Requests[3403].
Request
.Path = "/subscriptions/83c03a59-7aef-/resourceGroups/afbca39e-7782-484/providers/Microsoft.Insights/components/94ba494b-09d/favorites/724cca15-f";
18800
Requests[3404].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18801
Requests[3404].
Request
.Path = "/subscriptions/50cc5434-4a9e-/resourceGroups/cbd3da14-c9e6-4de/providers/Microsoft.Insights/components/7c49186f-81c/favorites/7caf8368-2";
18804
Requests[3405].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18805
Requests[3405].
Request
.Path = "/subscriptions/7a756fdc-a524-/resourceGroups/8ddabb24-16f6-494/providers/Microsoft.Insights/components/475cb2ff-e29/favorites/fa76a670-3";
18808
Requests[3406].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18809
Requests[3406].
Request
.Path = "/subscriptions/f5c9d63f-f0ca-/resourceGroups/5b5d91a1-d59a-4ef/providers/Microsoft.Insights/components/f9ac0728-6a7/ProactiveDetectionConfigs/ec45fcf8-6aa4-4";
18812
Requests[3407].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18813
Requests[3407].
Request
.Path = "/subscriptions/3e577ed7-427e-/resourceGroups/5263565b-38e0-4ed/providers/Microsoft.Insights/components/8c250dda-8c4/ProactiveDetectionConfigs/7444f46b-9f18-4";
18816
Requests[3408].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18817
Requests[3408].
Request
.Path = "/subscriptions/0a43c0cb-d928-/resourceGroups/a758f055-0ae3-4b3/providers/Microsoft.Insights/components/60d59084-310/WorkItemConfigs/3c3ed86f-ec71-4c";
18820
Requests[3409].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18821
Requests[3409].
Request
.Path = "/subscriptions/316ac405-ce13-/resourceGroups/e560146f-4833-42a/providers/Microsoft.Insights/metricAlerts/98975d82/status/42e57674-5";
18824
Requests[3410].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18825
Requests[3410].
Request
.Path = "/subscriptions/fa740faa-02a7-/resourceGroups/06df777b-6828-495/providers/Microsoft.KeyVault/vaults/5c7c7a91-/accessPolicies/e58e91cf-880a";
18828
Requests[3411].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18829
Requests[3411].
Request
.Path = "/subscriptions/bf7f52c5-c34e-/resourceGroups/6c1475dd-45cb-4da/providers/Microsoft.KeyVault/vaults/089d3ed2-/secrets/eeaf647a-3";
18832
Requests[3412].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18833
Requests[3412].
Request
.Path = "/subscriptions/8caf14cf-36d1-/resourceGroups/5ebec0af-47ae-486/providers/Microsoft.KeyVault/vaults/f8578ac6-/secrets/1e0b720e-f";
18836
Requests[3413].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18837
Requests[3413].
Request
.Path = "/subscriptions/e64be3f1-455e-/resourceGroups/77a10d7c-0826-41e/providers/Microsoft.KeyVault/vaults/4611d573-/secrets/77d1ae57-d";
18840
Requests[3414].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18841
Requests[3414].
Request
.Path = "/subscriptions/a89d2554-8b3d-/resourceGroups/5bb60ee0-961d-491/providers/Microsoft.Logic/integrationAccounts/ae87537e-a0c2-4345-8d0/agreements/b9443cbe-09f8";
18844
Requests[3415].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18845
Requests[3415].
Request
.Path = "/subscriptions/83f77e9d-47c8-/resourceGroups/1fae412b-8bb1-436/providers/Microsoft.Logic/integrationAccounts/8da2006f-6d5b-43d0-84c/agreements/4179b367-47b9";
18848
Requests[3416].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18849
Requests[3416].
Request
.Path = "/subscriptions/9944d1f7-fcd6-/resourceGroups/59e12ce2-265e-4cd/providers/Microsoft.Logic/integrationAccounts/1c2cfc07-6f1b-4c26-a72/agreements/6e560d15-2de5";
18852
Requests[3417].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18853
Requests[3417].
Request
.Path = "/subscriptions/45b3c593-58f1-/resourceGroups/42735bdd-caf7-4e0/providers/Microsoft.Logic/integrationAccounts/8c199903-2dcd-421a-908/assemblies/aa9e3869-960d-4aad-8";
18856
Requests[3418].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18857
Requests[3418].
Request
.Path = "/subscriptions/5be904ce-7027-/resourceGroups/c77e78d8-2960-44c/providers/Microsoft.Logic/integrationAccounts/fe042cde-897d-43db-812/assemblies/bfd033e0-3b86-494e-a";
18860
Requests[3419].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18861
Requests[3419].
Request
.Path = "/subscriptions/46d8692a-5efb-/resourceGroups/6ca63d18-a9c5-470/providers/Microsoft.Logic/integrationAccounts/1081cf25-bcfd-4f1e-88b/assemblies/42638952-6002-4a71-8";
18864
Requests[3420].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18865
Requests[3420].
Request
.Path = "/subscriptions/8258bf56-9050-/resourceGroups/63a4f130-3f3e-446/providers/Microsoft.Logic/integrationAccounts/a4e1b33b-086a-4c71-acf/batchConfigurations/48e5915f-0304-4a24-bdf";
18868
Requests[3421].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18869
Requests[3421].
Request
.Path = "/subscriptions/3dcc6f9a-0607-/resourceGroups/1b6b0311-bb46-45d/providers/Microsoft.Logic/integrationAccounts/7ea78d7b-b5ff-461f-97c/batchConfigurations/f1329801-08a1-441a-92b";
18872
Requests[3422].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18873
Requests[3422].
Request
.Path = "/subscriptions/341494c5-a7a2-/resourceGroups/2d3ad9fc-8ad2-49a/providers/Microsoft.Logic/integrationAccounts/4557ff95-0810-45fd-b7d/batchConfigurations/3f5e2435-f53e-4e64-ac0";
18876
Requests[3423].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18877
Requests[3423].
Request
.Path = "/subscriptions/facc9199-5c76-/resourceGroups/a9296b0d-c8cf-455/providers/Microsoft.Logic/integrationAccounts/109a723f-4a69-4c1d-b9d/certificates/9d3b354a-cb9a-4";
18880
Requests[3424].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18881
Requests[3424].
Request
.Path = "/subscriptions/770b950c-6c5f-/resourceGroups/40842794-92d4-465/providers/Microsoft.Logic/integrationAccounts/04596cda-b71c-4aed-8f7/certificates/232adb9b-532a-4";
18884
Requests[3425].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18885
Requests[3425].
Request
.Path = "/subscriptions/9fe019a5-7d4f-/resourceGroups/e4086f43-a5cf-412/providers/Microsoft.Logic/integrationAccounts/8ade6bc2-932c-4ab2-851/certificates/10f15b81-976f-4";
18888
Requests[3426].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18889
Requests[3426].
Request
.Path = "/subscriptions/675e9ca0-bebc-/resourceGroups/df8c1564-079d-438/providers/Microsoft.Logic/integrationAccounts/c31d70ff-e44d-45a3-b94/maps/1492c7e";
18892
Requests[3427].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18893
Requests[3427].
Request
.Path = "/subscriptions/83805967-8966-/resourceGroups/88820d1b-3680-4a0/providers/Microsoft.Logic/integrationAccounts/06052c1d-5492-4690-8c7/maps/9749938";
18896
Requests[3428].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18897
Requests[3428].
Request
.Path = "/subscriptions/adae313f-3aaa-/resourceGroups/86a80972-a793-458/providers/Microsoft.Logic/integrationAccounts/beb4afd6-6118-4eac-a6c/maps/e415a0f";
18900
Requests[3429].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18901
Requests[3429].
Request
.Path = "/subscriptions/8445dd71-95bc-/resourceGroups/2468edb6-a925-4df/providers/Microsoft.Logic/integrationAccounts/e6fbca30-a620-4b61-ad6/partners/dc0ae800-e3";
18904
Requests[3430].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18905
Requests[3430].
Request
.Path = "/subscriptions/a276c58d-0701-/resourceGroups/3f491580-e657-4a5/providers/Microsoft.Logic/integrationAccounts/d67a397c-2e15-4b0d-b0d/partners/2b0df951-aa";
18908
Requests[3431].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18909
Requests[3431].
Request
.Path = "/subscriptions/ae21e61d-abd6-/resourceGroups/a3f00f37-44b4-4cd/providers/Microsoft.Logic/integrationAccounts/3c340d12-79d8-4999-a05/partners/f45944ee-c2";
18912
Requests[3432].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18913
Requests[3432].
Request
.Path = "/subscriptions/edd99227-881c-/resourceGroups/7efc798d-64f4-415/providers/Microsoft.Logic/integrationAccounts/0c176140-3da5-4e72-b4c/schemas/f2dd5000-f";
18916
Requests[3433].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18917
Requests[3433].
Request
.Path = "/subscriptions/b2f6bb05-6364-/resourceGroups/9f082b70-ac23-438/providers/Microsoft.Logic/integrationAccounts/520f51ee-c409-4652-9d4/schemas/33ae82b5-4";
18920
Requests[3434].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18921
Requests[3434].
Request
.Path = "/subscriptions/55d79d71-f66a-/resourceGroups/0ff3e5ec-2cf6-420/providers/Microsoft.Logic/integrationAccounts/b406af49-1a1e-4b44-889/schemas/001a8f66-1";
18924
Requests[3435].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18925
Requests[3435].
Request
.Path = "/subscriptions/ca06de7d-2384-/resourceGroups/c7b32f8a-537c-4c5/providers/Microsoft.Logic/integrationAccounts/da5c8b29-e1bf-4f27-b1e/sessions/fce204b4-59";
18928
Requests[3436].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18929
Requests[3436].
Request
.Path = "/subscriptions/f4a773fa-3623-/resourceGroups/e8d57092-bd6c-4d0/providers/Microsoft.Logic/integrationAccounts/0b917153-9421-4dd2-863/sessions/a20f4dfe-bb";
18932
Requests[3437].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18933
Requests[3437].
Request
.Path = "/subscriptions/9dca12ee-3653-/resourceGroups/ac2811ea-658b-425/providers/Microsoft.Logic/integrationAccounts/f0a98d4f-83e8-48b3-936/sessions/13c8b848-08";
18936
Requests[3438].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18937
Requests[3438].
Request
.Path = "/subscriptions/a39d0d27-e75a-/resourceGroups/88e1ebcf-55bc-4df/providers/Microsoft.Logic/workflows/c9a7cfc9-e19/accessKeys/e3d14eec-6e40";
18940
Requests[3439].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18941
Requests[3439].
Request
.Path = "/subscriptions/04728e65-a966-/resourceGroups/87649c29-119d-4d1/providers/Microsoft.Logic/workflows/d0057c23-f0b/accessKeys/80b98ff3-7c74";
18944
Requests[3440].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18945
Requests[3440].
Request
.Path = "/subscriptions/d25ea2c4-73b7-/resourceGroups/a2115e2c-6715-476/providers/Microsoft.Logic/workflows/520432c1-178/accessKeys/0f5f3699-5536";
18948
Requests[3441].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18949
Requests[3441].
Request
.Path = "/subscriptions/58dc1beb-427b-/resourceGroups/e0ae3904-15a6-441/providers/Microsoft.Logic/workflows/324a8e57-eb5/runs/9954b65";
18952
Requests[3442].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18953
Requests[3442].
Request
.Path = "/subscriptions/7ee18238-c94f-/resourceGroups/aaf26dab-be63-4a0/providers/Microsoft.Logic/workflows/5ac508d1-b74/triggers/e36ea17d-bc";
18956
Requests[3443].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18957
Requests[3443].
Request
.Path = "/subscriptions/04753533-3003-/resourceGroups/f0b53651-11c5-46a/providers/Microsoft.Logic/workflows/45cfd6e1-071/versions/a1d9beac-";
18960
Requests[3444].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18961
Requests[3444].
Request
.Path = "/subscriptions/7fe7659b-854c-/resourceGroups/7eeea410-0acf-44d/providers/Microsoft.MachineLearning/commitmentPlans/874bc03d-dc26-4b98/commitmentAssociations/3b7de80f-568e-47c7-8328-5";
18964
Requests[3445].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18965
Requests[3445].
Request
.Path = "/subscriptions/74f93457-340b-/resourceGroups/b5e3612f-e76c-4cd/providers/Microsoft.MachineLearningExperimentation/accounts/18236e0b-a9/workspaces/92fd2220-8536";
18968
Requests[3446].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18969
Requests[3446].
Request
.Path = "/subscriptions/6962ebd6-cc86-/resourceGroups/859efb4a-320e-46e/providers/Microsoft.MachineLearningExperimentation/accounts/e7122c1f-57/workspaces/ca11d1e2-3711";
18972
Requests[3447].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18973
Requests[3447].
Request
.Path = "/subscriptions/9272f9d6-3e16-/resourceGroups/0eb450c0-4347-438/providers/Microsoft.MachineLearningExperimentation/accounts/1ca629f4-7c/workspaces/28d40310-65dd";
18976
Requests[3448].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18977
Requests[3448].
Request
.Path = "/subscriptions/e22207a2-a169-/resourceGroups/ed413dd8-5f6f-4ed/providers/Microsoft.MachineLearningExperimentation/accounts/2a38bfc5-45/workspaces/69d7d6b6-4df6";
18980
Requests[3449].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
18981
Requests[3449].
Request
.Path = "/subscriptions/6b4618b9-a1f2-/resourceGroups/09598923-73e4-436/providers/Microsoft.Media/mediaServices/77b791d1-94/assets/9037a48f-";
18984
Requests[3450].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
18985
Requests[3450].
Request
.Path = "/subscriptions/1c86d388-768b-/resourceGroups/5f3406fa-de9b-452/providers/Microsoft.Media/mediaServices/6da2edd1-4e/assets/0a6e653c-";
18988
Requests[3451].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18989
Requests[3451].
Request
.Path = "/subscriptions/29c71370-ded1-/resourceGroups/01246921-d023-433/providers/Microsoft.Media/mediaServices/575aabb7-98/assets/dfb6574d-";
18992
Requests[3452].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
18993
Requests[3452].
Request
.Path = "/subscriptions/fbe499ab-4a47-/resourceGroups/6e975c2c-e6ee-4cf/providers/Microsoft.Media/mediaServices/c04fb11b-29/assets/2098e208-";
18996
Requests[3453].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
18997
Requests[3453].
Request
.Path = "/subscriptions/431df7d0-1438-/resourceGroups/edd52ad9-e2da-42f/providers/Microsoft.Media/mediaServices/4fea9547-c4/contentKeyPolicies/ed45b748-6b2a-4140-9";
19000
Requests[3454].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19001
Requests[3454].
Request
.Path = "/subscriptions/560879bc-2edf-/resourceGroups/64cecb88-253d-447/providers/Microsoft.Media/mediaServices/565ca3f1-a1/contentKeyPolicies/bfa0ff76-b629-4df8-b";
19004
Requests[3455].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19005
Requests[3455].
Request
.Path = "/subscriptions/242ac867-1815-/resourceGroups/e595fd97-9394-456/providers/Microsoft.Media/mediaServices/d4009294-a9/contentKeyPolicies/1e39e331-e756-4aec-b";
19008
Requests[3456].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19009
Requests[3456].
Request
.Path = "/subscriptions/2ff1f888-ca70-/resourceGroups/f62a7b17-9974-41c/providers/Microsoft.Media/mediaServices/b3cb07d5-ff/contentKeyPolicies/8d411abb-a294-40c2-8";
19012
Requests[3457].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19013
Requests[3457].
Request
.Path = "/subscriptions/ec94515f-30ec-/resourceGroups/6a5c3965-23e2-4b2/providers/Microsoft.Media/mediaservices/aa0289a6-94/liveEvents/3460be13-4902";
19016
Requests[3458].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19017
Requests[3458].
Request
.Path = "/subscriptions/fce00197-4414-/resourceGroups/24bae5da-f2d1-439/providers/Microsoft.Media/mediaservices/48ba7cc1-8c/liveEvents/ad7dabcb-4800";
19020
Requests[3459].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19021
Requests[3459].
Request
.Path = "/subscriptions/7d16a90e-6805-/resourceGroups/81d6308c-4ac5-44a/providers/Microsoft.Media/mediaservices/17d1c142-9e/liveEvents/894da6ee-5797";
19024
Requests[3460].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19025
Requests[3460].
Request
.Path = "/subscriptions/b05cbbe8-d596-/resourceGroups/bae581b4-f0a0-4a7/providers/Microsoft.Media/mediaservices/5d14d32b-28/liveEvents/a2d58cf7-97cd";
19028
Requests[3461].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19029
Requests[3461].
Request
.Path = "/subscriptions/b2d2dd83-6242-/resourceGroups/e432b4c5-1e33-4bb/providers/Microsoft.Media/mediaservices/ec36fbb8-e1/streamingEndpoints/8f85ac35-6236-47b7-82";
19032
Requests[3462].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19033
Requests[3462].
Request
.Path = "/subscriptions/c7052482-1345-/resourceGroups/54d7ce81-c9a3-464/providers/Microsoft.Media/mediaservices/07d639bf-64/streamingEndpoints/5f16bd2e-7a44-4434-97";
19036
Requests[3463].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19037
Requests[3463].
Request
.Path = "/subscriptions/1b7b8379-9abf-/resourceGroups/42a42f00-e4ff-458/providers/Microsoft.Media/mediaservices/9d556a1f-5d/streamingEndpoints/fe984e90-14e8-4b18-8d";
19040
Requests[3464].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19041
Requests[3464].
Request
.Path = "/subscriptions/0a8ae250-edab-/resourceGroups/d8389ee8-525f-4e2/providers/Microsoft.Media/mediaservices/7593dbe6-c6/streamingEndpoints/da79415f-0b00-47d8-81";
19044
Requests[3465].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19045
Requests[3465].
Request
.Path = "/subscriptions/6f607e44-2c08-/resourceGroups/55e10e2d-b392-4e8/providers/Microsoft.Media/mediaServices/e0f0b994-c4/streamingLocators/4f057f4c-3138-442d-a";
19048
Requests[3466].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19049
Requests[3466].
Request
.Path = "/subscriptions/0724475b-6cef-/resourceGroups/be400e3b-4589-405/providers/Microsoft.Media/mediaServices/dab901a4-1a/streamingLocators/e6ebdf85-e020-4da3-8";
19052
Requests[3467].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19053
Requests[3467].
Request
.Path = "/subscriptions/a1cc61ad-b4a5-/resourceGroups/6c64ae08-62c7-4cd/providers/Microsoft.Media/mediaServices/6c3bbb85-b7/streamingLocators/58c86d08-773d-49f1-9";
19056
Requests[3468].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19057
Requests[3468].
Request
.Path = "/subscriptions/f33c929d-8374-/resourceGroups/2b1f2831-bde1-438/providers/Microsoft.Media/mediaServices/7841d2e4-7b/streamingPolicies/819544ba-0f0d-4d61-";
19060
Requests[3469].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19061
Requests[3469].
Request
.Path = "/subscriptions/0e246b2e-5a5b-/resourceGroups/d6e9b20f-5f05-492/providers/Microsoft.Media/mediaServices/23a8ef34-cf/streamingPolicies/1a311120-ac7f-49ac-";
19064
Requests[3470].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19065
Requests[3470].
Request
.Path = "/subscriptions/ee21fcef-6d6c-/resourceGroups/19d13cc9-4f4f-430/providers/Microsoft.Media/mediaServices/89979045-ce/streamingPolicies/ad4846f1-6292-4f23-";
19068
Requests[3471].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19069
Requests[3471].
Request
.Path = "/subscriptions/8e152d6a-a8ef-/resourceGroups/a6a4ae7b-2ba0-4a0/providers/Microsoft.Media/mediaServices/281f2511-4d/transforms/2ddf13b1-5d1c";
19072
Requests[3472].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19073
Requests[3472].
Request
.Path = "/subscriptions/a738e7b6-5c24-/resourceGroups/ff6f8f79-6d91-48e/providers/Microsoft.Media/mediaServices/ffad459c-fb/transforms/74b0f4ec-e2b2";
19076
Requests[3473].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19077
Requests[3473].
Request
.Path = "/subscriptions/29032d00-bd97-/resourceGroups/70eed3bf-d608-446/providers/Microsoft.Media/mediaServices/82e5fdc5-28/transforms/e8dd47a9-f6b2";
19080
Requests[3474].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19081
Requests[3474].
Request
.Path = "/subscriptions/cae4330a-c2db-/resourceGroups/e5b692e6-9d4e-4d4/providers/Microsoft.Media/mediaServices/940bed30-f0/transforms/b1a4a952-ec2f";
19084
Requests[3475].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19085
Requests[3475].
Request
.Path = "/subscriptions/b1cde871-d53f-/resourceGroups/cb23be53-b3ec-4cf/providers/Microsoft.Migrate/projects/6a04db49-0d/groups/8310a8a8-";
19088
Requests[3476].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19089
Requests[3476].
Request
.Path = "/subscriptions/69e31c17-a1dd-/resourceGroups/96948bf6-8042-460/providers/Microsoft.Migrate/projects/5fe2908d-3f/groups/af6d0b61-";
19092
Requests[3477].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19093
Requests[3477].
Request
.Path = "/subscriptions/0fede060-c092-/resourceGroups/889e957a-12af-450/providers/Microsoft.Migrate/projects/0b6d2ea8-6f/groups/cc09f2a0-";
19096
Requests[3478].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19097
Requests[3478].
Request
.Path = "/subscriptions/d5b448b2-fe13-/resourceGroups/3d43c187-84c8-438/providers/Microsoft.Migrate/projects/9fddb64a-f3/machines/da76e210-88";
19100
Requests[3479].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19101
Requests[3479].
Request
.Path = "/subscriptions/66b629db-8bb7-/resourceGroups/6ab07d6e-d430-498/providers/Microsoft.Network/expressRouteCircuits/a6e42d3a-8f/authorizations/5382a1f2-d735-496";
19104
Requests[3480].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19105
Requests[3480].
Request
.Path = "/subscriptions/19d6eacf-828d-/resourceGroups/e95c5dd2-f1db-449/providers/Microsoft.Network/expressRouteCircuits/653b6e58-2f/authorizations/8d5e4209-95b0-44e";
19108
Requests[3481].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19109
Requests[3481].
Request
.Path = "/subscriptions/8b99a4d9-9927-/resourceGroups/66fa6cab-4016-4ef/providers/Microsoft.Network/expressRouteCircuits/7b047da0-7f/authorizations/81aaaf8a-7a2d-4fa";
19112
Requests[3482].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19113
Requests[3482].
Request
.Path = "/subscriptions/257048b4-9ee5-/resourceGroups/913860d6-5fa2-4cd/providers/Microsoft.Network/expressRouteCircuits/2a7ba91e-65/peerings/9b2e7641-4e";
19116
Requests[3483].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19117
Requests[3483].
Request
.Path = "/subscriptions/03ce3505-de9f-/resourceGroups/45ea07df-d01a-4de/providers/Microsoft.Network/expressRouteCircuits/78de00a7-7b/peerings/825d05ea-97";
19120
Requests[3484].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19121
Requests[3484].
Request
.Path = "/subscriptions/50fce6bf-0405-/resourceGroups/089d2eae-e217-4ee/providers/Microsoft.Network/expressRouteCircuits/04227265-a0/peerings/1414f54f-f2";
19124
Requests[3485].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19125
Requests[3485].
Request
.Path = "/subscriptions/3cae6b34-754a-/resourceGroups/96ec70cf-e66d-44e/providers/Microsoft.Network/expressRouteCrossConnections/04d2ebd6-2352-464c-/peerings/8b8b5ada-e2";
19128
Requests[3486].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19129
Requests[3486].
Request
.Path = "/subscriptions/b0b15d0e-3f77-/resourceGroups/4b596d96-7d88-466/providers/Microsoft.Network/expressRouteCrossConnections/2d1c3c49-d9ef-4ad6-/peerings/4973736a-31";
19132
Requests[3487].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19133
Requests[3487].
Request
.Path = "/subscriptions/100cd908-a6c8-/resourceGroups/05900e9d-03fa-45e/providers/Microsoft.Network/expressRouteCrossConnections/af306fae-5ab8-4e01-/peerings/73d1e4d5-a8";
19136
Requests[3488].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19137
Requests[3488].
Request
.Path = "/subscriptions/d15b397f-87e7-/resourceGroups/e53b121d-e898-461/providers/Microsoft.Network/loadBalancers/657ea4b9-80bc-4d/backendAddressPools/845b9bd4-eb60-4efd-a25";
19140
Requests[3489].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19141
Requests[3489].
Request
.Path = "/subscriptions/5eadf865-50fe-/resourceGroups/56ed28c1-4446-4be/providers/Microsoft.Network/loadBalancers/6d45e820-e9f3-44/frontendIPConfigurations/4d2c7fae-49c2-43be-b51a-ba0";
19144
Requests[3490].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19145
Requests[3490].
Request
.Path = "/subscriptions/92fed8da-a027-/resourceGroups/cf9329e0-acc4-40c/providers/Microsoft.Network/loadBalancers/9149b402-b735-49/inboundNatRules/05407719-0ced-440e";
19148
Requests[3491].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19149
Requests[3491].
Request
.Path = "/subscriptions/e7cbb2bc-f673-/resourceGroups/c5e12e47-ecc3-428/providers/Microsoft.Network/loadBalancers/24a32522-8bce-4b/inboundNatRules/44e2be43-e8c5-4a7d";
19152
Requests[3492].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19153
Requests[3492].
Request
.Path = "/subscriptions/87a6f75a-4edb-/resourceGroups/4f2a16dd-59de-436/providers/Microsoft.Network/loadBalancers/20705bb8-9340-47/inboundNatRules/077940ae-6d04-47d7";
19156
Requests[3493].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19157
Requests[3493].
Request
.Path = "/subscriptions/539ecc95-3fd8-/resourceGroups/cc362dbe-3e8d-475/providers/Microsoft.Network/loadBalancers/993ec159-315f-40/loadBalancingRules/a2814eff-c5cb-4f77-9d";
19160
Requests[3494].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19161
Requests[3494].
Request
.Path = "/subscriptions/49548392-8520-/resourceGroups/8f88c160-0718-4aa/providers/Microsoft.Network/loadBalancers/83ca8776-b035-4f/probes/e17a5b15-";
19164
Requests[3495].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19165
Requests[3495].
Request
.Path = "/subscriptions/ae9e6ad1-39a3-/resourceGroups/6312cebc-0617-4cd/providers/Microsoft.Network/networkInterfaces/c13bc402-5ad7-42fe-9/ipConfigurations/2cc4b5b9-c51c-4587-";
19168
Requests[3496].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19169
Requests[3496].
Request
.Path = "/subscriptions/25352ebf-30d2-/resourceGroups/566b5f1c-c7e6-4da/providers/Microsoft.Network/networkSecurityGroups/87e41767-6fab-4ac7-a5a5-/defaultSecurityRules/5e871e30-467c-45f2-8606";
19172
Requests[3497].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19173
Requests[3497].
Request
.Path = "/subscriptions/663da4a5-c53e-/resourceGroups/1c16b27e-bee4-4c6/providers/Microsoft.Network/networkSecurityGroups/b9fa6247-e969-4b15-91f1-/securityRules/cad39ae6-638c-40";
19176
Requests[3498].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19177
Requests[3498].
Request
.Path = "/subscriptions/7b2c1d21-0842-/resourceGroups/14e9a315-9d85-492/providers/Microsoft.Network/networkSecurityGroups/eefa68cd-49b8-493f-bc82-/securityRules/c3020b27-97c7-4d";
19180
Requests[3499].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19181
Requests[3499].
Request
.Path = "/subscriptions/74ad4561-642e-/resourceGroups/548e10e6-21ef-48d/providers/Microsoft.Network/networkSecurityGroups/cdaa2261-9a27-4164-bfd3-/securityRules/f755a7fe-150b-40";
19184
Requests[3500].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19185
Requests[3500].
Request
.Path = "/subscriptions/d5018188-f3da-/resourceGroups/34b1e79e-f8e8-4e7/providers/Microsoft.Network/networkWatchers/7ae3cdd7-6d63-436f/connectionMonitors/1d4b8c23-8f45-4228-b2";
19188
Requests[3501].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19189
Requests[3501].
Request
.Path = "/subscriptions/812cbacc-9dae-/resourceGroups/113810f4-23a8-456/providers/Microsoft.Network/networkWatchers/a3b85687-2393-41f5/connectionMonitors/e41d6e08-0612-4e2c-b8";
19192
Requests[3502].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19193
Requests[3502].
Request
.Path = "/subscriptions/4c7b9ef9-d467-/resourceGroups/229eaf93-33ca-45f/providers/Microsoft.Network/networkWatchers/71cf04bf-e6c7-41b3/connectionMonitors/7e252119-8d6d-4329-95";
19196
Requests[3503].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19197
Requests[3503].
Request
.Path = "/subscriptions/e8ee2592-fb52-/resourceGroups/bfec8c7a-9255-4cd/providers/Microsoft.Network/networkWatchers/86b3a912-5557-4d50/packetCaptures/4d7fa849-1aa6-4a4";
19200
Requests[3504].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19201
Requests[3504].
Request
.Path = "/subscriptions/3f8771fc-cf9c-/resourceGroups/51ea5769-7963-4c9/providers/Microsoft.Network/networkWatchers/e7ed7998-a975-4b66/packetCaptures/cc2d15e0-6167-46d";
19204
Requests[3505].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19205
Requests[3505].
Request
.Path = "/subscriptions/1c397139-f8b4-/resourceGroups/33350aff-f876-46c/providers/Microsoft.Network/networkWatchers/3cc2f582-a877-4c81/packetCaptures/c932b2cc-752e-479";
19208
Requests[3506].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19209
Requests[3506].
Request
.Path = "/subscriptions/c4ceeee2-499b-/resourceGroups/1b13683e-a54b-4ef/providers/Microsoft.Network/routeFilters/1a6512dc-7b59-4/routeFilterRules/c5447648";
19212
Requests[3507].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19213
Requests[3507].
Request
.Path = "/subscriptions/4b5b50e5-71a8-/resourceGroups/8a7b1f6b-e319-411/providers/Microsoft.Network/routeFilters/965ece29-30a0-4/routeFilterRules/bb43553d";
19216
Requests[3508].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19217
Requests[3508].
Request
.Path = "/subscriptions/e85664f7-cb4d-/resourceGroups/de439e56-c194-47d/providers/Microsoft.Network/routeFilters/49ebd842-df69-4/routeFilterRules/485fb1e2";
19220
Requests[3509].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19221
Requests[3509].
Request
.Path = "/subscriptions/ca69deed-9837-/resourceGroups/97054c49-9288-42f/providers/Microsoft.Network/routeFilters/af54ef10-8a30-4/routeFilterRules/ad10f706";
19224
Requests[3510].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19225
Requests[3510].
Request
.Path = "/subscriptions/c4ce9705-3a5c-/resourceGroups/ee0861c9-1b4c-4a9/providers/Microsoft.Network/routeTables/74a90a65-c3ee-/routes/d8de5d25-";
19228
Requests[3511].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19229
Requests[3511].
Request
.Path = "/subscriptions/6b45e9b3-7a2e-/resourceGroups/6b5de833-7585-427/providers/Microsoft.Network/routeTables/70dc046a-7562-/routes/eebb21d4-";
19232
Requests[3512].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19233
Requests[3512].
Request
.Path = "/subscriptions/e5d69f04-3056-/resourceGroups/7d90d3d4-5f57-42f/providers/Microsoft.Network/routeTables/904f088c-a724-/routes/dc5d32f4-";
19236
Requests[3513].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19237
Requests[3513].
Request
.Path = "/subscriptions/e6c5c6a0-8bc3-/resourceGroups/cd559ce5-1478-4ef/providers/Microsoft.Network/trafficmanagerprofiles/6844464f-42/heatMaps/e290e83f-81";
19240
Requests[3514].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19241
Requests[3514].
Request
.Path = "/subscriptions/9f8c1c68-c62f-/resourceGroups/fb3c9fd1-0aed-475/providers/Microsoft.Network/virtualNetworks/99492edd-674a-4396/subnets/dd42e3ce-5";
19244
Requests[3515].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19245
Requests[3515].
Request
.Path = "/subscriptions/9ec94caa-1fa2-/resourceGroups/fa59ad3e-76a6-475/providers/Microsoft.Network/virtualNetworks/d2cbf431-aebf-465a/subnets/e165129d-7";
19248
Requests[3516].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19249
Requests[3516].
Request
.Path = "/subscriptions/84802f5d-0e20-/resourceGroups/46d89d5a-30c3-42e/providers/Microsoft.Network/virtualNetworks/94b2f236-e103-4fd5/subnets/eda77098-4";
19252
Requests[3517].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19253
Requests[3517].
Request
.Path = "/subscriptions/5daf30dd-c1c2-/resourceGroups/a36200e0-21df-40b/providers/Microsoft.Network/virtualNetworks/7291513a-2bbb-4ac9/virtualNetworkPeerings/1eeab136-f13b-4e12-9165-f";
19256
Requests[3518].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19257
Requests[3518].
Request
.Path = "/subscriptions/5979864a-1e0e-/resourceGroups/35760caf-0ba4-4d9/providers/Microsoft.Network/virtualNetworks/65a1e7d2-f6db-486f/virtualNetworkPeerings/eb88034e-de66-4603-8068-d";
19260
Requests[3519].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19261
Requests[3519].
Request
.Path = "/subscriptions/3bc50e43-56f8-/resourceGroups/2e8e58a1-ccfe-40c/providers/Microsoft.Network/virtualNetworks/01d7ba2d-4f50-4325/virtualNetworkPeerings/2d7b59bb-44ae-4d45-89c1-e";
19264
Requests[3520].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19265
Requests[3520].
Request
.Path = "/subscriptions/d0e51f0f-e341-/resourceGroups/7015988f-c967-46d/providers/Microsoft.NotificationHubs/namespaces/5509cf7b-bbc2/AuthorizationRules/fa601838-c88b-4d3e-8a";
19268
Requests[3521].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19269
Requests[3521].
Request
.Path = "/subscriptions/ffe46171-0688-/resourceGroups/6d371afb-1342-4a9/providers/Microsoft.NotificationHubs/namespaces/573505a4-bfc1/AuthorizationRules/7e6cad8e-f67d-4a00-9e";
19272
Requests[3522].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19273
Requests[3522].
Request
.Path = "/subscriptions/6bb218d6-ae5e-/resourceGroups/612529f0-6c64-4b4/providers/Microsoft.NotificationHubs/namespaces/54d977a2-d122/AuthorizationRules/ec3e663b-ec3e-492a-a0";
19276
Requests[3523].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19277
Requests[3523].
Request
.Path = "/subscriptions/3d8907b3-7f3a-/resourceGroups/0c6d05eb-eb56-491/providers/Microsoft.NotificationHubs/namespaces/8084355a-2f16/AuthorizationRules/fa175406-7bcd-4a52-a1";
19280
Requests[3524].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19281
Requests[3524].
Request
.Path = "/subscriptions/0b663048-b011-/resourceGroups/51ead463-7a5c-426/providers/Microsoft.NotificationHubs/namespaces/510666c2-0757/notificationHubs/497c6769-b883-442d-";
19284
Requests[3525].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19285
Requests[3525].
Request
.Path = "/subscriptions/68cd1e09-d086-/resourceGroups/df90658b-9a4c-4f7/providers/Microsoft.NotificationHubs/namespaces/c30c7689-8344/notificationHubs/7d56aac1-c1ce-4741-";
19288
Requests[3526].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19289
Requests[3526].
Request
.Path = "/subscriptions/8e525449-ae5d-/resourceGroups/14f47cc7-e239-466/providers/Microsoft.NotificationHubs/namespaces/cd3315c9-566a/notificationHubs/2fc36085-358e-4441-";
19292
Requests[3527].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19293
Requests[3527].
Request
.Path = "/subscriptions/710ee48c-ed7f-/resourcegroups/e61a06e0-5941-43f/providers/Microsoft.OperationalInsights/workspaces/bc28940f-1dc8/dataSources/e713d136-7fb9-";
19296
Requests[3528].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19297
Requests[3528].
Request
.Path = "/subscriptions/89c230c4-f669-/resourcegroups/06be5007-4c2e-43d/providers/Microsoft.OperationalInsights/workspaces/1c68c98e-5945/dataSources/81c7ea20-d414-";
19300
Requests[3529].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19301
Requests[3529].
Request
.Path = "/subscriptions/625a8b49-a0cb-/resourcegroups/620ff9ef-abad-4fd/providers/Microsoft.OperationalInsights/workspaces/dc5c6816-19d4/dataSources/720c06e3-d2f6-";
19304
Requests[3530].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19305
Requests[3530].
Request
.Path = "/subscriptions/4ad9920b-4a5a-/resourcegroups/89973266-5e39-4b5/providers/Microsoft.OperationalInsights/workspaces/4909c312-dbeb/linkedServices/0768e184-337d-40c";
19308
Requests[3531].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19309
Requests[3531].
Request
.Path = "/subscriptions/a42221bc-6939-/resourcegroups/eea66522-3c8f-423/providers/Microsoft.OperationalInsights/workspaces/f026dd23-7b03/linkedServices/99a350dc-1018-4ff";
19312
Requests[3532].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19313
Requests[3532].
Request
.Path = "/subscriptions/854eef44-406c-/resourcegroups/cecb243c-ffae-40d/providers/Microsoft.OperationalInsights/workspaces/1b373304-b97f/linkedServices/e0fcc4c2-e01f-4a9";
19316
Requests[3533].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19317
Requests[3533].
Request
.Path = "/subscriptions/e75eee98-b6e1-/resourcegroups/63bd8925-1692-4d3/providers/Microsoft.OperationalInsights/workspaces/44911d4b-fe80/savedSearches/e769a61f-99a8-4";
19320
Requests[3534].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19321
Requests[3534].
Request
.Path = "/subscriptions/5d38ef6f-01e3-/resourcegroups/e67da77a-ef46-419/providers/Microsoft.OperationalInsights/workspaces/e98b50c9-4b1b/savedSearches/61efa1ad-0f34-4";
19324
Requests[3535].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19325
Requests[3535].
Request
.Path = "/subscriptions/7e186464-2492-/resourcegroups/6808b2d6-4fc8-4a1/providers/Microsoft.OperationalInsights/workspaces/65ba8286-41e6/savedSearches/42742120-5a4d-4";
19328
Requests[3536].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19329
Requests[3536].
Request
.Path = "/subscriptions/0711c343-9d56-/resourcegroups/6b963c83-5dd9-463/providers/Microsoft.OperationalInsights/workspaces/c2fc1d95-a208/search/a2d68";
19332
Requests[3537].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19333
Requests[3537].
Request
.Path = "/subscriptions/b5e1fd8b-477c-/resourcegroups/a4184d19-140c-4a2/providers/Microsoft.OperationalInsights/workspaces/d1e19421-328b/storageInsightConfigs/bc4542e7-52f7-420f";
19336
Requests[3538].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19337
Requests[3538].
Request
.Path = "/subscriptions/180b27eb-c0ef-/resourcegroups/be736599-edd9-4af/providers/Microsoft.OperationalInsights/workspaces/f4d97e63-0d72/storageInsightConfigs/e5dbdbf3-5a52-4766";
19340
Requests[3539].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19341
Requests[3539].
Request
.Path = "/subscriptions/976f60f0-7ec5-/resourcegroups/d9fbb8af-ee01-48c/providers/Microsoft.OperationalInsights/workspaces/e113c199-6720/storageInsightConfigs/19535fab-363f-45c2";
19344
Requests[3540].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19345
Requests[3540].
Request
.Path = "/Subscriptions/4c290d24-be40-/resourceGroups/698f0b3b-a8d2-4ff/providers/Microsoft.RecoveryServices/vaults/f7387631-1ac/replicationAlertSettings/382c300d-0536-4f";
19348
Requests[3541].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19349
Requests[3541].
Request
.Path = "/Subscriptions/d65c917d-1573-/resourceGroups/5da6d08f-a858-433/providers/Microsoft.RecoveryServices/vaults/57b4ae74-499/replicationAlertSettings/a3506944-14c7-42";
19352
Requests[3542].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19353
Requests[3542].
Request
.Path = "/Subscriptions/42beeaa2-095a-/resourceGroups/97b6e781-6091-480/providers/Microsoft.RecoveryServices/vaults/889e9029-909/replicationEvents/680ef85e-";
19356
Requests[3543].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19357
Requests[3543].
Request
.Path = "/Subscriptions/bde811a2-f54b-/resourceGroups/1ba0c0cd-6e5b-40e/providers/Microsoft.RecoveryServices/vaults/1592acdf-b31/replicationFabrics/d0e1cfc9-8";
19360
Requests[3544].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19361
Requests[3544].
Request
.Path = "/Subscriptions/f6bb761d-e13e-/resourceGroups/e5ea48fb-f05e-4dc/providers/Microsoft.RecoveryServices/vaults/0ad4de85-b03/replicationFabrics/720696fa-7";
19364
Requests[3545].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19365
Requests[3545].
Request
.Path = "/Subscriptions/4085e236-a93e-/resourceGroups/c3ad4b7f-9a5b-4e2/providers/Microsoft.RecoveryServices/vaults/d1d0adce-9a4/replicationFabrics/f39b8c82-5";
19368
Requests[3546].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19369
Requests[3546].
Request
.Path = "/Subscriptions/f26f4491-7b65-/resourceGroups/a98999ad-e073-4c2/providers/Microsoft.RecoveryServices/vaults/85398f53-159/replicationJobs/2167f3f";
19372
Requests[3547].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19373
Requests[3547].
Request
.Path = "/Subscriptions/b6b633ad-3bc9-/resourceGroups/7e9c9cb2-fc57-4b9/providers/Microsoft.RecoveryServices/vaults/ab02f798-b5b/replicationPolicies/951e6f56-f";
19376
Requests[3548].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19377
Requests[3548].
Request
.Path = "/Subscriptions/02b3cb39-15bc-/resourceGroups/5729d5e3-865c-4ae/providers/Microsoft.RecoveryServices/vaults/e4823c9e-7eb/replicationPolicies/a0447693-8";
19380
Requests[3549].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19381
Requests[3549].
Request
.Path = "/Subscriptions/80993d9c-8aac-/resourceGroups/7610c0a5-63fc-422/providers/Microsoft.RecoveryServices/vaults/6add19a4-364/replicationPolicies/71d4364a-4";
19384
Requests[3550].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19385
Requests[3550].
Request
.Path = "/Subscriptions/dd2e523d-53c0-/resourceGroups/5dea2965-2f73-4f6/providers/Microsoft.RecoveryServices/vaults/708c80ee-6e3/replicationPolicies/3d85215b-6";
19388
Requests[3551].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19389
Requests[3551].
Request
.Path = "/Subscriptions/8be1698b-9633-/resourceGroups/b8af0288-46ba-44a/providers/Microsoft.RecoveryServices/vaults/9edff46d-605/replicationRecoveryPlans/2b750c60-3466-4a";
19392
Requests[3552].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19393
Requests[3552].
Request
.Path = "/Subscriptions/6acadaf2-79e7-/resourceGroups/860fedc3-3e5d-417/providers/Microsoft.RecoveryServices/vaults/f3810dca-88b/replicationRecoveryPlans/dcd20ca9-3112-45";
19396
Requests[3553].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19397
Requests[3553].
Request
.Path = "/Subscriptions/1bbbbd66-166f-/resourceGroups/2a0f7cd7-4813-42a/providers/Microsoft.RecoveryServices/vaults/4c4e97f4-5ca/replicationRecoveryPlans/f1b3e3a6-4995-4b";
19400
Requests[3554].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19401
Requests[3554].
Request
.Path = "/Subscriptions/3216b4a6-2e5c-/resourceGroups/c12d1ebf-6196-4c7/providers/Microsoft.RecoveryServices/vaults/361df9be-59f/replicationRecoveryPlans/3d89e514-9d5e-4f";
19404
Requests[3555].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19405
Requests[3555].
Request
.Path = "/Subscriptions/efdacb8d-d8dd-/resourceGroups/24bce819-ffd6-4a3/providers/Microsoft.RecoveryServices/vaults/594eb53b-/backupEngines/3a910229-2d1e-4b";
19408
Requests[3556].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19409
Requests[3556].
Request
.Path = "/Subscriptions/de4f7f5b-5df4-/resourceGroups/e2d318db-443b-486/providers/Microsoft.RecoveryServices/vaults/f6c55619-/backupJobs/c0af570";
19412
Requests[3557].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19413
Requests[3557].
Request
.Path = "/Subscriptions/5c66b8ad-4974-/resourceGroups/8bd1f45e-2891-410/providers/Microsoft.RecoveryServices/vaults/8c50a2ad-/backupOperationResults/382690b7-81";
19416
Requests[3558].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19417
Requests[3558].
Request
.Path = "/Subscriptions/ad150d44-b4a4-/resourceGroups/128d5b84-98af-4c5/providers/Microsoft.RecoveryServices/vaults/7026290a-/backupOperations/438fd24c-33";
19420
Requests[3559].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19421
Requests[3559].
Request
.Path = "/Subscriptions/06a188e2-2b05-/resourceGroups/40421757-59d9-422/providers/Microsoft.RecoveryServices/vaults/d7935617-/backupPolicies/d0c38b89-f";
19424
Requests[3560].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19425
Requests[3560].
Request
.Path = "/Subscriptions/a81e9878-7775-/resourceGroups/479edeee-719a-462/providers/Microsoft.RecoveryServices/vaults/0cf46f6d-/backupPolicies/8e435166-b";
19428
Requests[3561].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19429
Requests[3561].
Request
.Path = "/Subscriptions/17beb2f4-bd4a-/resourceGroups/af0395bb-c69f-491/providers/Microsoft.RecoveryServices/vaults/9e25151f-/backupPolicies/96962300-8";
19432
Requests[3562].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19433
Requests[3562].
Request
.Path = "/Subscriptions/5e1766e7-781d-/resourceGroups/9b55e6cb-f4b5-474/providers/Microsoft.RecoveryServices/vaults/09251426-/certificates/3f5b3574-2496-4";
19436
Requests[3563].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19437
Requests[3563].
Request
.Path = "/subscriptions/341f3391-5a75-/resourceGroups/eb57e067-d906-45f/providers/Microsoft.RecoveryServices/vaults/896ebe23-/registeredIdentities/35011f31-688";
19440
Requests[3564].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19441
Requests[3564].
Request
.Path = "/subscriptions/afa0aeab-834a-/resourceGroups/bd76a471-adbc-4fe/providers/Microsoft.Relay/namespaces/652a1ddf-29eb/authorizationRules/b8d8a368-973e-4667-bc";
19444
Requests[3565].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19445
Requests[3565].
Request
.Path = "/subscriptions/84a63d17-0c4f-/resourceGroups/c40e777f-d4af-4d7/providers/Microsoft.Relay/namespaces/db386569-f8da/authorizationRules/b5673846-5582-4827-a3";
19448
Requests[3566].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19449
Requests[3566].
Request
.Path = "/subscriptions/946d27a0-91b3-/resourceGroups/6d45b9b1-dc29-448/providers/Microsoft.Relay/namespaces/a8abf9b6-46a4/authorizationRules/880458e5-9ae8-4cd9-9d";
19452
Requests[3567].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19453
Requests[3567].
Request
.Path = "/subscriptions/5d843d54-d376-/resourceGroups/558dffa3-2610-455/providers/Microsoft.Relay/namespaces/a983cdf7-21c9/AuthorizationRules/1ce187b0-6eba-4acc-8f";
19456
Requests[3568].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19457
Requests[3568].
Request
.Path = "/subscriptions/b27e94a2-3d79-/resourceGroups/42bf3f7e-3ea0-46b/providers/Microsoft.Relay/namespaces/cc33fdce-7f44/hybridConnections/e712cfda-6198-4d56-a";
19460
Requests[3569].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19461
Requests[3569].
Request
.Path = "/subscriptions/e358184f-5e25-/resourceGroups/5bb5c3f1-7948-444/providers/Microsoft.Relay/namespaces/4d268b06-2975/hybridConnections/756be23e-a201-4aea-9";
19464
Requests[3570].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19465
Requests[3570].
Request
.Path = "/subscriptions/39218c84-0254-/resourceGroups/fff6ff11-adba-4ed/providers/Microsoft.Relay/namespaces/e3532a03-142d/hybridConnections/168e163c-ff9c-45e0-8";
19468
Requests[3571].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19469
Requests[3571].
Request
.Path = "/subscriptions/cb2640a6-7903-/resourceGroups/7144f497-93d3-429/providers/Microsoft.Relay/namespaces/e9e04427-c3bd/wcfRelays/d8395d8b-";
19472
Requests[3572].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19473
Requests[3572].
Request
.Path = "/subscriptions/8a71dfb9-5712-/resourceGroups/41961868-f1c4-41f/providers/Microsoft.Relay/namespaces/55d4ce48-e669/wcfRelays/9f2bcf06-";
19476
Requests[3573].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19477
Requests[3573].
Request
.Path = "/subscriptions/0d9f7526-e658-/resourceGroups/86a55245-03f2-429/providers/Microsoft.Relay/namespaces/d8e50b36-e481/wcfRelays/a26ef109-";
19480
Requests[3574].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19481
Requests[3574].
Request
.Path = "/subscriptions/49ccb59e-6417-/resourceGroups/ef065643-f9ac-416/providers/Microsoft.Scheduler/jobCollections/ad10abb9-0078-49c/jobs/a5be877";
19484
Requests[3575].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19485
Requests[3575].
Request
.Path = "/subscriptions/a945db49-974d-/resourceGroups/195d7562-3fbe-4f0/providers/Microsoft.Scheduler/jobCollections/8d3219a5-6956-47e/jobs/121ca5d";
19488
Requests[3576].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19489
Requests[3576].
Request
.Path = "/subscriptions/70fd58c9-cd6f-/resourceGroups/d1a18956-b8f3-498/providers/Microsoft.Scheduler/jobCollections/0d0c6ab2-0530-4ca/jobs/b7afbed";
19492
Requests[3577].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19493
Requests[3577].
Request
.Path = "/subscriptions/aab3f90b-83dd-/resourceGroups/dbc49cd3-b1b0-48f/providers/Microsoft.Scheduler/jobCollections/e5121cb9-69f2-479/jobs/cab9fcd";
19496
Requests[3578].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19497
Requests[3578].
Request
.Path = "/subscriptions/b9f66040-e1bd-/resourceGroups/5328484a-9d53-40a/providers/Microsoft.Search/searchServices/a3332744-f3db-471/createQueryKey/ed05b";
19500
Requests[3579].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19501
Requests[3579].
Request
.Path = "/subscriptions/1a560876-e35a-/resourceGroups/2ea10e5a-445d-4b2/providers/Microsoft.Search/searchServices/45ab4008-d21a-4da/deleteQueryKey/1c966";
19504
Requests[3580].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19505
Requests[3580].
Request
.Path = "/subscriptions/df4af081-af25-/resourceGroups/e3c98ba4-4471-45c/providers/Microsoft.Search/searchServices/90365768-5f05-4f5/regenerateAdminKey/6dc4366";
19508
Requests[3581].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19509
Requests[3581].
Request
.Path = "/subscriptions/4f3f5327-bc73-/resourceGroups/9e736c76-9cca-4f0/providers/Microsoft.Security/locations/24fd2d57-a0/alerts/1e8511ae-";
19512
Requests[3582].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19513
Requests[3582].
Request
.Path = "/subscriptions/59350987-c1d7-/resourceGroups/7f774d6d-05de-4b6/providers/Microsoft.Security/locations/045adeb9-16/discoveredSecuritySolutions/40d6e5ed-e1a5-47c2-8dec-996357";
19516
Requests[3583].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19517
Requests[3583].
Request
.Path = "/subscriptions/bde5b1bb-da11-/resourceGroups/f058e130-bd88-460/providers/Microsoft.Security/locations/9af6ecd8-62/ExternalSecuritySolutions/4c9b1aa8-04ed-4320-ba9e-4665c";
19520
Requests[3584].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19521
Requests[3584].
Request
.Path = "/subscriptions/9c051a76-8ce4-/resourceGroups/9203e62b-395e-4da/providers/Microsoft.Security/locations/719914da-3f/jitNetworkAccessPolicies/015091a4-a630-41c5-a821-b3";
19524
Requests[3585].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19525
Requests[3585].
Request
.Path = "/subscriptions/c306798d-1389-/resourceGroups/e4c1c367-b8c3-443/providers/Microsoft.Security/locations/ce012f39-86/jitNetworkAccessPolicies/69c7d0d1-d5f0-44b3-8d12-c5";
19528
Requests[3586].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19529
Requests[3586].
Request
.Path = "/subscriptions/9a06bcc7-4053-/resourceGroups/99fd5ccf-8eb4-419/providers/Microsoft.Security/locations/586de508-7a/jitNetworkAccessPolicies/59a8088c-b62c-4c9b-9b4f-91";
19532
Requests[3587].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19533
Requests[3587].
Request
.Path = "/subscriptions/df00b862-60b6-/resourceGroups/59fff4ee-414a-416/providers/Microsoft.Security/locations/40fc0870-1e/tasks/cf42cb55";
19536
Requests[3588].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19537
Requests[3588].
Request
.Path = "/subscriptions/ceadc42b-b4b8-/resourceGroups/a5992715-a78b-4a1/providers/Microsoft.ServerManagement/nodes/4a474d74/sessions/a9dda03";
19540
Requests[3589].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19541
Requests[3589].
Request
.Path = "/subscriptions/1fe3f0ff-9fb7-/resourceGroups/3f98e429-cc0e-442/providers/Microsoft.ServerManagement/nodes/966455cd/sessions/337d144";
19544
Requests[3590].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19545
Requests[3590].
Request
.Path = "/subscriptions/1b4abc04-213b-/resourceGroups/f9717435-2a41-4eb/providers/Microsoft.ServerManagement/nodes/136d2e76/sessions/4982171";
19548
Requests[3591].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19549
Requests[3591].
Request
.Path = "/subscriptions/1cca3ed1-6a93-/resourceGroups/6dd75fc1-0a14-4f8/providers/Microsoft.ServiceBus/namespaces/216b8f97-29c0/AuthorizationRules/e45ca7b5-57f1-4202-a7";
19552
Requests[3592].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19553
Requests[3592].
Request
.Path = "/subscriptions/b0270832-57d6-/resourceGroups/0a5cdccb-afb3-447/providers/Microsoft.ServiceBus/namespaces/c4e39f9e-0fef/AuthorizationRules/5705da5b-dc9c-42f0-86";
19556
Requests[3593].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19557
Requests[3593].
Request
.Path = "/subscriptions/c9155b32-3054-/resourceGroups/064149d8-f542-482/providers/Microsoft.ServiceBus/namespaces/03d25a39-563b/AuthorizationRules/a96da34e-28a6-4cbe-85";
19560
Requests[3594].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19561
Requests[3594].
Request
.Path = "/subscriptions/8b3f4538-d073-/resourceGroups/419a5c28-dd79-4db/providers/Microsoft.ServiceBus/namespaces/16216f23-c19b/AuthorizationRules/4907955a-7a4d-447e-a7";
19564
Requests[3595].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19565
Requests[3595].
Request
.Path = "/subscriptions/e91cd07b-39d2-/resourceGroups/8032b272-897c-4bd/providers/Microsoft.ServiceBus/namespaces/59b39ef7-0bea/disasterRecoveryConfigs/25453";
19568
Requests[3596].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19569
Requests[3596].
Request
.Path = "/subscriptions/5b58e621-8ad3-/resourceGroups/48d6e71f-5d64-42f/providers/Microsoft.ServiceBus/namespaces/d2a645bc-492d/disasterRecoveryConfigs/3e688";
19572
Requests[3597].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19573
Requests[3597].
Request
.Path = "/subscriptions/fcab6a4a-e250-/resourceGroups/2b7d754c-667d-4f1/providers/Microsoft.ServiceBus/namespaces/9b53b9e4-cfa6/disasterRecoveryConfigs/5ceaa";
19576
Requests[3598].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19577
Requests[3598].
Request
.Path = "/subscriptions/5a664d0d-6c32-/resourceGroups/7c10d9fa-eaa6-4b7/providers/Microsoft.ServiceBus/namespaces/a110839b-e7d5/migrationConfigurations/0c542530-5";
19580
Requests[3599].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19581
Requests[3599].
Request
.Path = "/subscriptions/8c920654-b1ae-/resourceGroups/43beba9a-3309-41d/providers/Microsoft.ServiceBus/namespaces/c5ddf40a-e9eb/migrationConfigurations/b1f6ecdb-f";
19584
Requests[3600].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19585
Requests[3600].
Request
.Path = "/subscriptions/bbb1be86-1ef9-/resourceGroups/ab9b0927-9c2f-45f/providers/Microsoft.ServiceBus/namespaces/f0d487bd-86c8/migrationConfigurations/ac9d0476-3";
19588
Requests[3601].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19589
Requests[3601].
Request
.Path = "/subscriptions/bb093ba6-7192-/resourceGroups/afbb3b68-6dc9-441/providers/Microsoft.ServiceBus/namespaces/727666d6-9c5c/queues/0a91b761-";
19592
Requests[3602].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19593
Requests[3602].
Request
.Path = "/subscriptions/b56bdbb3-da78-/resourceGroups/a9b0ccb0-b954-44d/providers/Microsoft.ServiceBus/namespaces/2fd7ab2f-51fd/queues/88e0cef5-";
19596
Requests[3603].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19597
Requests[3603].
Request
.Path = "/subscriptions/c9446009-4ddc-/resourceGroups/eeed8376-80b6-412/providers/Microsoft.ServiceBus/namespaces/998220c6-3477/queues/66609b48-";
19600
Requests[3604].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19601
Requests[3604].
Request
.Path = "/subscriptions/a772b83d-b6c7-/resourceGroups/141f0f6e-0be7-46c/providers/Microsoft.ServiceBus/namespaces/c9e65d53-42e8/topics/2fb8b097-";
19604
Requests[3605].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19605
Requests[3605].
Request
.Path = "/subscriptions/bf97ddc8-e729-/resourceGroups/2bfa74f3-e406-484/providers/Microsoft.ServiceBus/namespaces/3a01c77f-0192/topics/99c96d74-";
19608
Requests[3606].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19609
Requests[3606].
Request
.Path = "/subscriptions/763c747b-560b-/resourceGroups/c086ad3b-ce61-414/providers/Microsoft.ServiceBus/namespaces/04d61576-a4e5/topics/f39dbcf4-";
19612
Requests[3607].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19613
Requests[3607].
Request
.Path = "/subscriptions/78f85495-0feb-/resourceGroups/3a3010a3-1f23-410/providers/Microsoft.ServiceFabric/clusters/e123c7e7-69/applications/2e0c19d3-5e56-4";
19616
Requests[3608].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19617
Requests[3608].
Request
.Path = "/subscriptions/f292dbc8-3b07-/resourceGroups/57c34f72-4980-47f/providers/Microsoft.ServiceFabric/clusters/42be9cd7-94/applications/12cdcfd8-3e9f-4";
19620
Requests[3609].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19621
Requests[3609].
Request
.Path = "/subscriptions/32a8b82b-b015-/resourceGroups/2a424666-429c-49e/providers/Microsoft.ServiceFabric/clusters/771517e2-bb/applications/d8a6bc5d-8474-4";
19624
Requests[3610].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19625
Requests[3610].
Request
.Path = "/subscriptions/38dd114a-e79d-/resourceGroups/eecc7ef7-e44b-4b1/providers/Microsoft.ServiceFabric/clusters/e679a19c-d0/applications/bbdc3fe8-e2d4-4";
19628
Requests[3611].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19629
Requests[3611].
Request
.Path = "/subscriptions/78c1e480-67e9-/resourceGroups/2e7e3cf0-8191-48a/providers/Microsoft.ServiceFabric/clusters/d04abb8f-83/applicationTypes/275e7132-5268-46b6-";
19632
Requests[3612].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19633
Requests[3612].
Request
.Path = "/subscriptions/99991146-7888-/resourceGroups/8dc90734-28a4-44d/providers/Microsoft.ServiceFabric/clusters/51adaad8-0c/applicationTypes/27588c5a-dfc0-41f7-";
19636
Requests[3613].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19637
Requests[3613].
Request
.Path = "/subscriptions/b1660710-3b01-/resourceGroups/78ac331a-fd2f-4e6/providers/Microsoft.ServiceFabric/clusters/13c769e7-2c/applicationTypes/fe2fc946-172f-492b-";
19640
Requests[3614].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19641
Requests[3614].
Request
.Path = "/subscriptions/53936cc0-a23e-/resourceGroups/3b36a41e-5cde-45c/providers/Microsoft.Sql/locations/f05f2945-641/instanceFailoverGroups/c8f1f2d0-4f6a-44e";
19644
Requests[3615].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19645
Requests[3615].
Request
.Path = "/subscriptions/73430bbc-3a23-/resourceGroups/086cf9b0-2245-47f/providers/Microsoft.Sql/locations/69d55bbd-e34/instanceFailoverGroups/43cf9c7c-85ff-467";
19648
Requests[3616].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19649
Requests[3616].
Request
.Path = "/subscriptions/ca8e1224-8bab-/resourceGroups/9e231561-3c41-462/providers/Microsoft.Sql/locations/b94bcd99-6fe/instanceFailoverGroups/40408b8e-b96d-473";
19652
Requests[3617].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19653
Requests[3617].
Request
.Path = "/subscriptions/fc1ff79b-be3b-/resourceGroups/7520b907-3425-4c1/providers/Microsoft.Sql/managedInstances/f6c83ff3-5189-4d62-/databases/b0a34872-ea4";
19656
Requests[3618].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19657
Requests[3618].
Request
.Path = "/subscriptions/61078b3a-5778-/resourceGroups/54cc77fb-b958-4eb/providers/Microsoft.Sql/managedInstances/2aeb9a86-b203-40c6-/databases/cb8aa49c-7bd";
19660
Requests[3619].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19661
Requests[3619].
Request
.Path = "/subscriptions/41aea38f-65ab-/resourceGroups/941c6486-3bfd-4cb/providers/Microsoft.Sql/managedInstances/9f2ec492-8ebe-4e31-/databases/c69cd4ef-e18";
19664
Requests[3620].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19665
Requests[3620].
Request
.Path = "/subscriptions/6fa29189-7047-/resourceGroups/aed4ef3b-4ea9-451/providers/Microsoft.Sql/managedInstances/7026ef70-a6df-47ba-/databases/53b857da-e07";
19668
Requests[3621].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19669
Requests[3621].
Request
.Path = "/subscriptions/a5efbd7b-19e0-/resourceGroups/3a402cfc-7f5b-458/providers/Microsoft.Sql/servers/53307d15-2/administrators/56bd6556-4d8d-46e";
19672
Requests[3622].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19673
Requests[3622].
Request
.Path = "/subscriptions/96e69c52-482b-/resourceGroups/affb13c3-f4b9-4ba/providers/Microsoft.Sql/servers/cc78a68a-d/administrators/db1d2fac-dbbc-4d7";
19676
Requests[3623].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19677
Requests[3623].
Request
.Path = "/subscriptions/7658e30b-132f-/resourceGroups/c3ca3345-4bf6-452/providers/Microsoft.Sql/servers/52003ba6-2/administrators/dab02be0-41ae-4c1";
19680
Requests[3624].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19681
Requests[3624].
Request
.Path = "/subscriptions/97d179ff-c257-/resourceGroups/55f1802a-8a41-40a/providers/Microsoft.Sql/servers/1ce91983-0/advisors/72b956f6-c3";
19684
Requests[3625].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19685
Requests[3625].
Request
.Path = "/subscriptions/46e3e2b1-c5a6-/resourceGroups/7bdc7c8b-3dbe-428/providers/Microsoft.Sql/servers/fb95cbe8-f/advisors/61313abd-72";
19688
Requests[3626].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19689
Requests[3626].
Request
.Path = "/subscriptions/e2768db7-527f-/resourceGroups/ea10042e-03a9-4d3/providers/Microsoft.Sql/servers/2630bade-4/advisors/f59388b5-27";
19692
Requests[3627].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19693
Requests[3627].
Request
.Path = "/subscriptions/28f12b5c-0767-/resourceGroups/8793c6aa-522b-419/providers/Microsoft.Sql/servers/73fd62a3-0/auditingPolicies/65357168-f9a0-4420-a6da";
19696
Requests[3628].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19697
Requests[3628].
Request
.Path = "/subscriptions/8958d1eb-a557-/resourceGroups/c891c9a7-d417-462/providers/Microsoft.Sql/servers/614ef8e5-1/auditingPolicies/bea1612b-745e-4042-842a";
19700
Requests[3629].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19701
Requests[3629].
Request
.Path = "/subscriptions/af1fcaf6-02c6-/resourceGroups/0c66bae2-9791-4fb/providers/Microsoft.Sql/servers/1bb48be4-9/backupLongTermRetentionVaults/593df173-8337-4f8a-9032-d84fa7d9";
19704
Requests[3630].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19705
Requests[3630].
Request
.Path = "/subscriptions/a5b29161-0c6d-/resourceGroups/f78be39b-1cbf-44e/providers/Microsoft.Sql/servers/7823aece-a/backupLongTermRetentionVaults/fe795322-c3b3-4cf3-ab00-6fef4b3c";
19708
Requests[3631].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19709
Requests[3631].
Request
.Path = "/subscriptions/3c82c3b6-d53a-/resourceGroups/b3a92e31-a33d-4f9/providers/Microsoft.Sql/servers/dc3f54f4-e/communicationLinks/9fb18fa1-4d1b-4b7b-97";
19712
Requests[3632].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19713
Requests[3632].
Request
.Path = "/subscriptions/6f7ddbf4-2213-/resourceGroups/d9c92278-a39c-42d/providers/Microsoft.Sql/servers/54e5f231-0/communicationLinks/45f58af8-94de-4bf9-ae";
19716
Requests[3633].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19717
Requests[3633].
Request
.Path = "/subscriptions/c7f659aa-e56f-/resourceGroups/8444f9d8-b118-441/providers/Microsoft.Sql/servers/9039a1c0-d/communicationLinks/f7039088-1cbd-4e10-82";
19720
Requests[3634].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19721
Requests[3634].
Request
.Path = "/subscriptions/74fc0852-7975-/resourceGroups/c6a61b5b-f753-42f/providers/Microsoft.Sql/servers/a1a9ce5c-1/connectionPolicies/5924e074-b27d-4100-9";
19724
Requests[3635].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19725
Requests[3635].
Request
.Path = "/subscriptions/5c430f86-df17-/resourceGroups/684ac433-50e9-48d/providers/Microsoft.Sql/servers/8dd38507-0/connectionPolicies/ce1b1db7-1cb4-420b-9";
19728
Requests[3636].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19729
Requests[3636].
Request
.Path = "/subscriptions/1b470e22-b6c7-/resourceGroups/1c94e2cf-7faf-408/providers/Microsoft.Sql/servers/fe5f74fd-f/databases/0fae7977-a7c";
19732
Requests[3637].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19733
Requests[3637].
Request
.Path = "/subscriptions/30703fa9-bb7b-/resourceGroups/eb90cfb1-9419-49a/providers/Microsoft.Sql/servers/d296fcb0-4/databases/ac1c1aa0-71e";
19736
Requests[3638].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19737
Requests[3638].
Request
.Path = "/subscriptions/ad076480-200e-/resourceGroups/270680b0-6e03-435/providers/Microsoft.Sql/servers/00777c95-6/databases/2bc360d0-871";
19740
Requests[3639].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19741
Requests[3639].
Request
.Path = "/subscriptions/5b0856c6-422b-/resourceGroups/aa0b7e4b-1061-48f/providers/Microsoft.Sql/servers/fc555022-8/databases/f27cdf49-9cf";
19744
Requests[3640].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19745
Requests[3640].
Request
.Path = "/subscriptions/eeee3538-ece5-/resourceGroups/20eeee13-9375-487/providers/Microsoft.Sql/servers/45b86e10-8/disasterRecoveryConfiguration/9684f623-762a-4dae-885f-12d319540";
19748
Requests[3641].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19749
Requests[3641].
Request
.Path = "/subscriptions/54b32210-21b8-/resourceGroups/391a35ed-288c-4b9/providers/Microsoft.Sql/servers/25ee6885-6/disasterRecoveryConfiguration/0b34f3ea-9505-4556-a359-284418cc2";
19752
Requests[3642].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19753
Requests[3642].
Request
.Path = "/subscriptions/55163867-c648-/resourceGroups/aaac97a5-0730-417/providers/Microsoft.Sql/servers/ef8269d4-d/disasterRecoveryConfiguration/dcf3f629-d12b-4218-ac9c-167022d51";
19756
Requests[3643].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19757
Requests[3643].
Request
.Path = "/subscriptions/17e23a5a-3b4b-/resourceGroups/74430ff1-7fc4-47b/providers/Microsoft.Sql/servers/6ede82a3-5/dnsAliases/ba21d2f5-0b6";
19760
Requests[3644].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19761
Requests[3644].
Request
.Path = "/subscriptions/90f3c42c-cc5f-/resourceGroups/898e6c61-a7e4-484/providers/Microsoft.Sql/servers/dc407848-9/dnsAliases/02f0fdf8-52d";
19764
Requests[3645].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19765
Requests[3645].
Request
.Path = "/subscriptions/4d0a41b3-65f7-/resourceGroups/0117d15d-81ca-415/providers/Microsoft.Sql/servers/c69d5f25-5/dnsAliases/d1c70cba-442";
19768
Requests[3646].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19769
Requests[3646].
Request
.Path = "/subscriptions/28ea0723-fb83-/resourceGroups/8ea39bc1-ed31-475/providers/Microsoft.Sql/servers/2741b403-7/elasticPools/7f3a7018-7f59-4";
19772
Requests[3647].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19773
Requests[3647].
Request
.Path = "/subscriptions/07dd2e6d-bce5-/resourceGroups/01eaecdd-b503-4c9/providers/Microsoft.Sql/servers/5c113b32-f/elasticPools/3e5464a8-c236-4";
19776
Requests[3648].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19777
Requests[3648].
Request
.Path = "/subscriptions/e81075b4-3d25-/resourceGroups/7fd483e8-a153-433/providers/Microsoft.Sql/servers/8c119753-e/elasticPools/3b1f386e-26fa-4";
19780
Requests[3649].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19781
Requests[3649].
Request
.Path = "/subscriptions/0b115db3-aa98-/resourceGroups/b57e97ce-0740-44a/providers/Microsoft.Sql/servers/f155ba8c-9/elasticPools/96d3bf2a-0185-4";
19784
Requests[3650].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19785
Requests[3650].
Request
.Path = "/subscriptions/eb3a4f63-2663-/resourceGroups/0698336a-67df-42c/providers/Microsoft.Sql/servers/59236b98-e/encryptionProtector/d4a94ca4-14a9-4b67-a5b4";
19788
Requests[3651].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19789
Requests[3651].
Request
.Path = "/subscriptions/3fd7563d-f536-/resourceGroups/da48220f-2c41-4b6/providers/Microsoft.Sql/servers/6a792d72-5/encryptionProtector/97bbb22d-9f55-46ee-ad10";
19792
Requests[3652].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19793
Requests[3652].
Request
.Path = "/subscriptions/bcac6d00-d107-/resourceGroups/5b951425-aff4-44a/providers/Microsoft.Sql/servers/6396a62d-9/failoverGroups/e25a7aea-abe6-4c7";
19796
Requests[3653].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19797
Requests[3653].
Request
.Path = "/subscriptions/43c14a34-6587-/resourceGroups/84da74c4-8c0e-473/providers/Microsoft.Sql/servers/38dde54f-d/failoverGroups/09124e4d-a175-4c8";
19800
Requests[3654].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19801
Requests[3654].
Request
.Path = "/subscriptions/d84864f9-010d-/resourceGroups/ce0d15f1-9c03-492/providers/Microsoft.Sql/servers/66a043c0-9/failoverGroups/d1363882-ffeb-4f8";
19804
Requests[3655].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19805
Requests[3655].
Request
.Path = "/subscriptions/ee7f23f3-548d-/resourceGroups/37d68090-b899-423/providers/Microsoft.Sql/servers/e7cbe8e3-8/failoverGroups/80d69693-cb02-49d";
19808
Requests[3656].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19809
Requests[3656].
Request
.Path = "/subscriptions/1c7f7a85-cdbb-/resourceGroups/7e5f7fc0-f754-461/providers/Microsoft.Sql/servers/fbff8a59-4/firewallRules/e6a3dbcb-d920-43";
19812
Requests[3657].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19813
Requests[3657].
Request
.Path = "/subscriptions/6eb68ce4-9400-/resourceGroups/e068320f-99c0-4a0/providers/Microsoft.Sql/servers/6ce3eb47-2/firewallRules/b7f478ae-d205-4c";
19816
Requests[3658].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19817
Requests[3658].
Request
.Path = "/subscriptions/b6ea026c-4a96-/resourceGroups/d5b3d7fd-6cb7-45d/providers/Microsoft.Sql/servers/649378a6-0/firewallRules/768cbd5c-099b-46";
19820
Requests[3659].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19821
Requests[3659].
Request
.Path = "/subscriptions/4c95af31-6266-/resourceGroups/dfe75acb-cbc4-4bf/providers/Microsoft.Sql/servers/7867db67-5/jobAgents/b7cf119a-26e";
19824
Requests[3660].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19825
Requests[3660].
Request
.Path = "/subscriptions/99bdbbcc-3e5e-/resourceGroups/4697c908-7cf4-486/providers/Microsoft.Sql/servers/101f46cd-6/jobAgents/8ed57837-b55";
19828
Requests[3661].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19829
Requests[3661].
Request
.Path = "/subscriptions/9aea31ac-7134-/resourceGroups/c87979aa-d8ad-41a/providers/Microsoft.Sql/servers/57d10e01-e/jobAgents/a555a75b-196";
19832
Requests[3662].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19833
Requests[3662].
Request
.Path = "/subscriptions/87ac8d36-c84a-/resourceGroups/bad826e2-6c2a-4db/providers/Microsoft.Sql/servers/da9e81a2-b/jobAgents/218d19c6-bf2";
19836
Requests[3663].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19837
Requests[3663].
Request
.Path = "/subscriptions/301c2c43-d4ed-/resourceGroups/29e5e849-7c13-453/providers/Microsoft.Sql/servers/2c809f1e-7/keys/803d66d";
19840
Requests[3664].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19841
Requests[3664].
Request
.Path = "/subscriptions/155211b4-bbcc-/resourceGroups/d8841ae8-8547-47d/providers/Microsoft.Sql/servers/8da67c10-3/keys/3d9f767";
19844
Requests[3665].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19845
Requests[3665].
Request
.Path = "/subscriptions/d8c2cd7f-c2d0-/resourceGroups/7c6b2ba7-6633-46e/providers/Microsoft.Sql/servers/c49826ae-7/keys/1fef8bc";
19848
Requests[3666].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19849
Requests[3666].
Request
.Path = "/subscriptions/a91ea4e4-8bd3-/resourceGroups/9efad4f8-b5fb-48e/providers/Microsoft.Sql/servers/befdde85-7/recommendedElasticPools/68fae41a-62e6-4330-8ba7-de";
19852
Requests[3667].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19853
Requests[3667].
Request
.Path = "/subscriptions/a64d8136-8a72-/resourceGroups/7cf8d81f-6d85-451/providers/Microsoft.Sql/servers/9355b75f-b/recoverableDatabases/0938ef12-bb5";
19856
Requests[3668].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19857
Requests[3668].
Request
.Path = "/subscriptions/ef17d84d-8988-/resourceGroups/3440242c-883a-4d4/providers/Microsoft.Sql/servers/73632d9c-4/restorableDroppedDatabases/f4999d14-a2cb-48a2-8b81-1a791";
19860
Requests[3669].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19861
Requests[3669].
Request
.Path = "/subscriptions/eeaf0a55-5b54-/resourceGroups/c8ee0d1b-1f02-4f7/providers/Microsoft.Sql/servers/1018be95-7/serviceObjectives/130764ae-d8cc-4e14-8";
19864
Requests[3670].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19865
Requests[3670].
Request
.Path = "/subscriptions/519b8264-2eeb-/resourceGroups/4de11410-8247-413/providers/Microsoft.Sql/servers/99637833-b/syncAgents/a132c1a2-1c37";
19868
Requests[3671].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19869
Requests[3671].
Request
.Path = "/subscriptions/7d53d480-3247-/resourceGroups/690ce51b-3b60-4c1/providers/Microsoft.Sql/servers/c0f8f996-3/syncAgents/99d0a75b-dd49";
19872
Requests[3672].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19873
Requests[3672].
Request
.Path = "/subscriptions/10228d13-07cb-/resourceGroups/67c41592-8b4d-478/providers/Microsoft.Sql/servers/9f72e9b7-9/syncAgents/e494d0be-631a";
19876
Requests[3673].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19877
Requests[3673].
Request
.Path = "/subscriptions/3d46c805-0b9f-/resourceGroups/a03f03c8-6b7e-444/providers/Microsoft.Sql/servers/5fe98dab-9/virtualNetworkRules/5e11f064-8539-4b5b-842";
19880
Requests[3674].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19881
Requests[3674].
Request
.Path = "/subscriptions/39f6001a-a902-/resourceGroups/a69e8a77-0136-41a/providers/Microsoft.Sql/servers/bea34886-9/virtualNetworkRules/d22b2538-d0e1-4c59-813";
19884
Requests[3675].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19885
Requests[3675].
Request
.Path = "/subscriptions/4436eabf-7fb6-/resourceGroups/66ae917e-7096-494/providers/Microsoft.Sql/servers/34dcc0da-9/virtualNetworkRules/b04e0122-107a-496b-84f";
19888
Requests[3676].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19889
Requests[3676].
Request
.Path = "/subscriptions/4e94fc68-807f-/resourcegroups/3a90be95-f0cd-451/providers/Microsoft.Storage.Admin/farms/85f536/blobservices/c3ef5c62-28";
19892
Requests[3677].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19893
Requests[3677].
Request
.Path = "/subscriptions/c0565da1-b47a-/resourcegroups/3bd34546-a537-42a/providers/Microsoft.Storage.Admin/farms/d689bd/operationresults/f7fc99bd-bb";
19896
Requests[3678].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19897
Requests[3678].
Request
.Path = "/subscriptions/d34d0dc3-de4a-/resourcegroups/3452f1cc-2f7c-4f6/providers/Microsoft.Storage.Admin/farms/822e97/queueservices/8608a9a2-20";
19900
Requests[3679].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19901
Requests[3679].
Request
.Path = "/subscriptions/bd597ae8-aacc-/resourcegroups/544d37f0-7c91-4d3/providers/Microsoft.Storage.Admin/farms/e2c33d/shares/f9069feb-";
19904
Requests[3680].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
19905
Requests[3680].
Request
.Path = "/subscriptions/3b0e9ea8-c8de-/resourcegroups/4e8ee799-bf6d-408/providers/Microsoft.Storage.Admin/farms/6c853f/storageaccounts/8266a3a0-";
19908
Requests[3681].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19909
Requests[3681].
Request
.Path = "/subscriptions/6770ceae-7b83-/resourcegroups/1089c040-6639-44e/providers/Microsoft.Storage.Admin/farms/42ebb8/storageaccounts/6ac4f4ba-";
19912
Requests[3682].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19913
Requests[3682].
Request
.Path = "/subscriptions/84682694-0b62-/resourcegroups/6a8c05fb-dbeb-452/providers/Microsoft.Storage.Admin/farms/442ef1/tableservices/70f73580-41";
19916
Requests[3683].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19917
Requests[3683].
Request
.Path = "/subscriptions/3df9232b-683f-/resourceGroups/dd57df6b-ad8e-4d7/providers/Microsoft.Storage/storageAccounts/38dd76ce-a7/managementPolicies/90364da4-82f5-49a1-a";
19920
Requests[3684].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19921
Requests[3684].
Request
.Path = "/subscriptions/febb1089-7194-/resourceGroups/b4dbd1ab-bd68-40a/providers/Microsoft.Storage/storageAccounts/a5ca5063-ea/managementPolicies/4f834371-132e-47eb-8";
19924
Requests[3685].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19925
Requests[3685].
Request
.Path = "/subscriptions/6f3dda26-2e6c-/resourceGroups/8e1428e4-f238-4ed/providers/Microsoft.Storage/storageAccounts/4f1e4848-93/managementPolicies/81b2fafc-9726-44bb-8";
19928
Requests[3686].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19929
Requests[3686].
Request
.Path = "/subscriptions/e746e6a7-14cd-/resourceGroups/39ca1c6d-2e76-452/providers/Microsoft.StorSimple/managers/028c33fa-4e/accessControlRecords/631b7c5a-adfa-4d50-abd0";
19932
Requests[3687].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19933
Requests[3687].
Request
.Path = "/subscriptions/9b010ebe-cd35-/resourceGroups/2c40312a-2ab3-41f/providers/Microsoft.StorSimple/managers/57720dd1-97/accessControlRecords/0c4ed516-7395-4098-a8dc";
19936
Requests[3688].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19937
Requests[3688].
Request
.Path = "/subscriptions/c7fd6d70-929e-/resourceGroups/a89f81da-689a-4f5/providers/Microsoft.StorSimple/managers/5b579b6e-be/accessControlRecords/a4005d84-e62e-4283-a2ed";
19940
Requests[3689].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19941
Requests[3689].
Request
.Path = "/subscriptions/d1bcffa9-159a-/resourceGroups/6f3d67fa-586a-456/providers/Microsoft.StorSimple/managers/beded94d-0a/bandwidthSettings/9c94cf76-79bc-49cc-8";
19944
Requests[3690].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19945
Requests[3690].
Request
.Path = "/subscriptions/80430817-d887-/resourceGroups/4dd905ad-3520-468/providers/Microsoft.StorSimple/managers/8fc6217d-e8/bandwidthSettings/2c166486-884a-4766-9";
19948
Requests[3691].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19949
Requests[3691].
Request
.Path = "/subscriptions/a50559b4-83e6-/resourceGroups/41d4cf2e-785b-466/providers/Microsoft.StorSimple/managers/449b4776-ea/bandwidthSettings/4c0254fa-562a-4111-b";
19952
Requests[3692].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19953
Requests[3692].
Request
.Path = "/subscriptions/8f1a1859-1178-/resourceGroups/de8a82e7-abab-435/providers/Microsoft.StorSimple/managers/95d02b26-e0/devices/2c7a8408-f";
19956
Requests[3693].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19957
Requests[3693].
Request
.Path = "/subscriptions/5bffdcda-f485-/resourceGroups/290bd609-c12a-423/providers/Microsoft.StorSimple/managers/a4b4746b-fa/devices/ce3c79c4-1";
19960
Requests[3694].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19961
Requests[3694].
Request
.Path = "/subscriptions/5ee482d6-3f13-/resourceGroups/a3afa95f-15c8-4d4/providers/Microsoft.StorSimple/managers/6feb4822-99/devices/9571dfda-9";
19964
Requests[3695].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19965
Requests[3695].
Request
.Path = "/subscriptions/b2efd7e6-3169-/resourceGroups/9db060ca-4b3d-4ba/providers/Microsoft.StorSimple/managers/a1c75e8c-d5/storageAccountCredentials/4215c996-27a1-47bb-a75b-4836";
19968
Requests[3696].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19969
Requests[3696].
Request
.Path = "/subscriptions/3705b9e0-095d-/resourceGroups/b179f280-ecc8-43f/providers/Microsoft.StorSimple/managers/bc6414d2-d8/storageAccountCredentials/d53aff2a-6f01-4520-a9b5-67cd";
19972
Requests[3697].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19973
Requests[3697].
Request
.Path = "/subscriptions/da520851-7a41-/resourceGroups/6a413775-0d22-4f5/providers/Microsoft.StorSimple/managers/e397479b-69/storageAccountCredentials/44f108fc-565d-45dd-b912-cfe2";
19976
Requests[3698].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
19977
Requests[3698].
Request
.Path = "/subscriptions/a7edfe14-fc8b-/resourcegroups/f220c17b-6000-478/providers/Microsoft.StreamAnalytics/streamingjobs/4b9358d/functions/98f4c085-b70";
19980
Requests[3699].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19981
Requests[3699].
Request
.Path = "/subscriptions/bd99fcaf-fdd0-/resourcegroups/839864b2-3371-4f8/providers/Microsoft.StreamAnalytics/streamingjobs/5b71120/functions/68255ae8-0c7";
19984
Requests[3700].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19985
Requests[3700].
Request
.Path = "/subscriptions/5cb2c693-c320-/resourcegroups/c6695f59-5081-431/providers/Microsoft.StreamAnalytics/streamingjobs/d1f8c47/functions/fa15ee3f-c0c";
19988
Requests[3701].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
19989
Requests[3701].
Request
.Path = "/subscriptions/0d04e5a4-819e-/resourcegroups/6d12f844-7b1b-44b/providers/Microsoft.StreamAnalytics/streamingjobs/5378aad/functions/050c6ed0-140";
19992
Requests[3702].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
19993
Requests[3702].
Request
.Path = "/subscriptions/ccaf6cf4-77d6-/resourcegroups/89b74795-a9bf-4ec/providers/Microsoft.StreamAnalytics/streamingjobs/1e5e43f/inputs/c4703eae-";
19996
Requests[3703].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
19997
Requests[3703].
Request
.Path = "/subscriptions/fafb9dfe-a716-/resourcegroups/da58a232-1853-495/providers/Microsoft.StreamAnalytics/streamingjobs/72bb9c8/inputs/416bcc32-";
20000
Requests[3704].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20001
Requests[3704].
Request
.Path = "/subscriptions/4bc23531-ad91-/resourcegroups/31e6a1aa-b145-4d3/providers/Microsoft.StreamAnalytics/streamingjobs/ee61093/inputs/c247816a-";
20004
Requests[3705].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20005
Requests[3705].
Request
.Path = "/subscriptions/fbf04647-cce8-/resourcegroups/99a3c804-c94c-4fe/providers/Microsoft.StreamAnalytics/streamingjobs/eb400fc/inputs/6ca31c34-";
20008
Requests[3706].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20009
Requests[3706].
Request
.Path = "/subscriptions/3c45a57f-4932-/resourcegroups/1b059ec7-5311-44c/providers/Microsoft.StreamAnalytics/streamingjobs/d3b26d4/outputs/e2bb7893-d";
20012
Requests[3707].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20013
Requests[3707].
Request
.Path = "/subscriptions/d0fd2abe-8670-/resourcegroups/0111d435-a5ca-4b3/providers/Microsoft.StreamAnalytics/streamingjobs/ee0b641/outputs/2310afee-2";
20016
Requests[3708].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20017
Requests[3708].
Request
.Path = "/subscriptions/6388f132-f35d-/resourcegroups/a8ee2bbb-d8ee-43d/providers/Microsoft.StreamAnalytics/streamingjobs/9e88823/outputs/ec8677b9-3";
20020
Requests[3709].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20021
Requests[3709].
Request
.Path = "/subscriptions/b6142eeb-cdf7-/resourcegroups/36d15a38-8303-432/providers/Microsoft.StreamAnalytics/streamingjobs/02d31a0/outputs/e5c926b5-4";
20024
Requests[3710].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20025
Requests[3710].
Request
.Path = "/subscriptions/ec3fd25c-3577-/resourcegroups/36547fb6-6a52-4cd/providers/Microsoft.StreamAnalytics/streamingjobs/3cf129e/transformations/5bc84c66-89fe-4852";
20028
Requests[3711].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20029
Requests[3711].
Request
.Path = "/subscriptions/fdbe6213-83c4-/resourcegroups/ebd323eb-1385-4db/providers/Microsoft.StreamAnalytics/streamingjobs/6955454/transformations/f7812853-af95-49d5";
20032
Requests[3712].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20033
Requests[3712].
Request
.Path = "/subscriptions/a624f2a9-4536-/resourcegroups/4af89dc0-254a-481/providers/Microsoft.StreamAnalytics/streamingjobs/8d4aff5/transformations/3296fdda-8468-4b71";
20036
Requests[3713].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20037
Requests[3713].
Request
.Path = "/subscriptions/8e8fce73-b4d3-/resourcegroups/c5d1810d-2083-4bd/providers/Microsoft.Subscriptions.Admin/offers/2b334/offerDelegations/895e2861-e515-4b60-";
20040
Requests[3714].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20041
Requests[3714].
Request
.Path = "/subscriptions/0c089167-485f-/resourcegroups/4fe6e6a7-5e5d-463/providers/Microsoft.Subscriptions.Admin/offers/e429e/offerDelegations/9fdb242c-0895-46ec-";
20044
Requests[3715].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20045
Requests[3715].
Request
.Path = "/subscriptions/a3daf8af-0602-/resourcegroups/97f99cb5-b250-42d/providers/Microsoft.Subscriptions.Admin/offers/5e875/offerDelegations/9ebad908-01ee-42de-";
20048
Requests[3716].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20049
Requests[3716].
Request
.Path = "/subscriptions/fc4b570e-32d7-/resourceGroups/7dc56720-08e7-406/providers/Microsoft.TimeSeriesInsights/environments/9f2dfb4c-dc73-4/accessPolicies/5babf0c9-d9e4-4a";
20052
Requests[3717].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20053
Requests[3717].
Request
.Path = "/subscriptions/6f0f56b0-61f2-/resourceGroups/b96807eb-65a5-43f/providers/Microsoft.TimeSeriesInsights/environments/49a4275f-4b44-4/accessPolicies/d3d1a309-9f10-4b";
20056
Requests[3718].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20057
Requests[3718].
Request
.Path = "/subscriptions/be2e1350-2733-/resourceGroups/e0e15ad3-fc51-420/providers/Microsoft.TimeSeriesInsights/environments/9ab967e4-2e44-4/accessPolicies/4f7f3f3c-81c2-4d";
20060
Requests[3719].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20061
Requests[3719].
Request
.Path = "/subscriptions/4550be7c-aa12-/resourceGroups/8ddb5bc8-8aa7-47b/providers/Microsoft.TimeSeriesInsights/environments/b6e4b979-9f6c-4/accessPolicies/8670716a-3188-42";
20064
Requests[3720].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20065
Requests[3720].
Request
.Path = "/subscriptions/1bc0caf0-1c53-/resourceGroups/d1483324-b0c2-4e5/providers/Microsoft.TimeSeriesInsights/environments/e07eadad-177c-4/eventSources/41df518f-0cd6-4";
20068
Requests[3721].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20069
Requests[3721].
Request
.Path = "/subscriptions/45869e24-b13f-/resourceGroups/9b411cfd-33c9-4b0/providers/Microsoft.TimeSeriesInsights/environments/36fc1bca-c7bc-4/eventSources/53251857-0614-4";
20072
Requests[3722].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20073
Requests[3722].
Request
.Path = "/subscriptions/61d7f18c-f459-/resourceGroups/38c7e756-27f2-45b/providers/Microsoft.TimeSeriesInsights/environments/8e306eb6-baef-4/eventSources/9e458cf3-20d8-4";
20076
Requests[3723].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20077
Requests[3723].
Request
.Path = "/subscriptions/1b1a6ddc-f9f0-/resourceGroups/b8bce253-488a-45c/providers/Microsoft.TimeSeriesInsights/environments/0a90c26e-f537-4/eventSources/ef41bcda-5740-4";
20080
Requests[3724].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20081
Requests[3724].
Request
.Path = "/subscriptions/adece0ad-620d-/resourceGroups/6f8c179b-8e24-413/providers/Microsoft.TimeSeriesInsights/environments/30bb4cc7-27ae-4/referenceDataSets/7cba5340-b92f-46a8-b";
20084
Requests[3725].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20085
Requests[3725].
Request
.Path = "/subscriptions/99709a78-56e9-/resourceGroups/003e14ea-6be9-48e/providers/Microsoft.TimeSeriesInsights/environments/ee529ac5-3301-4/referenceDataSets/9811620e-a9e4-48f4-8";
20088
Requests[3726].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20089
Requests[3726].
Request
.Path = "/subscriptions/63683018-1899-/resourceGroups/13d4653f-ae80-466/providers/Microsoft.TimeSeriesInsights/environments/27308c43-0c36-4/referenceDataSets/522af3e7-f70c-4572-8";
20092
Requests[3727].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20093
Requests[3727].
Request
.Path = "/subscriptions/08e2bae7-36cf-/resourceGroups/68a4749f-f8d2-47b/providers/Microsoft.TimeSeriesInsights/environments/34f7232d-d3a8-4/referenceDataSets/4bbeef96-5cd2-4582-b";
20096
Requests[3728].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20097
Requests[3728].
Request
.Path = "/subscriptions/e7344f4b-2345-/resourcegroups/92cc4afc-a9be-485/providers/Microsoft.Update.Admin/updateLocations/230dbce0-fe97-/updates/6f9204a0-e";
20100
Requests[3729].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20101
Requests[3729].
Request
.Path = "/subscriptions/09243a7a-9e93-/resourcegroups/b0deca74-02c6-41a/providers/microsoft.visualstudio/account/256a4234-33e7-4b8c-/extension/07a3000f-4651-4d32-a1";
20104
Requests[3730].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20105
Requests[3730].
Request
.Path = "/subscriptions/62359f28-85b0-/resourcegroups/8f3f727b-bba9-427/providers/microsoft.visualstudio/account/b19fd86b-0f53-4e37-/extension/42f77ee5-02e6-4650-8f";
20108
Requests[3731].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20109
Requests[3731].
Request
.Path = "/subscriptions/1dde984b-1f47-/resourcegroups/5a1b6193-9870-42e/providers/microsoft.visualstudio/account/a9337878-861a-4851-/extension/455843a0-b976-477a-a4";
20112
Requests[3732].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20113
Requests[3732].
Request
.Path = "/subscriptions/d32cde11-d945-/resourcegroups/7c3cccf7-be02-4b0/providers/microsoft.visualstudio/account/3bde32f0-7e72-466c-/extension/bef9fa18-a3e8-4f7e-82";
20116
Requests[3733].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20117
Requests[3733].
Request
.Path = "/subscriptions/a25f426d-3a62-/resourceGroups/1090a41c-f4d4-429/providers/microsoft.visualstudio/account/4d57f2b0-2b12-47/project/6cd255d7-b48";
20120
Requests[3734].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20121
Requests[3734].
Request
.Path = "/subscriptions/99226427-c678-/resourceGroups/6c8a3c43-cf24-4f6/providers/microsoft.visualstudio/account/131994d4-12a0-41/project/6906222a-0a0";
20124
Requests[3735].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20125
Requests[3735].
Request
.Path = "/subscriptions/5a879885-ab0a-/resourceGroups/2de0788f-3365-4c7/providers/microsoft.visualstudio/account/160244c8-bd18-46/project/22d09f5b-255";
20128
Requests[3736].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20129
Requests[3736].
Request
.Path = "/subscriptions/7334cb8c-6395-/resourceGroups/f40dccf7-92ff-406/providers/Microsoft.Web/hostingEnvironments/85127/detectors/830d9d71-323";
20132
Requests[3737].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20133
Requests[3737].
Request
.Path = "/subscriptions/577a5caa-ef18-/resourceGroups/220dde04-e8f7-401/providers/Microsoft.Web/hostingEnvironments/3f0d6/diagnostics/3bd28575-62cc-4";
20136
Requests[3738].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20137
Requests[3738].
Request
.Path = "/subscriptions/71fbcfd4-a5e3-/resourceGroups/c66ee38d-918e-4c1/providers/Microsoft.Web/hostingEnvironments/4451a/operations/14d9f194-7d";
20140
Requests[3739].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20141
Requests[3739].
Request
.Path = "/subscriptions/0f44d081-da3d-/resourceGroups/f74e9e16-643d-472/providers/Microsoft.Web/hostingEnvironments/a456b/workerPools/447c5449-6533-";
20144
Requests[3740].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20145
Requests[3740].
Request
.Path = "/subscriptions/ede86ac2-2810-/resourceGroups/77d9e0f8-c41c-41c/providers/Microsoft.Web/hostingEnvironments/72665/workerPools/a59b1d60-5156-";
20148
Requests[3741].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20149
Requests[3741].
Request
.Path = "/subscriptions/6170631f-4da4-/resourceGroups/51421974-844f-46f/providers/Microsoft.Web/hostingEnvironments/05414/workerPools/4c3cc883-7359-";
20152
Requests[3742].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20153
Requests[3742].
Request
.Path = "/subscriptions/78991c18-8a6e-/resourceGroups/8506a028-5081-409/providers/Microsoft.Web/managedHostingEnvironments/fbf28/operations/ed44ba32-04";
20156
Requests[3743].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20157
Requests[3743].
Request
.Path = "/subscriptions/59ce306d-b71d-/resourceGroups/61ddb88b-b4c1-485/providers/Microsoft.Web/serverfarms/4cfcd/operationresults/152e3d13-bd";
20160
Requests[3744].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20161
Requests[3744].
Request
.Path = "/subscriptions/c7e9882e-3c79-/resourceGroups/4195a4b6-10d5-445/providers/Microsoft.Web/serverfarms/1dc04/virtualNetworkConnections/06659603";
20164
Requests[3745].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20165
Requests[3745].
Request
.Path = "/subscriptions/9e11364c-734e-/resourceGroups/d826010d-1555-4e6/providers/Microsoft.Web/sites/59d86/backups/37e9269f";
20168
Requests[3746].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20169
Requests[3746].
Request
.Path = "/subscriptions/0961c058-0fb8-/resourceGroups/c0aa8117-3f65-4a9/providers/Microsoft.Web/sites/5b05a/backups/1319fcbe";
20172
Requests[3747].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20173
Requests[3747].
Request
.Path = "/subscriptions/f105535c-b156-/resourceGroups/e3217de6-e1cf-4f2/providers/Microsoft.Web/sites/c1068/continuouswebjobs/703587ea-a";
20176
Requests[3748].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20177
Requests[3748].
Request
.Path = "/subscriptions/48b31958-70f9-/resourceGroups/46717d41-742b-449/providers/Microsoft.Web/sites/4cdb5/continuouswebjobs/1cd1ac91-f";
20180
Requests[3749].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20181
Requests[3749].
Request
.Path = "/subscriptions/672f0322-1af5-/resourceGroups/84f861a2-44df-48b/providers/Microsoft.Web/sites/0d423/deployments/7479d";
20184
Requests[3750].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20185
Requests[3750].
Request
.Path = "/subscriptions/5a223f0b-2a7a-/resourceGroups/273f9f43-97dc-485/providers/Microsoft.Web/sites/1f2dc/deployments/23c47";
20188
Requests[3751].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20189
Requests[3751].
Request
.Path = "/subscriptions/8e36c384-274a-/resourceGroups/67706b72-b7c7-4c8/providers/Microsoft.Web/sites/faf41/deployments/79a0a";
20192
Requests[3752].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20193
Requests[3752].
Request
.Path = "/subscriptions/352a404d-8235-/resourceGroups/f728ad3b-75b3-4ac/providers/Microsoft.Web/sites/5e892/domainOwnershipIdentifiers/a8caa4be-8915-4b6a-b113-4de07";
20196
Requests[3753].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20197
Requests[3753].
Request
.Path = "/subscriptions/bcf19e4e-0205-/resourceGroups/37468510-aa5a-472/providers/Microsoft.Web/sites/270e1/domainOwnershipIdentifiers/de64ccd9-0c3b-4a61-b6a9-2826c";
20200
Requests[3754].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20201
Requests[3754].
Request
.Path = "/subscriptions/6f9a4580-899d-/resourceGroups/04af77c7-808c-4ea/providers/Microsoft.Web/sites/b41ff/domainOwnershipIdentifiers/a86c1084-f7ae-45cd-9aef-95709";
20204
Requests[3755].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20205
Requests[3755].
Request
.Path = "/subscriptions/ab4802a3-cea4-/resourceGroups/829d3967-fc41-43a/providers/Microsoft.Web/sites/20c68/domainOwnershipIdentifiers/bc819a2f-d4fb-41c8-98b5-7a257";
20208
Requests[3756].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20209
Requests[3756].
Request
.Path = "/subscriptions/e028af5d-810b-/resourceGroups/e5612ef7-cc2f-42c/providers/Microsoft.Web/sites/b908a/functions/eb6f4572-412";
20212
Requests[3757].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20213
Requests[3757].
Request
.Path = "/subscriptions/d7336829-3e48-/resourceGroups/be5070b4-2773-41c/providers/Microsoft.Web/sites/47952/functions/e048f8c6-a8a";
20216
Requests[3758].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20217
Requests[3758].
Request
.Path = "/subscriptions/4dbdd877-028a-/resourceGroups/092d2066-1890-45f/providers/Microsoft.Web/sites/e70b5/functions/b000049d-1f0";
20220
Requests[3759].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20221
Requests[3759].
Request
.Path = "/subscriptions/c312b330-478d-/resourceGroups/724feece-7110-423/providers/Microsoft.Web/sites/a093a/hostNameBindings/df644e47";
20224
Requests[3760].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20225
Requests[3760].
Request
.Path = "/subscriptions/754e7855-5a03-/resourceGroups/03545b98-4734-4fd/providers/Microsoft.Web/sites/3b22d/hostNameBindings/9685ab90";
20228
Requests[3761].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20229
Requests[3761].
Request
.Path = "/subscriptions/8ba0b039-51b0-/resourceGroups/5ab94869-75e9-4d8/providers/Microsoft.Web/sites/39cf9/hostNameBindings/521e98c6";
20232
Requests[3762].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20233
Requests[3762].
Request
.Path = "/subscriptions/ae661d39-3077-/resourceGroups/00a7ebff-f143-41d/providers/Microsoft.Web/sites/2c7f0/hybridconnection/a512b8aa-6";
20236
Requests[3763].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20237
Requests[3763].
Request
.Path = "/subscriptions/a56af18f-f6b6-/resourceGroups/a36fed2e-4828-42e/providers/Microsoft.Web/sites/aeee5/hybridconnection/b3c5c5ab-6";
20240
Requests[3764].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20241
Requests[3764].
Request
.Path = "/subscriptions/c4c0ab32-f43a-/resourceGroups/611f079e-ab35-427/providers/Microsoft.Web/sites/f3264/hybridconnection/82a4b810-2";
20244
Requests[3765].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20245
Requests[3765].
Request
.Path = "/subscriptions/f0d88475-d2fc-/resourceGroups/6bd3ab63-3a93-44b/providers/Microsoft.Web/sites/20255/hybridconnection/c2d47cd6-d";
20248
Requests[3766].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20249
Requests[3766].
Request
.Path = "/subscriptions/493a566f-8d09-/resourceGroups/3774a9e1-f239-433/providers/Microsoft.Web/sites/d7478/networkFeatures/e8309";
20252
Requests[3767].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20253
Requests[3767].
Request
.Path = "/subscriptions/4b350d39-c54f-/resourceGroups/bab69dc1-ef62-487/providers/Microsoft.Web/sites/47fe0/operationresults/72e058f9-22";
20256
Requests[3768].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20257
Requests[3768].
Request
.Path = "/subscriptions/c29b35b8-9aef-/resourceGroups/b7ed4eb0-8e15-472/providers/Microsoft.Web/sites/82012/premieraddons/e28e6c33-3239-40";
20260
Requests[3769].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20261
Requests[3769].
Request
.Path = "/subscriptions/6bd4966f-7e34-/resourceGroups/6180d404-4947-4cd/providers/Microsoft.Web/sites/3278e/premieraddons/3b3f0c0f-2560-43";
20264
Requests[3770].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20265
Requests[3770].
Request
.Path = "/subscriptions/4ea66b76-6304-/resourceGroups/65f01404-182d-479/providers/Microsoft.Web/sites/a326d/premieraddons/289429ef-e20b-4b";
20268
Requests[3771].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20269
Requests[3771].
Request
.Path = "/subscriptions/bdddff6f-7f3b-/resourceGroups/4d5a4086-eacb-4e6/providers/Microsoft.Web/sites/10fd6/processes/3615ee01-";
20272
Requests[3772].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20273
Requests[3772].
Request
.Path = "/subscriptions/90c2dc55-0e03-/resourceGroups/e27b2dcc-02ec-450/providers/Microsoft.Web/sites/5e038/processes/bd323886-";
20276
Requests[3773].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20277
Requests[3773].
Request
.Path = "/subscriptions/a5681f1b-af39-/resourceGroups/47939ea9-812c-4d0/providers/Microsoft.Web/sites/9928c/publicCertificates/c78beaa2-b140-4c3d-bc";
20280
Requests[3774].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20281
Requests[3774].
Request
.Path = "/subscriptions/7fbfe263-9e66-/resourceGroups/8c66855b-2609-48b/providers/Microsoft.Web/sites/33491/publicCertificates/ef303502-8380-43fe-93";
20284
Requests[3775].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20285
Requests[3775].
Request
.Path = "/subscriptions/552d48a7-1f9c-/resourceGroups/54710385-3dab-430/providers/Microsoft.Web/sites/bca24/publicCertificates/552d7cb3-f332-45e6-94";
20288
Requests[3776].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20289
Requests[3776].
Request
.Path = "/subscriptions/f4952572-77a7-/resourceGroups/c3a3552d-ce89-4fd/providers/Microsoft.Web/sites/1efbc/siteextensions/2cb7c38f-af00-4";
20292
Requests[3777].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20293
Requests[3777].
Request
.Path = "/subscriptions/ef7848ab-d7c1-/resourceGroups/7c0a3285-d9fa-444/providers/Microsoft.Web/sites/c685c/siteextensions/a6b6cf31-9c22-4";
20296
Requests[3778].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20297
Requests[3778].
Request
.Path = "/subscriptions/2d97a7f8-da41-/resourceGroups/95227e4e-5542-426/providers/Microsoft.Web/sites/7ab49/siteextensions/0cc827f6-3d9c-4";
20300
Requests[3779].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20301
Requests[3779].
Request
.Path = "/subscriptions/8ab9533b-40b5-/resourceGroups/f57ae4e9-0e0d-413/providers/Microsoft.Web/sites/fec40/slots/ed57e";
20304
Requests[3780].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20305
Requests[3780].
Request
.Path = "/subscriptions/5ee30cc5-f00d-/resourceGroups/4f5fa93a-0bd3-402/providers/Microsoft.Web/sites/abe10/slots/0374a";
20308
Requests[3781].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20309
Requests[3781].
Request
.Path = "/subscriptions/3c6e347f-1c90-/resourceGroups/976c21dc-1dc5-42e/providers/Microsoft.Web/sites/aa5d5/slots/5db44";
20312
Requests[3782].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20313
Requests[3782].
Request
.Path = "/subscriptions/699b359b-fe97-/resourceGroups/d384dc5d-798a-4e9/providers/Microsoft.Web/sites/ca4b8/slots/63b90";
20316
Requests[3783].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20317
Requests[3783].
Request
.Path = "/subscriptions/a5c40202-7fb4-/resourceGroups/0b57606f-f369-40f/providers/Microsoft.Web/sites/7bc0a/triggeredwebjobs/29c49a21-5";
20320
Requests[3784].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20321
Requests[3784].
Request
.Path = "/subscriptions/4e4528f6-770d-/resourceGroups/be259e46-c2e3-478/providers/Microsoft.Web/sites/7f2fa/triggeredwebjobs/455eba18-9";
20324
Requests[3785].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
20325
Requests[3785].
Request
.Path = "/subscriptions/cad2fe36-27d4-/resourceGroups/682464cd-a124-403/providers/Microsoft.Web/sites/6ff00/virtualNetworkConnections/501fabab";
20328
Requests[3786].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20329
Requests[3786].
Request
.Path = "/subscriptions/0fcd6570-7af1-/resourceGroups/ce69187a-f32d-4df/providers/Microsoft.Web/sites/47fa2/virtualNetworkConnections/d12c5f0f";
20332
Requests[3787].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20333
Requests[3787].
Request
.Path = "/subscriptions/b31ec4cc-6e5c-/resourceGroups/52983183-fbda-44b/providers/Microsoft.Web/sites/6a5b1/virtualNetworkConnections/ca6bf850";
20336
Requests[3788].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20337
Requests[3788].
Request
.Path = "/subscriptions/7a121464-cfa2-/resourceGroups/ef41073e-3f9f-48e/providers/Microsoft.Web/sites/304f3/virtualNetworkConnections/1ab73d51";
20340
Requests[3789].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20341
Requests[3789].
Request
.Path = "/subscriptions/0ac2fc25-df24-/resourceGroups/bdccada9-96c9-468/providers/Microsoft.Web/sites/0460c/webjobs/4139d255-f";
20344
Requests[3790].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20345
Requests[3790].
Request
.Path = "/subscriptions/75d316bf-cc32-/resourceGroups/376215b1-12a9-49b/providers/Microsoft.Web/sites/144b2cac/detectors/97a5802e-b67";
20348
Requests[3791].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20349
Requests[3791].
Request
.Path = "/subscriptions/21e8b550-144f-/resourceGroups/d1e1f7a4-11c2-496/providers/Microsoft.Web/sites/e6995884/diagnostics/249bacad-96b8-4708";
20352
Requests[3792].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20353
Requests[3792].
Request
.Path = "/subscriptions/8cc7b346-5c09-/resourceGroups/2bc39383-a75c-413/providers/Microsoft.Web/sites/4b65e8e0/recommendations/86800";
20356
Requests[3793].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20357
Requests[3793].
Request
.Path = "/subscriptions/e07e8d78-f11a-/resourceGroup/ebad9344-7ce6-4f9/providers/Microsoft.MachineLearningServices/workspaces/8d88b02b-09c0/computes/c335097f-77/listKeys";
20360
Requests[3794].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20361
Requests[3794].
Request
.Path = "/subscriptions/077a0fd5-18bc-/resourceGroups/ce8b8c43-/providers/Microsoft.DataMigration/services/e9c753c5-97/projects/0cc116c7-59/tasks";
20364
Requests[3795].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20365
Requests[3795].
Request
.Path = "/subscriptions/36b25caf-dcd6-/resourcegroups/889a3058-ecd8/providers/Microsoft.AzureBridge.Admin/activations/c752968a-c169-/products/bf50a8b9-a5/download";
20368
Requests[3796].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20369
Requests[3796].
Request
.Path = "/subscriptions/b76ec582-61ca-/resourceGroups/27e0e7ed-a766/providers/Microsoft.AzureStack/registrations/32490e7e-cc5c-40/products/a25208e4-1c/listDetails";
20372
Requests[3797].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20373
Requests[3797].
Request
.Path = "/subscriptions/47e2365d-c173-/resourceGroups/29fa8663-b38d-4d9/providers/Microsoft.ApiManagement/service/73c5627f-7d/apis/afdd2/diagnostics";
20376
Requests[3798].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20377
Requests[3798].
Request
.Path = "/subscriptions/c4dff69c-f2c0-/resourceGroups/2cb23ae0-4418-4b2/providers/Microsoft.ApiManagement/service/a599a843-12/apis/d0846/issues";
20380
Requests[3799].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20381
Requests[3799].
Request
.Path = "/subscriptions/c98207c0-0ba2-/resourceGroups/b4eacc85-e7ce-482/providers/Microsoft.ApiManagement/service/908b9223-6f/apis/cbf64/operations";
20384
Requests[3800].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20385
Requests[3800].
Request
.Path = "/subscriptions/04572060-b1e5-/resourceGroups/35c6bbfb-5b9a-4e2/providers/Microsoft.ApiManagement/service/91a3ede2-c3/apis/baded/operationsByTags";
20388
Requests[3801].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20389
Requests[3801].
Request
.Path = "/subscriptions/b3a07ed1-5a1d-/resourceGroups/e071aa64-741d-49e/providers/Microsoft.ApiManagement/service/65fcb055-11/apis/c4e0e/policies";
20392
Requests[3802].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20393
Requests[3802].
Request
.Path = "/subscriptions/da3e6b87-4641-/resourceGroups/72d6b935-710a-4db/providers/Microsoft.ApiManagement/service/f8ea2841-e8/apis/9fcf2/policy";
20396
Requests[3803].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20397
Requests[3803].
Request
.Path = "/subscriptions/5a692697-2ff4-/resourceGroups/47ef1e76-c5b6-48e/providers/Microsoft.ApiManagement/service/720bc9df-37/apis/eb968/policy";
20400
Requests[3804].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20401
Requests[3804].
Request
.Path = "/subscriptions/6ab0c038-b08e-/resourceGroups/54f0fdca-97e8-490/providers/Microsoft.ApiManagement/service/9c854a3c-68/apis/3aa26/policy";
20404
Requests[3805].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20405
Requests[3805].
Request
.Path = "/subscriptions/e372b77d-f8bd-/resourceGroups/17232b58-f349-44b/providers/Microsoft.ApiManagement/service/b106afdc-d0/apis/ca315/products";
20408
Requests[3806].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
20409
Requests[3806].
Request
.Path = "/subscriptions/36b5e7d2-f5bc-/resourceGroups/b3ba9b5c-23bf-479/providers/Microsoft.ApiManagement/service/24bea8c3-95/apis/20637/releases";
20412
Requests[3807].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20413
Requests[3807].
Request
.Path = "/subscriptions/813561ec-13bc-/resourceGroups/d51ab0bc-855d-452/providers/Microsoft.ApiManagement/service/e0dd3e8f-ea/apis/d18f4/releases";
20416
Requests[3808].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
20417
Requests[3808].
Request
.Path = "/subscriptions/b9243163-d6c3-/resourceGroups/7822e8af-7ca9-451/providers/Microsoft.ApiManagement/service/632a35f2-bb/apis/51d17/revisions";
20420
Requests[3809].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20421
Requests[3809].
Request
.Path = "/subscriptions/06731f44-dace-/resourceGroups/c5902e45-1b9d-486/providers/Microsoft.ApiManagement/service/3ac19b26-c6/apis/56206/revisions";
20424
Requests[3810].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20425
Requests[3810].
Request
.Path = "/subscriptions/3220c235-23db-/resourceGroups/f9668dd2-6252-45c/providers/Microsoft.ApiManagement/service/8efc3594-2b/apis/fa45b/schemas";
20428
Requests[3811].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20429
Requests[3811].
Request
.Path = "/subscriptions/caa519ba-1f2c-/resourceGroups/96f022f1-a2e4-45c/providers/Microsoft.ApiManagement/service/e91fabf8-a4/apis/894d2/tagDescriptions";
20432
Requests[3812].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20433
Requests[3812].
Request
.Path = "/subscriptions/4630971c-6447-/resourceGroups/1bcedf56-df66-4fb/providers/Microsoft.ApiManagement/service/a3fe4869-f0/apis/a32f5/tags";
20436
Requests[3813].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20437
Requests[3813].
Request
.Path = "/subscriptions/0e7613e0-c85a-/resourceGroups/b1ece843-197e-448/providers/Microsoft.ApiManagement/service/30592452-6f/backends/e32060c2-/reconnect";
20440
Requests[3814].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20441
Requests[3814].
Request
.Path = "/subscriptions/c992b2ea-f7ab-/resourceGroups/36fa7f18-e63a-40f/providers/Microsoft.ApiManagement/service/92dfec04-7d/diagnostics/16edd64d-a3c/loggers";
20444
Requests[3815].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20445
Requests[3815].
Request
.Path = "/subscriptions/14068d11-77a6-/resourceGroups/c2251292-323a-484/providers/Microsoft.ApiManagement/service/32698aa8-b2/groups/5512f08/users";
20448
Requests[3816].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20449
Requests[3816].
Request
.Path = "/subscriptions/0447dc19-19fc-/resourceGroups/bc11873d-ee96-4a9/providers/Microsoft.ApiManagement/service/691eb80f-79/locations/b35ba8da-2bc/networkstatus";
20452
Requests[3817].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20453
Requests[3817].
Request
.Path = "/subscriptions/ab141841-b514-/resourceGroups/319edd85-5f1a-45f/providers/Microsoft.ApiManagement/service/a7f4abc2-a3/notifications/122b3802-c79d-44/recipientEmails";
20456
Requests[3818].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20457
Requests[3818].
Request
.Path = "/subscriptions/ddc69703-b186-/resourceGroups/3131f6fd-8697-4cf/providers/Microsoft.ApiManagement/service/180cc9bf-14/notifications/dfd83d71-698f-48/recipientUsers";
20460
Requests[3819].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20461
Requests[3819].
Request
.Path = "/subscriptions/c5bfd62f-09e2-/resourceGroups/421679be-d67e-449/providers/Microsoft.ApiManagement/service/740f99af-68/products/9aadad28-/apis";
20464
Requests[3820].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20465
Requests[3820].
Request
.Path = "/subscriptions/f18fb4a1-032f-/resourceGroups/5a649172-828d-4a9/providers/Microsoft.ApiManagement/service/fa7d01f8-ed/products/da976d48-/groups";
20468
Requests[3821].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20469
Requests[3821].
Request
.Path = "/subscriptions/f684152b-06c5-/resourceGroups/2f7041af-4ed9-4e8/providers/Microsoft.ApiManagement/service/c9e0f60c-34/products/64bcd868-/policies";
20472
Requests[3822].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
20473
Requests[3822].
Request
.Path = "/subscriptions/a517d684-5eb9-/resourceGroups/10749360-4f5f-45f/providers/Microsoft.ApiManagement/service/4d56eb7b-c0/products/e80d71b2-/policy";
20476
Requests[3823].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20477
Requests[3823].
Request
.Path = "/subscriptions/a0d9c73d-a02f-/resourceGroups/e0f79c51-157f-4e5/providers/Microsoft.ApiManagement/service/e90be2f2-76/products/767fb6ee-/policy";
20480
Requests[3824].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
20481
Requests[3824].
Request
.Path = "/subscriptions/9f4aafc6-3d8f-/resourceGroups/a0c4f264-2051-406/providers/Microsoft.ApiManagement/service/f45085f8-49/products/8e116fb1-/policy";
20484
Requests[3825].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20485
Requests[3825].
Request
.Path = "/subscriptions/79a672bf-8c7b-/resourceGroups/ac71f8b6-3af2-4b7/providers/Microsoft.ApiManagement/service/f3d5c455-c0/products/9b8a1344-/subscriptions";
20488
Requests[3826].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20489
Requests[3826].
Request
.Path = "/subscriptions/860b3ff9-53e2-/resourceGroups/edb6a6ef-a927-45a/providers/Microsoft.ApiManagement/service/c19fb786-a4/products/e836bcc6-/tags";
20492
Requests[3827].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20493
Requests[3827].
Request
.Path = "/subscriptions/3ded32f4-d7ba-/resourceGroups/53fdb9ef-eeee-4fc/providers/Microsoft.ApiManagement/service/9fbb7610-61/subscriptions/7f080/regeneratePrimaryKey";
20496
Requests[3828].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20497
Requests[3828].
Request
.Path = "/subscriptions/176f5854-f94c-/resourceGroups/5bbade06-acf0-4f6/providers/Microsoft.ApiManagement/service/ead6e8ee-4d/subscriptions/d86be/regenerateSecondaryKey";
20500
Requests[3829].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20501
Requests[3829].
Request
.Path = "/subscriptions/4a1cce99-44f5-/resourceGroups/f4090669-2a8e-4de/providers/Microsoft.ApiManagement/service/df8370cc-73/tenant/0e08677c-f/git";
20504
Requests[3830].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20505
Requests[3830].
Request
.Path = "/subscriptions/6d6a14e9-8946-/resourceGroups/0794c2bd-19c8-433/providers/Microsoft.ApiManagement/service/a93dde6b-a9/tenant/62b8f8c5-1/regeneratePrimaryKey";
20508
Requests[3831].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20509
Requests[3831].
Request
.Path = "/subscriptions/580e695b-b1e4-/resourceGroups/31ed66f5-a85e-4b7/providers/Microsoft.ApiManagement/service/a099c83c-e4/tenant/7bcff023-f/regenerateSecondaryKey";
20512
Requests[3832].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20513
Requests[3832].
Request
.Path = "/subscriptions/49324851-b7dc-/resourceGroups/02366f58-9e16-4f7/providers/Microsoft.ApiManagement/service/5e1c8b86-28/tenant/6a223e5c-426d-404/deploy";
20516
Requests[3833].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20517
Requests[3833].
Request
.Path = "/subscriptions/6c9ffbdc-5326-/resourceGroups/e31d6fa2-90ff-445/providers/Microsoft.ApiManagement/service/05de86ea-39/tenant/a8456482-7c64-406/save";
20520
Requests[3834].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20521
Requests[3834].
Request
.Path = "/subscriptions/75c1f2e0-0bec-/resourceGroups/569076c2-37e4-404/providers/Microsoft.ApiManagement/service/28204d3b-94/tenant/5e453b59-097f-494/syncState";
20524
Requests[3835].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20525
Requests[3835].
Request
.Path = "/subscriptions/c950c177-bc1f-/resourceGroups/ac480fff-6b92-452/providers/Microsoft.ApiManagement/service/9cf9bbd5-20/tenant/8400b5fd-5010-43d/validate";
20528
Requests[3836].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20529
Requests[3836].
Request
.Path = "/subscriptions/cf590942-3ff5-/resourceGroups/e9c74933-698c-4b3/providers/Microsoft.ApiManagement/service/a4c58e7b-63/users/46fe8/generateSsoUrl";
20532
Requests[3837].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20533
Requests[3837].
Request
.Path = "/subscriptions/d4ec4fe6-9363-/resourceGroups/f6cb60e7-2465-4ea/providers/Microsoft.ApiManagement/service/3bf26a64-a5/users/df1be/groups";
20536
Requests[3838].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20537
Requests[3838].
Request
.Path = "/subscriptions/8072465d-ab48-/resourceGroups/a792de2e-7ddd-4f0/providers/Microsoft.ApiManagement/service/9ded7f49-ec/users/a0da9/identities";
20540
Requests[3839].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20541
Requests[3839].
Request
.Path = "/subscriptions/b0b146f9-363b-/resourceGroups/ba388a37-0551-451/providers/Microsoft.ApiManagement/service/74a585d5-29/users/c61dc/subscriptions";
20544
Requests[3840].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20545
Requests[3840].
Request
.Path = "/subscriptions/c7c80af6-3aa4-/resourceGroups/564c0b1a-3231-4dd/providers/Microsoft.ApiManagement/service/4ebc951e-4f/users/f06b4/token";
20548
Requests[3841].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20549
Requests[3841].
Request
.Path = "/subscriptions/c8dffa5a-807e-/resourceGroups/e9952974-e684-4e6/providers/Microsoft.Automation/automationAccounts/4f30404f-ec91-4390-a2/compilationjobs/5a4ed/streams";
20552
Requests[3842].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20553
Requests[3842].
Request
.Path = "/subscriptions/72aff501-ce60-/resourceGroups/e27ebba8-1f55-416/providers/Microsoft.Automation/automationAccounts/6dafd8c4-aa59-4488-b0/configurations/25c072b1-1756-4bd/content";
20556
Requests[3843].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20557
Requests[3843].
Request
.Path = "/subscriptions/c5cb4dc2-91c1-/resourceGroups/4a7fd612-7286-4b1/providers/Microsoft.Automation/automationAccounts/84b5bc2a-ec39-44ba-90/jobs/8a35b/output";
20560
Requests[3844].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20561
Requests[3844].
Request
.Path = "/subscriptions/0ebe54a5-1fde-/resourceGroups/b72046d1-a885-44d/providers/Microsoft.Automation/automationAccounts/3b8aa075-7633-4166-89/jobs/0935d/resume";
20564
Requests[3845].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20565
Requests[3845].
Request
.Path = "/subscriptions/28c605a1-3653-/resourceGroups/50dd9c32-5675-450/providers/Microsoft.Automation/automationAccounts/5f1774c8-0c94-4bca-9e/jobs/90954/runbookContent";
20568
Requests[3846].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20569
Requests[3846].
Request
.Path = "/subscriptions/1ec8a62d-db22-/resourceGroups/e4b77632-a8bb-492/providers/Microsoft.Automation/automationAccounts/50ccb68c-41b2-42af-85/jobs/6531f/stop";
20572
Requests[3847].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20573
Requests[3847].
Request
.Path = "/subscriptions/89fe012a-395e-/resourceGroups/05188d6d-4ebd-441/providers/Microsoft.Automation/automationAccounts/1941c128-cda4-4323-95/jobs/08367/streams";
20576
Requests[3848].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20577
Requests[3848].
Request
.Path = "/subscriptions/d504aecd-6653-/resourceGroups/d2e84ec3-236e-428/providers/Microsoft.Automation/automationAccounts/6b05a669-3cfe-4cb2-9d/jobs/7873e/suspend";
20580
Requests[3849].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20581
Requests[3849].
Request
.Path = "/subscriptions/d4de0e90-a003-/resourceGroups/6cbbb2e4-2f86-4c4/providers/Microsoft.Automation/automationAccounts/ce08325f-5ead-4fd2-ad/modules/594ab6aa-d/activities";
20584
Requests[3850].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20585
Requests[3850].
Request
.Path = "/subscriptions/4af34b12-2f48-/resourceGroups/75f074c0-e2c5-4ae/providers/Microsoft.Automation/automationAccounts/9589bd36-79b8-4c93-91/nodes/ef9f48/reports";
20588
Requests[3851].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20589
Requests[3851].
Request
.Path = "/subscriptions/0e5d8d60-b2ab-/resourceGroups/560d9421-5bdc-458/providers/Microsoft.Automation/automationAccounts/3047471e-6a17-486a-a4/objectDataTypes/ffc3bab1/fields";
20592
Requests[3852].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20593
Requests[3852].
Request
.Path = "/subscriptions/6a9009eb-34c1-/resourceGroups/098ad8a6-ee55-48d/providers/Microsoft.Automation/automationAccounts/b4b6e3d3-e060-4d83-b6/runbooks/90680981-3c/content";
20596
Requests[3853].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20597
Requests[3853].
Request
.Path = "/subscriptions/1edafe2a-a314-/resourceGroups/adbd9338-7c43-472/providers/Microsoft.Automation/automationAccounts/e31cc128-25ea-44af-9b/runbooks/df1e8d2e-81/draft";
20600
Requests[3854].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20601
Requests[3854].
Request
.Path = "/subscriptions/b752abbd-45d6-/resourceGroups/fb6ae255-7b6b-4db/providers/Microsoft.Automation/automationAccounts/88619468-d739-4610-81/sourceControls/c6aa65fc-d2a3-414/sourceControlSyncJobs";
20604
Requests[3855].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20605
Requests[3855].
Request
.Path = "/subscriptions/3e31903c-222d-/resourceGroups/723c715e-fc95-494/providers/Microsoft.Automation/automationAccounts/3eb782f6-5f12-4acd-9e/watchers/5974ac71-80/start";
20608
Requests[3856].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20609
Requests[3856].
Request
.Path = "/subscriptions/4d0f4ea4-78cb-/resourceGroups/0da10b55-1888-4da/providers/Microsoft.Automation/automationAccounts/919efafa-89b7-48a8-aa/watchers/578cba9f-89/stop";
20612
Requests[3857].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20613
Requests[3857].
Request
.Path = "/subscriptions/8e62fc77-cdf7-/resourcegroups/47c70e47-baa2-419/providers/Microsoft.Backup.Admin/backupLocations/f457cc75/backups/1dc8ac/restore";
20616
Requests[3858].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20617
Requests[3858].
Request
.Path = "/subscriptions/5c4a096e-87d2-/resourceGroups/9d2d7935-dd5c-466/providers/Microsoft.Batch/batchAccounts/999efb44-1a/certificates/3149d7ac-13c0-4/cancelDelete";
20620
Requests[3859].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20621
Requests[3859].
Request
.Path = "/subscriptions/45251a6c-e4f1-/resourceGroups/48942da9-1bfb-4af/providers/Microsoft.Batch/batchAccounts/1ae89bdf-8e/pools/1c1ef48f/disableAutoScale";
20624
Requests[3860].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20625
Requests[3860].
Request
.Path = "/subscriptions/b1f6ee85-3f0f-/resourceGroups/9ba38741-d7b3-498/providers/Microsoft.Batch/batchAccounts/955a95b1-3e/pools/1bd25b1e/stopResize";
20628
Requests[3861].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20629
Requests[3861].
Request
.Path = "/subscriptions/ad6be55e-ff3e-/resourceGroups/2c1b7933-be3e-48a/providers/Microsoft.BatchAI/workspaces/db8f8c74-267a/clusters/ec520238-1e/listRemoteLoginInformation";
20632
Requests[3862].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20633
Requests[3862].
Request
.Path = "/subscriptions/d150d776-8095-/resourceGroups/3c7ea214-4792-48a/providers/Microsoft.BatchAI/workspaces/9e0bccc2-3840/experiments/50242426-2a4b-/jobs";
20636
Requests[3863].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20637
Requests[3863].
Request
.Path = "/subscriptions/96f3a0ce-97fc-/resourceGroups/8b9b4f29-996d-462/providers/Microsoft.BotService/botServices/bb90a05d-d3a/channels/39968973-c1/listChannelWithKeys";
20640
Requests[3864].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20641
Requests[3864].
Request
.Path = "/subscriptions/9c93e2d5-d042-/resourceGroups/ee81894d-3b2f-418/providers/Microsoft.BotService/botServices/21f67fbd-a65/Connections/7877dd79-eda9-/listWithSecrets";
20644
Requests[3865].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20645
Requests[3865].
Request
.Path = "/subscriptions/c763aebd-bb2b-/resourceGroups/7f1aca9b-3903-44a/providers/Microsoft.Cdn/profiles/f0073b84-5f/endpoints/0e662c7b-6d5/checkResourceUsage";
20648
Requests[3866].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20649
Requests[3866].
Request
.Path = "/subscriptions/45cce753-12cd-/resourceGroups/29a4ed20-c264-4aa/providers/Microsoft.Cdn/profiles/b31fc582-fc/endpoints/ab2851e5-dec/customDomains";
20652
Requests[3867].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20653
Requests[3867].
Request
.Path = "/subscriptions/2e751242-de87-/resourceGroups/1d9852a8-637f-424/providers/Microsoft.Cdn/profiles/11ca6289-79/endpoints/0fe85d45-00a/load";
20656
Requests[3868].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20657
Requests[3868].
Request
.Path = "/subscriptions/f7aadd52-b923-/resourceGroups/f528da9b-2f2d-4d6/providers/Microsoft.Cdn/profiles/6e84303c-3b/endpoints/4174a136-577/origins";
20660
Requests[3869].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20661
Requests[3869].
Request
.Path = "/subscriptions/cfcb594d-ce8c-/resourceGroups/efa12525-b819-491/providers/Microsoft.Cdn/profiles/118ebbc3-30/endpoints/03468f98-b6d/purge";
20664
Requests[3870].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20665
Requests[3870].
Request
.Path = "/subscriptions/f0615c57-2d8c-/resourceGroups/0282d5c7-8ada-414/providers/Microsoft.Cdn/profiles/398af687-9a/endpoints/bbf0c4c6-d1a/start";
20668
Requests[3871].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20669
Requests[3871].
Request
.Path = "/subscriptions/9b68c030-b2ad-/resourceGroups/dd45b0ab-e535-4e4/providers/Microsoft.Cdn/profiles/e7c56fd4-46/endpoints/031bef3c-dc6/stop";
20672
Requests[3872].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20673
Requests[3872].
Request
.Path = "/subscriptions/9990a053-6d32-/resourceGroups/7ae693cc-f98a-493/providers/Microsoft.Cdn/profiles/a2ab5401-17/endpoints/b676fc29-c85/validateCustomDomain";
20676
Requests[3873].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20677
Requests[3873].
Request
.Path = "/subscriptions/790704bb-0151-/resourceGroups/8b4d40e4-d976-4b1/providers/Microsoft.Compute/galleries/9e8a7978-63/images/5c8c7824-2282-43/versions";
20680
Requests[3874].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20681
Requests[3874].
Request
.Path = "/subscriptions/2de39a6e-ffaf-/resourceGroups/9c39a25a-9fea-4e3/providers/microsoft.Compute/virtualMachineScaleSets/0384eb6b-f4ef-48fc-ba19-99/virtualMachines/c2abb64c-9eee-454f-/networkInterfaces";
20684
Requests[3875].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20685
Requests[3875].
Request
.Path = "/subscriptions/7ef99ff0-340c-/resourceGroups/6ff4940b-1245-4dc/providers/Microsoft.Compute/virtualMachineScaleSets/74169111-acfa-/virtualmachines/ce099df3-5/deallocate";
20688
Requests[3876].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20689
Requests[3876].
Request
.Path = "/subscriptions/28ceafa3-7d1c-/resourceGroups/bfc3c67c-2db0-4ec/providers/Microsoft.Compute/virtualMachineScaleSets/75f21679-6867-/virtualmachines/51f93d0c-f/instanceView";
20692
Requests[3877].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20693
Requests[3877].
Request
.Path = "/subscriptions/c8fa9333-1113-/resourceGroups/f6d56097-c1b4-4cb/providers/Microsoft.Compute/virtualMachineScaleSets/fa4a7b4d-e6bc-/virtualmachines/cace8e61-b/performMaintenance";
20696
Requests[3878].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20697
Requests[3878].
Request
.Path = "/subscriptions/25709df8-4194-/resourceGroups/5bd20531-b503-41a/providers/Microsoft.Compute/virtualMachineScaleSets/501897fa-32db-/virtualmachines/d58b1515-3/poweroff";
20700
Requests[3879].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20701
Requests[3879].
Request
.Path = "/subscriptions/2324e0d1-c45a-/resourceGroups/5324cd6a-074a-485/providers/Microsoft.Compute/virtualMachineScaleSets/d1076b16-c5ff-/virtualmachines/67b6d63a-4/redeploy";
20704
Requests[3880].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20705
Requests[3880].
Request
.Path = "/subscriptions/ba08154f-5bf7-/resourceGroups/719db02d-2d48-44b/providers/Microsoft.Compute/virtualMachineScaleSets/3bb1ea1c-3505-/virtualmachines/a39e9583-c/reimage";
20708
Requests[3881].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20709
Requests[3881].
Request
.Path = "/subscriptions/42168226-d288-/resourceGroups/28229f10-b15c-4f1/providers/Microsoft.Compute/virtualMachineScaleSets/8dc8c478-61b6-/virtualmachines/ceefa225-8/reimageall";
20712
Requests[3882].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20713
Requests[3882].
Request
.Path = "/subscriptions/88a55e5a-bc7f-/resourceGroups/038f554e-7726-4db/providers/Microsoft.Compute/virtualMachineScaleSets/4224ab3c-740a-/virtualmachines/bc9093b0-2/restart";
20716
Requests[3883].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20717
Requests[3883].
Request
.Path = "/subscriptions/9083c7c0-8f6f-/resourceGroups/c104e0f0-ef73-4f2/providers/Microsoft.Compute/virtualMachineScaleSets/263ec3a5-df10-/virtualmachines/100e15bf-0/start";
20720
Requests[3884].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20721
Requests[3884].
Request
.Path = "/subscriptions/ef88f3f0-4cfc-/resourceGroups/0531a345-4dee-4a8/providers/Microsoft.ContainerInstance/containerGroups/ef4142cb-2193-40a2/containers/04044390-bb68/exec";
20724
Requests[3885].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20725
Requests[3885].
Request
.Path = "/subscriptions/a50d13cb-4fb1-/resourceGroups/7c7141be-8517-48e/providers/Microsoft.ContainerInstance/containerGroups/eb2f9bc2-8664-47c0/containers/71f416af-9b80/logs";
20728
Requests[3886].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20729
Requests[3886].
Request
.Path = "/subscriptions/8672a101-337c-/resourceGroups/66495630-8c4d-43a/providers/Microsoft.ContainerRegistry/registries/be8eb9eb-f9b/builds/0d461a7/cancel";
20732
Requests[3887].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20733
Requests[3887].
Request
.Path = "/subscriptions/6571cfcd-40b4-/resourceGroups/1868741a-605a-4a8/providers/Microsoft.ContainerRegistry/registries/4ccba60a-6e8/builds/10ee1ad/getLogLink";
20736
Requests[3888].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20737
Requests[3888].
Request
.Path = "/subscriptions/eff130bd-4df6-/resourceGroups/37b92ac9-d6da-41f/providers/Microsoft.ContainerRegistry/registries/64ab3fb0-04d/buildTasks/8f171a29-703d/listSourceRepositoryProperties";
20740
Requests[3889].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20741
Requests[3889].
Request
.Path = "/subscriptions/f40077ac-ef8d-/resourceGroups/9eb8b28c-bb5a-48d/providers/Microsoft.ContainerRegistry/registries/3afdbe97-6b1/buildTasks/efe1bfc8-5aef/steps";
20744
Requests[3890].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20745
Requests[3890].
Request
.Path = "/subscriptions/42fd5aaf-155b-/resourceGroups/1031049d-44ef-419/providers/Microsoft.ContainerRegistry/registries/096c459b-e00/webhooks/a9c7680d-a4/getCallbackConfig";
20748
Requests[3891].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20749
Requests[3891].
Request
.Path = "/subscriptions/163b10b6-1ef1-/resourceGroups/8aedafc8-20fb-472/providers/Microsoft.ContainerRegistry/registries/a744aa4a-d35/webhooks/becd47fb-d1/listEvents";
20752
Requests[3892].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20753
Requests[3892].
Request
.Path = "/subscriptions/c754ef0a-a9d4-/resourceGroups/17b816d7-79c2-4d0/providers/Microsoft.ContainerRegistry/registries/e24558ab-a90/webhooks/7a66108e-8e/ping";
20756
Requests[3893].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20757
Requests[3893].
Request
.Path = "/subscriptions/5a74b1db-f6b6-/resourceGroups/a29136d1-b3ab-4b5/providers/Microsoft.ContainerService/managedClusters/d51df64d-e5f/accessProfiles/8e9592ef/listCredential";
20760
Requests[3894].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20761
Requests[3894].
Request
.Path = "/subscriptions/7075178e-4ff4-/resourceGroups/0aea62df-590c-428/providers/Microsoft.CustomerInsights/hubs/f26c04b/authorizationPolicies/444b3757-5c1a-49ca-a707/regeneratePrimaryKey";
20764
Requests[3895].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20765
Requests[3895].
Request
.Path = "/subscriptions/a07ba9eb-c6a9-/resourceGroups/23138420-f3ea-43d/providers/Microsoft.CustomerInsights/hubs/6588453/authorizationPolicies/6380905b-3a11-4d26-ad55/regenerateSecondaryKey";
20768
Requests[3896].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20769
Requests[3896].
Request
.Path = "/subscriptions/20e03d9c-de58-/resourceGroups/7ea00634-d2d3-420/providers/Microsoft.CustomerInsights/hubs/72e9086/connectors/634e8f78-8192/mappings";
20772
Requests[3897].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20773
Requests[3897].
Request
.Path = "/subscriptions/8f3c4373-b3df-/resourceGroups/9d92797c-00e3-496/providers/Microsoft.CustomerInsights/hubs/76f1b92/interactions/0c2c0086-d794-4/suggestRelationshipLinks";
20776
Requests[3898].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20777
Requests[3898].
Request
.Path = "/subscriptions/e8834317-968b-/resourceGroups/cfa04c18-7580-44d/providers/Microsoft.CustomerInsights/hubs/b55d5fa/kpi/6c1677d/reprocess";
20780
Requests[3899].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20781
Requests[3899].
Request
.Path = "/subscriptions/8074f528-07d9-/resourceGroups/ef271695-ad27-4be/providers/Microsoft.CustomerInsights/hubs/0afee87/predictions/96d19ab2-6e0e-/getModelStatus";
20784
Requests[3900].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20785
Requests[3900].
Request
.Path = "/subscriptions/d36ebcac-504c-/resourceGroups/7c47ec05-cc52-436/providers/Microsoft.CustomerInsights/hubs/b7c7f27/predictions/1c0e3993-e334-/getTrainingResults";
20788
Requests[3901].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20789
Requests[3901].
Request
.Path = "/subscriptions/2cefb358-667f-/resourceGroups/29744e54-a120-4c5/providers/Microsoft.CustomerInsights/hubs/3d34458/predictions/d5556f82-5d5d-/modelStatus";
20792
Requests[3902].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20793
Requests[3902].
Request
.Path = "/subscriptions/4456a0ba-81ff-/resourceGroups/4657d9c2-54d0-47c/providers/Microsoft.CustomerInsights/hubs/04ec55f/profiles/c5bbd841-31/getEnrichingKpis";
20796
Requests[3903].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20797
Requests[3903].
Request
.Path = "/subscriptions/d3924d5b-7aac-/resourceGroups/eb7b848f-1839-4d1/providers/Microsoft.DataFactory/factories/a71cafb7-8e/integrationRuntimes/8b9c2e73-bbca-439f-9a9/getConnectionInfo";
20800
Requests[3904].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20801
Requests[3904].
Request
.Path = "/subscriptions/a0783a3c-187a-/resourceGroups/6fcd6b16-26c4-4f7/providers/Microsoft.DataFactory/factories/27fb73eb-c9/integrationRuntimes/11f6e504-15d8-4cb6-a67/getStatus";
20804
Requests[3905].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20805
Requests[3905].
Request
.Path = "/subscriptions/af3093db-0331-/resourceGroups/57769fe3-0918-4b4/providers/Microsoft.DataFactory/factories/4eba0e3a-11/integrationRuntimes/20816381-db1f-482c-ad3/listAuthKeys";
20808
Requests[3906].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20809
Requests[3906].
Request
.Path = "/subscriptions/8909fc56-0714-/resourceGroups/652d3b4e-20f3-4d5/providers/Microsoft.DataFactory/factories/d35859e4-c0/integrationRuntimes/38e138d7-54e0-4b80-ac9/monitoringData";
20812
Requests[3907].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20813
Requests[3907].
Request
.Path = "/subscriptions/41fe297f-1ebc-/resourceGroups/7cbf0b28-a032-4b9/providers/Microsoft.DataFactory/factories/d0cd9245-96/integrationRuntimes/8d5933dc-d182-459c-ae4/regenerateAuthKey";
20816
Requests[3908].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20817
Requests[3908].
Request
.Path = "/subscriptions/7c5e3dd6-0afa-/resourceGroups/26492686-d61d-4b7/providers/Microsoft.DataFactory/factories/d5baa79e-fe/integrationRuntimes/c8149648-6e73-4727-ac0/removeNode";
20820
Requests[3909].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20821
Requests[3909].
Request
.Path = "/subscriptions/bb3a9e3f-3df1-/resourceGroups/b2f6c2cb-42d8-437/providers/Microsoft.DataFactory/factories/ee9ac219-cc/integrationRuntimes/5b1664d6-8496-4ca9-8f4/start";
20824
Requests[3910].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20825
Requests[3910].
Request
.Path = "/subscriptions/863c4b49-6ca1-/resourceGroups/9e81de85-127d-4a8/providers/Microsoft.DataFactory/factories/29d6af01-2e/integrationRuntimes/2b2f535b-73e9-49ec-8a0/stop";
20828
Requests[3911].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20829
Requests[3911].
Request
.Path = "/subscriptions/cb4ad45a-83fc-/resourceGroups/05e35151-e88e-458/providers/Microsoft.DataFactory/factories/d2b9772c-c4/integrationRuntimes/be1ea13b-ceda-4c78-989/syncCredentials";
20832
Requests[3912].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20833
Requests[3912].
Request
.Path = "/subscriptions/cd304ba8-99e7-/resourceGroups/b80ade59-42be-4a2/providers/Microsoft.DataFactory/factories/61a01dae-ef/integrationRuntimes/43596aaf-1461-4d58-b91/upgrade";
20836
Requests[3913].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20837
Requests[3913].
Request
.Path = "/subscriptions/1ab09b79-efb5-/resourceGroups/1607e18d-9619-408/providers/Microsoft.DataFactory/factories/3656aba7-ff/pipelineruns/fb668/activityruns";
20840
Requests[3914].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20841
Requests[3914].
Request
.Path = "/subscriptions/bacddc95-eabe-/resourceGroups/9d507039-e504-436/providers/Microsoft.DataFactory/factories/a831bca1-05/pipelines/bc86c1c9-5e5/createRun";
20844
Requests[3915].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20845
Requests[3915].
Request
.Path = "/subscriptions/cdd1e347-8807-/resourceGroups/3bf71f17-c952-4c2/providers/Microsoft.DataFactory/factories/b0fe79af-c6/triggers/b7d4c785-af/start";
20848
Requests[3916].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20849
Requests[3916].
Request
.Path = "/subscriptions/40e2ce56-e7bf-/resourceGroups/95d4f9e6-750d-4c0/providers/Microsoft.DataFactory/factories/a072eee2-01/triggers/1396ba54-15/stop";
20852
Requests[3917].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20853
Requests[3917].
Request
.Path = "/subscriptions/562cd6eb-dc58-/resourceGroups/fc5e3647-4637-411/providers/Microsoft.DataFactory/factories/bc7b7424-4b/triggers/ba236dcb-02/triggerruns";
20856
Requests[3918].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20857
Requests[3918].
Request
.Path = "/subscriptions/71b25ac1-2b6a-/resourceGroups/684c7484-982d-4bf/providers/Microsoft.DataLakeAnalytics/accounts/7a21530f-06/storageAccounts/a6afa904-7931-4bf0/containers";
20860
Requests[3919].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20861
Requests[3919].
Request
.Path = "/subscriptions/ffdeeca5-5383-/resourceGroups/b39fa11f-060c-4f9/providers/Microsoft.Devices/IotHubs/ad0b5e26-a72/certificates/28215eb5-77a0-4/generateVerificationCode";
20864
Requests[3920].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20865
Requests[3920].
Request
.Path = "/subscriptions/b5aea6de-8ac4-/resourceGroups/0e7f5cc5-ae9c-4a1/providers/Microsoft.Devices/IotHubs/c20cfd9c-27e/certificates/7d9df220-664e-4/verify";
20868
Requests[3921].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20869
Requests[3921].
Request
.Path = "/subscriptions/c308d2b3-195a-/resourceGroups/4257a5ea-d6b7-4a7/providers/Microsoft.Devices/IotHubs/6a09fdd5-2f0/eventHubEndpoints/c8515d1f-4021-47ff-b/ConsumerGroups";
20872
Requests[3922].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20873
Requests[3922].
Request
.Path = "/subscriptions/9d597319-d399-/resourceGroups/88fced10-7eb5-46e/providers/Microsoft.Devices/IotHubs/40615f36-dc6/IotHubKeys/3920100/listkeys";
20876
Requests[3923].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20877
Requests[3923].
Request
.Path = "/subscriptions/d1a8497e-dd7a-/resourceGroups/cb4a2d28-51e4-464/providers/Microsoft.Devices/provisioningServices/b6959a04-678d-4c56-9b75/certificates/40c3f716-b8fe-4/generateVerificationCode";
20880
Requests[3924].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20881
Requests[3924].
Request
.Path = "/subscriptions/532ba51c-0737-/resourceGroups/2574c30b-29af-4dd/providers/Microsoft.Devices/provisioningServices/03579272-88dc-4016-99d9/certificates/a37b397c-472b-4/verify";
20884
Requests[3925].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20885
Requests[3925].
Request
.Path = "/subscriptions/146df8e2-11f1-/resourceGroups/eb77c8d7-3d58-4f6/providers/Microsoft.Devices/provisioningServices/31df9779-bed6-4b18-99ae/keys/3b5362c/listkeys";
20888
Requests[3926].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20889
Requests[3926].
Request
.Path = "/subscriptions/6a67577a-3d69-/resourceGroups/e8470821-3368-449/providers/Microsoft.DevTestLab/labs/02a58c6/artifactsources/87d92219-cbf8-4179/armtemplates";
20892
Requests[3927].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20893
Requests[3927].
Request
.Path = "/subscriptions/3f47c078-bf7f-/resourceGroups/5fc4255a-c80e-407/providers/Microsoft.DevTestLab/labs/8e04015/artifactsources/3d02244c-e322-43cd/artifacts";
20896
Requests[3928].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20897
Requests[3928].
Request
.Path = "/subscriptions/eca2a233-b183-/resourceGroups/4b6f20cc-7ec5-4c4/providers/Microsoft.DevTestLab/labs/1387091/costinsights/88cd7/refreshData";
20900
Requests[3929].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20901
Requests[3929].
Request
.Path = "/subscriptions/765a9b34-4c3d-/resourceGroups/61e49221-66d9-40a/providers/Microsoft.DevTestLab/labs/607aa52/costs/c54a5/refreshData";
20904
Requests[3930].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20905
Requests[3930].
Request
.Path = "/subscriptions/6e70d267-217d-/resourceGroups/76a74e9c-3604-49a/providers/Microsoft.DevTestLab/labs/b07d5ac/notificationchannels/9a921/notify";
20908
Requests[3931].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20909
Requests[3931].
Request
.Path = "/subscriptions/f41c1658-565e-/resourceGroups/49af5e86-8bd9-437/providers/Microsoft.DevTestLab/labs/71b26f4/policysets/bce8a/evaluatePolicies";
20912
Requests[3932].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20913
Requests[3932].
Request
.Path = "/subscriptions/242c5408-99e8-/resourceGroups/f44a9fe5-dd03-442/providers/Microsoft.DevTestLab/labs/6fc9ba5/policysets/9778642b-68bd/policies";
20916
Requests[3933].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20917
Requests[3933].
Request
.Path = "/subscriptions/b49f555c-5d50-/resourceGroups/e8e197c2-aa1a-44e/providers/Microsoft.DevTestLab/labs/880085b/schedules/1e249/execute";
20920
Requests[3934].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20921
Requests[3934].
Request
.Path = "/subscriptions/e57d2bb5-3cd1-/resourceGroups/be2c3252-bf26-4cc/providers/Microsoft.DevTestLab/labs/582a0e7/schedules/1469d/listApplicable";
20924
Requests[3935].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20925
Requests[3935].
Request
.Path = "/subscriptions/71c88fab-b8d2-/resourceGroups/ce96a037-6b5b-4e3/providers/Microsoft.DevTestLab/labs/a45a4f7/users/dc622b6e/disks";
20928
Requests[3936].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20929
Requests[3936].
Request
.Path = "/subscriptions/24565dea-5330-/resourceGroups/e8de240b-80e5-431/providers/Microsoft.DevTestLab/labs/acd45b8/users/10392f4b/environments";
20932
Requests[3937].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20933
Requests[3937].
Request
.Path = "/subscriptions/5e4f4863-51af-/resourceGroups/174479ab-4f94-427/providers/Microsoft.DevTestLab/labs/597e66c/users/a337b9ae/secrets";
20936
Requests[3938].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20937
Requests[3938].
Request
.Path = "/subscriptions/2d9b3fbf-3a11-/resourceGroups/aa9a1de0-039b-46e/providers/Microsoft.DevTestLab/labs/448297a/virtualmachines/f0dab/addDataDisk";
20940
Requests[3939].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20941
Requests[3939].
Request
.Path = "/subscriptions/6301cf2d-3d3e-/resourceGroups/fd329987-9b2c-45f/providers/Microsoft.DevTestLab/labs/49e5c64/virtualmachines/b6c0f/applyArtifacts";
20944
Requests[3940].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20945
Requests[3940].
Request
.Path = "/subscriptions/5c2550af-0c4f-/resourceGroups/433e300a-9921-414/providers/Microsoft.DevTestLab/labs/26c90ff/virtualmachines/7751c/claim";
20948
Requests[3941].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20949
Requests[3941].
Request
.Path = "/subscriptions/eb3992c3-3b78-/resourceGroups/1a92d991-5870-459/providers/Microsoft.DevTestLab/labs/b1b0d93/virtualmachines/e3c35/detachDataDisk";
20952
Requests[3942].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20953
Requests[3942].
Request
.Path = "/subscriptions/8ced5264-d1df-/resourceGroups/f07dc3df-0ed8-4fa/providers/Microsoft.DevTestLab/labs/a46eff5/virtualmachines/1d3ed/listApplicableSchedules";
20956
Requests[3943].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20957
Requests[3943].
Request
.Path = "/subscriptions/51384316-b25f-/resourceGroups/b133dd43-1f2a-493/providers/Microsoft.DevTestLab/labs/ad87515/virtualmachines/01f26/start";
20960
Requests[3944].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20961
Requests[3944].
Request
.Path = "/subscriptions/17a0daa5-ef9a-/resourceGroups/9f60aaa8-79e2-453/providers/Microsoft.DevTestLab/labs/04bc807/virtualmachines/a0070/stop";
20964
Requests[3945].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20965
Requests[3945].
Request
.Path = "/subscriptions/7e65253b-4a29-/resourceGroups/c7437169-f1c2-405/providers/Microsoft.DevTestLab/labs/0f31a8c/virtualmachines/b7371032-f92a-4118/schedules";
20968
Requests[3946].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20969
Requests[3946].
Request
.Path = "/subscriptions/2b003331-ca01-/resourceGroups/b2872e6c-662f-407/providers/Microsoft.DocumentDB/databaseAccounts/69ebaa78-f5/databases/1200731e-41/metricDefinitions";
20972
Requests[3947].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20973
Requests[3947].
Request
.Path = "/subscriptions/d5c2f451-be5c-/resourceGroups/ac650636-6d01-436/providers/Microsoft.DocumentDB/databaseAccounts/c8c4ac4b-20/databases/08cea02f-0c/metrics";
20976
Requests[3948].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20977
Requests[3948].
Request
.Path = "/subscriptions/7cd26de5-3a2c-/resourceGroups/aba06210-82d8-45e/providers/Microsoft.DocumentDB/databaseAccounts/b8ad85c0-b0/databases/973d8eed-1f/usages";
20980
Requests[3949].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20981
Requests[3949].
Request
.Path = "/subscriptions/3f6ceb3c-9f4e-/resourceGroups/94713a14-58c0-40e/providers/Microsoft.DocumentDB/databaseAccounts/dae6cb0a-ec/region/d67ecb/metrics";
20984
Requests[3950].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20985
Requests[3950].
Request
.Path = "/subscriptions/dd1662fd-a112-/resourceGroups/ef7a2415-7315-4de/providers/Microsoft.EventGrid/locations/db4fdb9c/topicTypes/5fa83125-5b31/eventSubscriptions";
20988
Requests[3951].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20989
Requests[3951].
Request
.Path = "/subscriptions/2dc0b4b2-478e-/resourceGroups/f9cf0a73-bd07-47e/providers/Microsoft.EventHub/namespaces/79009c7e-4aa3/AuthorizationRules/9fc7debf-ca6f-481a-b6/listKeys";
20992
Requests[3952].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
20993
Requests[3952].
Request
.Path = "/subscriptions/68355d79-a398-/resourceGroups/5b4011ad-b821-410/providers/Microsoft.EventHub/namespaces/2187e68c-cedd/AuthorizationRules/ddd216c6-efca-4f9d-a0/regenerateKeys";
20996
Requests[3953].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
20997
Requests[3953].
Request
.Path = "/subscriptions/3a0271d4-728a-/resourceGroups/12cc097d-bc61-492/providers/Microsoft.EventHub/namespaces/4b1a60bc-8f5a/disasterRecoveryConfigs/78f49/AuthorizationRules";
21000
Requests[3954].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21001
Requests[3954].
Request
.Path = "/subscriptions/723f7a14-1349-/resourceGroups/05a3c565-e503-496/providers/Microsoft.EventHub/namespaces/30fc31ee-d3eb/disasterRecoveryConfigs/73840/breakPairing";
21004
Requests[3955].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21005
Requests[3955].
Request
.Path = "/subscriptions/a6621589-33d4-/resourceGroups/37a1cca7-32fa-452/providers/Microsoft.EventHub/namespaces/b9e9440d-0c3b/disasterRecoveryConfigs/79fce/failover";
21008
Requests[3956].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21009
Requests[3956].
Request
.Path = "/subscriptions/13ecf24d-6099-/resourceGroups/09408709-1bf7-4c7/providers/Microsoft.EventHub/namespaces/04dd6b43-93f3/eventhubs/21e029f6-2d3/authorizationRules";
21012
Requests[3957].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21013
Requests[3957].
Request
.Path = "/subscriptions/71b06c72-b7de-/resourceGroups/3d5f9c99-3e1b-4a3/providers/Microsoft.EventHub/namespaces/938a6d96-aab7/eventhubs/d8e5117f-e77/consumergroups";
21016
Requests[3958].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21017
Requests[3958].
Request
.Path = "/subscriptions/bd0507fa-7827-/resourceGroups/a46bbef4-703b-402/providers/Microsoft.Fabric.Admin/fabricLocations/4eece12c/infraRoleInstances/b53636a5-51f1-441/PowerOff";
21020
Requests[3959].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21021
Requests[3959].
Request
.Path = "/subscriptions/65086138-b524-/resourceGroups/f5d95590-3e2e-401/providers/Microsoft.Fabric.Admin/fabricLocations/8a164834/infraRoleInstances/ff0da6e8-3ea5-4b7/PowerOn";
21024
Requests[3960].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21025
Requests[3960].
Request
.Path = "/subscriptions/92cadc22-33d4-/resourceGroups/5e662666-f6a3-476/providers/Microsoft.Fabric.Admin/fabricLocations/5e35de70/infraRoleInstances/9e1ca717-7b10-47e/Reboot";
21028
Requests[3961].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21029
Requests[3961].
Request
.Path = "/subscriptions/892653ea-c611-/resourceGroups/afbdf5c4-772a-442/providers/Microsoft.Fabric.Admin/fabricLocations/b74abd0b/infraRoleInstances/de954d36-bb8c-485/Shutdown";
21032
Requests[3962].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21033
Requests[3962].
Request
.Path = "/subscriptions/c07c2730-3347-/resourceGroups/eadbe4fe-da81-422/providers/Microsoft.Fabric.Admin/fabricLocations/5c204962/infraRoles/85627345-/Restart";
21036
Requests[3963].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21037
Requests[3963].
Request
.Path = "/subscriptions/7f40de4f-9b23-/resourceGroups/82d9abf3-fc37-4c7/providers/Microsoft.Fabric.Admin/fabricLocations/b8437c75/logicalNetworks/341430eb-9858-/logicalSubnets";
21040
Requests[3964].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21041
Requests[3964].
Request
.Path = "/subscriptions/245a6bbd-4083-/resourceGroups/15e44c9a-0bc4-422/providers/Microsoft.Fabric.Admin/fabricLocations/273d273f/scaleUnitNodes/07900cee-0345/PowerOff";
21044
Requests[3965].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21045
Requests[3965].
Request
.Path = "/subscriptions/c06d786f-fa02-/resourceGroups/aa6c85c0-3331-4c5/providers/Microsoft.Fabric.Admin/fabricLocations/a2e0e2f9/scaleUnitNodes/eea542fe-0c82/PowerOn";
21048
Requests[3966].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21049
Requests[3966].
Request
.Path = "/subscriptions/276423cc-b66d-/resourceGroups/60f28b05-110e-423/providers/Microsoft.Fabric.Admin/fabricLocations/65699f26/scaleUnitNodes/57409945-53b3/Repair";
21052
Requests[3967].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21053
Requests[3967].
Request
.Path = "/subscriptions/f72f35c8-22e5-/resourceGroups/cef52d7d-6c1f-4c9/providers/Microsoft.Fabric.Admin/fabricLocations/d83e8057/scaleUnitNodes/0bb1844f-9bd9/Shutdown";
21056
Requests[3968].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21057
Requests[3968].
Request
.Path = "/subscriptions/e054f26a-6ada-/resourceGroups/cea891bb-05ca-426/providers/Microsoft.Fabric.Admin/fabricLocations/423956a4/scaleUnitNodes/597d064c-7123/StartMaintenanceMode";
21060
Requests[3969].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21061
Requests[3969].
Request
.Path = "/subscriptions/90c38b31-ca30-/resourceGroups/c7180e48-f96d-4a1/providers/Microsoft.Fabric.Admin/fabricLocations/8223c907/scaleUnitNodes/b52e171b-4c16/StopMaintenanceMode";
21064
Requests[3970].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21065
Requests[3970].
Request
.Path = "/subscriptions/0e4c100c-73bf-/resourceGroups/d65f35b5-008c-44f/providers/Microsoft.Fabric.Admin/fabricLocations/0db8ed79/scaleUnits/14a761da-/ScaleOut";
21068
Requests[3971].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21069
Requests[3971].
Request
.Path = "/subscriptions/e2c11c96-1610-/resourceGroups/281dffe8-923d-411/providers/Microsoft.Fabric.Admin/fabricLocations/1b1417ef/storageSubSystems/f93b076c-2487-40/storagePools";
21072
Requests[3972].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21073
Requests[3972].
Request
.Path = "/subscriptions/c0338296-35e8-/resourceGroups/3fa56e8d-02f8-4fd/providers/Microsoft.HDInsight/clusters/dbe67d0a-a9/roles/8a279ccc/resize";
21076
Requests[3973].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21077
Requests[3973].
Request
.Path = "/subscriptions/3ff6ace5-de2d-/resourceGroups/13a5fa1d-7625-42e/providers/Microsoft.HDInsight/clusters/ed0980ba-88/scriptExecutionHistory/6df083dd-f012-4da/promote";
21080
Requests[3974].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21081
Requests[3974].
Request
.Path = "/subscriptions/ddd7e171-45e5-/resourceGroups/18f69bae-ef54-45b/providers/Microsoft.InfrastructureInsights.Admin/regionHealths/326d7aa9/serviceHealths/14453da5-0c53-4eac-8e/resourceHealths";
21084
Requests[3975].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21085
Requests[3975].
Request
.Path = "/subscriptions/aded9ca9-c0a5-/resourceGroups/79825cd6-7c33-4e0/providers/Microsoft.Logic/integrationAccounts/9df7d8ff-6cc3-4c0a-831/agreements/753e8a6c-0756/listContentCallbackUrl";
21088
Requests[3976].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21089
Requests[3976].
Request
.Path = "/subscriptions/2cb9b53c-e289-/resourceGroups/8792e42e-09ac-45e/providers/Microsoft.Logic/integrationAccounts/8fd33e73-ac9d-4455-9eb/assemblies/3453e344-b751-4848-9/listContentCallbackUrl";
21092
Requests[3977].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21093
Requests[3977].
Request
.Path = "/subscriptions/386687e6-3b61-/resourceGroups/b0d1e39b-c9be-437/providers/Microsoft.Logic/integrationAccounts/981bf8dc-dec8-4f8e-891/maps/dc0968a/listContentCallbackUrl";
21096
Requests[3978].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21097
Requests[3978].
Request
.Path = "/subscriptions/b34631b2-f896-/resourceGroups/1654b31a-860b-442/providers/Microsoft.Logic/integrationAccounts/b14a92e4-17f8-4601-b21/partners/59d542d3-48/listContentCallbackUrl";
21100
Requests[3979].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21101
Requests[3979].
Request
.Path = "/subscriptions/6fd5341d-ffeb-/resourceGroups/f3be1e8f-b38f-458/providers/Microsoft.Logic/integrationAccounts/2b1a21d9-5151-4245-be0/schemas/ee4e0823-4/listContentCallbackUrl";
21104
Requests[3980].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21105
Requests[3980].
Request
.Path = "/subscriptions/bab260cd-7f68-/resourceGroups/5f9e5b17-d4dc-49c/providers/Microsoft.Logic/locations/aea4dc2c/workflows/e96c52fc-dc0/validate";
21108
Requests[3981].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21109
Requests[3981].
Request
.Path = "/subscriptions/bf6744a4-5828-/resourceGroups/51df9ae8-799a-49d/providers/Microsoft.Logic/workflows/cf421000-d4e/accessKeys/9f5ab74e-a356/list";
21112
Requests[3982].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21113
Requests[3982].
Request
.Path = "/subscriptions/80596c6d-8fe6-/resourceGroups/87760f7a-60fc-4d3/providers/Microsoft.Logic/workflows/84e8699f-a83/accessKeys/f50956a0-0edd/regenerate";
21116
Requests[3983].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21117
Requests[3983].
Request
.Path = "/subscriptions/83aabfa2-24ea-/resourceGroups/3614d50e-f80c-417/providers/Microsoft.Logic/workflows/7965df25-324/runs/a3f1002/actions";
21120
Requests[3984].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21121
Requests[3984].
Request
.Path = "/subscriptions/6f7da107-5c88-/resourceGroups/76d35e29-140a-48a/providers/Microsoft.Logic/workflows/ec169774-1b8/runs/c9bb82e/cancel";
21124
Requests[3985].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21125
Requests[3985].
Request
.Path = "/subscriptions/856e346d-9bf8-/resourceGroups/407972a3-101f-4af/providers/Microsoft.Logic/workflows/29f48480-3ef/triggers/5c24d8cc-3f/histories";
21128
Requests[3986].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21129
Requests[3986].
Request
.Path = "/subscriptions/80ebe598-4b99-/resourceGroups/a09d388e-d048-46d/providers/Microsoft.Logic/workflows/2643f673-660/triggers/2a856419-ab/listCallbackUrl";
21132
Requests[3987].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21133
Requests[3987].
Request
.Path = "/subscriptions/4f110266-96f5-/resourceGroups/db0b9497-4bdc-4b1/providers/Microsoft.Logic/workflows/cd2d1bfd-106/triggers/7befebdc-d3/reset";
21136
Requests[3988].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21137
Requests[3988].
Request
.Path = "/subscriptions/122da36d-10be-/resourceGroups/aa77cb08-1ed7-4ee/providers/Microsoft.Logic/workflows/4d002500-6fa/triggers/d42e51d9-55/run";
21140
Requests[3989].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21141
Requests[3989].
Request
.Path = "/subscriptions/d21e2089-73a6-/resourceGroups/ae02b2f1-a455-460/providers/Microsoft.Logic/workflows/1f39ebd2-207/triggers/5cfa4f93-e9/setState";
21144
Requests[3990].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21145
Requests[3990].
Request
.Path = "/subscriptions/f50a67ec-7ae5-/resourceGroups/0b72c676-c650-443/providers/Microsoft.MachineLearning/commitmentPlans/812685c6-fbe3-4c51/commitmentAssociations/a5314ea6-a1db-406b-ad7e-6/move";
21148
Requests[3991].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21149
Requests[3991].
Request
.Path = "/subscriptions/628e666b-30ad-/resourceGroups/229ed232-12d3-4f8/providers/Microsoft.Media/mediaServices/3c266170-74/assets/f6a26f0e-/getEncryptionKey";
21152
Requests[3992].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21153
Requests[3992].
Request
.Path = "/subscriptions/1691b50c-8089-/resourceGroups/99ec0d77-5eb6-45f/providers/Microsoft.Media/mediaServices/c9f93bb1-7f/assets/7e505d55-/listContainerSas";
21156
Requests[3993].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21157
Requests[3993].
Request
.Path = "/subscriptions/a9ae2cf0-0a58-/resourceGroups/2ff0009f-426e-46c/providers/Microsoft.Media/mediaServices/dcc175ed-59/contentKeyPolicies/5d9d6f19-2157-492c-9/getPolicyPropertiesWithSecrets";
21160
Requests[3994].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21161
Requests[3994].
Request
.Path = "/subscriptions/f61ca657-1220-/resourceGroups/e04dc50f-081e-489/providers/Microsoft.Media/mediaservices/d4a46686-b8/liveEvents/14cc4635-ed36/liveOutputs";
21164
Requests[3995].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21165
Requests[3995].
Request
.Path = "/subscriptions/8d3dc237-9525-/resourceGroups/dd7c92cc-a1c9-4c6/providers/Microsoft.Media/mediaservices/db2ca602-0c/liveEvents/cb4cb978-e2d8/reset";
21168
Requests[3996].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21169
Requests[3996].
Request
.Path = "/subscriptions/460e604f-ca88-/resourceGroups/47f5bd45-12ad-499/providers/Microsoft.Media/mediaservices/b3364fa2-0e/liveEvents/48e4ddcc-7f8d/start";
21172
Requests[3997].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21173
Requests[3997].
Request
.Path = "/subscriptions/514ca765-5d18-/resourceGroups/9cde063a-63d8-489/providers/Microsoft.Media/mediaservices/39dbaf25-8e/liveEvents/d27a0d4c-9b78/stop";
21176
Requests[3998].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21177
Requests[3998].
Request
.Path = "/subscriptions/c5ce0dbb-42a3-/resourceGroups/ef99b5bf-ce64-4d6/providers/Microsoft.Media/mediaservices/3e66aa60-5d/streamingEndpoints/485aecdf-8901-4e44-b2/scale";
21180
Requests[3999].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21181
Requests[3999].
Request
.Path = "/subscriptions/dfc60bbe-d570-/resourceGroups/0c8a8a64-fa38-4dd/providers/Microsoft.Media/mediaservices/e3c88ede-45/streamingEndpoints/6cf3e17e-17bd-422f-9e/start";
21184
Requests[4000].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21185
Requests[4000].
Request
.Path = "/subscriptions/ea46da1c-1d74-/resourceGroups/7b1a4905-1635-4ed/providers/Microsoft.Media/mediaservices/2a66eb23-f0/streamingEndpoints/5311e4d6-2bfd-4eec-b3/stop";
21188
Requests[4001].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21189
Requests[4001].
Request
.Path = "/subscriptions/bb18384f-63de-/resourceGroups/ea7c8cea-a757-4a7/providers/Microsoft.Media/mediaServices/5a96fac9-15/streamingLocators/6f4554fc-10ea-4895-8/listContentKeys";
21192
Requests[4002].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21193
Requests[4002].
Request
.Path = "/subscriptions/1a5a4276-0de5-/resourceGroups/1df158b4-a136-439/providers/Microsoft.Media/mediaServices/cb09b7f0-64/streamingLocators/d4dd7329-860d-43d5-8/listPaths";
21196
Requests[4003].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21197
Requests[4003].
Request
.Path = "/subscriptions/01bc3ca8-557e-/resourceGroups/08cbeb8c-351f-4a3/providers/Microsoft.Media/mediaServices/0c51f3aa-f7/transforms/5ad88ded-cc32/jobs";
21200
Requests[4004].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21201
Requests[4004].
Request
.Path = "/subscriptions/cebaf05a-a6e3-/resourceGroups/746ca6c9-f48e-4c0/providers/Microsoft.Migrate/projects/64f772fe-f7/groups/7bb0970e-/assessments";
21204
Requests[4005].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21205
Requests[4005].
Request
.Path = "/subscriptions/aea5b43e-19ea-/resourceGroups/6be157f6-3d5e-457/providers/Microsoft.Network/expressRouteCircuits/fe7d7499-f2/peerings/13a643a1-04/stats";
21208
Requests[4006].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21209
Requests[4006].
Request
.Path = "/subscriptions/76c6b900-7a07-/resourceGroups/c6ef234e-9211-4f4/providers/Microsoft.Network/networkWatchers/91ede275-944f-4169/connectionMonitors/b4e2d99e-0081-422c-b3/query";
21212
Requests[4007].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21213
Requests[4007].
Request
.Path = "/subscriptions/83181606-0321-/resourceGroups/931a2696-3c73-4df/providers/Microsoft.Network/networkWatchers/80371a05-e8f8-4c45/connectionMonitors/90450e4a-c6dd-4f24-8e/start";
21216
Requests[4008].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21217
Requests[4008].
Request
.Path = "/subscriptions/1ba788f9-adf4-/resourceGroups/2e47a6c2-7b78-4d0/providers/Microsoft.Network/networkWatchers/be8c4df4-c028-4603/connectionMonitors/e1230a4f-6da8-4c02-97/stop";
21220
Requests[4009].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21221
Requests[4009].
Request
.Path = "/subscriptions/858dffe9-0731-/resourceGroups/4391ab54-3e69-400/providers/Microsoft.Network/networkWatchers/e49952c7-ba3e-40ba/packetCaptures/9a6c63ca-1028-405/queryStatus";
21224
Requests[4010].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21225
Requests[4010].
Request
.Path = "/subscriptions/1e06ea93-b4d5-/resourceGroups/8f2d562c-8521-4be/providers/Microsoft.Network/networkWatchers/36016387-c515-49f5/packetCaptures/6bd0ec63-3b45-420/stop";
21228
Requests[4011].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21229
Requests[4011].
Request
.Path = "/subscriptions/cfaaed05-a23e-/resourceGroups/ab23672e-71a9-43e/providers/Microsoft.NotificationHubs/namespaces/0736bd53-7f9f/AuthorizationRules/4ea4c84c-d254-4dbc-a3/listKeys";
21232
Requests[4012].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21233
Requests[4012].
Request
.Path = "/subscriptions/1bf37509-c42c-/resourceGroups/01cd71bb-4334-4e9/providers/Microsoft.NotificationHubs/namespaces/a8ad4a62-e57a/AuthorizationRules/d0605620-6c33-4805-8d/regenerateKeys";
21236
Requests[4013].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21237
Requests[4013].
Request
.Path = "/subscriptions/4c262eea-5f38-/resourceGroups/2f33525e-bd80-469/providers/Microsoft.NotificationHubs/namespaces/55a31c0b-3d7d/notificationHubs/8f503cf5-2d1a-4f32-/AuthorizationRules";
21240
Requests[4014].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21241
Requests[4014].
Request
.Path = "/subscriptions/b218c86c-46cc-/resourceGroups/724c07eb-9e2b-448/providers/Microsoft.NotificationHubs/namespaces/9585b6ac-c061/notificationHubs/b9cdb1c4-3118-4a02-/AuthorizationRules";
21244
Requests[4015].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21245
Requests[4015].
Request
.Path = "/subscriptions/9006c375-8fd9-/resourceGroups/1326795c-7dda-40e/providers/Microsoft.NotificationHubs/namespaces/6d4980a5-e1f0/notificationHubs/289927c4-ccd2-4a0b-/pnsCredentials";
21248
Requests[4016].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21249
Requests[4016].
Request
.Path = "/subscriptions/16446aba-fe46-/resourcegroups/be1674c1-2b22-446/providers/Microsoft.OperationalInsights/workspaces/cd210ca0-66d0/intelligencePacks/b8f2d0f5-566b-427c-a/Disable";
21252
Requests[4017].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21253
Requests[4017].
Request
.Path = "/subscriptions/2ec84dbe-9c68-/resourcegroups/658f83d3-e45d-436/providers/Microsoft.OperationalInsights/workspaces/aac743c7-ef59/intelligencePacks/0adeb479-7395-460b-b/Enable";
21256
Requests[4018].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21257
Requests[4018].
Request
.Path = "/subscriptions/8670c1a5-8d4e-/resourcegroups/66c122c3-48e2-4f4/providers/Microsoft.OperationalInsights/workspaces/dd31e771-52a3/savedSearches/bfe478a8-123d-4/results";
21260
Requests[4019].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21261
Requests[4019].
Request
.Path = "/Subscriptions/c09f0fad-4e8e-/resourceGroups/b9a4784d-21c7-432/providers/Microsoft.RecoveryServices/vaults/dd88cd8d-bbc/replicationFabrics/84391cb8-1/checkConsistency";
21264
Requests[4020].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21265
Requests[4020].
Request
.Path = "/Subscriptions/d8a49084-5565-/resourceGroups/2aec4684-c11a-4f4/providers/Microsoft.RecoveryServices/vaults/0f529304-220/replicationFabrics/0709a3a7-6/migratetoaad";
21268
Requests[4021].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21269
Requests[4021].
Request
.Path = "/Subscriptions/a5aa447c-9847-/resourceGroups/ca30e8c4-3a6b-42f/providers/Microsoft.RecoveryServices/vaults/605a54a1-4b4/replicationFabrics/3507b639-7/reassociateGateway";
21272
Requests[4022].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21273
Requests[4022].
Request
.Path = "/Subscriptions/017852ae-4ba1-/resourceGroups/af891d30-66df-460/providers/Microsoft.RecoveryServices/vaults/2a2d3df4-b08/replicationFabrics/fad1343f-1/remove";
21276
Requests[4023].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21277
Requests[4023].
Request
.Path = "/Subscriptions/f66f3d6c-f1ba-/resourceGroups/f84eb934-518b-4ad/providers/Microsoft.RecoveryServices/vaults/3f581c87-def/replicationFabrics/7880384e-7/renewCertificate";
21280
Requests[4024].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21281
Requests[4024].
Request
.Path = "/Subscriptions/91b4871b-9248-/resourceGroups/313b4e28-d6ff-421/providers/Microsoft.RecoveryServices/vaults/078e199a-8f7/replicationFabrics/4f2422ff-8/replicationLogicalNetworks";
21284
Requests[4025].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21285
Requests[4025].
Request
.Path = "/Subscriptions/cf793c5b-0790-/resourceGroups/cf4b13ee-567b-424/providers/Microsoft.RecoveryServices/vaults/ae4c0357-a6c/replicationFabrics/63a2d3c4-d/replicationNetworks";
21288
Requests[4026].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21289
Requests[4026].
Request
.Path = "/Subscriptions/2dd88ce9-8156-/resourceGroups/c16b2d5b-adce-45a/providers/Microsoft.RecoveryServices/vaults/dcec3c01-fa2/replicationFabrics/ee759d57-2/replicationProtectionContainers";
21292
Requests[4027].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21293
Requests[4027].
Request
.Path = "/Subscriptions/07b6d986-58f6-/resourceGroups/123ea17b-9d93-4a9/providers/Microsoft.RecoveryServices/vaults/ff708d9b-be0/replicationFabrics/4fe86e5b-1/replicationRecoveryServicesProviders";
21296
Requests[4028].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21297
Requests[4028].
Request
.Path = "/Subscriptions/4e8b9dc0-4530-/resourceGroups/3fca1826-972a-4d5/providers/Microsoft.RecoveryServices/vaults/9e9f8cc3-c32/replicationFabrics/d2915b01-b/replicationStorageClassifications";
21300
Requests[4029].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21301
Requests[4029].
Request
.Path = "/Subscriptions/b021ea67-d6f6-/resourceGroups/2ece245d-aeaf-462/providers/Microsoft.RecoveryServices/vaults/081e8c81-635/replicationFabrics/8167d0ef-c/replicationvCenters";
21304
Requests[4030].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21305
Requests[4030].
Request
.Path = "/Subscriptions/3cf9fbb4-cad8-/resourceGroups/6936f58d-de5c-438/providers/Microsoft.RecoveryServices/vaults/dd946025-8d3/replicationJobs/44be095/cancel";
21308
Requests[4031].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21309
Requests[4031].
Request
.Path = "/Subscriptions/cac1ac8b-aefc-/resourceGroups/13349630-204d-471/providers/Microsoft.RecoveryServices/vaults/058e3a92-ef3/replicationJobs/7e5bb3e/restart";
21312
Requests[4032].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21313
Requests[4032].
Request
.Path = "/Subscriptions/d095926c-4861-/resourceGroups/496c1767-ecde-49e/providers/Microsoft.RecoveryServices/vaults/a2fbf04a-98a/replicationJobs/20aca28/resume";
21316
Requests[4033].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21317
Requests[4033].
Request
.Path = "/Subscriptions/eb6247a2-80d8-/resourceGroups/2abc1e61-c70c-416/providers/Microsoft.RecoveryServices/vaults/0fdf72bc-375/replicationRecoveryPlans/1ea03e31-4490-48/failoverCommit";
21320
Requests[4034].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21321
Requests[4034].
Request
.Path = "/Subscriptions/81967920-2f44-/resourceGroups/c08118bc-1b18-4d1/providers/Microsoft.RecoveryServices/vaults/a0084390-667/replicationRecoveryPlans/d6c72f38-bc13-47/plannedFailover";
21324
Requests[4035].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21325
Requests[4035].
Request
.Path = "/Subscriptions/d49334ba-0f15-/resourceGroups/ee99d653-1b67-46b/providers/Microsoft.RecoveryServices/vaults/021a5300-59d/replicationRecoveryPlans/8deed780-57d6-45/reProtect";
21328
Requests[4036].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21329
Requests[4036].
Request
.Path = "/Subscriptions/27cd1c6c-3610-/resourceGroups/b738fb2a-a3ad-443/providers/Microsoft.RecoveryServices/vaults/9db9e16e-ec1/replicationRecoveryPlans/1743aa2d-c454-4a/testFailover";
21332
Requests[4037].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21333
Requests[4037].
Request
.Path = "/Subscriptions/41f4c4f5-e412-/resourceGroups/59902af0-449c-4bd/providers/Microsoft.RecoveryServices/vaults/1d1feefd-a0a/replicationRecoveryPlans/a11e7d61-1b97-4f/testFailoverCleanup";
21336
Requests[4038].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21337
Requests[4038].
Request
.Path = "/Subscriptions/48d6da82-ec2c-/resourceGroups/418a0ef2-43ae-4e7/providers/Microsoft.RecoveryServices/vaults/6f46a014-724/replicationRecoveryPlans/48a9fed5-495d-48/unplannedFailover";
21340
Requests[4039].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21341
Requests[4039].
Request
.Path = "/Subscriptions/f13c870b-9da2-/resourceGroups/ec6302f6-83fc-4f1/providers/Microsoft.RecoveryServices/vaults/8a183ab3-/backupFabrics/fd101d6b-d/protectableContainers";
21344
Requests[4040].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21345
Requests[4040].
Request
.Path = "/Subscriptions/5e1024b9-ac63-/resourceGroups/b4f8eed4-c9e4-474/providers/Microsoft.RecoveryServices/vaults/6d8b9b8b-/backupFabrics/060fc690-b/refreshContainers";
21348
Requests[4041].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21349
Requests[4041].
Request
.Path = "/Subscriptions/4d4d94e7-a086-/resourceGroups/5be6dfae-c283-4a1/providers/Microsoft.RecoveryServices/vaults/a98b5e29-/backupJobs/126874d/cancel";
21352
Requests[4042].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21353
Requests[4042].
Request
.Path = "/subscriptions/0ed10aea-8a13-/resourceGroups/34b3136b-233e-436/providers/Microsoft.Relay/namespaces/fa21d0ff-6124/authorizationRules/ceb5defd-de12-46be-9a/listKeys";
21356
Requests[4043].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21357
Requests[4043].
Request
.Path = "/subscriptions/628f1224-1e12-/resourceGroups/add916c4-6829-454/providers/Microsoft.Relay/namespaces/49d8677d-ec8c/authorizationRules/cbb1dacb-6d5c-4c11-8d/regenerateKeys";
21360
Requests[4044].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21361
Requests[4044].
Request
.Path = "/subscriptions/ef588118-5f6d-/resourceGroups/175834d6-eb47-47b/providers/Microsoft.Relay/namespaces/f91d60f1-d602/hybridConnections/25808f7b-5bc1-4ea7-a/authorizationRules";
21364
Requests[4045].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21365
Requests[4045].
Request
.Path = "/subscriptions/b16c366d-f4d9-/resourceGroups/054a9446-7596-4f8/providers/Microsoft.Relay/namespaces/9b5bd446-c4dd/HybridConnections/fffc7b41-1328-4e6f-8/authorizationRules";
21368
Requests[4046].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21369
Requests[4046].
Request
.Path = "/subscriptions/b58fd2a1-ef0f-/resourceGroups/5ee9d42c-d3d0-4f3/providers/Microsoft.Relay/namespaces/1e5f1aff-2c81/wcfRelays/da7ec357-/authorizationRules";
21372
Requests[4047].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21373
Requests[4047].
Request
.Path = "/subscriptions/ec8ec8e7-f954-/resourceGroups/a8732944-a604-4c3/providers/Microsoft.Relay/namespaces/5f884d7d-8e74/WcfRelays/913db73b-/authorizationRules";
21376
Requests[4048].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21377
Requests[4048].
Request
.Path = "/subscriptions/f55400af-c37a-/resourceGroups/5df251c5-b7a0-437/providers/Microsoft.Scheduler/jobCollections/f674942d-bf55-41f/jobs/1f75068/history";
21380
Requests[4049].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21381
Requests[4049].
Request
.Path = "/subscriptions/d0fd1a2b-1018-/resourceGroups/43a35453-de16-4e0/providers/Microsoft.Scheduler/jobCollections/7d424910-3ba6-4ff/jobs/8b69978/run";
21384
Requests[4050].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21385
Requests[4050].
Request
.Path = "/subscriptions/344aa008-c317-/resourceGroups/cb736d2e-e0b1-4d7/providers/Microsoft.ServiceBus/namespaces/d6c72fc7-4773/AuthorizationRules/9485a2ed-b0c5-4afd-b3/listKeys";
21388
Requests[4051].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21389
Requests[4051].
Request
.Path = "/subscriptions/76b2be4b-9d72-/resourceGroups/3dc76d09-07fe-47e/providers/Microsoft.ServiceBus/namespaces/122f53d7-cf8f/AuthorizationRules/e2a551f1-4755-4f36-94/regenerateKeys";
21392
Requests[4052].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21393
Requests[4052].
Request
.Path = "/subscriptions/5f51e46c-5fc8-/resourceGroups/70176dd6-39cd-476/providers/Microsoft.ServiceBus/namespaces/6c48f799-0450/disasterRecoveryConfigs/02785/AuthorizationRules";
21396
Requests[4053].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21397
Requests[4053].
Request
.Path = "/subscriptions/2dd3fae6-dfa2-/resourceGroups/ba5bab8a-f69e-4af/providers/Microsoft.ServiceBus/namespaces/5839dffe-cd38/disasterRecoveryConfigs/84b9b/breakPairing";
21400
Requests[4054].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21401
Requests[4054].
Request
.Path = "/subscriptions/c6c9d88a-a3ea-/resourceGroups/153d57f5-46b7-4e6/providers/Microsoft.ServiceBus/namespaces/731594b2-1188/disasterRecoveryConfigs/dab94/failover";
21404
Requests[4055].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21405
Requests[4055].
Request
.Path = "/subscriptions/7990110d-b074-/resourceGroups/52317172-c652-413/providers/Microsoft.ServiceBus/namespaces/f41ddf5b-9649/eventhubs/dc3b7687-8ab/authorizationRules";
21408
Requests[4056].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21409
Requests[4056].
Request
.Path = "/subscriptions/dd62bad8-62a7-/resourceGroups/41fda039-ae72-402/providers/Microsoft.ServiceBus/namespaces/db93ec3e-2227/migrationConfigurations/7bb668af-1/revert";
21412
Requests[4057].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21413
Requests[4057].
Request
.Path = "/subscriptions/be12bbbd-6e41-/resourceGroups/e62a6973-407c-4bd/providers/Microsoft.ServiceBus/namespaces/053881c6-a4ea/migrationConfigurations/f50bc13c-2/upgrade";
21416
Requests[4058].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21417
Requests[4058].
Request
.Path = "/subscriptions/df6c83f4-59d8-/resourceGroups/aeea59a1-27bd-46b/providers/Microsoft.ServiceBus/namespaces/223666e5-42d6/queues/d8f9ce12-/authorizationRules";
21420
Requests[4059].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21421
Requests[4059].
Request
.Path = "/subscriptions/b57c31e0-6923-/resourceGroups/20b93907-4e3b-40f/providers/Microsoft.ServiceBus/namespaces/026a51dc-ca0f/topics/29688ac2-/authorizationRules";
21424
Requests[4060].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21425
Requests[4060].
Request
.Path = "/subscriptions/7178860d-3414-/resourceGroups/fbfafedc-d7e2-4f7/providers/Microsoft.ServiceBus/namespaces/7c4236cd-06fb/topics/56291553-/subscriptions";
21428
Requests[4061].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21429
Requests[4061].
Request
.Path = "/subscriptions/5fed8a2a-9803-/resourceGroups/43b4fab9-5512-42c/providers/Microsoft.ServiceFabric/clusters/8e71fe71-e1/applications/14e84916-8bdb-4/services";
21432
Requests[4062].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21433
Requests[4062].
Request
.Path = "/subscriptions/4c66dda3-d2db-/resourceGroups/7996beb1-178b-459/providers/Microsoft.ServiceFabric/clusters/142fe7c0-2d/applicationTypes/3667416c-a156-4b9f-/versions";
21436
Requests[4063].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21437
Requests[4063].
Request
.Path = "/subscriptions/33dc384d-b4db-/resourceGroups/1b963713-bd12-4de/providers/Microsoft.Sql/locations/2c03a424-ec4/instanceFailoverGroups/22b438d5-0018-439/failover";
21440
Requests[4064].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21441
Requests[4064].
Request
.Path = "/subscriptions/7ec06be1-2c60-/resourceGroups/4414bbd7-e1ca-426/providers/Microsoft.Sql/locations/351ae9ee-ab5/instanceFailoverGroups/63afb08d-2083-4a2/forceFailoverAllowDataLoss";
21444
Requests[4065].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21445
Requests[4065].
Request
.Path = "/subscriptions/4c55251f-b057-/resourceGroups/0af02473-f58d-442/providers/Microsoft.Sql/servers/c7e0437c-d/databases/ab09b617-ef4/advisors";
21448
Requests[4066].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21449
Requests[4066].
Request
.Path = "/subscriptions/4fad441f-a202-/resourceGroups/02e4320c-d686-42e/providers/Microsoft.Sql/servers/91cf31ca-d/databases/440f3680-67c/auditingPolicies";
21452
Requests[4067].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21453
Requests[4067].
Request
.Path = "/subscriptions/07ca7951-ddbf-/resourceGroups/8ef94fdf-a926-481/providers/Microsoft.Sql/servers/82a88d91-f/databases/99b3e890-6fe/backupLongTermRetentionPolicies";
21456
Requests[4068].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21457
Requests[4068].
Request
.Path = "/subscriptions/4aeaf1a2-a81c-/resourceGroups/9555c8d6-20d6-4ae/providers/Microsoft.Sql/servers/e1357a78-0/databases/24a44ed3-809/export";
21460
Requests[4069].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21461
Requests[4069].
Request
.Path = "/subscriptions/485d51db-d908-/resourceGroups/c1b9c533-021d-48d/providers/Microsoft.Sql/servers/dfdc6fdd-3/databases/914cf4c0-f48/extensions";
21464
Requests[4070].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21465
Requests[4070].
Request
.Path = "/subscriptions/e0ba042a-888b-/resourceGroups/43ff4fbc-9b06-4e6/providers/Microsoft.Sql/servers/216a20b4-8/databases/d25e9438-e06/geoBackupPolicies";
21468
Requests[4071].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21469
Requests[4071].
Request
.Path = "/subscriptions/70848d07-4d39-/resourceGroups/885b4e6a-5b93-436/providers/Microsoft.Sql/servers/c83227bb-8/databases/4271c0c4-e80/metricDefinitions";
21472
Requests[4072].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21473
Requests[4072].
Request
.Path = "/subscriptions/ed53eca0-6491-/resourceGroups/27956df9-0a14-4f5/providers/Microsoft.Sql/servers/8c6802ae-7/databases/62d8f322-207/metrics";
21476
Requests[4073].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21477
Requests[4073].
Request
.Path = "/subscriptions/28a3011d-3f3b-/resourceGroups/5c1fe03c-94d1-4d1/providers/Microsoft.Sql/servers/ac8bb435-6/databases/47192920-19d/move";
21480
Requests[4074].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21481
Requests[4074].
Request
.Path = "/subscriptions/58a4e35c-baa0-/resourceGroups/68cf638f-b83c-4e5/providers/Microsoft.Sql/servers/3f355f11-7/databases/64d2fcb7-b3b/operations";
21484
Requests[4075].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21485
Requests[4075].
Request
.Path = "/subscriptions/fd7917f4-275a-/resourceGroups/13b4144a-85ce-42b/providers/Microsoft.Sql/servers/5c7f7ae6-d/databases/e7d1fdc2-37a/pause";
21488
Requests[4076].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21489
Requests[4076].
Request
.Path = "/subscriptions/8d756277-f886-/resourceGroups/5aa18d26-7c9f-4e4/providers/Microsoft.Sql/servers/6d40a674-5/databases/d8c2bfe6-c9f/replicationLinks";
21492
Requests[4077].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21493
Requests[4077].
Request
.Path = "/subscriptions/358aa90b-a91b-/resourceGroups/84679703-662f-443/providers/Microsoft.Sql/servers/35857ff0-4/databases/3afcb549-e84/restorePoints";
21496
Requests[4078].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21497
Requests[4078].
Request
.Path = "/subscriptions/c81826ed-faa6-/resourceGroups/f285be3c-f19e-412/providers/Microsoft.Sql/servers/a7752002-e/databases/6d8258ec-eca/restorePoints";
21500
Requests[4079].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21501
Requests[4079].
Request
.Path = "/subscriptions/0b26875e-fbe3-/resourceGroups/100026f3-f0bc-49f/providers/Microsoft.Sql/servers/522bdd6b-c/databases/f9059b18-ad3/resume";
21504
Requests[4080].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21505
Requests[4080].
Request
.Path = "/subscriptions/8dba771e-38f9-/resourceGroups/8b36220d-c130-49c/providers/Microsoft.Sql/servers/fedbf707-e/databases/45c152d7-a93/serviceTierAdvisors";
21508
Requests[4081].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21509
Requests[4081].
Request
.Path = "/subscriptions/bb561083-e2a7-/resourceGroups/1d7836ee-d052-4de/providers/Microsoft.Sql/servers/aab3589f-d/databases/77517860-696/syncGroups";
21512
Requests[4082].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21513
Requests[4082].
Request
.Path = "/subscriptions/4ace7562-5978-/resourceGroups/4913c310-fd0a-445/providers/Microsoft.Sql/servers/150743c4-3/databases/e0c8a648-0ee/topQueries";
21516
Requests[4083].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21517
Requests[4083].
Request
.Path = "/subscriptions/bcbde091-7e47-/resourceGroups/060e0651-a230-4eb/providers/Microsoft.Sql/servers/e41b54de-c/databases/76d6c054-cd1/transparentDataEncryption";
21520
Requests[4084].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21521
Requests[4084].
Request
.Path = "/subscriptions/80e28f7a-a199-/resourceGroups/a9af339f-b54e-495/providers/Microsoft.Sql/servers/80b88210-6/databases/101e82bf-b66/upgradeDataWarehouse";
21524
Requests[4085].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21525
Requests[4085].
Request
.Path = "/subscriptions/581ddbf4-3a41-/resourceGroups/f33eddcd-4dab-415/providers/Microsoft.Sql/servers/ce897adf-4/databases/256a87ad-148/usages";
21528
Requests[4086].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21529
Requests[4086].
Request
.Path = "/subscriptions/fd405096-ce02-/resourceGroups/60e3c4e7-b3de-424/providers/Microsoft.Sql/servers/e27d0fe3-d/disasterRecoveryConfiguration/e8f9591b-e106-4fb4-997a-da535d869/failover";
21532
Requests[4087].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21533
Requests[4087].
Request
.Path = "/subscriptions/d85b2b46-7f20-/resourceGroups/05978a35-aede-4f3/providers/Microsoft.Sql/servers/d6f4df0b-a/disasterRecoveryConfiguration/1f42321a-03cb-4d89-b48e-549673329/forceFailoverAllowDataLoss";
21536
Requests[4088].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21537
Requests[4088].
Request
.Path = "/subscriptions/3e5eb92f-6026-/resourceGroups/371f14ce-9310-44d/providers/Microsoft.Sql/servers/150ff49d-a/dnsAliases/9408aefc-a72/acquire";
21540
Requests[4089].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21541
Requests[4089].
Request
.Path = "/subscriptions/39b75c2f-4666-/resourceGroups/94660e77-effc-472/providers/Microsoft.Sql/servers/e3f3cb5a-0/elasticPools/9d031a30-c41b-4/databases";
21544
Requests[4090].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21545
Requests[4090].
Request
.Path = "/subscriptions/bf03c06e-c2c1-/resourceGroups/c1666304-a44b-408/providers/Microsoft.Sql/servers/4772623d-c/elasticPools/1acfbae6-d3a5-4/elasticPoolActivity";
21548
Requests[4091].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21549
Requests[4091].
Request
.Path = "/subscriptions/a551c634-fc47-/resourceGroups/c1efb5e3-fb11-42d/providers/Microsoft.Sql/servers/bd727c66-3/elasticPools/1dcc47a9-36ae-4/elasticPoolDatabaseActivity";
21552
Requests[4092].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21553
Requests[4092].
Request
.Path = "/subscriptions/e66e50d0-1cae-/resourceGroups/e2aee8ba-0696-4d3/providers/Microsoft.Sql/servers/6c0d41c8-f/elasticPools/d0971e23-10c5-4/metricDefinitions";
21556
Requests[4093].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21557
Requests[4093].
Request
.Path = "/subscriptions/0ae8cc5a-1b23-/resourceGroups/06d8d233-29a1-4a2/providers/Microsoft.Sql/servers/7de4f348-a/elasticPools/1b9c49ab-650e-4/metrics";
21560
Requests[4094].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21561
Requests[4094].
Request
.Path = "/subscriptions/7bddc7c0-acb2-/resourceGroups/c7bdb25b-5267-4cd/providers/Microsoft.Sql/servers/ec95db66-3/elasticPools/7d6cbfc3-48d9-4/operations";
21564
Requests[4095].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21565
Requests[4095].
Request
.Path = "/subscriptions/13a391a8-8994-/resourceGroups/353ce4cc-b564-42d/providers/Microsoft.Sql/servers/8f78ddd8-1/failoverGroups/b26f94c1-ce83-40f/failover";
21568
Requests[4096].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21569
Requests[4096].
Request
.Path = "/subscriptions/ddc11ea9-9407-/resourceGroups/a9b34d00-292b-417/providers/Microsoft.Sql/servers/467cda5b-1/failoverGroups/9fb39fe6-48a2-490/forceFailoverAllowDataLoss";
21572
Requests[4097].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21573
Requests[4097].
Request
.Path = "/subscriptions/cd85caa6-6ffd-/resourceGroups/02d83105-7bdc-463/providers/Microsoft.Sql/servers/f9c727b1-8/jobAgents/3f4f560d-78c/credentials";
21576
Requests[4098].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21577
Requests[4098].
Request
.Path = "/subscriptions/7ed8960d-85a9-/resourceGroups/75625f08-fc89-4f2/providers/Microsoft.Sql/servers/0c1c5d56-3/jobAgents/e8196cdb-5b7/executions";
21580
Requests[4099].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21581
Requests[4099].
Request
.Path = "/subscriptions/b7e686ed-c5df-/resourceGroups/c562396f-ab99-483/providers/Microsoft.Sql/servers/efe2cb4f-3/jobAgents/282a6f6b-768/jobs";
21584
Requests[4100].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21585
Requests[4100].
Request
.Path = "/subscriptions/e9b97e86-25be-/resourceGroups/4b145cd6-d848-477/providers/Microsoft.Sql/servers/e487c86d-6/jobAgents/f0cdc376-fba/targetGroups";
21588
Requests[4101].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21589
Requests[4101].
Request
.Path = "/subscriptions/b72ac899-76e7-/resourceGroups/710288e4-8816-462/providers/Microsoft.Sql/servers/7f694cce-7/recommendedElasticPools/b842c4f1-a1b5-4b0b-83b5-7c/databases";
21592
Requests[4102].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21593
Requests[4102].
Request
.Path = "/subscriptions/c12bfdd6-1958-/resourceGroups/7be61783-d5fb-452/providers/Microsoft.Sql/servers/c433c8fe-6/recommendedElasticPools/3ddaf2e4-2354-4826-9991-42/metrics";
21596
Requests[4103].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21597
Requests[4103].
Request
.Path = "/subscriptions/85c5b055-0c87-/resourceGroups/6b615ea4-f1ff-46f/providers/Microsoft.Sql/servers/10187d79-7/syncAgents/6fc95099-1933/generateKey";
21600
Requests[4104].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21601
Requests[4104].
Request
.Path = "/subscriptions/f81b8aeb-446a-/resourceGroups/25085b91-99a3-438/providers/Microsoft.Sql/servers/8df7c7ff-1/syncAgents/fa06ad6d-bd45/linkedDatabases";
21604
Requests[4105].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21605
Requests[4105].
Request
.Path = "/subscriptions/96b2197c-7702-/resourcegroups/25f99eb8-d0a3-4e6/providers/Microsoft.Storage.Admin/farms/17bd13/blobservices/a4d807a5-d8/metricdefinitions";
21608
Requests[4106].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21609
Requests[4106].
Request
.Path = "/subscriptions/9e0eb74a-31fe-/resourcegroups/5b43f0fc-30f4-4e0/providers/Microsoft.Storage.Admin/farms/3f8d3f/blobservices/a34060ed-80/metrics";
21612
Requests[4107].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21613
Requests[4107].
Request
.Path = "/subscriptions/8d8237cf-f73e-/resourcegroups/b43f0ca9-eeec-4bd/providers/Microsoft.Storage.Admin/farms/83020a/queueservices/ba34f9e1-31/metricdefinitions";
21616
Requests[4108].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21617
Requests[4108].
Request
.Path = "/subscriptions/e657c570-4ea4-/resourcegroups/a44d6ded-401b-4d1/providers/Microsoft.Storage.Admin/farms/be8ff2/queueservices/d452c864-1d/metrics";
21620
Requests[4109].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21621
Requests[4109].
Request
.Path = "/subscriptions/6ca63f58-3fd6-/resourcegroups/331bf66b-da95-4bc/providers/Microsoft.Storage.Admin/farms/98d6af/shares/2e5828b0-/containers";
21624
Requests[4110].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21625
Requests[4110].
Request
.Path = "/subscriptions/f230a047-4a48-/resourcegroups/372cd596-c588-487/providers/Microsoft.Storage.Admin/farms/ed3cae/shares/7e5f6163-/destinationshares";
21628
Requests[4111].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21629
Requests[4111].
Request
.Path = "/subscriptions/5722ac1d-0b52-/resourcegroups/b648f6f8-ddfe-48f/providers/Microsoft.Storage.Admin/farms/bf9939/shares/75d979da-/metricdefinitions";
21632
Requests[4112].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21633
Requests[4112].
Request
.Path = "/subscriptions/09d6c723-8be2-/resourcegroups/a6e7abfa-58b3-4c4/providers/Microsoft.Storage.Admin/farms/227790/shares/9942a643-/metrics";
21636
Requests[4113].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21637
Requests[4113].
Request
.Path = "/subscriptions/86908261-ab93-/resourcegroups/7c2c17ce-f19f-427/providers/Microsoft.Storage.Admin/farms/53f738/shares/c475d08e-/migrate";
21640
Requests[4114].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21641
Requests[4114].
Request
.Path = "/subscriptions/a7189b7f-1ba4-/resourcegroups/46651eb1-956e-4ea/providers/Microsoft.Storage.Admin/farms/28c997/tableservices/3dbeca99-fb/metricdefinitions";
21644
Requests[4115].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21645
Requests[4115].
Request
.Path = "/subscriptions/6c8a6248-44d3-/resourcegroups/4d5840b3-c41d-42b/providers/Microsoft.Storage.Admin/farms/cf9a3a/tableservices/2353a610-8b/metrics";
21648
Requests[4116].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21649
Requests[4116].
Request
.Path = "/subscriptions/585c7300-80d7-/resourceGroups/7a44d064-04c8-44f/providers/Microsoft.StorSimple/managers/be6d9542-87/devices/4da13c85-0/authorizeForServiceEncryptionKeyRollover";
21652
Requests[4117].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21653
Requests[4117].
Request
.Path = "/subscriptions/d1b68202-d5fc-/resourceGroups/e0553172-60ac-4ad/providers/Microsoft.StorSimple/managers/7a052c9b-2f/devices/092e3a31-e/backupPolicies";
21656
Requests[4118].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21657
Requests[4118].
Request
.Path = "/subscriptions/a1b9917c-4907-/resourceGroups/836c7815-c8b9-4b4/providers/Microsoft.StorSimple/managers/588a2b8a-6d/devices/f9d4460c-b/backups";
21660
Requests[4119].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21661
Requests[4119].
Request
.Path = "/subscriptions/6df976f2-7582-/resourceGroups/bff6f8a7-aa6b-4d2/providers/Microsoft.StorSimple/managers/de7eb703-3f/devices/f7a876dd-e/deactivate";
21664
Requests[4120].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21665
Requests[4120].
Request
.Path = "/subscriptions/7147451c-66b6-/resourceGroups/aeb266c6-028e-4c4/providers/Microsoft.StorSimple/managers/f26f1046-fd/devices/15213e74-1/hardwareComponentGroups";
21668
Requests[4121].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21669
Requests[4121].
Request
.Path = "/subscriptions/73493cf7-6035-/resourceGroups/dd242ac7-a2f6-4e4/providers/Microsoft.StorSimple/managers/aa748925-42/devices/e1a2d945-0/installUpdates";
21672
Requests[4122].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21673
Requests[4122].
Request
.Path = "/subscriptions/136589c6-0b38-/resourceGroups/bf60b8de-e3d2-44b/providers/Microsoft.StorSimple/managers/afe7a8fe-00/devices/e6b9e54c-a/jobs";
21676
Requests[4123].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21677
Requests[4123].
Request
.Path = "/subscriptions/a7604571-0f54-/resourceGroups/63ede15b-c41a-47d/providers/Microsoft.StorSimple/managers/9a7a6f25-ae/devices/5a636e76-5/listFailoverSets";
21680
Requests[4124].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21681
Requests[4124].
Request
.Path = "/subscriptions/aaa3c82a-ea7c-/resourceGroups/1edebfb0-e5fb-409/providers/Microsoft.StorSimple/managers/fd9121ee-7b/devices/40a9696e-1/metrics";
21684
Requests[4125].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21685
Requests[4125].
Request
.Path = "/subscriptions/8469ccaa-fd68-/resourceGroups/af8ae925-340a-4fc/providers/Microsoft.StorSimple/managers/21534cbf-47/devices/5d7edc19-b/metricsDefinitions";
21688
Requests[4126].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21689
Requests[4126].
Request
.Path = "/subscriptions/a70acf37-9199-/resourceGroups/a556cf28-5954-412/providers/Microsoft.StorSimple/managers/e61cac02-0e/devices/49a40e54-e/publicEncryptionKey";
21692
Requests[4127].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21693
Requests[4127].
Request
.Path = "/subscriptions/cc7fc980-df79-/resourceGroups/98be1d72-ba92-445/providers/Microsoft.StorSimple/managers/3b2a22ed-ef/devices/03081db5-1/scanForUpdates";
21696
Requests[4128].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21697
Requests[4128].
Request
.Path = "/subscriptions/2ffa17a4-90f4-/resourceGroups/8c9adedf-aa2d-4e2/providers/Microsoft.StorSimple/managers/1d3ab165-d5/devices/0c93a720-5/sendTestAlertEmail";
21700
Requests[4129].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21701
Requests[4129].
Request
.Path = "/subscriptions/95468bc9-f3e6-/resourceGroups/3f36d7a5-dd74-463/providers/Microsoft.StorSimple/managers/5e90b11a-0b/devices/506ec1cd-c/volumeContainers";
21704
Requests[4130].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21705
Requests[4130].
Request
.Path = "/subscriptions/4c70c5a5-20f8-/resourceGroups/0f6844ae-da1d-42e/providers/Microsoft.StorSimple/managers/c5ea5bd4-53/devices/74071118-9/volumes";
21708
Requests[4131].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21709
Requests[4131].
Request
.Path = "/subscriptions/bed1713e-bf85-/resourceGroups/555303ab-65bb-4d4/providers/Microsoft.StorSimple/managers/419215b2-3d/devices/d3fb4a10-9c27-4b/failover";
21712
Requests[4132].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21713
Requests[4132].
Request
.Path = "/subscriptions/ccb2a109-0fc3-/resourceGroups/9eda3d1f-651e-49f/providers/Microsoft.StorSimple/managers/c78e17a9-dd/devices/f3d75e7c-41d4-45/listFailoverTargets";
21716
Requests[4133].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21717
Requests[4133].
Request
.Path = "/subscriptions/f805f932-4566-/resourcegroups/3c82ce71-d515-4d9/providers/Microsoft.StreamAnalytics/streamingjobs/422630f/functions/f55133b2-41b/RetrieveDefaultDefinition";
21720
Requests[4134].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21721
Requests[4134].
Request
.Path = "/subscriptions/32de5a47-b44e-/resourcegroups/d60aeb36-11f9-4eb/providers/Microsoft.StreamAnalytics/streamingjobs/4ab78b2/functions/a1d8cfd7-c1f/test";
21724
Requests[4135].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21725
Requests[4135].
Request
.Path = "/subscriptions/907942b0-1a43-/resourcegroups/52c35117-7a93-488/providers/Microsoft.StreamAnalytics/streamingjobs/8616ff2/inputs/0f608cbf-/test";
21728
Requests[4136].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21729
Requests[4136].
Request
.Path = "/subscriptions/12e19fb9-39cd-/resourcegroups/bc369872-38db-4ac/providers/Microsoft.StreamAnalytics/streamingjobs/10d8bbe/outputs/832f1981-6/test";
21732
Requests[4137].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21733
Requests[4137].
Request
.Path = "/subscriptions/b7868d1e-3440-/resourcegroups/e108265f-4c3c-41b/providers/Microsoft.Update.Admin/updateLocations/1bbb3a65-7f9d-/updates/cdae78db-d/Apply";
21736
Requests[4138].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21737
Requests[4138].
Request
.Path = "/subscriptions/419315e5-292d-/resourcegroups/d638f3fd-58ab-4d6/providers/Microsoft.Update.Admin/updateLocations/3c57610f-d4b6-/updates/e4976e44-5/updateRuns";
21740
Requests[4139].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21741
Requests[4139].
Request
.Path = "/subscriptions/3df7cc88-939a-/resourceGroups/d19d8c79-54b9-4fc/providers/Microsoft.Web/hostingEnvironments/dee6e/workerPools/a38ed005-08fa-/metricdefinitions";
21744
Requests[4140].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21745
Requests[4140].
Request
.Path = "/subscriptions/790759c4-c1f7-/resourceGroups/c076757a-a7f2-4b6/providers/Microsoft.Web/hostingEnvironments/2606b/workerPools/a64907ca-33ba-/metrics";
21748
Requests[4141].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21749
Requests[4141].
Request
.Path = "/subscriptions/d98bd8b7-e644-/resourceGroups/a7632b17-ff5a-4f4/providers/Microsoft.Web/hostingEnvironments/1cb38/workerPools/41084bfa-d60a-/skus";
21752
Requests[4142].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21753
Requests[4142].
Request
.Path = "/subscriptions/6eb28ed5-750f-/resourceGroups/1c7824dc-25f0-409/providers/Microsoft.Web/hostingEnvironments/1c83e/workerPools/68c805d0-4516-/usages";
21756
Requests[4143].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21757
Requests[4143].
Request
.Path = "/subscriptions/6507ca04-ae79-/resourceGroups/65bd38ef-b3a0-4dd/providers/Microsoft.Web/serverfarms/000bf/virtualNetworkConnections/8f34e587/routes";
21760
Requests[4144].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21761
Requests[4144].
Request
.Path = "/subscriptions/29d2647e-e9f0-/resourceGroups/fe26daaa-9201-480/providers/Microsoft.Web/serverfarms/92ec0/workers/7c97a158-c/reboot";
21764
Requests[4145].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21765
Requests[4145].
Request
.Path = "/subscriptions/2b6af97e-1e33-/resourceGroups/8c3f2efb-07f9-483/providers/Microsoft.Web/sites/11a74/backups/57a5f94f/list";
21768
Requests[4146].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21769
Requests[4146].
Request
.Path = "/subscriptions/21e736c3-52d4-/resourceGroups/b4a8a17f-b377-423/providers/Microsoft.Web/sites/79aee/backups/9b268d08/restore";
21772
Requests[4147].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21773
Requests[4147].
Request
.Path = "/subscriptions/901e1a06-9230-/resourceGroups/54b7895b-658b-4c4/providers/Microsoft.Web/sites/e6a80/continuouswebjobs/5554ad64-b/start";
21776
Requests[4148].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21777
Requests[4148].
Request
.Path = "/subscriptions/ea104955-092e-/resourceGroups/e728a0ba-0bf4-42e/providers/Microsoft.Web/sites/b26af/continuouswebjobs/41a3e21e-e/stop";
21780
Requests[4149].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21781
Requests[4149].
Request
.Path = "/subscriptions/65579011-fb98-/resourceGroups/ac781b03-1890-4e8/providers/Microsoft.Web/sites/a0662/deployments/fcaeb/log";
21784
Requests[4150].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21785
Requests[4150].
Request
.Path = "/subscriptions/209d926b-54fa-/resourceGroups/fb3fab45-4c95-4ee/providers/Microsoft.Web/sites/785ea/functions/5f2e6c18-ebc/listsecrets";
21788
Requests[4151].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21789
Requests[4151].
Request
.Path = "/subscriptions/8a674e65-8211-/resourceGroups/cd107727-b1d9-48a/providers/Microsoft.Web/sites/fc086/instances/d3e22eb6-0/deployments";
21792
Requests[4152].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21793
Requests[4152].
Request
.Path = "/subscriptions/199a06b3-dd8c-/resourceGroups/0aa5fa44-58e8-47c/providers/Microsoft.Web/sites/70af1/instances/49afbb54-a/processes";
21796
Requests[4153].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21797
Requests[4153].
Request
.Path = "/subscriptions/ab687277-4eba-/resourceGroups/444c6c79-13a5-492/providers/Microsoft.Web/sites/d2d55/processes/b9a2873e-/dump";
21800
Requests[4154].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21801
Requests[4154].
Request
.Path = "/subscriptions/fc364538-d2b4-/resourceGroups/2def57a1-c18a-4d4/providers/Microsoft.Web/sites/64424/processes/2bd391e0-/modules";
21804
Requests[4155].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21805
Requests[4155].
Request
.Path = "/subscriptions/eb4972de-9510-/resourceGroups/0ae9ce3a-2fe4-48e/providers/Microsoft.Web/sites/eb1bd/processes/857702a4-/threads";
21808
Requests[4156].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21809
Requests[4156].
Request
.Path = "/subscriptions/bf38bcfe-2b07-/resourceGroups/b5620ef2-c29c-406/providers/Microsoft.Web/sites/b3c69/slots/4ba88/analyzeCustomHostname";
21812
Requests[4157].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21813
Requests[4157].
Request
.Path = "/subscriptions/88fbe4c9-1f21-/resourceGroups/9fddd403-2ffc-4d8/providers/Microsoft.Web/sites/08f85/slots/d5ffa/applySlotConfig";
21816
Requests[4158].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21817
Requests[4158].
Request
.Path = "/subscriptions/418e0d53-51f6-/resourceGroups/595c8a01-4439-417/providers/Microsoft.Web/sites/30fe7/slots/c0a05/backup";
21820
Requests[4159].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21821
Requests[4159].
Request
.Path = "/subscriptions/18d2b3ea-f463-/resourceGroups/3a659e3a-f13e-447/providers/Microsoft.Web/sites/21102/slots/8ca6d/backups";
21824
Requests[4160].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21825
Requests[4160].
Request
.Path = "/subscriptions/28c17d29-87b5-/resourceGroups/1fdab06e-68b2-48c/providers/Microsoft.Web/sites/222e1/slots/c1e3c/config";
21828
Requests[4161].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21829
Requests[4161].
Request
.Path = "/subscriptions/8d69d03d-be0a-/resourceGroups/08532158-3dff-426/providers/Microsoft.Web/sites/b645a/slots/f79a6/containerlogs";
21832
Requests[4162].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21833
Requests[4162].
Request
.Path = "/subscriptions/d3e6b7d4-0f5f-/resourceGroups/2e77cfc9-bafa-439/providers/Microsoft.Web/sites/7e768/slots/7d71d/continuouswebjobs";
21836
Requests[4163].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21837
Requests[4163].
Request
.Path = "/subscriptions/54788982-812b-/resourceGroups/55a92289-222b-4c4/providers/Microsoft.Web/sites/4470d/slots/f86a0/deployments";
21840
Requests[4164].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21841
Requests[4164].
Request
.Path = "/subscriptions/d48e57cb-762d-/resourceGroups/f7852a1c-2591-427/providers/Microsoft.Web/sites/c5c31/slots/2e072/domainOwnershipIdentifiers";
21844
Requests[4165].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21845
Requests[4165].
Request
.Path = "/subscriptions/0419c632-66bc-/resourceGroups/2d992cb1-9903-46f/providers/Microsoft.Web/sites/cb6f4/slots/a710d/functions";
21848
Requests[4166].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21849
Requests[4166].
Request
.Path = "/subscriptions/9046cdf1-b8a7-/resourceGroups/12096beb-249f-470/providers/Microsoft.Web/sites/cf032/slots/88d86/hostNameBindings";
21852
Requests[4167].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21853
Requests[4167].
Request
.Path = "/subscriptions/d38146f3-a4e8-/resourceGroups/51d56dfb-4c3a-443/providers/Microsoft.Web/sites/52b28/slots/115aa/hybridconnection";
21856
Requests[4168].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21857
Requests[4168].
Request
.Path = "/subscriptions/77548f4b-aa88-/resourceGroups/ccfff242-2530-45e/providers/Microsoft.Web/sites/0af6a/slots/1e0c8/hybridConnectionRelays";
21860
Requests[4169].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21861
Requests[4169].
Request
.Path = "/subscriptions/354071f0-0a4c-/resourceGroups/f4329da4-d9d3-4f0/providers/Microsoft.Web/sites/21c11/slots/622f4/instances";
21864
Requests[4170].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21865
Requests[4170].
Request
.Path = "/subscriptions/d5cb17ef-adfc-/resourceGroups/8514dfef-06ad-4e2/providers/Microsoft.Web/sites/3546b/slots/3d0b3/iscloneable";
21868
Requests[4171].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21869
Requests[4171].
Request
.Path = "/subscriptions/1f9e02ba-2c50-/resourceGroups/7b97f188-5f11-4b0/providers/Microsoft.Web/sites/196e9/slots/1e90a/listsyncfunctiontriggerstatus";
21872
Requests[4172].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21873
Requests[4172].
Request
.Path = "/subscriptions/036c6e58-b598-/resourceGroups/6910f166-fcc8-4f3/providers/Microsoft.Web/sites/e1127/slots/cce59/metricdefinitions";
21876
Requests[4173].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21877
Requests[4173].
Request
.Path = "/subscriptions/8864e06b-1c34-/resourceGroups/a8aeab9b-637e-40e/providers/Microsoft.Web/sites/84c8b/slots/51e7b/metrics";
21880
Requests[4174].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21881
Requests[4174].
Request
.Path = "/subscriptions/1618f723-24c3-/resourceGroups/35e2bfae-a480-48d/providers/Microsoft.Web/sites/ba554/slots/514cd/newpassword";
21884
Requests[4175].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21885
Requests[4175].
Request
.Path = "/subscriptions/fbae4f96-cdf7-/resourceGroups/d4764665-39ab-45e/providers/Microsoft.Web/sites/d1392/slots/e07ef/perfcounters";
21888
Requests[4176].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21889
Requests[4176].
Request
.Path = "/subscriptions/149186c3-8a7b-/resourceGroups/a5c6c544-86d6-4e7/providers/Microsoft.Web/sites/b2be5/slots/d40ec/phplogging";
21892
Requests[4177].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21893
Requests[4177].
Request
.Path = "/subscriptions/cbd97841-c53b-/resourceGroups/835f5cc6-d553-404/providers/Microsoft.Web/sites/e7312/slots/15563/premieraddons";
21896
Requests[4178].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21897
Requests[4178].
Request
.Path = "/subscriptions/dcb9c8d4-aee6-/resourceGroups/2e13b31d-3c29-4dc/providers/Microsoft.Web/sites/84936/slots/b3adb/processes";
21900
Requests[4179].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21901
Requests[4179].
Request
.Path = "/subscriptions/898acb6f-5c2a-/resourceGroups/4cc8c94b-5ec0-4d6/providers/Microsoft.Web/sites/f9c17/slots/744fc/publicCertificates";
21904
Requests[4180].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21905
Requests[4180].
Request
.Path = "/subscriptions/0340450e-4b45-/resourceGroups/0a7d1ea1-e96e-436/providers/Microsoft.Web/sites/c6794/slots/e73fb/publishxml";
21908
Requests[4181].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21909
Requests[4181].
Request
.Path = "/subscriptions/112ca163-0b67-/resourceGroups/889af39b-7205-4b2/providers/Microsoft.Web/sites/ce35d/slots/ecce0/recover";
21912
Requests[4182].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21913
Requests[4182].
Request
.Path = "/subscriptions/d3d17267-a589-/resourceGroups/5ce30be4-1bee-4b6/providers/Microsoft.Web/sites/71678/slots/c248d/resetSlotConfig";
21916
Requests[4183].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21917
Requests[4183].
Request
.Path = "/subscriptions/ec04229e-1e3c-/resourceGroups/3c753e26-69c8-421/providers/Microsoft.Web/sites/e896b/slots/44bde/resourceHealthMetadata";
21920
Requests[4184].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21921
Requests[4184].
Request
.Path = "/subscriptions/f183650c-90b3-/resourceGroups/a3512086-7d29-464/providers/Microsoft.Web/sites/4ca16/slots/93670/restart";
21924
Requests[4185].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21925
Requests[4185].
Request
.Path = "/subscriptions/e99d36da-784f-/resourceGroups/27b2b8eb-a78f-41e/providers/Microsoft.Web/sites/89884/slots/c3178/restoreFromBackupBlob";
21928
Requests[4186].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21929
Requests[4186].
Request
.Path = "/subscriptions/2e0dee3f-cafb-/resourceGroups/2a0a4876-7434-449/providers/Microsoft.Web/sites/2da88/slots/b2ee3/restoreFromDeletedApp";
21932
Requests[4187].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21933
Requests[4187].
Request
.Path = "/subscriptions/0b079898-d5e8-/resourceGroups/6fb35ffe-4b9a-416/providers/Microsoft.Web/sites/0fe55/slots/10bab/restoreSnapshot";
21936
Requests[4188].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21937
Requests[4188].
Request
.Path = "/subscriptions/a9a04015-f27c-/resourceGroups/948fd7c2-9e36-40a/providers/Microsoft.Web/sites/1cf07/slots/2c03d/siteextensions";
21940
Requests[4189].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21941
Requests[4189].
Request
.Path = "/subscriptions/6e4b04d5-cbc9-/resourceGroups/d053913b-c82d-4c9/providers/Microsoft.Web/sites/81ce9/slots/8f284/slotsdiffs";
21944
Requests[4190].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21945
Requests[4190].
Request
.Path = "/subscriptions/c1b984c9-9ff1-/resourceGroups/d44c5db3-594c-439/providers/Microsoft.Web/sites/54831/slots/af3fe/slotsswap";
21948
Requests[4191].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21949
Requests[4191].
Request
.Path = "/subscriptions/461026bd-ddef-/resourceGroups/de73e390-7501-4bd/providers/Microsoft.Web/sites/269c2/slots/b5ef5/snapshots";
21952
Requests[4192].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
21953
Requests[4192].
Request
.Path = "/subscriptions/46901df9-b51c-/resourceGroups/e5db0a68-161e-46d/providers/Microsoft.Web/sites/57dfe/slots/ea3bf/snapshots";
21956
Requests[4193].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21957
Requests[4193].
Request
.Path = "/subscriptions/cd2da230-5624-/resourceGroups/b97c3975-41b7-4ff/providers/Microsoft.Web/sites/302b3/slots/0355d/start";
21960
Requests[4194].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21961
Requests[4194].
Request
.Path = "/subscriptions/0854492d-d715-/resourceGroups/0bf4e5ed-40a7-492/providers/Microsoft.Web/sites/e57b0/slots/0a0b4/stop";
21964
Requests[4195].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21965
Requests[4195].
Request
.Path = "/subscriptions/82e9ba1f-22ea-/resourceGroups/1c617e29-d9d8-404/providers/Microsoft.Web/sites/b41fb/slots/a7134/sync";
21968
Requests[4196].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21969
Requests[4196].
Request
.Path = "/subscriptions/933cf52c-ac58-/resourceGroups/4b479d37-1612-43f/providers/Microsoft.Web/sites/772e1/slots/31343/syncfunctiontriggers";
21972
Requests[4197].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21973
Requests[4197].
Request
.Path = "/subscriptions/af9ebf3a-7f96-/resourceGroups/4a3edd86-f319-42c/providers/Microsoft.Web/sites/1fb6b/slots/64478/triggeredwebjobs";
21976
Requests[4198].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21977
Requests[4198].
Request
.Path = "/subscriptions/825cca41-7ae0-/resourceGroups/587aae5a-4806-4a3/providers/Microsoft.Web/sites/9c87a/slots/fbb96/usages";
21980
Requests[4199].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21981
Requests[4199].
Request
.Path = "/subscriptions/f598e403-bf3d-/resourceGroups/01cd2f67-2c35-43c/providers/Microsoft.Web/sites/bb689/slots/9d079/virtualNetworkConnections";
21984
Requests[4200].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21985
Requests[4200].
Request
.Path = "/subscriptions/52c9744a-550e-/resourceGroups/6012d98c-f716-47e/providers/Microsoft.Web/sites/c8349/slots/78623/webjobs";
21988
Requests[4201].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21989
Requests[4201].
Request
.Path = "/subscriptions/20f8a0ce-1b47-/resourceGroups/100013bc-6c15-4ee/providers/Microsoft.Web/sites/9b82f/triggeredwebjobs/3b177cf9-c/history";
21992
Requests[4202].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
21993
Requests[4202].
Request
.Path = "/subscriptions/c8dc64f9-9917-/resourceGroups/c2361277-7946-495/providers/Microsoft.Web/sites/88820/triggeredwebjobs/7abc551e-a/run";
21996
Requests[4203].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
21997
Requests[4203].
Request
.Path = "/subscriptions/b2752a74-0db1-/resourceGroups/b307e32b-f033-434/providers/Microsoft.Web/sites/214fc246/diagnostics/9ffc2156-3e48-46b5/analyses";
22000
Requests[4204].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22001
Requests[4204].
Request
.Path = "/subscriptions/1a353df5-d08d-/resourceGroups/aa023988-be17-414/providers/Microsoft.Web/sites/5aa5a3ff/diagnostics/cf7ec21d-7565-4353/detectors";
22004
Requests[4205].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22005
Requests[4205].
Request
.Path = "/subscriptions/fae2c9bf-d180-/resourceGroups/9f46e38b-38c3-4d8/providers/Microsoft.Web/sites/8ab17ebe/recommendations/2fefe/disable";
22008
Requests[4206].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22009
Requests[4206].
Request
.Path = "/subscriptions/9ca7d6cd-7d7e-/resourceGroups/b619a14e-d369-4cd/providers/Microsoft.Web/sites/c3dffdb8/slots/d615c/detectors";
22012
Requests[4207].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22013
Requests[4207].
Request
.Path = "/subscriptions/f174e85c-1f61-/resourceGroups/0238b356-52ef-4b7/providers/Microsoft.Web/sites/0a1f0783/slots/66c5c/diagnostics";
22016
Requests[4208].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22017
Requests[4208].
Request
.Path = "/subscriptions/a2b8e549-8571-/resourceGroups/f0b6b455-2929-4e4/providers/Microsoft.ApiManagement/service/17058d50-08/tenant/318bd5a3-6/git/regeneratePrimaryKey";
22020
Requests[4209].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22021
Requests[4209].
Request
.Path = "/subscriptions/82b85b4a-253a-/resourceGroups/015721f6-f134-4eb/providers/Microsoft.ApiManagement/service/c692cf21-6a/tenant/41b8e813-f/git/regenerateSecondaryKey";
22024
Requests[4210].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22025
Requests[4210].
Request
.Path = "/subscriptions/2f1f4d0f-4ce6-/resourceGroups/6c82099c-2f1a-459/providers/Microsoft.Automation/automationAccounts/2af34bb9-5da1-4dcc-ae/runbooks/0e1a859d-7c/draft/content";
22028
Requests[4211].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22029
Requests[4211].
Request
.Path = "/subscriptions/6ff8ceb2-a1bf-/resourceGroups/aa51c86b-fefa-433/providers/Microsoft.Automation/automationAccounts/d8bb01be-a4ae-400e-b7/runbooks/045f0f7b-37/draft/content";
22032
Requests[4212].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22033
Requests[4212].
Request
.Path = "/subscriptions/26ae0f25-d6fa-/resourceGroups/97cc9e54-16f4-47e/providers/Microsoft.Automation/automationAccounts/c8d01c85-b1e3-4cfd-ae/runbooks/0a68bd04-1b/draft/publish";
22036
Requests[4213].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22037
Requests[4213].
Request
.Path = "/subscriptions/5c6af6fa-2d06-/resourceGroups/ecb9849c-758a-4f8/providers/Microsoft.Automation/automationAccounts/15ba3e92-18aa-4ae5-9f/runbooks/4aa14304-17/draft/testJob";
22040
Requests[4214].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22041
Requests[4214].
Request
.Path = "/subscriptions/f66c6b68-2d00-/resourceGroups/43a36d40-3460-4cb/providers/Microsoft.Automation/automationAccounts/30f03224-a3f4-4a54-b6/runbooks/291b9edf-ad/draft/testJob";
22044
Requests[4215].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22045
Requests[4215].
Request
.Path = "/subscriptions/affb8791-e435-/resourceGroups/c2cce16f-0a77-4a8/providers/Microsoft.Automation/automationAccounts/289663f5-df23-4b28-9f/runbooks/130c12e9-01/draft/undoEdit";
22048
Requests[4216].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22049
Requests[4216].
Request
.Path = "/subscriptions/6b852888-3cc0-/resourceGroups/63fd974a-c0b6-434/providers/Microsoft.DocumentDB/databaseAccounts/26829c92-96/targetRegion/88e16de9-a83/percentile/metrics";
22052
Requests[4217].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22053
Requests[4217].
Request
.Path = "/subscriptions/042b0a95-5d44-/resourceGroups/bf897844-24b0-436/providers/Microsoft.Logic/workflows/0c3b27f2-1db/triggers/02565f82-e5/schemas/json";
22056
Requests[4218].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22057
Requests[4218].
Request
.Path = "/subscriptions/208a7a6a-af40-/resourceGroups/c899258b-45c7-409/providers/Microsoft.Sql/servers/4c4f74e0-b/databases/2b6b15c6-4d0/automaticTuning/current";
22060
Requests[4219].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22061
Requests[4219].
Request
.Path = "/subscriptions/c6c61b0b-dd77-/resourceGroups/3710665e-3e11-410/providers/Microsoft.Sql/servers/cb46e677-3/databases/c3005ba7-134/automaticTuning/current";
22064
Requests[4220].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22065
Requests[4220].
Request
.Path = "/subscriptions/0b9f260d-1ee7-/resourceGroups/95e9012a-b2b1-4de/providers/Microsoft.StorSimple/managers/8581b173-37/devices/587e8a8e-c/alertSettings/default";
22068
Requests[4221].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22069
Requests[4221].
Request
.Path = "/subscriptions/a68d0c33-cf03-/resourceGroups/b983f94c-7653-49f/providers/Microsoft.StorSimple/managers/9fa665a2-d2/devices/d3ae9348-4/alertSettings/default";
22072
Requests[4222].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22073
Requests[4222].
Request
.Path = "/subscriptions/ff2c40ef-101c-/resourceGroups/01d13f45-da36-46b/providers/Microsoft.StorSimple/managers/301c1f76-4d/devices/45b0e83d-7/networkSettings/default";
22076
Requests[4223].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22077
Requests[4223].
Request
.Path = "/subscriptions/e9ee0679-5c31-/resourceGroups/fe3fad38-0394-483/providers/Microsoft.StorSimple/managers/2be7ffff-7d/devices/43999e57-5/networkSettings/default";
22080
Requests[4224].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22081
Requests[4224].
Request
.Path = "/subscriptions/f2941e36-e325-/resourceGroups/2a16a0c6-f095-4a5/providers/Microsoft.StorSimple/managers/37c6674d-b6/devices/73e439b6-5/securitySettings/default";
22084
Requests[4225].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22085
Requests[4225].
Request
.Path = "/subscriptions/55e264a8-13aa-/resourceGroups/ec664ceb-ea0d-48e/providers/Microsoft.StorSimple/managers/0c8f2424-a6/devices/8d48a68f-8/securitySettings/default";
22088
Requests[4226].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22089
Requests[4226].
Request
.Path = "/subscriptions/cfda6225-d465-/resourceGroups/014a78a8-c72a-4ce/providers/Microsoft.StorSimple/managers/274b5027-45/devices/dd987cc6-8/timeSettings/default";
22092
Requests[4227].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22093
Requests[4227].
Request
.Path = "/subscriptions/5f7a08dc-803a-/resourceGroups/72f5b171-be19-4a1/providers/Microsoft.StorSimple/managers/b7e2547d-17/devices/a223b0f1-d/timeSettings/default";
22096
Requests[4228].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22097
Requests[4228].
Request
.Path = "/subscriptions/21b1e1d2-3cf6-/resourceGroups/66e99452-6740-499/providers/Microsoft.StorSimple/managers/04ea0464-43/devices/eca960b7-6/updateSummary/default";
22100
Requests[4229].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22101
Requests[4229].
Request
.Path = "/subscriptions/39453c4b-effe-/resourceGroups/6dcedf9b-e07a-481/providers/Microsoft.Web/sites/b87c4/instances/a0e54888-7/extensions/MSDeploy";
22104
Requests[4230].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22105
Requests[4230].
Request
.Path = "/subscriptions/a1f0e162-3337-/resourceGroups/d2001411-8863-49f/providers/Microsoft.Web/sites/33f91/instances/0b3742e4-e/extensions/MSDeploy";
22108
Requests[4231].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22109
Requests[4231].
Request
.Path = "/subscriptions/30c60d6f-7f1d-/resourceGroups/8ec28b5b-a47f-442/providers/Microsoft.Web/sites/3bb50/slots/5cb0c/backups/discover";
22112
Requests[4232].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22113
Requests[4232].
Request
.Path = "/subscriptions/9be96dde-80f5-/resourceGroups/aa036280-a4ba-42c/providers/Microsoft.Web/sites/f6352/slots/4ac72/config/appsettings";
22116
Requests[4233].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22117
Requests[4233].
Request
.Path = "/subscriptions/d02d630d-ee27-/resourceGroups/8aa67292-f298-454/providers/Microsoft.Web/sites/51123/slots/3bff8/config/authsettings";
22120
Requests[4234].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22121
Requests[4234].
Request
.Path = "/subscriptions/0cebbe76-cbf6-/resourceGroups/f32be4a5-fc14-4c6/providers/Microsoft.Web/sites/a865b/slots/3ceac/config/backup";
22124
Requests[4235].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22125
Requests[4235].
Request
.Path = "/subscriptions/ab5dce22-d424-/resourceGroups/1dda3ed5-3a5a-44d/providers/Microsoft.Web/sites/2ec6d/slots/418f2/config/backup";
22128
Requests[4236].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22129
Requests[4236].
Request
.Path = "/subscriptions/1c9119fc-b6c5-/resourceGroups/0b2d634d-b695-440/providers/Microsoft.Web/sites/46489/slots/278fd/config/connectionstrings";
22132
Requests[4237].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22133
Requests[4237].
Request
.Path = "/subscriptions/2dc9edd9-5820-/resourceGroups/ccc6d01c-1c38-422/providers/Microsoft.Web/sites/5731c/slots/ec681/config/logs";
22136
Requests[4238].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22137
Requests[4238].
Request
.Path = "/subscriptions/468bfe0a-d25b-/resourceGroups/1d78d402-7173-4bd/providers/Microsoft.Web/sites/6789b/slots/11758/config/logs";
22140
Requests[4239].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22141
Requests[4239].
Request
.Path = "/subscriptions/a3fc5b48-9be7-/resourceGroups/528f20f1-ed82-417/providers/Microsoft.Web/sites/145fd/slots/8663a/config/metadata";
22144
Requests[4240].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22145
Requests[4240].
Request
.Path = "/subscriptions/aaa9fbf6-8116-/resourceGroups/e9352311-4efa-4a1/providers/Microsoft.Web/sites/c1893/slots/a9734/config/pushsettings";
22148
Requests[4241].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22149
Requests[4241].
Request
.Path = "/subscriptions/1cfb2057-1df3-/resourceGroups/0addff53-7f12-488/providers/Microsoft.Web/sites/7dcee/slots/800db/config/web";
22152
Requests[4242].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22153
Requests[4242].
Request
.Path = "/subscriptions/0f8c529f-5449-/resourceGroups/5f9bfaf1-8e6d-49a/providers/Microsoft.Web/sites/9f5e2/slots/e5b3a/config/web";
22156
Requests[4243].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22157
Requests[4243].
Request
.Path = "/subscriptions/f39f32c1-78ab-/resourceGroups/3a5107c4-c3eb-493/providers/Microsoft.Web/sites/b7bfc/slots/036ac/config/web";
22160
Requests[4244].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22161
Requests[4244].
Request
.Path = "/subscriptions/b6d382df-5959-/resourceGroups/cf9caabb-7329-49c/providers/Microsoft.Web/sites/690b9/slots/7fa57/extensions/MSDeploy";
22164
Requests[4245].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22165
Requests[4245].
Request
.Path = "/subscriptions/78a5d582-36af-/resourceGroups/6a3321d4-c59c-468/providers/Microsoft.Web/sites/60348/slots/298d5/extensions/MSDeploy";
22168
Requests[4246].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22169
Requests[4246].
Request
.Path = "/subscriptions/79c9cf8b-0d34-/resourceGroups/538ff978-c506-483/providers/Microsoft.Web/sites/31f55/slots/53f9e/migratemysql/status";
22172
Requests[4247].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22173
Requests[4247].
Request
.Path = "/subscriptions/43b1dd1b-b941-/resourceGroups/20687112-036e-4c6/providers/Microsoft.Web/sites/9f7fc/slots/857e3/networkTrace/start";
22176
Requests[4248].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22177
Requests[4248].
Request
.Path = "/subscriptions/0c99341a-1aee-/resourceGroups/89a570fe-2d16-478/providers/Microsoft.Web/sites/877d9/slots/93a58/networkTrace/stop";
22180
Requests[4249].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22181
Requests[4249].
Request
.Path = "/subscriptions/c35b1266-1f98-/resourceGroups/a4fabde7-34a1-42e/providers/Microsoft.Web/sites/745c9/slots/d29c7/privateAccess/virtualNetworks";
22184
Requests[4250].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22185
Requests[4250].
Request
.Path = "/subscriptions/e65ebec4-9800-/resourceGroups/8867524e-95bf-4fb/providers/Microsoft.Web/sites/95abc/slots/cad13/privateAccess/virtualNetworks";
22188
Requests[4251].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22189
Requests[4251].
Request
.Path = "/subscriptions/e592780a-faf4-/resourceGroups/570c8b34-60b3-461/providers/Microsoft.Web/sites/44236/slots/ffc42/resourceHealthMetadata/default";
22192
Requests[4252].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22193
Requests[4252].
Request
.Path = "/subscriptions/cf716c85-6a17-/resourceGroups/a32a6e03-dd09-48f/providers/Microsoft.Web/sites/73619/slots/91384/sourcecontrols/web";
22196
Requests[4253].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22197
Requests[4253].
Request
.Path = "/subscriptions/bbe96f09-ae14-/resourceGroups/9ab81152-5292-4c9/providers/Microsoft.Web/sites/fbd1b/slots/ea348/sourcecontrols/web";
22200
Requests[4254].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22201
Requests[4254].
Request
.Path = "/subscriptions/d3dc52bd-87aa-/resourceGroups/e0928dc3-890f-492/providers/Microsoft.Web/sites/ae7b6/slots/88bee/sourcecontrols/web";
22204
Requests[4255].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22205
Requests[4255].
Request
.Path = "/subscriptions/4bc137bb-a7ef-/resourceGroups/ff20ea30-2f39-490/providers/Microsoft.Web/sites/aff7c/slots/15b3b/sourcecontrols/web";
22208
Requests[4256].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22209
Requests[4256].
Request
.Path = "/subscriptions/bbd54d5a-857f-/resourceGroups/01807944-9fc6-45a/providers/Microsoft.Automation/automationAccounts/8a1a9042-71dd-4653-8b/runbooks/9efe1777-54/draft/testJob/resume";
22212
Requests[4257].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22213
Requests[4257].
Request
.Path = "/subscriptions/d30c184a-4400-/resourceGroups/07c77bda-acbf-4e0/providers/Microsoft.Automation/automationAccounts/bf8b45df-3388-438c-86/runbooks/0624116b-0f/draft/testJob/stop";
22216
Requests[4258].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22217
Requests[4258].
Request
.Path = "/subscriptions/5b740ae9-b90c-/resourceGroups/1f5afec5-041c-461/providers/Microsoft.Automation/automationAccounts/e08f681f-072a-4707-8e/runbooks/37ab5e3e-00/draft/testJob/streams";
22220
Requests[4259].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22221
Requests[4259].
Request
.Path = "/subscriptions/9003416a-6a91-/resourceGroups/fae6a169-22ff-408/providers/Microsoft.Automation/automationAccounts/2f2468c0-a4c9-41dd-8b/runbooks/946976a1-da/draft/testJob/suspend";
22224
Requests[4260].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22225
Requests[4260].
Request
.Path = "/subscriptions/a25090fe-a741-/resourceGroups/6ff7fe51-1dec-4e9/providers/Microsoft.ServerManagement/nodes/cab0ed0e/sessions/937c78d/features/powerShellConsole/pssessions";
22228
Requests[4261].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22229
Requests[4261].
Request
.Path = "/subscriptions/c2f8a439-4309-/resourceGroups/5c7ce02e-1a5e-429/providers/Microsoft.StorSimple/managers/a64114c1-3c/devices/cd578b70-7/securitySettings/default/syncRemoteManagementCertificate";
22232
Requests[4262].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22233
Requests[4262].
Request
.Path = "/subscriptions/42bc1005-c7d7-/resourceGroups/7d5b9ac5-af67-477/providers/Microsoft.Web/sites/cb690/instances/7fd9c715-f/extensions/MSDeploy/log";
22236
Requests[4263].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22237
Requests[4263].
Request
.Path = "/subscriptions/47864e9d-419a-/resourceGroups/4b339d80-17b4-47f/providers/Microsoft.Web/sites/ab1e4/slots/73b7a/config/appsettings/list";
22240
Requests[4264].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22241
Requests[4264].
Request
.Path = "/subscriptions/fcbdeef3-f813-/resourceGroups/7e1eb892-9fdd-4ea/providers/Microsoft.Web/sites/45ecd/slots/7d01a/config/authsettings/list";
22244
Requests[4265].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22245
Requests[4265].
Request
.Path = "/subscriptions/883930c2-de2e-/resourceGroups/34239e47-9c1f-4c4/providers/Microsoft.Web/sites/48a6f/slots/10e80/config/backup/list";
22248
Requests[4266].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22249
Requests[4266].
Request
.Path = "/subscriptions/344e20df-2de5-/resourceGroups/e6549230-545a-48d/providers/Microsoft.Web/sites/d55cf/slots/2b413/config/connectionstrings/list";
22252
Requests[4267].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22253
Requests[4267].
Request
.Path = "/subscriptions/3839ff45-97bc-/resourceGroups/052b523a-adf9-4d6/providers/Microsoft.Web/sites/d5776/slots/88edc/config/metadata/list";
22256
Requests[4268].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22257
Requests[4268].
Request
.Path = "/subscriptions/9eedc674-7ce2-/resourceGroups/847db486-e2fe-49c/providers/Microsoft.Web/sites/dc2a9/slots/73337/config/publishingcredentials/list";
22260
Requests[4269].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22261
Requests[4269].
Request
.Path = "/subscriptions/d33e0536-ef83-/resourceGroups/0abaa606-6e91-4c0/providers/Microsoft.Web/sites/24980/slots/a609e/config/pushsettings/list";
22264
Requests[4270].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22265
Requests[4270].
Request
.Path = "/subscriptions/2c05058f-144b-/resourceGroups/ce037ffb-5244-458/providers/Microsoft.Web/sites/0791c/slots/d7f92/config/web/snapshots";
22268
Requests[4271].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22269
Requests[4271].
Request
.Path = "/subscriptions/862d9a2d-bfa4-/resourceGroups/116e668a-67b0-48f/providers/Microsoft.Web/sites/9154c/slots/4a3f3/containerlogs/zip/download";
22272
Requests[4272].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22273
Requests[4272].
Request
.Path = "/subscriptions/04231f85-21de-/resourceGroups/d74a00d1-a538-46e/providers/Microsoft.Web/sites/65ce4/slots/08776/extensions/MSDeploy/log";
22276
Requests[4273].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22277
Requests[4273].
Request
.Path = "/subscriptions/bcca6820-1b87-/resourceGroups/9fc6d697-717b-488/providers/Microsoft.Web/sites/f5a61/slots/6e659/functions/admin/token";
22280
Requests[4274].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22281
Requests[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";
22284
Requests[4275].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22285
Requests[4275].
Request
.Path = "/subscriptions/3c8998e5-3c3b-/resourceGroups/66dd6110-23df-47f/providers/Microsoft.ServerManagement/nodes/287d6181/sessions/d3912b4/features/powerShellConsole/pssessions/bec626b9-";
22288
Requests[4276].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22289
Requests[4276].
Request
.Path = "/subscriptions/5f6ad2fd-f2b5-/resourceGroups/64e25aea-7e78-4e6/providers/Microsoft.ServerManagement/nodes/b0f8f7f6/sessions/4ef2ad0/features/powerShellConsole/pssessions/4ff824e9-";
22292
Requests[4277].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22293
Requests[4277].
Request
.Path = "/subscriptions/40ae5759-5ac6-/resourceGroups/8ff62095-5884-42a/providers/Microsoft.ServerManagement/nodes/6ee92b81/sessions/fe92cbb/features/powerShellConsole/pssessions/0fc9b2c5-";
22296
Requests[4278].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22297
Requests[4278].
Request
.Path = "/subscriptions/eed33d39-5898-/resourceGroups/b8ff06ef-639a-412/providers/Microsoft.Web/sites/772d5/slots/05da5/config/web/snapshots/6e8038e6-b";
22300
Requests[4279].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22301
Requests[4279].
Request
.Path = "/subscriptions/6ca94f9e-39a3-/resourceGroups/123c1dbf-060a-429/providers/Microsoft.ServerManagement/nodes/da409b73/sessions/2ed0a2d/features/powerShellConsole/pssessions/5a5296ab-/cancel";
22304
Requests[4280].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22305
Requests[4280].
Request
.Path = "/subscriptions/0591d618-3f0a-/resourceGroups/bac4e063-4ea1-4d8/providers/Microsoft.ServerManagement/nodes/720fc5da/sessions/1f96ed6/features/powerShellConsole/pssessions/064909e6-/invokeCommand";
22308
Requests[4281].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22309
Requests[4281].
Request
.Path = "/subscriptions/dc67e379-ff8c-/resourceGroups/1dabcc89-df48-40d/providers/Microsoft.ServerManagement/nodes/a2f52b00/sessions/e1b33ab/features/powerShellConsole/pssessions/492922c3-/tab";
22312
Requests[4282].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22313
Requests[4282].
Request
.Path = "/subscriptions/3a3f5beb-d1f7-/resourceGroups/a39ef0fa-8e8a-415/providers/Microsoft.Web/sites/05c43/slots/5f850/config/web/snapshots/d8b69541-b/recover";
22316
Requests[4283].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22317
Requests[4283].
Request
.Path = "/subscriptions/3003e987-e1ed-/resourceGroups/2cf9f107-/providers/Microsoft.DataMigration/services/ab4ce02a-a7/projects/b5be2ea7-f6/tasks/9e74fb60";
22320
Requests[4284].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22321
Requests[4284].
Request
.Path = "/subscriptions/297af4fd-060c-/resourceGroups/eeb7f41a-/providers/Microsoft.DataMigration/services/bc2ae242-e4/projects/5be90488-07/tasks/f71959c8";
22324
Requests[4285].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22325
Requests[4285].
Request
.Path = "/subscriptions/32999b2f-4840-/resourceGroups/60db154f-/providers/Microsoft.DataMigration/services/791518bb-6a/projects/c18fe9aa-2f/tasks/857bda96";
22328
Requests[4286].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22329
Requests[4286].
Request
.Path = "/subscriptions/d4fd1ac6-c773-/resourceGroups/99cb6e99-/providers/Microsoft.DataMigration/services/f81ed551-7a/projects/b60207c3-b4/tasks/3c4ef4af";
22332
Requests[4287].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
22333
Requests[4287].
Request
.Path = "/subscriptions/c410a6bb-a74d-/resourceGroups/57ce5129-/providers/Microsoft.DataMigration/services/8624a17d-28/projects/e001bdf7-16/tasks/0dbdf3cc";
22336
Requests[4288].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22337
Requests[4288].
Request
.Path = "/subscriptions/8d0f95d0-023f-/resourceGroups/636e4704-cf5e-4c3/providers/Microsoft.ApiManagement/service/2308506e-bf/apis/1abd6/diagnostics/2a1513b1-1ea";
22340
Requests[4289].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22341
Requests[4289].
Request
.Path = "/subscriptions/58c58208-323e-/resourceGroups/c985085f-8848-45e/providers/Microsoft.ApiManagement/service/55d30973-93/apis/34482/diagnostics/76a6b6a4-69c";
22344
Requests[4290].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22345
Requests[4290].
Request
.Path = "/subscriptions/3419e3ee-2eda-/resourceGroups/da894604-adcd-4d5/providers/Microsoft.ApiManagement/service/bbcdba61-be/apis/48298/diagnostics/c03b67d2-2ca";
22348
Requests[4291].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22349
Requests[4291].
Request
.Path = "/subscriptions/dd345062-5d31-/resourceGroups/156508c6-fa2a-41a/providers/Microsoft.ApiManagement/service/33731b1e-c5/apis/0c8e0/diagnostics/6fe28913-0e1";
22352
Requests[4292].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22353
Requests[4292].
Request
.Path = "/subscriptions/f001a713-7588-/resourceGroups/0b43cb35-37e3-465/providers/Microsoft.ApiManagement/service/ce981247-73/apis/33bed/diagnostics/a7ad6250-f04";
22356
Requests[4293].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22357
Requests[4293].
Request
.Path = "/subscriptions/b99a0cbd-95ff-/resourceGroups/966f0c99-45e7-493/providers/Microsoft.ApiManagement/service/d6c03ee9-5d/apis/a6d2a/issues/6323c14";
22360
Requests[4294].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22361
Requests[4294].
Request
.Path = "/subscriptions/e94991df-04d0-/resourceGroups/8bea9e7c-9dd0-4ff/providers/Microsoft.ApiManagement/service/5db691b8-a6/apis/19a2f/issues/cdeb1f1";
22364
Requests[4295].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22365
Requests[4295].
Request
.Path = "/subscriptions/873a6e1b-2c98-/resourceGroups/7bac2778-a6dd-402/providers/Microsoft.ApiManagement/service/9ed2af07-b0/apis/a9074/issues/2012323";
22368
Requests[4296].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22369
Requests[4296].
Request
.Path = "/subscriptions/9a50b7bd-bd4d-/resourceGroups/11a720cd-0f99-420/providers/Microsoft.ApiManagement/service/f5fccb09-ad/apis/b49e8/issues/b0a2d34";
22372
Requests[4297].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22373
Requests[4297].
Request
.Path = "/subscriptions/6ad1a739-794f-/resourceGroups/10c955bf-93f2-483/providers/Microsoft.ApiManagement/service/952c175e-20/apis/583fa/operations/7bf56dc1-36";
22376
Requests[4298].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22377
Requests[4298].
Request
.Path = "/subscriptions/6e9f263c-6c31-/resourceGroups/72585735-d9ff-442/providers/Microsoft.ApiManagement/service/09f8ed16-bf/apis/19cd1/operations/e3037973-a4";
22380
Requests[4299].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22381
Requests[4299].
Request
.Path = "/subscriptions/55f9721b-52e4-/resourceGroups/cb396e0f-7025-4f3/providers/Microsoft.ApiManagement/service/0b455117-9a/apis/33b67/operations/d66ddb31-f2";
22384
Requests[4300].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22385
Requests[4300].
Request
.Path = "/subscriptions/8a18cb3a-7ef0-/resourceGroups/5f23a38c-2864-42d/providers/Microsoft.ApiManagement/service/6b0d19ba-d6/apis/56edc/operations/6923dbad-2b";
22388
Requests[4301].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22389
Requests[4301].
Request
.Path = "/subscriptions/85b154c6-393f-/resourceGroups/798d4350-20b5-45d/providers/Microsoft.ApiManagement/service/eac44db7-2e/apis/94a48/operations/7067a307-06";
22392
Requests[4302].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22393
Requests[4302].
Request
.Path = "/subscriptions/726ea3af-29bb-/resourceGroups/2c871a33-733d-486/providers/Microsoft.ApiManagement/service/c8408e00-65/apis/113f9/policies/04996aec";
22396
Requests[4303].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22397
Requests[4303].
Request
.Path = "/subscriptions/9d0d8db4-0f3b-/resourceGroups/445315b0-d414-4a3/providers/Microsoft.ApiManagement/service/70e8da28-91/apis/cf02c/policies/0a4b6c51";
22400
Requests[4304].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22401
Requests[4304].
Request
.Path = "/subscriptions/00cbf108-b9c0-/resourceGroups/582aaeb6-d18e-435/providers/Microsoft.ApiManagement/service/0932247f-10/apis/8d9b0/policies/9442115d";
22404
Requests[4305].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22405
Requests[4305].
Request
.Path = "/subscriptions/63e6811a-ee0b-/resourceGroups/0765d562-2acb-42e/providers/Microsoft.ApiManagement/service/4dcea6b5-77/apis/6903b/policies/c2bb02a1";
22408
Requests[4306].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22409
Requests[4306].
Request
.Path = "/subscriptions/3d456829-acfa-/resourceGroups/cd8d54c8-cfc9-4ac/providers/Microsoft.ApiManagement/service/f18f5ba8-63/apis/efeb1/releases/44fbadb5-";
22412
Requests[4307].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22413
Requests[4307].
Request
.Path = "/subscriptions/829fc722-5258-/resourceGroups/431e82c6-69fc-46f/providers/Microsoft.ApiManagement/service/e121265a-a8/apis/af219/releases/02c7f529-";
22416
Requests[4308].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22417
Requests[4308].
Request
.Path = "/subscriptions/700c4743-2140-/resourceGroups/3d1b1269-cb92-49f/providers/Microsoft.ApiManagement/service/149bd963-b2/apis/75cd2/releases/833c060b-";
22420
Requests[4309].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22421
Requests[4309].
Request
.Path = "/subscriptions/3dc85a3e-0b58-/resourceGroups/334837e6-4f8b-493/providers/Microsoft.ApiManagement/service/a7924908-d3/apis/ff03c/releases/a1818a50-";
22424
Requests[4310].
Request
.Method = HttpMethods.GetCanonicalizedValue("PARAMETERS");;
22425
Requests[4310].
Request
.Path = "/subscriptions/e597238e-6d07-/resourceGroups/e46ee08d-043c-4b0/providers/Microsoft.ApiManagement/service/4a2c5684-0a/apis/e53ce/releases/f057a631-";
22428
Requests[4311].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22429
Requests[4311].
Request
.Path = "/subscriptions/717c04aa-9110-/resourceGroups/5b06794b-016c-480/providers/Microsoft.ApiManagement/service/7c56691d-86/apis/cae75/releases/baeb967e-";
22432
Requests[4312].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22433
Requests[4312].
Request
.Path = "/subscriptions/b090bda8-9f17-/resourceGroups/aee2d28c-b150-41e/providers/Microsoft.ApiManagement/service/c20acbc6-0b/apis/231a6/schemas/38963ec4";
22436
Requests[4313].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22437
Requests[4313].
Request
.Path = "/subscriptions/b6ceb903-e7ea-/resourceGroups/091e56d2-2b04-4c6/providers/Microsoft.ApiManagement/service/8546fc2f-c1/apis/b278d/schemas/10fd8714";
22440
Requests[4314].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22441
Requests[4314].
Request
.Path = "/subscriptions/c1d8e3d8-742f-/resourceGroups/aeb14fba-b2c7-44a/providers/Microsoft.ApiManagement/service/181741cf-88/apis/56258/schemas/51b48917";
22444
Requests[4315].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22445
Requests[4315].
Request
.Path = "/subscriptions/b808e2af-3b4c-/resourceGroups/48b1baab-17f4-424/providers/Microsoft.ApiManagement/service/f6e6a2e0-5d/apis/e2a0c/schemas/a873d73d";
22448
Requests[4316].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22449
Requests[4316].
Request
.Path = "/subscriptions/93c97280-1115-/resourceGroups/7af02bc7-8035-472/providers/Microsoft.ApiManagement/service/cd9c7e74-a0/apis/24744/tagDescriptions/e3a85";
22452
Requests[4317].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22453
Requests[4317].
Request
.Path = "/subscriptions/c62dc5ed-6bca-/resourceGroups/4c0321a3-a0f6-462/providers/Microsoft.ApiManagement/service/65c749cb-28/apis/56714/tagDescriptions/7e382";
22456
Requests[4318].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22457
Requests[4318].
Request
.Path = "/subscriptions/eebafcb8-e2cb-/resourceGroups/2ad0c723-2f2e-40b/providers/Microsoft.ApiManagement/service/a564b238-55/apis/e7646/tagDescriptions/72cc1";
22460
Requests[4319].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22461
Requests[4319].
Request
.Path = "/subscriptions/1e29b489-2597-/resourceGroups/94cbcaf9-aa93-4a6/providers/Microsoft.ApiManagement/service/31880838-2b/apis/12ea1/tagDescriptions/373ca";
22464
Requests[4320].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22465
Requests[4320].
Request
.Path = "/subscriptions/3b2ff7e0-5bd5-/resourceGroups/3ff6fdb8-df9d-4fe/providers/Microsoft.ApiManagement/service/0e1b940d-2c/apis/97ef7/tags/ced89";
22468
Requests[4321].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22469
Requests[4321].
Request
.Path = "/subscriptions/7ae78607-aa3f-/resourceGroups/705a341e-68c5-400/providers/Microsoft.ApiManagement/service/299d71e3-db/apis/9591a/tags/6a522";
22472
Requests[4322].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22473
Requests[4322].
Request
.Path = "/subscriptions/2ad71bd4-778c-/resourceGroups/e516987c-9301-4da/providers/Microsoft.ApiManagement/service/b75363f8-80/apis/e7e61/tags/d76c0";
22476
Requests[4323].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22477
Requests[4323].
Request
.Path = "/subscriptions/05c3b140-6ade-/resourceGroups/cdacf19e-b259-4e2/providers/Microsoft.ApiManagement/service/91584eba-1f/apis/a2166/tags/b0328";
22480
Requests[4324].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22481
Requests[4324].
Request
.Path = "/subscriptions/ae291f0f-f2ca-/resourceGroups/541d0152-4409-462/providers/Microsoft.ApiManagement/service/ca747134-2d/diagnostics/bfdab92c-bc8/loggers/b27b26b4";
22484
Requests[4325].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22485
Requests[4325].
Request
.Path = "/subscriptions/e4f7ca52-6696-/resourceGroups/1898b09f-5c9a-4e2/providers/Microsoft.ApiManagement/service/b1ba3a72-c0/diagnostics/9d61cb0e-2cb/loggers/6cad41a7";
22488
Requests[4326].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22489
Requests[4326].
Request
.Path = "/subscriptions/809eac6c-701b-/resourceGroups/af78f886-9109-460/providers/Microsoft.ApiManagement/service/46f7f232-f7/diagnostics/8f89ecf4-de5/loggers/08d1c081";
22492
Requests[4327].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22493
Requests[4327].
Request
.Path = "/subscriptions/3d848b09-fb1a-/resourceGroups/3a39eda7-43fb-49a/providers/Microsoft.ApiManagement/service/3978279a-03/groups/66e5aba/users/260a1";
22496
Requests[4328].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22497
Requests[4328].
Request
.Path = "/subscriptions/2e7ec089-1ffe-/resourceGroups/1a76991f-204a-464/providers/Microsoft.ApiManagement/service/029f0db2-9a/groups/099c053/users/35b50";
22500
Requests[4329].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22501
Requests[4329].
Request
.Path = "/subscriptions/529eb0c5-58e7-/resourceGroups/3232070b-256c-4c3/providers/Microsoft.ApiManagement/service/30a25078-a5/groups/e56f0ff/users/b72ef";
22504
Requests[4330].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22505
Requests[4330].
Request
.Path = "/subscriptions/9765d347-8b91-/resourceGroups/21641c89-e593-47f/providers/Microsoft.ApiManagement/service/7bae0e71-ae/notifications/b2245f4a-3b36-45/recipientEmails/d2967";
22508
Requests[4331].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22509
Requests[4331].
Request
.Path = "/subscriptions/0d038a42-cb6b-/resourceGroups/4311acd8-2372-4c0/providers/Microsoft.ApiManagement/service/59745d83-62/notifications/1b5e92ff-a0fe-4a/recipientEmails/80c1b";
22512
Requests[4332].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22513
Requests[4332].
Request
.Path = "/subscriptions/c4cbb2d0-8d5f-/resourceGroups/d88535ec-f810-4d2/providers/Microsoft.ApiManagement/service/031e1a52-20/notifications/1400aed9-98b3-46/recipientEmails/6971f";
22516
Requests[4333].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22517
Requests[4333].
Request
.Path = "/subscriptions/13130a41-2be8-/resourceGroups/923aa577-adbf-4ae/providers/Microsoft.ApiManagement/service/1f11acd3-bd/notifications/128b2b2d-551b-4b/recipientUsers/98ada";
22520
Requests[4334].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22521
Requests[4334].
Request
.Path = "/subscriptions/151b89a5-fd5a-/resourceGroups/c6959186-23c3-411/providers/Microsoft.ApiManagement/service/81463d89-cf/notifications/6b68969c-000b-4d/recipientUsers/5e9f4";
22524
Requests[4335].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22525
Requests[4335].
Request
.Path = "/subscriptions/efe97d9a-6533-/resourceGroups/c44c37bd-db4d-447/providers/Microsoft.ApiManagement/service/5e9337cf-b2/notifications/117fa284-9afd-4f/recipientUsers/82b35";
22528
Requests[4336].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22529
Requests[4336].
Request
.Path = "/subscriptions/07c33d78-88e1-/resourceGroups/8e0afb6f-c9be-4de/providers/Microsoft.ApiManagement/service/45259e93-74/products/edee6945-/apis/574b4";
22532
Requests[4337].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22533
Requests[4337].
Request
.Path = "/subscriptions/2e2f47c3-9af0-/resourceGroups/f0e47984-606e-485/providers/Microsoft.ApiManagement/service/bba152f6-33/products/711b25b3-/apis/687cd";
22536
Requests[4338].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22537
Requests[4338].
Request
.Path = "/subscriptions/702d533e-946a-/resourceGroups/c135110f-e422-4b0/providers/Microsoft.ApiManagement/service/94067196-eb/products/e2b796e4-/apis/d81b1";
22540
Requests[4339].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22541
Requests[4339].
Request
.Path = "/subscriptions/2821d6b9-98bb-/resourceGroups/46cdbbbe-e5a0-40f/providers/Microsoft.ApiManagement/service/eb70332a-03/products/b7bb9fee-/groups/69c20c2";
22544
Requests[4340].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22545
Requests[4340].
Request
.Path = "/subscriptions/f1f82150-dabe-/resourceGroups/d87877a2-369a-4ee/providers/Microsoft.ApiManagement/service/3afc00e8-8d/products/dad5ea6d-/groups/a465f97";
22548
Requests[4341].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22549
Requests[4341].
Request
.Path = "/subscriptions/64312b63-0289-/resourceGroups/4c32543d-17ef-4f0/providers/Microsoft.ApiManagement/service/d9fcce21-3f/products/e17ffd52-/groups/fa95cf7";
22552
Requests[4342].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22553
Requests[4342].
Request
.Path = "/subscriptions/0ce37f16-e32a-/resourceGroups/3cfd8846-ae18-499/providers/Microsoft.ApiManagement/service/1df79e6f-3c/products/22d83510-/policies/1353bae7";
22556
Requests[4343].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22557
Requests[4343].
Request
.Path = "/subscriptions/dd096144-35d7-/resourceGroups/01f20cac-01fa-49a/providers/Microsoft.ApiManagement/service/6f571c7e-a8/products/4b732021-/policies/a5a2ae4e";
22560
Requests[4344].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22561
Requests[4344].
Request
.Path = "/subscriptions/f3a377b5-87f7-/resourceGroups/70d1ef16-8c13-49d/providers/Microsoft.ApiManagement/service/5454f3c4-d9/products/ee3f3ca3-/policies/6ca4a6cc";
22564
Requests[4345].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22565
Requests[4345].
Request
.Path = "/subscriptions/620286ae-4d90-/resourceGroups/4fc3d8aa-e1b4-49b/providers/Microsoft.ApiManagement/service/9b2d58d8-0b/products/297050a0-/policies/8326bd1a";
22568
Requests[4346].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22569
Requests[4346].
Request
.Path = "/subscriptions/1f9d6741-e2ab-/resourceGroups/cfded6a3-8cf2-48f/providers/Microsoft.ApiManagement/service/c991e006-08/products/f97fbb01-/tags/17604";
22572
Requests[4347].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
22573
Requests[4347].
Request
.Path = "/subscriptions/319c2a91-b76e-/resourceGroups/7a95dd78-ecc6-4ca/providers/Microsoft.ApiManagement/service/a894c065-11/products/c086c8c8-/tags/02083";
22576
Requests[4348].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22577
Requests[4348].
Request
.Path = "/subscriptions/f1d3b5f1-04dc-/resourceGroups/7ee152f5-ae29-4d8/providers/Microsoft.ApiManagement/service/30e00323-50/products/c06a2d7d-/tags/8c649";
22580
Requests[4349].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22581
Requests[4349].
Request
.Path = "/subscriptions/bd00ba50-463c-/resourceGroups/800f02be-27fe-4b0/providers/Microsoft.ApiManagement/service/dd924dc7-06/products/11d84ff0-/tags/c1db0";
22584
Requests[4350].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22585
Requests[4350].
Request
.Path = "/subscriptions/10156ece-3476-/resourceGroups/4c4f977f-b7ac-480/providers/Microsoft.ApiManagement/service/ca055d6f-0b/quotas/f0467e9c-a0a1-4/periods/f6beab4b-06ba-";
22588
Requests[4351].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22589
Requests[4351].
Request
.Path = "/subscriptions/ccb70350-4936-/resourceGroups/da24846d-b0d8-4b7/providers/Microsoft.ApiManagement/service/f52fd071-f8/quotas/5d4fecc0-bdd8-4/periods/20b74e46-ab74-";
22592
Requests[4352].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22593
Requests[4352].
Request
.Path = "/subscriptions/87668fa0-f701-/resourceGroups/24faa827-1305-45b/providers/Microsoft.Automation/automationAccounts/f8d9784b-db69-458f-93/compilationjobs/4ea6d/streams/5cb6e1e7-7d";
22596
Requests[4353].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22597
Requests[4353].
Request
.Path = "/subscriptions/1b496e5e-88bd-/resourceGroups/6e5e9d99-d36f-46d/providers/Microsoft.Automation/automationAccounts/fb87dcee-2201-4688-80/jobs/b7aa4/streams/e8efb90e-e3";
22600
Requests[4354].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22601
Requests[4354].
Request
.Path = "/subscriptions/35d42db3-aa4c-/resourceGroups/de197673-2f4a-4e2/providers/Microsoft.Automation/automationAccounts/9e20b6b3-b2ad-4dde-b9/modules/9486c622-d/activities/a784b204-4fa";
22604
Requests[4355].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22605
Requests[4355].
Request
.Path = "/subscriptions/fb383b2d-cb50-/resourceGroups/86f41eaa-2994-480/providers/Microsoft.Automation/automationAccounts/85d5430a-f416-48c4-82/nodes/dd417b/reports/99f7535e";
22608
Requests[4356].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22609
Requests[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";
22612
Requests[4357].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22613
Requests[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";
22616
Requests[4358].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22617
Requests[4358].
Request
.Path = "/subscriptions/fcfd7893-83df-/resourceGroups/cd374742-2791-488/providers/Microsoft.Batch/batchAccounts/e420e6b7-20/applications/5a5435b7-74a3/versions/209fa88";
22620
Requests[4359].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22621
Requests[4359].
Request
.Path = "/subscriptions/fb1a33cc-aaee-/resourceGroups/07c7a323-4540-431/providers/Microsoft.Batch/batchAccounts/f5eec4bc-c7/applications/826c4754-b69b/versions/c4da47f";
22624
Requests[4360].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22625
Requests[4360].
Request
.Path = "/subscriptions/cace4d43-5177-/resourceGroups/66a6d137-0cf1-4cd/providers/Microsoft.Batch/batchAccounts/66ac9b49-c2/applications/ed6c67ab-0500/versions/65feb66";
22628
Requests[4361].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22629
Requests[4361].
Request
.Path = "/subscriptions/c7243f92-c2f3-/resourceGroups/5ce9bbac-782a-43e/providers/Microsoft.BatchAI/workspaces/e9427097-c028/experiments/f704066c-7db8-/jobs/4b9f561";
22632
Requests[4362].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22633
Requests[4362].
Request
.Path = "/subscriptions/bea2215b-0a45-/resourceGroups/ae235a06-048e-4bb/providers/Microsoft.BatchAI/workspaces/823fba45-ddd7/experiments/1e6e9e28-fce2-/jobs/00bc81e";
22636
Requests[4363].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22637
Requests[4363].
Request
.Path = "/subscriptions/25a4a196-9deb-/resourceGroups/34f42d78-f795-4b1/providers/Microsoft.BatchAI/workspaces/27ce25f1-5275/experiments/6b94db1a-275a-/jobs/4a334fd";
22640
Requests[4364].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22641
Requests[4364].
Request
.Path = "/subscriptions/de4f112d-2188-/resourceGroups/b8bf6b7a-7cf7-40d/providers/Microsoft.Cdn/profiles/66733fd4-c9/endpoints/2bb68f63-7d5/customDomains/9ca6fc1d-bf16-47";
22644
Requests[4365].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22645
Requests[4365].
Request
.Path = "/subscriptions/1ac88c51-a3ea-/resourceGroups/28b287bc-0ca8-43a/providers/Microsoft.Cdn/profiles/b01e7bc0-5c/endpoints/9a290ecb-95e/customDomains/94e84a36-3e28-4c";
22648
Requests[4366].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22649
Requests[4366].
Request
.Path = "/subscriptions/877c493e-03c6-/resourceGroups/786d1b4c-a2ba-47b/providers/Microsoft.Cdn/profiles/636bf573-e6/endpoints/72ac1bdc-699/customDomains/431c1fdd-d772-48";
22652
Requests[4367].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22653
Requests[4367].
Request
.Path = "/subscriptions/3f4d7750-8126-/resourceGroups/db676599-b3ba-4d9/providers/Microsoft.Cdn/profiles/a9aba429-6f/endpoints/dbef7e48-ba2/customDomains/c15fd34a-0e62-46";
22656
Requests[4368].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22657
Requests[4368].
Request
.Path = "/subscriptions/b7d94508-a829-/resourceGroups/e9d0712c-154b-415/providers/Microsoft.Cdn/profiles/97934019-80/endpoints/27e53af0-28d/origins/3c3db66d-3";
22660
Requests[4369].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22661
Requests[4369].
Request
.Path = "/subscriptions/f0383acc-ddff-/resourceGroups/a25c1ada-779b-422/providers/Microsoft.Cdn/profiles/d01ff87b-b8/endpoints/da5827eb-f6e/origins/1be6d6b2-1";
22664
Requests[4370].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22665
Requests[4370].
Request
.Path = "/subscriptions/3d7f770a-e3f9-/resourceGroups/4583df72-618c-4dd/providers/Microsoft.Cdn/profiles/606afd8c-6b/endpoints/5fd24a00-6a8/origins/cb752370-0";
22668
Requests[4371].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22669
Requests[4371].
Request
.Path = "/subscriptions/aecee748-817f-/resourceGroups/a464dc61-c0aa-403/providers/Microsoft.Cdn/profiles/0836fa78-30/endpoints/c3cf7adc-260/origins/d2791f4a-2";
22672
Requests[4372].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22673
Requests[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";
22676
Requests[4373].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22677
Requests[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";
22680
Requests[4374].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22681
Requests[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";
22684
Requests[4375].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22685
Requests[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";
22688
Requests[4376].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22689
Requests[4376].
Request
.Path = "/subscriptions/c59109c6-9354-/resourceGroups/8ff303cd-b10e-49a/providers/Microsoft.ContainerRegistry/registries/f772bdf2-951/buildTasks/87460e6d-dccb/steps/d88eb8cb";
22692
Requests[4377].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22693
Requests[4377].
Request
.Path = "/subscriptions/a72bb62c-479d-/resourceGroups/88d53526-1bcb-4be/providers/Microsoft.ContainerRegistry/registries/4586b30e-850/buildTasks/5bd5c678-36e8/steps/d4887131";
22696
Requests[4378].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22697
Requests[4378].
Request
.Path = "/subscriptions/e21a2114-7b47-/resourceGroups/f877b5ed-123f-44a/providers/Microsoft.ContainerRegistry/registries/ba676020-a4b/buildTasks/0b3ac179-c754/steps/48f438a9";
22700
Requests[4379].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22701
Requests[4379].
Request
.Path = "/subscriptions/dfa96d4c-191a-/resourceGroups/f2bdde56-69b3-4fb/providers/Microsoft.ContainerRegistry/registries/592ab436-2d9/buildTasks/c7ab3ac4-d330/steps/b0cb6f5e";
22704
Requests[4380].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22705
Requests[4380].
Request
.Path = "/subscriptions/8040ce12-cd3e-/resourceGroups/93292649-51a6-453/providers/Microsoft.CustomerInsights/hubs/aac9066/connectors/dae306fd-fe4c/mappings/e4889a10-3b";
22708
Requests[4381].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22709
Requests[4381].
Request
.Path = "/subscriptions/bd930bc4-1fe8-/resourceGroups/dd74914e-e6f8-405/providers/Microsoft.CustomerInsights/hubs/4cd3fc0/connectors/1982b550-7d5a/mappings/6844bbf8-a3";
22712
Requests[4382].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22713
Requests[4382].
Request
.Path = "/subscriptions/e012df12-c69f-/resourceGroups/2947851e-a2e5-414/providers/Microsoft.CustomerInsights/hubs/9e7453c/connectors/0d0c73fd-8db6/mappings/86dc631d-fc";
22716
Requests[4383].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22717
Requests[4383].
Request
.Path = "/subscriptions/aae6bb09-4448-/resourceGroups/1a6a8699-bcb8-4d9/providers/Microsoft.DataFactory/factories/98aa12e1-18/integrationRuntimes/6716e56c-2a6e-4e54-971/nodes/a7e8867e";
22720
Requests[4384].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22721
Requests[4384].
Request
.Path = "/subscriptions/35753c21-7017-/resourceGroups/22d0e14d-1d8b-42f/providers/Microsoft.DataFactory/factories/1d2a807d-7a/integrationRuntimes/54a78c31-1e60-4536-afe/nodes/f40a5419";
22724
Requests[4385].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22725
Requests[4385].
Request
.Path = "/subscriptions/210a82d9-df8d-/resourceGroups/b6dbd9eb-9ea1-409/providers/Microsoft.DataLakeAnalytics/accounts/634e4e8f-5a/storageAccounts/a32c4170-3d6f-48ef/containers/77df7014-02f6";
22728
Requests[4386].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22729
Requests[4386].
Request
.Path = "/subscriptions/9eb6a51b-bb75-/resourceGroups/53e2b57d-be74-40d/providers/Microsoft.Devices/IotHubs/db22610d-0fd/eventHubEndpoints/18039d46-0ac3-45a4-9/ConsumerGroups/3659a";
22732
Requests[4387].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22733
Requests[4387].
Request
.Path = "/subscriptions/11dc93ec-c6da-/resourceGroups/079c5553-0a1a-452/providers/Microsoft.Devices/IotHubs/61c5ea31-488/eventHubEndpoints/4b6a81ac-561a-4ab9-b/ConsumerGroups/a48b1";
22736
Requests[4388].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22737
Requests[4388].
Request
.Path = "/subscriptions/46d3c8e0-291a-/resourceGroups/5ad1e39a-4b21-42c/providers/Microsoft.Devices/IotHubs/6ff96c89-877/eventHubEndpoints/3ac2445e-ee74-4217-9/ConsumerGroups/d9166";
22740
Requests[4389].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22741
Requests[4389].
Request
.Path = "/subscriptions/2185bd6a-0f13-/resourceGroups/1d632f01-ddfb-495/providers/Microsoft.DevTestLab/labs/8110b0c/artifactsources/44cd9798-e4b1-4204/armtemplates/b18a2";
22744
Requests[4390].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22745
Requests[4390].
Request
.Path = "/subscriptions/29cf2561-6066-/resourceGroups/c1117e1d-8c2e-485/providers/Microsoft.DevTestLab/labs/b6a9ed8/artifactsources/446134f0-36ce-4e6f/artifacts/31e7e";
22748
Requests[4391].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22749
Requests[4391].
Request
.Path = "/subscriptions/30dace52-2c7f-/resourceGroups/208871a2-a748-477/providers/Microsoft.DevTestLab/labs/744545f/policysets/915c53e9-c1d8/policies/64030";
22752
Requests[4392].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22753
Requests[4392].
Request
.Path = "/subscriptions/7e8eb124-f0a0-/resourceGroups/e7d8dceb-b2fc-401/providers/Microsoft.DevTestLab/labs/84c1a71/policysets/2e4a68a1-1acd/policies/3332e";
22756
Requests[4393].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22757
Requests[4393].
Request
.Path = "/subscriptions/5cf0d26e-da40-/resourceGroups/5129db8d-1e64-4f5/providers/Microsoft.DevTestLab/labs/9a3705b/policysets/164e8031-57ea/policies/65928";
22760
Requests[4394].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22761
Requests[4394].
Request
.Path = "/subscriptions/71246fdc-d470-/resourceGroups/05a1345b-1490-442/providers/Microsoft.DevTestLab/labs/6e019ac/policysets/f3305056-e8f1/policies/d8f14";
22764
Requests[4395].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22765
Requests[4395].
Request
.Path = "/subscriptions/a9a7a1dc-c7eb-/resourceGroups/27ca4ac1-34dd-403/providers/Microsoft.DevTestLab/labs/df542c4/users/9c7c53f8/disks/2b935";
22768
Requests[4396].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22769
Requests[4396].
Request
.Path = "/subscriptions/66e07458-9bf5-/resourceGroups/170df48c-1e8c-495/providers/Microsoft.DevTestLab/labs/7f7637a/users/a6c3b093/disks/d86fb";
22772
Requests[4397].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22773
Requests[4397].
Request
.Path = "/subscriptions/07e38586-2b83-/resourceGroups/9735f5e1-e67d-4eb/providers/Microsoft.DevTestLab/labs/6d2c12c/users/160d1010/disks/40a8a";
22776
Requests[4398].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22777
Requests[4398].
Request
.Path = "/subscriptions/9089a805-3477-/resourceGroups/bfac1388-7792-449/providers/Microsoft.DevTestLab/labs/5195230/users/fd2645b5/environments/08598";
22780
Requests[4399].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22781
Requests[4399].
Request
.Path = "/subscriptions/2f8dc9ea-5aab-/resourceGroups/1fb4b269-49f7-416/providers/Microsoft.DevTestLab/labs/bd42b53/users/2d71af8c/environments/33b3f";
22784
Requests[4400].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22785
Requests[4400].
Request
.Path = "/subscriptions/0ff2f1ec-ec91-/resourceGroups/b3e89b93-db08-43b/providers/Microsoft.DevTestLab/labs/03d5abf/users/fc1b0fcd/environments/1b990";
22788
Requests[4401].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22789
Requests[4401].
Request
.Path = "/subscriptions/8bb11d9e-8b5a-/resourceGroups/16fe87c1-6a29-429/providers/Microsoft.DevTestLab/labs/c9a336c/users/b45f3994/secrets/bd2ac";
22792
Requests[4402].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22793
Requests[4402].
Request
.Path = "/subscriptions/945daed6-c686-/resourceGroups/c1954ee5-41e7-49c/providers/Microsoft.DevTestLab/labs/4717f87/users/b1b37128/secrets/d4601";
22796
Requests[4403].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22797
Requests[4403].
Request
.Path = "/subscriptions/fb8c5a9c-69dd-/resourceGroups/21c20fef-ec96-4f5/providers/Microsoft.DevTestLab/labs/60dc217/users/87a703b5/secrets/79767";
22800
Requests[4404].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22801
Requests[4404].
Request
.Path = "/subscriptions/e13f5994-d706-/resourceGroups/9d4de131-4b62-457/providers/Microsoft.DevTestLab/labs/de839f2/virtualmachines/df0edf4f-6f59-4324/schedules/a06a4";
22804
Requests[4405].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22805
Requests[4405].
Request
.Path = "/subscriptions/78e6ff0b-3c55-/resourceGroups/f6c4a64b-5815-4f6/providers/Microsoft.DevTestLab/labs/6c02510/virtualmachines/51d8297e-5aa2-446f/schedules/3a809";
22808
Requests[4406].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22809
Requests[4406].
Request
.Path = "/subscriptions/4434b837-8346-/resourceGroups/67ac73ad-5178-40e/providers/Microsoft.DevTestLab/labs/0a1a400/virtualmachines/12a8e5eb-dfd2-4172/schedules/af8a1";
22812
Requests[4407].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22813
Requests[4407].
Request
.Path = "/subscriptions/2c7d9df9-6677-/resourceGroups/5e16b834-136f-4a3/providers/Microsoft.DevTestLab/labs/9c73b3d/virtualmachines/0e68e578-fa5b-43e3/schedules/ea907";
22816
Requests[4408].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22817
Requests[4408].
Request
.Path = "/subscriptions/946bc226-9629-/resourceGroups/ac28abd9-5bb1-479/providers/Microsoft.EventHub/namespaces/7a98f2d6-1688/disasterRecoveryConfigs/9a38e/AuthorizationRules/2716716e-ef7a-405a-a9";
22820
Requests[4409].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22821
Requests[4409].
Request
.Path = "/subscriptions/a4e1a96c-4a2c-/resourceGroups/c57fdfda-57b1-4eb/providers/Microsoft.EventHub/namespaces/7346c05d-ff31/eventhubs/59d68e4d-a61/authorizationRules/4e07a53a-8ff5-4af5-af";
22824
Requests[4410].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22825
Requests[4410].
Request
.Path = "/subscriptions/81943dbe-4f1e-/resourceGroups/4bd4163d-22b5-4c0/providers/Microsoft.EventHub/namespaces/e0e74e8a-db67/eventhubs/8efae918-4a4/authorizationRules/e3b4d1f3-5c57-4df6-89";
22828
Requests[4411].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22829
Requests[4411].
Request
.Path = "/subscriptions/959f28da-3a87-/resourceGroups/a5d8b8d9-0ddd-4b8/providers/Microsoft.EventHub/namespaces/d82c3611-4f37/eventhubs/be717fe4-0c1/authorizationRules/881f5660-0e7f-4d6b-b0";
22832
Requests[4412].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22833
Requests[4412].
Request
.Path = "/subscriptions/3e65f528-de7d-/resourceGroups/6904774f-2d34-482/providers/Microsoft.EventHub/namespaces/f6079328-72a5/eventhubs/b4e8ee4d-086/authorizationRules/fd777eb4-d971-4926-bc";
22836
Requests[4413].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22837
Requests[4413].
Request
.Path = "/subscriptions/9b23fe0a-c8a0-/resourceGroups/3750505a-d06f-411/providers/Microsoft.EventHub/namespaces/35464de6-343e/eventhubs/c5df2c70-f33/consumergroups/cd527096-df33-40d";
22840
Requests[4414].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22841
Requests[4414].
Request
.Path = "/subscriptions/2c19af94-7b7b-/resourceGroups/e8c8ee1b-b16b-4a7/providers/Microsoft.EventHub/namespaces/2efc130c-6073/eventhubs/8728bcd1-15c/consumergroups/75491a11-4e96-4e1";
22844
Requests[4415].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22845
Requests[4415].
Request
.Path = "/subscriptions/4fda9977-0fe5-/resourceGroups/ea8facc6-1b73-426/providers/Microsoft.EventHub/namespaces/729d9b56-c8c0/eventhubs/1bd3f9c2-d8f/consumergroups/e3cf165f-6307-4ac";
22848
Requests[4416].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22849
Requests[4416].
Request
.Path = "/subscriptions/f1a6e438-3075-/resourceGroups/d4555ef3-bfda-4d7/providers/Microsoft.Fabric.Admin/fabricLocations/eb21462c/logicalNetworks/855d5d9f-e906-/logicalSubnets/a81f0b86-78d9";
22852
Requests[4417].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22853
Requests[4417].
Request
.Path = "/subscriptions/6cd48ff8-2ab9-/resourceGroups/b769bf33-9730-490/providers/Microsoft.Fabric.Admin/fabricLocations/dab288dd/storageSubSystems/a4f74405-a2a5-48/storagePools/0b23bdd9-6f";
22856
Requests[4418].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22857
Requests[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";
22860
Requests[4419].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22861
Requests[4419].
Request
.Path = "/subscriptions/402f435f-2498-/resourceGroups/2d935771-9ffb-49d/providers/Microsoft.Logic/workflows/584b588b-afd/runs/0913653/actions/f51d5181-b";
22864
Requests[4420].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22865
Requests[4420].
Request
.Path = "/subscriptions/59d4c9fd-19a1-/resourceGroups/b548b702-8a20-45e/providers/Microsoft.Logic/workflows/6c08758d-87d/runs/3ab00c8/operations/ee0edd86-69";
22868
Requests[4421].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22869
Requests[4421].
Request
.Path = "/subscriptions/c1705c90-14d9-/resourceGroups/498269e8-ce9e-49c/providers/Microsoft.Logic/workflows/4cd8ea1e-928/triggers/7ae4f9d8-27/histories/dbed6ea2-75";
22872
Requests[4422].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
22873
Requests[4422].
Request
.Path = "/subscriptions/1a064f63-4078-/resourceGroups/912e8cc4-731e-4aa/providers/Microsoft.MachineLearningExperimentation/accounts/7f8efee5-f3/workspaces/8654a7f9-5ba5/projects/ecd615ae-0c";
22876
Requests[4423].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22877
Requests[4423].
Request
.Path = "/subscriptions/718fba67-c745-/resourceGroups/59f585d0-7a8f-47c/providers/Microsoft.MachineLearningExperimentation/accounts/8250ec98-2e/workspaces/4423d1ad-2c90/projects/35a3c507-2c";
22880
Requests[4424].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22881
Requests[4424].
Request
.Path = "/subscriptions/659585a9-6fb8-/resourceGroups/fc96fefa-d043-4e1/providers/Microsoft.MachineLearningExperimentation/accounts/aa31afed-a1/workspaces/accbbd4c-7a11/projects/1f1c1331-98";
22884
Requests[4425].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22885
Requests[4425].
Request
.Path = "/subscriptions/3380cc00-f610-/resourceGroups/f0bb00ca-b633-4ab/providers/Microsoft.MachineLearningExperimentation/accounts/d2fa309e-e3/workspaces/8f252a74-a972/projects/4ede368b-5a";
22888
Requests[4426].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22889
Requests[4426].
Request
.Path = "/subscriptions/df128fac-11c7-/resourceGroups/e39f5749-b863-4e3/providers/Microsoft.Media/mediaservices/c00cf84f-80/liveEvents/55e1cbe9-312c/liveOutputs/fac36753-c599-";
22892
Requests[4427].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22893
Requests[4427].
Request
.Path = "/subscriptions/c0fb3528-f034-/resourceGroups/e4c90a12-7031-421/providers/Microsoft.Media/mediaservices/61f703c5-50/liveEvents/5fac18b9-d0f0/liveOutputs/b004db3c-54fc-";
22896
Requests[4428].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22897
Requests[4428].
Request
.Path = "/subscriptions/edb03389-b39b-/resourceGroups/554b845e-5a2f-42c/providers/Microsoft.Media/mediaservices/e3192b0c-6f/liveEvents/2e6a7962-5a86/liveOutputs/78fd2215-85b9-";
22900
Requests[4429].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22901
Requests[4429].
Request
.Path = "/subscriptions/f56ee134-792d-/resourceGroups/a303eb81-634d-46c/providers/Microsoft.Media/mediaServices/bcd3acba-2d/transforms/48b6a1db-a45a/jobs/33122dc";
22904
Requests[4430].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22905
Requests[4430].
Request
.Path = "/subscriptions/9f173b10-b8e2-/resourceGroups/a8ea9937-0745-43f/providers/Microsoft.Media/mediaServices/a404b8c4-df/transforms/74da470f-2783/jobs/4b90312";
22908
Requests[4431].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22909
Requests[4431].
Request
.Path = "/subscriptions/1e013798-1175-/resourceGroups/aad44fd7-ce3e-464/providers/Microsoft.Media/mediaServices/2eed4e65-9a/transforms/def06628-948f/jobs/466c6b1";
22912
Requests[4432].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22913
Requests[4432].
Request
.Path = "/subscriptions/ba160b96-6fe3-/resourceGroups/c639fb4a-ecda-403/providers/Microsoft.Migrate/projects/b3ed474e-0b/groups/4d77f8cb-/assessments/f5502f06-4723-";
22916
Requests[4433].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22917
Requests[4433].
Request
.Path = "/subscriptions/08e5d772-ecc3-/resourceGroups/b3155527-2859-4cf/providers/Microsoft.Migrate/projects/99791d88-f3/groups/39526bc2-/assessments/6058bee5-10a6-";
22920
Requests[4434].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22921
Requests[4434].
Request
.Path = "/subscriptions/5dbc883f-c99a-/resourceGroups/61c70c5a-2995-499/providers/Microsoft.Migrate/projects/855aef6c-6b/groups/36d72b82-/assessments/572893f1-abea-";
22924
Requests[4435].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22925
Requests[4435].
Request
.Path = "/subscriptions/2755759a-5c65-/resourceGroups/de27c987-02e0-4e9/providers/Microsoft.Network/expressRouteCircuits/a27b900f-0c/peerings/0db4755b-44/arpTables/cb50151c-0";
22928
Requests[4436].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22929
Requests[4436].
Request
.Path = "/subscriptions/725822f4-8941-/resourceGroups/8a7f0bff-42f2-47a/providers/Microsoft.Network/expressRouteCircuits/7d57f261-8b/peerings/c8f0c66c-64/connections/21fec69c-90c5-";
22932
Requests[4437].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22933
Requests[4437].
Request
.Path = "/subscriptions/cf0f2d8d-fee3-/resourceGroups/eb7d39db-61f3-49d/providers/Microsoft.Network/expressRouteCircuits/fa46a525-72/peerings/508b439b-a4/connections/5f754b5e-69b8-";
22936
Requests[4438].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22937
Requests[4438].
Request
.Path = "/subscriptions/577f43fc-2d2b-/resourceGroups/bddbab9b-f49f-4a4/providers/Microsoft.Network/expressRouteCircuits/76f4a05b-52/peerings/2db1285e-54/connections/9239eeb1-1fc6-";
22940
Requests[4439].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22941
Requests[4439].
Request
.Path = "/subscriptions/b45bce2c-1fec-/resourceGroups/6dce34d5-1e67-418/providers/Microsoft.Network/expressRouteCircuits/48423cd1-bc/peerings/980a78fd-ef/routeTables/586636d7-2";
22944
Requests[4440].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22945
Requests[4440].
Request
.Path = "/subscriptions/c41d4d65-2711-/resourceGroups/8c532d55-8165-463/providers/Microsoft.Network/expressRouteCircuits/fc0b9d98-09/peerings/f4f271b0-c9/routeTablesSummary/a0ba4238-a";
22948
Requests[4441].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22949
Requests[4441].
Request
.Path = "/subscriptions/10072391-ae13-/resourceGroups/47fa6ed6-b47a-445/providers/Microsoft.Network/expressRouteCrossConnections/f32591b1-bc38-4f2b-/peerings/45f19d6d-02/arpTables/cae3d142-0";
22952
Requests[4442].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22953
Requests[4442].
Request
.Path = "/subscriptions/4f27245e-5834-/resourceGroups/ec73d946-1d3e-463/providers/Microsoft.Network/expressRouteCrossConnections/8ba922a9-68b4-4c1e-/peerings/9f358cb1-a7/routeTables/c9b4c0f2-5";
22956
Requests[4443].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22957
Requests[4443].
Request
.Path = "/subscriptions/e4dcd2a6-9a0e-/resourceGroups/e5cb2b97-7e19-498/providers/Microsoft.Network/expressRouteCrossConnections/dd7924e8-9dd8-4950-/peerings/81789a51-d1/routeTablesSummary/bd05ec03-f";
22960
Requests[4444].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22961
Requests[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";
22964
Requests[4445].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
22965
Requests[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";
22968
Requests[4446].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22969
Requests[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";
22972
Requests[4447].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22973
Requests[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";
22976
Requests[4448].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22977
Requests[4448].
Request
.Path = "/Subscriptions/cdd9e450-4f8f-/resourceGroups/c4281b30-0855-4e0/providers/Microsoft.RecoveryServices/vaults/ab22a6cd-7f8/replicationFabrics/81208aef-7/replicationLogicalNetworks/995ebd45-6700-4cd4";
22980
Requests[4449].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22981
Requests[4449].
Request
.Path = "/Subscriptions/06897a2f-8da8-/resourceGroups/360e2d8f-0abe-413/providers/Microsoft.RecoveryServices/vaults/de5c2c26-404/replicationFabrics/adb14c00-2/replicationNetworks/d592b102-b1";
22984
Requests[4450].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22985
Requests[4450].
Request
.Path = "/Subscriptions/1bea81fd-46a2-/resourceGroups/d2c8708f-144a-43a/providers/Microsoft.RecoveryServices/vaults/e3a41592-94e/replicationFabrics/cba0e37b-1/replicationProtectionContainers/ffb00a70-b986-4735-90ef";
22988
Requests[4451].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
22989
Requests[4451].
Request
.Path = "/Subscriptions/d923dad7-53fc-/resourceGroups/82b4eec5-0ac8-4e8/providers/Microsoft.RecoveryServices/vaults/6f1a8e49-6c1/replicationFabrics/be193d53-9/replicationProtectionContainers/1b5155fb-3935-42e7-9901";
22992
Requests[4452].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
22993
Requests[4452].
Request
.Path = "/Subscriptions/4c969d3f-0271-/resourceGroups/bd49011c-5c22-470/providers/Microsoft.RecoveryServices/vaults/81eb09be-bae/replicationFabrics/e4f77a51-3/replicationRecoveryServicesProviders/9a4eb051-cec";
22996
Requests[4453].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
22997
Requests[4453].
Request
.Path = "/Subscriptions/53012660-8d69-/resourceGroups/189eb8c9-5f82-41d/providers/Microsoft.RecoveryServices/vaults/39754150-b8c/replicationFabrics/069622a4-7/replicationRecoveryServicesProviders/e4492308-e1d";
23000
Requests[4454].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23001
Requests[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";
23004
Requests[4455].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23005
Requests[4455].
Request
.Path = "/Subscriptions/7285a7f9-65f8-/resourceGroups/38765f53-5317-496/providers/Microsoft.RecoveryServices/vaults/df48d950-4f7/replicationFabrics/23eb5ba8-d/replicationvCenters/2c01d786-65";
23008
Requests[4456].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23009
Requests[4456].
Request
.Path = "/Subscriptions/3b55b13c-499f-/resourceGroups/c3e783ea-3448-4b0/providers/Microsoft.RecoveryServices/vaults/318f0100-295/replicationFabrics/88f610d0-6/replicationvCenters/67bd2ecc-66";
23012
Requests[4457].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23013
Requests[4457].
Request
.Path = "/Subscriptions/9e7aec8b-fd5f-/resourceGroups/c88f27bb-e9fe-407/providers/Microsoft.RecoveryServices/vaults/a4f1b8f2-80f/replicationFabrics/f56c93cc-d/replicationvCenters/3d885b4a-24";
23016
Requests[4458].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23017
Requests[4458].
Request
.Path = "/Subscriptions/8f3f220d-faa4-/resourceGroups/39513b82-e7ac-4a2/providers/Microsoft.RecoveryServices/vaults/35b914d7-955/replicationFabrics/a14ac938-0/replicationvCenters/cc36812c-11";
23020
Requests[4459].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23021
Requests[4459].
Request
.Path = "/Subscriptions/858cb863-5245-/resourceGroups/992c7073-10c6-4ed/providers/Microsoft.RecoveryServices/vaults/88f00b9a-/backupFabrics/51fa5349-d/backupProtectionIntent/ad7a7a83-de86-4e";
23024
Requests[4460].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23025
Requests[4460].
Request
.Path = "/Subscriptions/6951d392-6f19-/resourceGroups/ae7128bf-d8fc-4e8/providers/Microsoft.RecoveryServices/vaults/45c57af9-/backupFabrics/6322d600-e/operationResults/ad00d676-c6";
23028
Requests[4461].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23029
Requests[4461].
Request
.Path = "/Subscriptions/2362be26-7c44-/resourceGroups/1b40273d-9f9f-405/providers/Microsoft.RecoveryServices/vaults/c5fd8ebc-/backupFabrics/33ac99fa-5/protectionContainers/a25b0104-fd77";
23032
Requests[4462].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23033
Requests[4462].
Request
.Path = "/Subscriptions/2318d8c1-7746-/resourceGroups/18499df2-4e1e-4c8/providers/Microsoft.RecoveryServices/vaults/2f782516-/backupFabrics/37c77949-2/protectionContainers/e6443de0-9a9e";
23036
Requests[4463].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23037
Requests[4463].
Request
.Path = "/Subscriptions/057606f5-d54c-/resourceGroups/ea7545ed-7b81-4e8/providers/Microsoft.RecoveryServices/vaults/cd6760a1-/backupFabrics/d8e28565-a/protectionContainers/87a422cb-e402";
23040
Requests[4464].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23041
Requests[4464].
Request
.Path = "/Subscriptions/b59531b2-c13e-/resourceGroups/8ad5f788-513a-495/providers/Microsoft.RecoveryServices/vaults/d42a0ab5-/backupJobs/bb7ce57/operationResults/e5fce4ad-9a";
23044
Requests[4465].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23045
Requests[4465].
Request
.Path = "/Subscriptions/d7926ea0-ea5c-/resourceGroups/05b922dc-bab1-411/providers/Microsoft.RecoveryServices/vaults/6e561c6c-/backupPolicies/3ee2f6e2-2/operationResults/867ff175-25";
23048
Requests[4466].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23049
Requests[4466].
Request
.Path = "/Subscriptions/1eece1bc-3568-/resourceGroups/ffd748c0-3ea3-465/providers/Microsoft.RecoveryServices/vaults/51ed241e-/backupPolicies/69dcf757-0/operations/426449bd-4a";
23052
Requests[4467].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23053
Requests[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";
23056
Requests[4468].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23057
Requests[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";
23060
Requests[4469].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23061
Requests[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";
23064
Requests[4470].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23065
Requests[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";
23068
Requests[4471].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23069
Requests[4471].
Request
.Path = "/subscriptions/e80422ab-d73f-/resourceGroups/cc94b3e2-2373-4e9/providers/Microsoft.Relay/namespaces/7636200d-3c6f/wcfRelays/4cb6fe5b-/authorizationRules/a7889d2b-f498-47f0-8e";
23072
Requests[4472].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23073
Requests[4472].
Request
.Path = "/subscriptions/14b85444-4a3c-/resourceGroups/e3a974b3-9d1d-437/providers/Microsoft.Relay/namespaces/0e3a1c58-298b/wcfRelays/0e4a9390-/authorizationRules/9f373eb1-71e6-42a1-bd";
23076
Requests[4473].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23077
Requests[4473].
Request
.Path = "/subscriptions/c95c55de-2518-/resourceGroups/70188c2f-c06c-449/providers/Microsoft.Relay/namespaces/e910c926-e741/wcfRelays/7f089377-/authorizationRules/dd27602d-5481-47d7-95";
23080
Requests[4474].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23081
Requests[4474].
Request
.Path = "/subscriptions/691e7b00-8613-/resourceGroups/99ee2718-fc86-431/providers/Microsoft.Relay/namespaces/758f80c6-f67c/WcfRelays/5f15e9a0-/authorizationRules/d9a4e8ff-5fc4-4bdd-bf";
23084
Requests[4475].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23085
Requests[4475].
Request
.Path = "/subscriptions/9d40a130-998b-/resourceGroups/fbc43114-4f48-412/providers/Microsoft.ServiceBus/namespaces/36128f66-bbf4/disasterRecoveryConfigs/ef6dd/AuthorizationRules/5f591c39-4427-4b4e-89";
23088
Requests[4476].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23089
Requests[4476].
Request
.Path = "/subscriptions/60ffb837-2b46-/resourceGroups/79b2d755-3a84-4bf/providers/Microsoft.ServiceBus/namespaces/f7c19a45-8f5a/eventhubs/94e83d7f-0b1/authorizationRules/9e560758-b77c-4035-b3";
23092
Requests[4477].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23093
Requests[4477].
Request
.Path = "/subscriptions/d338c503-9167-/resourceGroups/3e201cdc-9bb5-49b/providers/Microsoft.ServiceBus/namespaces/225feba2-2292/queues/1549942b-/authorizationRules/2c5d65e1-dbc2-4a57-84";
23096
Requests[4478].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23097
Requests[4478].
Request
.Path = "/subscriptions/3c113b2b-a005-/resourceGroups/4aeeaccb-74cf-49e/providers/Microsoft.ServiceBus/namespaces/36741172-a808/queues/67c96d4e-/authorizationRules/86514621-4f69-430d-97";
23100
Requests[4479].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23101
Requests[4479].
Request
.Path = "/subscriptions/749d31c6-4628-/resourceGroups/47420dd3-d714-48d/providers/Microsoft.ServiceBus/namespaces/e9797fdd-827c/queues/475e01d3-/authorizationRules/ed208ace-5fee-43d1-b3";
23104
Requests[4480].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23105
Requests[4480].
Request
.Path = "/subscriptions/41408cdb-3d2b-/resourceGroups/3e7d049b-6d85-48c/providers/Microsoft.ServiceBus/namespaces/e990282e-63fc/queues/49f42514-/authorizationRules/1eac5786-095b-4bd0-9b";
23108
Requests[4481].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23109
Requests[4481].
Request
.Path = "/subscriptions/40274d98-85bc-/resourceGroups/cc15b62b-d4c8-433/providers/Microsoft.ServiceBus/namespaces/80ffe563-f895/topics/7416f8b7-/authorizationRules/09d754b3-0ab4-41c3-98";
23112
Requests[4482].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23113
Requests[4482].
Request
.Path = "/subscriptions/7279b54c-97bd-/resourceGroups/34b07cc8-ef3d-4ec/providers/Microsoft.ServiceBus/namespaces/11f80720-5ac5/topics/03958773-/authorizationRules/222eae8f-13ef-45ad-90";
23116
Requests[4483].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23117
Requests[4483].
Request
.Path = "/subscriptions/286509fe-8726-/resourceGroups/54405b4d-7dff-4df/providers/Microsoft.ServiceBus/namespaces/6ba95a96-90d0/topics/41563381-/authorizationRules/0c514c0b-990f-44ae-b5";
23120
Requests[4484].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23121
Requests[4484].
Request
.Path = "/subscriptions/2292c893-7ef7-/resourceGroups/3e3b7a11-9ee9-427/providers/Microsoft.ServiceBus/namespaces/e5ade1df-5c42/topics/07630d75-/authorizationRules/d7ae4e81-e828-403b-a4";
23124
Requests[4485].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23125
Requests[4485].
Request
.Path = "/subscriptions/ba8ce476-a8e1-/resourceGroups/7bb9eb81-4b02-442/providers/Microsoft.ServiceBus/namespaces/138f0ffd-ba8f/topics/1f3bd577-/subscriptions/c4d2d094-1af4-44";
23128
Requests[4486].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23129
Requests[4486].
Request
.Path = "/subscriptions/4d7a7799-49c1-/resourceGroups/e7247d9a-900f-4e6/providers/Microsoft.ServiceBus/namespaces/adebda40-9173/topics/2f8e954f-/subscriptions/c3a6d85c-d7ad-4a";
23132
Requests[4487].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23133
Requests[4487].
Request
.Path = "/subscriptions/be3969a8-dc8c-/resourceGroups/23694471-4f32-4b8/providers/Microsoft.ServiceBus/namespaces/41275aae-29ab/topics/644228ed-/subscriptions/edab250e-d193-46";
23136
Requests[4488].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23137
Requests[4488].
Request
.Path = "/subscriptions/c9d62b93-78b9-/resourceGroups/928d366d-cb1a-4c0/providers/Microsoft.ServiceFabric/clusters/37805ab0-7e/applications/5d7a9b09-56ce-4/services/bee45205-6f";
23140
Requests[4489].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23141
Requests[4489].
Request
.Path = "/subscriptions/5d82b7f2-be03-/resourceGroups/83f2d26a-71a4-42f/providers/Microsoft.ServiceFabric/clusters/b9e0c82c-39/applications/c300c11f-e79a-4/services/f5d48cdf-a0";
23144
Requests[4490].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23145
Requests[4490].
Request
.Path = "/subscriptions/8bf33e4f-3674-/resourceGroups/65df01aa-57a4-4da/providers/Microsoft.ServiceFabric/clusters/bed2fde6-30/applications/cb8ee2b0-9b26-4/services/4417eded-ef";
23148
Requests[4491].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23149
Requests[4491].
Request
.Path = "/subscriptions/ed0b04d5-f1ae-/resourceGroups/492b9b89-74ec-420/providers/Microsoft.ServiceFabric/clusters/2ff674df-95/applications/ed248691-24a8-4/services/3518bf5c-8f";
23152
Requests[4492].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23153
Requests[4492].
Request
.Path = "/subscriptions/b65e91d1-c69d-/resourceGroups/0a5c715a-cbe4-4f3/providers/Microsoft.ServiceFabric/clusters/c40d08ee-a8/applicationTypes/d31ee81d-e8b0-4c98-/versions/56705f4";
23156
Requests[4493].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23157
Requests[4493].
Request
.Path = "/subscriptions/cc18eb3e-4aaf-/resourceGroups/f2739850-355b-4d2/providers/Microsoft.ServiceFabric/clusters/2b642b9e-ab/applicationTypes/9be418c1-6103-4049-/versions/e686d77";
23160
Requests[4494].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23161
Requests[4494].
Request
.Path = "/subscriptions/a97357bb-3d83-/resourceGroups/e8dcc9af-6501-443/providers/Microsoft.ServiceFabric/clusters/84618f76-15/applicationTypes/e77abe13-0447-47e9-/versions/ebac2cb";
23164
Requests[4495].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23165
Requests[4495].
Request
.Path = "/subscriptions/22429bd9-ef1d-/resourceGroups/13629c96-ad68-44d/providers/Microsoft.Sql/servers/dcb528c3-1/databases/cdf2b4a9-e07/advisors/87cdc2e3-74";
23168
Requests[4496].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23169
Requests[4496].
Request
.Path = "/subscriptions/5653ae2b-8f6f-/resourceGroups/bccea365-d82d-4d8/providers/Microsoft.Sql/servers/e87e951e-1/databases/35452763-24a/advisors/fdf89806-d9";
23172
Requests[4497].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23173
Requests[4497].
Request
.Path = "/subscriptions/3f53d93e-5130-/resourceGroups/1cc5cbfb-b6c6-4ae/providers/Microsoft.Sql/servers/e110f26d-7/databases/f76d6f57-469/advisors/9a4fef69-f8";
23176
Requests[4498].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23177
Requests[4498].
Request
.Path = "/subscriptions/fd1b8609-5f7d-/resourceGroups/d04b3e7f-ff6e-4c5/providers/Microsoft.Sql/servers/0bd40985-4/databases/3feaa4e1-3d3/auditingPolicies/c89abdc8-5cc9-4529-a585";
23180
Requests[4499].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23181
Requests[4499].
Request
.Path = "/subscriptions/b0a01f5f-0c70-/resourceGroups/1bf22e71-6788-403/providers/Microsoft.Sql/servers/6ca633aa-9/databases/3c8cbcf8-463/auditingPolicies/8124d57e-2c60-43d3-90c5";
23184
Requests[4500].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23185
Requests[4500].
Request
.Path = "/subscriptions/fb29fdf0-f7d8-/resourceGroups/2ec92452-92c3-4a0/providers/Microsoft.Sql/servers/a7813ec8-7/databases/be23f818-d57/auditingSettings/6bc25ec6-38fe-457d-9af";
23188
Requests[4501].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23189
Requests[4501].
Request
.Path = "/subscriptions/81b672e5-d4da-/resourceGroups/7b43f0ac-23fb-46c/providers/Microsoft.Sql/servers/c08383a9-6/databases/a291c386-793/auditingSettings/624e1fcc-23c8-40d7-ae9";
23192
Requests[4502].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23193
Requests[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";
23196
Requests[4503].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23197
Requests[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";
23200
Requests[4504].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23201
Requests[4504].
Request
.Path = "/subscriptions/9c61262a-e46d-/resourceGroups/f9c36fbf-1791-403/providers/Microsoft.Sql/servers/7851ae1d-b/databases/5c2e0556-1b3/backupShortTermRetentionPolicies/13ba7ed1-9";
23204
Requests[4505].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23205
Requests[4505].
Request
.Path = "/subscriptions/88776d41-d196-/resourceGroups/431fe17b-b512-49c/providers/Microsoft.Sql/servers/7bff09b0-c/databases/b7f4ccbb-696/backupShortTermRetentionPolicies/4be324e4-e";
23208
Requests[4506].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23209
Requests[4506].
Request
.Path = "/subscriptions/2c9d04eb-edd0-/resourceGroups/7e9b9090-c706-420/providers/Microsoft.Sql/servers/7b6de07a-1/databases/26af1f3c-f01/backupShortTermRetentionPolicies/195e1218-6";
23212
Requests[4507].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23213
Requests[4507].
Request
.Path = "/subscriptions/49fc5f89-8998-/resourceGroups/5e7216a8-45f4-43e/providers/Microsoft.Sql/servers/ec9a3a69-6/databases/3fb1655b-01e/connectionPolicies/f277b1ad-8417-49e0-8";
23216
Requests[4508].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23217
Requests[4508].
Request
.Path = "/subscriptions/ad036033-c32e-/resourceGroups/8b14a549-ea4a-44d/providers/Microsoft.Sql/servers/54397e5e-d/databases/0fcd8511-8db/connectionPolicies/a97b9f85-327b-45d2-9";
23220
Requests[4509].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23221
Requests[4509].
Request
.Path = "/subscriptions/01e219d7-7ba3-/resourceGroups/586289ad-7a28-41f/providers/Microsoft.Sql/servers/8a322a70-c/databases/d7621faa-1b8/dataMaskingPolicies/36b63ef3-c40c-4c68-97";
23224
Requests[4510].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23225
Requests[4510].
Request
.Path = "/subscriptions/be670cb0-f40c-/resourceGroups/d73d5631-9bac-423/providers/Microsoft.Sql/servers/fa93ebaa-c/databases/845e3ca0-e70/dataMaskingPolicies/07c8925c-3215-4858-82";
23228
Requests[4511].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23229
Requests[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";
23232
Requests[4512].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23233
Requests[4512].
Request
.Path = "/subscriptions/c74d7c69-9aaa-/resourceGroups/56cacb96-f951-4d3/providers/Microsoft.Sql/servers/c8806a7d-8/databases/064c89e2-65c/extensions/7bc53efd-f90d";
23236
Requests[4513].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23237
Requests[4513].
Request
.Path = "/subscriptions/2cbbef57-0474-/resourceGroups/19dd9497-1da0-4dc/providers/Microsoft.Sql/servers/a8c4cfc6-e/databases/9b60d6e6-b3d/geoBackupPolicies/9f9ec187-4dc6-48e8-";
23240
Requests[4514].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23241
Requests[4514].
Request
.Path = "/subscriptions/99ad9b35-154b-/resourceGroups/5682f149-f5d5-482/providers/Microsoft.Sql/servers/b537b357-e/databases/faee1d23-1ac/geoBackupPolicies/e1bee0fe-f1c5-40e1-";
23244
Requests[4515].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23245
Requests[4515].
Request
.Path = "/subscriptions/4dedea09-4f27-/resourceGroups/aaee8bf2-fa1f-43e/providers/Microsoft.Sql/servers/2c763e91-4/databases/7df93deb-fd9/replicationLinks/7cc377";
23248
Requests[4516].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23249
Requests[4516].
Request
.Path = "/subscriptions/f2b6a1a9-81cb-/resourceGroups/2121e4c3-fd84-45c/providers/Microsoft.Sql/servers/870672d2-e/databases/3602174a-363/replicationLinks/098b45";
23252
Requests[4517].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23253
Requests[4517].
Request
.Path = "/subscriptions/1308755e-0c21-/resourceGroups/f89597f3-f535-44e/providers/Microsoft.Sql/servers/7b91a1b9-2/databases/516f5853-22f/restorePoints/f42ea6dc-2361-4f";
23256
Requests[4518].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23257
Requests[4518].
Request
.Path = "/subscriptions/39b49b16-0d55-/resourceGroups/f66d2eec-0c3a-4c6/providers/Microsoft.Sql/servers/4cfd0ea0-0/databases/e3628eac-877/restorePoints/0c46238a-339b-43";
23260
Requests[4519].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23261
Requests[4519].
Request
.Path = "/subscriptions/51e4847d-0403-/resourceGroups/9f16b6b6-9b72-4ac/providers/Microsoft.Sql/servers/824c39d4-8/databases/9fc51aa9-4ce/securityAlertPolicies/c7920286-6399-4494-abf1";
23264
Requests[4520].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23265
Requests[4520].
Request
.Path = "/subscriptions/54fc9a41-7b78-/resourceGroups/727093dc-cc6c-4a4/providers/Microsoft.Sql/servers/6f90a8f5-a/databases/c6e56975-243/securityAlertPolicies/dfd51533-bb6b-4b61-b2ce";
23268
Requests[4521].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23269
Requests[4521].
Request
.Path = "/subscriptions/1167c9e6-20ba-/resourceGroups/b0d8d6e7-9fd5-443/providers/Microsoft.Sql/servers/baefe578-d/databases/6942b82c-9fd/serviceTierAdvisors/57578aff-ed17-441d-af3";
23272
Requests[4522].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23273
Requests[4522].
Request
.Path = "/subscriptions/dd1d6216-cceb-/resourceGroups/1552b142-b2aa-400/providers/Microsoft.Sql/servers/0c5fa366-b/databases/d4291900-390/syncGroups/74f83a44-37e0";
23276
Requests[4523].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23277
Requests[4523].
Request
.Path = "/subscriptions/dcb88a58-fa1a-/resourceGroups/8e434d35-27ed-416/providers/Microsoft.Sql/servers/d956a391-e/databases/0bbc995b-d46/syncGroups/4e309e41-8c64";
23280
Requests[4524].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23281
Requests[4524].
Request
.Path = "/subscriptions/fa75bdbd-84a4-/resourceGroups/bcb45b89-b296-444/providers/Microsoft.Sql/servers/25da84cb-a/databases/2759d491-827/syncGroups/b47f1421-0393";
23284
Requests[4525].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23285
Requests[4525].
Request
.Path = "/subscriptions/046f9886-55b3-/resourceGroups/ecd3d628-a690-411/providers/Microsoft.Sql/servers/fd529180-3/databases/c3d44f9b-6b8/syncGroups/0c6438bb-8fb9";
23288
Requests[4526].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23289
Requests[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";
23292
Requests[4527].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23293
Requests[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";
23296
Requests[4528].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23297
Requests[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";
23300
Requests[4529].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23301
Requests[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";
23304
Requests[4530].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23305
Requests[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";
23308
Requests[4531].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23309
Requests[4531].
Request
.Path = "/subscriptions/777139d3-7d35-/resourceGroups/790983e3-b9f9-437/providers/Microsoft.Sql/servers/a0c5af0e-9/elasticPools/27114879-8c3d-4/databases/f945eb02-42d";
23312
Requests[4532].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23313
Requests[4532].
Request
.Path = "/subscriptions/f6a8ecce-3c2a-/resourceGroups/ea088ef9-07b2-405/providers/Microsoft.Sql/servers/5f625b94-5/jobAgents/38d11e14-1e4/credentials/c8a4b146-1e53-";
23316
Requests[4533].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23317
Requests[4533].
Request
.Path = "/subscriptions/82317178-bf09-/resourceGroups/be0fe157-1ab4-4bf/providers/Microsoft.Sql/servers/5b156814-9/jobAgents/325ad53f-b17/credentials/075f01dc-0cf2-";
23320
Requests[4534].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23321
Requests[4534].
Request
.Path = "/subscriptions/9dbe350d-66d9-/resourceGroups/f33f0a87-db9d-4b6/providers/Microsoft.Sql/servers/ee3c3094-7/jobAgents/0812ebc3-4d3/credentials/530fa450-9cae-";
23324
Requests[4535].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23325
Requests[4535].
Request
.Path = "/subscriptions/f1fc7b10-9b73-/resourceGroups/4c7fc6ed-e7f5-4eb/providers/Microsoft.Sql/servers/2454cd9a-6/jobAgents/08862a00-55e/jobs/eaab2d0";
23328
Requests[4536].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23329
Requests[4536].
Request
.Path = "/subscriptions/f5e0ef43-82ce-/resourceGroups/7ebc2865-7808-4e3/providers/Microsoft.Sql/servers/557634c6-a/jobAgents/c8d0caa3-ef4/jobs/60aa1c8";
23332
Requests[4537].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23333
Requests[4537].
Request
.Path = "/subscriptions/03b89e4d-43f3-/resourceGroups/c7f2be20-2929-40f/providers/Microsoft.Sql/servers/73bb82fa-e/jobAgents/96ba982f-0df/jobs/cc0ab9a";
23336
Requests[4538].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23337
Requests[4538].
Request
.Path = "/subscriptions/eab6d186-ee37-/resourceGroups/13bb68af-72da-474/providers/Microsoft.Sql/servers/8520a5dd-a/jobAgents/1e7c51e8-788/targetGroups/c90d4c5c-c5a3-4";
23340
Requests[4539].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23341
Requests[4539].
Request
.Path = "/subscriptions/5b5c0bc1-7f73-/resourceGroups/5516e4ae-f047-46e/providers/Microsoft.Sql/servers/2e1c142d-3/jobAgents/8193eff4-d27/targetGroups/626fde63-3295-4";
23344
Requests[4540].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23345
Requests[4540].
Request
.Path = "/subscriptions/fdb6b865-4477-/resourceGroups/a55b014b-544a-4ac/providers/Microsoft.Sql/servers/1dd448ca-a/jobAgents/bf669473-ee0/targetGroups/c3bf3231-83b2-4";
23348
Requests[4541].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23349
Requests[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";
23352
Requests[4542].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23353
Requests[4542].
Request
.Path = "/subscriptions/e9b0098c-e553-/resourceGroups/aae93ab6-80f4-45a/providers/Microsoft.StorSimple/managers/9ed8a879-01/devices/c452ae90-d/backupPolicies/8806fa21-0eee-47";
23356
Requests[4543].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23357
Requests[4543].
Request
.Path = "/subscriptions/134af5d9-03d2-/resourceGroups/6832e6a7-deb0-4e4/providers/Microsoft.StorSimple/managers/9fc73d39-e0/devices/fc568390-c/backupPolicies/f49606ad-594e-45";
23360
Requests[4544].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23361
Requests[4544].
Request
.Path = "/subscriptions/bb9b3ea0-ef3c-/resourceGroups/146e7a23-dfaf-44a/providers/Microsoft.StorSimple/managers/b788d429-08/devices/357bb1fc-3/backupPolicies/f1ba325e-f118-4e";
23364
Requests[4545].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23365
Requests[4545].
Request
.Path = "/subscriptions/1a53ca10-a3e9-/resourceGroups/fa6c5b18-bc34-421/providers/Microsoft.StorSimple/managers/e1bd4232-1e/devices/71125bd0-d/backups/e1d37bf4-a";
23368
Requests[4546].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23369
Requests[4546].
Request
.Path = "/subscriptions/fc30bd36-b871-/resourceGroups/e3009f1e-aa7d-4f0/providers/Microsoft.StorSimple/managers/50859317-43/devices/771082e5-f/jobs/c43b6aa";
23372
Requests[4547].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23373
Requests[4547].
Request
.Path = "/subscriptions/dd9b4fb1-1acb-/resourceGroups/7e0e75d1-c4de-466/providers/Microsoft.StorSimple/managers/1fd71c47-48/devices/70595bf1-c/volumeContainers/3ca52d5d-8218-459f-";
23376
Requests[4548].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23377
Requests[4548].
Request
.Path = "/subscriptions/bf0eef84-787d-/resourceGroups/86949a1f-5fe8-4b9/providers/Microsoft.StorSimple/managers/aad30150-f1/devices/1816f18b-8/volumeContainers/7841a8cf-dbcc-46e9-";
23380
Requests[4549].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23381
Requests[4549].
Request
.Path = "/subscriptions/2454e852-ad9f-/resourceGroups/61e37f65-da6d-4ab/providers/Microsoft.StorSimple/managers/8da5b4b4-03/devices/dc25aece-c/volumeContainers/3b8a133e-97eb-48a5-";
23384
Requests[4550].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23385
Requests[4550].
Request
.Path = "/subscriptions/7c4c311e-255c-/resourcegroups/27c547c5-f201-494/providers/Microsoft.Update.Admin/updateLocations/a160f3b4-d0d9-/updates/db5b0d27-9/updateRuns/6b5f323";
23388
Requests[4551].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23389
Requests[4551].
Request
.Path = "/subscriptions/8ccc44b2-7bbd-/resourceGroups/18599c76-ae04-4aa/providers/Microsoft.Web/serverfarms/9c34c/hybridConnectionNamespaces/3f5ee84c-981c/relays/65a5cee8-";
23392
Requests[4552].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23393
Requests[4552].
Request
.Path = "/subscriptions/16b81bed-2a95-/resourceGroups/99dc0c0a-e2bb-447/providers/Microsoft.Web/serverfarms/1a3a1/hybridConnectionNamespaces/63a3458f-256c/relays/b103f3eb-";
23396
Requests[4553].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23397
Requests[4553].
Request
.Path = "/subscriptions/02a28c4e-afe6-/resourceGroups/0c1722a5-2ff6-41f/providers/Microsoft.Web/serverfarms/91de0/virtualNetworkConnections/bb0d60b8/gateways/fd801e1a-97";
23400
Requests[4554].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23401
Requests[4554].
Request
.Path = "/subscriptions/ab68a19c-a12d-/resourceGroups/8329e33a-1243-4d9/providers/Microsoft.Web/serverfarms/c4dae/virtualNetworkConnections/6a03d0f2/gateways/53428e36-bc";
23404
Requests[4555].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23405
Requests[4555].
Request
.Path = "/subscriptions/bc1ec11d-4ebb-/resourceGroups/281e510e-d4c3-471/providers/Microsoft.Web/serverfarms/05ade/virtualNetworkConnections/d0311fae/routes/b09cda9f-";
23408
Requests[4556].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23409
Requests[4556].
Request
.Path = "/subscriptions/0eca9e28-5da3-/resourceGroups/eacbecb1-598f-427/providers/Microsoft.Web/serverfarms/4cdc9/virtualNetworkConnections/66dd524d/routes/7490fcd3-";
23412
Requests[4557].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23413
Requests[4557].
Request
.Path = "/subscriptions/1f101410-0c7b-/resourceGroups/22d110c7-4371-47e/providers/Microsoft.Web/serverfarms/2c0e6/virtualNetworkConnections/127d0852/routes/18f0f4c1-";
23416
Requests[4558].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23417
Requests[4558].
Request
.Path = "/subscriptions/e66d3e7f-4e68-/resourceGroups/656a1d4a-84e0-41c/providers/Microsoft.Web/serverfarms/a9df7/virtualNetworkConnections/22fdfce8/routes/a3d8dcce-";
23420
Requests[4559].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23421
Requests[4559].
Request
.Path = "/subscriptions/4bf9662f-1ae2-/resourceGroups/b1e9c924-31f2-459/providers/Microsoft.Web/sites/2f7cc/hybridConnectionNamespaces/e043d137-ff2a/relays/203f0589-";
23424
Requests[4560].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23425
Requests[4560].
Request
.Path = "/subscriptions/71572216-2a7e-/resourceGroups/28e0c593-d566-405/providers/Microsoft.Web/sites/ca1c0/hybridConnectionNamespaces/96b5b856-f94f/relays/a36bcd34-";
23428
Requests[4561].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23429
Requests[4561].
Request
.Path = "/subscriptions/065959b4-00aa-/resourceGroups/9184f02a-4537-4f0/providers/Microsoft.Web/sites/41c69/hybridConnectionNamespaces/29f1b5ac-d229/relays/a4ee2098-";
23432
Requests[4562].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23433
Requests[4562].
Request
.Path = "/subscriptions/e9288c67-a224-/resourceGroups/769f7a44-c71e-4ca/providers/Microsoft.Web/sites/967e7/hybridConnectionNamespaces/a40df96a-af0b/relays/a09da9e0-";
23436
Requests[4563].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23437
Requests[4563].
Request
.Path = "/subscriptions/16577e4a-8f68-/resourceGroups/daf73c0f-7e05-400/providers/Microsoft.Web/sites/0c601/instances/4c592637-8/deployments/3efa9";
23440
Requests[4564].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23441
Requests[4564].
Request
.Path = "/subscriptions/a4a2f174-199b-/resourceGroups/8316df1c-8ab2-47e/providers/Microsoft.Web/sites/22c37/instances/13073901-1/deployments/77cab";
23444
Requests[4565].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23445
Requests[4565].
Request
.Path = "/subscriptions/9aeff4d7-8b80-/resourceGroups/41dabbc3-26d6-469/providers/Microsoft.Web/sites/108f5/instances/2daac5cf-8/deployments/47b48";
23448
Requests[4566].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23449
Requests[4566].
Request
.Path = "/subscriptions/86167d36-a41d-/resourceGroups/9d07b603-59ea-45a/providers/Microsoft.Web/sites/65ddd/instances/e4d7b9cc-e/processes/773de4a5-";
23452
Requests[4567].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23453
Requests[4567].
Request
.Path = "/subscriptions/5bca078b-ec4a-/resourceGroups/10526fea-45fe-4bc/providers/Microsoft.Web/sites/e295b/instances/fe47870c-f/processes/cdb2697a-";
23456
Requests[4568].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23457
Requests[4568].
Request
.Path = "/subscriptions/683d8a88-4531-/resourceGroups/9d1ac3dc-f3aa-4c0/providers/Microsoft.Web/sites/14408/processes/3d01fa6f-/modules/03254486-75";
23460
Requests[4569].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23461
Requests[4569].
Request
.Path = "/subscriptions/dcb1def1-77a4-/resourceGroups/4e58ffb3-59da-4c7/providers/Microsoft.Web/sites/e3e4f/processes/ce118d36-/threads/853c4503";
23464
Requests[4570].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23465
Requests[4570].
Request
.Path = "/subscriptions/4bd13842-f3f1-/resourceGroups/f830c583-26ca-486/providers/Microsoft.Web/sites/2e4f7/slots/ddcbc/backups/e695d36e";
23468
Requests[4571].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23469
Requests[4571].
Request
.Path = "/subscriptions/e4b04022-13cf-/resourceGroups/56bb82ba-050e-414/providers/Microsoft.Web/sites/9ff49/slots/91118/backups/d8bf1ab9";
23472
Requests[4572].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23473
Requests[4572].
Request
.Path = "/subscriptions/7290dbbe-a447-/resourceGroups/ecfe6357-cc78-43f/providers/Microsoft.Web/sites/a5075/slots/35a61/continuouswebjobs/77820268-d";
23476
Requests[4573].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23477
Requests[4573].
Request
.Path = "/subscriptions/23fe0af1-bffa-/resourceGroups/76027531-555f-425/providers/Microsoft.Web/sites/ccd21/slots/1954e/continuouswebjobs/2369abb2-8";
23480
Requests[4574].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23481
Requests[4574].
Request
.Path = "/subscriptions/2aa18cad-5f1c-/resourceGroups/6bcce4dd-dc29-497/providers/Microsoft.Web/sites/6da7a/slots/581ae/deployments/0935f";
23484
Requests[4575].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23485
Requests[4575].
Request
.Path = "/subscriptions/f2c9e740-cbd0-/resourceGroups/677a1275-4e52-4f8/providers/Microsoft.Web/sites/f3e76/slots/ab59f/deployments/d6531";
23488
Requests[4576].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23489
Requests[4576].
Request
.Path = "/subscriptions/f21c1bbe-c4d1-/resourceGroups/ccceb7f3-ccb0-4bc/providers/Microsoft.Web/sites/a6000/slots/918a6/deployments/fe983";
23492
Requests[4577].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23493
Requests[4577].
Request
.Path = "/subscriptions/c8952bf5-94e9-/resourceGroups/e670e7aa-0b8a-40b/providers/Microsoft.Web/sites/b6679/slots/0926e/domainOwnershipIdentifiers/60455006-66f9-43e8-b085-43b2e";
23496
Requests[4578].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23497
Requests[4578].
Request
.Path = "/subscriptions/5c88e16d-2f5e-/resourceGroups/18a0294f-2acb-4e9/providers/Microsoft.Web/sites/38fc2/slots/dd532/domainOwnershipIdentifiers/ba49226f-fc1f-4f7f-bb06-1eb4c";
23500
Requests[4579].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23501
Requests[4579].
Request
.Path = "/subscriptions/1e5ba95b-1bc7-/resourceGroups/e4b9f1ce-0002-416/providers/Microsoft.Web/sites/91378/slots/3f42d/domainOwnershipIdentifiers/87b12425-9789-4517-bdfd-59057";
23504
Requests[4580].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23505
Requests[4580].
Request
.Path = "/subscriptions/6148a252-3427-/resourceGroups/5cb2651a-3565-4f9/providers/Microsoft.Web/sites/261f9/slots/355de/domainOwnershipIdentifiers/b4b14643-0cb0-49f9-a8d3-7c3e3";
23508
Requests[4581].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23509
Requests[4581].
Request
.Path = "/subscriptions/64b127a8-316e-/resourceGroups/bc4c8305-1058-4c8/providers/Microsoft.Web/sites/fd8a7/slots/55c52/functions/68884b4b-756";
23512
Requests[4582].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23513
Requests[4582].
Request
.Path = "/subscriptions/79f8d6f3-f5c1-/resourceGroups/31dea9d0-6140-47e/providers/Microsoft.Web/sites/998a6/slots/1cc4d/functions/32ee21c8-b1a";
23516
Requests[4583].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23517
Requests[4583].
Request
.Path = "/subscriptions/247c6684-df17-/resourceGroups/ce9f4bd7-4c49-441/providers/Microsoft.Web/sites/93437/slots/3d932/functions/8636d20c-380";
23520
Requests[4584].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23521
Requests[4584].
Request
.Path = "/subscriptions/10ce481c-9799-/resourceGroups/f1e74413-3fb8-4a9/providers/Microsoft.Web/sites/2e87a/slots/aa8d4/hostNameBindings/3a60f5d5";
23524
Requests[4585].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23525
Requests[4585].
Request
.Path = "/subscriptions/fbf9a11b-a558-/resourceGroups/c9cb330a-9e3b-461/providers/Microsoft.Web/sites/d29e1/slots/6e312/hostNameBindings/2a62bfc9";
23528
Requests[4586].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23529
Requests[4586].
Request
.Path = "/subscriptions/e77eed08-7020-/resourceGroups/f99f5322-693b-43e/providers/Microsoft.Web/sites/1d139/slots/f0886/hostNameBindings/4187e3c1";
23532
Requests[4587].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23533
Requests[4587].
Request
.Path = "/subscriptions/ece2b0d7-d41a-/resourceGroups/f574814d-2c41-4d9/providers/Microsoft.Web/sites/9f697/slots/3dc3f/hybridconnection/ff820818-b";
23536
Requests[4588].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23537
Requests[4588].
Request
.Path = "/subscriptions/a59a0277-70bc-/resourceGroups/7dc8e73b-3595-443/providers/Microsoft.Web/sites/d9f43/slots/36556/hybridconnection/ec707d39-6";
23540
Requests[4589].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23541
Requests[4589].
Request
.Path = "/subscriptions/b2c30c33-5d0d-/resourceGroups/079da6fb-df48-48d/providers/Microsoft.Web/sites/7d66b/slots/5fa7a/hybridconnection/b6ee9be8-d";
23544
Requests[4590].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23545
Requests[4590].
Request
.Path = "/subscriptions/8451bce9-1425-/resourceGroups/f20c9b02-6922-47b/providers/Microsoft.Web/sites/c66fd/slots/e7b99/hybridconnection/e3f49a16-9";
23548
Requests[4591].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23549
Requests[4591].
Request
.Path = "/subscriptions/f1a995f9-6699-/resourceGroups/a87649db-6846-4e4/providers/Microsoft.Web/sites/2446d/slots/5d3d0/networkFeatures/ce2d9";
23552
Requests[4592].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23553
Requests[4592].
Request
.Path = "/subscriptions/cb235d84-8f4f-/resourceGroups/34c322e2-182f-4cf/providers/Microsoft.Web/sites/863ce/slots/d104e/operationresults/28e70d4d-af";
23556
Requests[4593].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23557
Requests[4593].
Request
.Path = "/subscriptions/ed896b9e-0959-/resourceGroups/e3edc4be-3baa-49e/providers/Microsoft.Web/sites/3b1ad/slots/cd84a/premieraddons/740f6262-2506-45";
23560
Requests[4594].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23561
Requests[4594].
Request
.Path = "/subscriptions/08f8cad7-ca9c-/resourceGroups/a4a453a6-3a10-438/providers/Microsoft.Web/sites/1567c/slots/1ff48/premieraddons/a96b5d2e-ef8c-4f";
23564
Requests[4595].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23565
Requests[4595].
Request
.Path = "/subscriptions/4b1dc19b-9bdc-/resourceGroups/d8692c18-5ea9-446/providers/Microsoft.Web/sites/61cbe/slots/3dbb7/premieraddons/962e6a02-e883-42";
23568
Requests[4596].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23569
Requests[4596].
Request
.Path = "/subscriptions/4fbf8013-daf3-/resourceGroups/0e147d81-c585-4e2/providers/Microsoft.Web/sites/e5337/slots/2c00b/processes/99376403-";
23572
Requests[4597].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23573
Requests[4597].
Request
.Path = "/subscriptions/de888ba1-c339-/resourceGroups/b4d18007-7de7-464/providers/Microsoft.Web/sites/ffee2/slots/9b34e/processes/e558d153-";
23576
Requests[4598].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23577
Requests[4598].
Request
.Path = "/subscriptions/b1c961c5-1fa0-/resourceGroups/37ac507c-c2e1-466/providers/Microsoft.Web/sites/b7ba7/slots/45df2/publicCertificates/852195db-f17d-4af9-8c";
23580
Requests[4599].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23581
Requests[4599].
Request
.Path = "/subscriptions/19e868ba-2b60-/resourceGroups/cd81327d-118a-4fa/providers/Microsoft.Web/sites/1b622/slots/97e67/publicCertificates/d15b43c6-95fe-420b-95";
23584
Requests[4600].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23585
Requests[4600].
Request
.Path = "/subscriptions/4150fd67-2add-/resourceGroups/474f5374-0d4f-4e0/providers/Microsoft.Web/sites/b6268/slots/01c72/publicCertificates/2500b811-c647-41ae-91";
23588
Requests[4601].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23589
Requests[4601].
Request
.Path = "/subscriptions/be150fd5-da2e-/resourceGroups/67ec8879-58df-470/providers/Microsoft.Web/sites/0f85c/slots/ea767/siteextensions/3fb1c96b-1afd-4";
23592
Requests[4602].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23593
Requests[4602].
Request
.Path = "/subscriptions/482f456f-dd99-/resourceGroups/5b65d08f-f0ad-46d/providers/Microsoft.Web/sites/830b3/slots/e74f3/siteextensions/33bfaa78-9423-4";
23596
Requests[4603].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23597
Requests[4603].
Request
.Path = "/subscriptions/d29037ce-c7ba-/resourceGroups/21f0623c-a79c-46a/providers/Microsoft.Web/sites/6acfd/slots/7f6b3/siteextensions/dc5e107d-538a-4";
23600
Requests[4604].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23601
Requests[4604].
Request
.Path = "/subscriptions/5359afd6-5d97-/resourceGroups/e4375b42-246d-45f/providers/Microsoft.Web/sites/5e954/slots/dc2a3/triggeredwebjobs/cfaebbdd-f";
23604
Requests[4605].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23605
Requests[4605].
Request
.Path = "/subscriptions/ed6fcef2-1000-/resourceGroups/6b09c0ee-06c2-467/providers/Microsoft.Web/sites/bc0e9/slots/92a5f/triggeredwebjobs/95231cd5-6";
23608
Requests[4606].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23609
Requests[4606].
Request
.Path = "/subscriptions/ff5ddeb0-5302-/resourceGroups/61450bef-1ac8-433/providers/Microsoft.Web/sites/2a6df/slots/a3bc0/virtualNetworkConnections/2fdab763";
23612
Requests[4607].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23613
Requests[4607].
Request
.Path = "/subscriptions/785158fb-c47e-/resourceGroups/d02f0a9e-22cd-405/providers/Microsoft.Web/sites/d37fc/slots/73b8b/virtualNetworkConnections/220bf774";
23616
Requests[4608].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23617
Requests[4608].
Request
.Path = "/subscriptions/9888e673-7dd5-/resourceGroups/404c35d1-9c15-405/providers/Microsoft.Web/sites/09ffc/slots/0768d/virtualNetworkConnections/a708b8fe";
23620
Requests[4609].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23621
Requests[4609].
Request
.Path = "/subscriptions/29883260-e3b9-/resourceGroups/d175fa98-6a2c-447/providers/Microsoft.Web/sites/5c77b/slots/6f140/virtualNetworkConnections/cb4ce436";
23624
Requests[4610].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23625
Requests[4610].
Request
.Path = "/subscriptions/5ba93901-2837-/resourceGroups/98cadafe-f685-4e2/providers/Microsoft.Web/sites/21a57/slots/b2a5c/webjobs/ab6406ac-8";
23628
Requests[4611].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23629
Requests[4611].
Request
.Path = "/subscriptions/fe9f3f35-f557-/resourceGroups/61a650a7-900a-454/providers/Microsoft.Web/sites/e144a/triggeredwebjobs/54e7f94d-b/history/3609d";
23632
Requests[4612].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23633
Requests[4612].
Request
.Path = "/subscriptions/7e77ecf3-c312-/resourceGroups/808b4175-5cb7-4db/providers/Microsoft.Web/sites/16300/virtualNetworkConnections/e96608d9/gateways/b90bfb7f-a8";
23636
Requests[4613].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23637
Requests[4613].
Request
.Path = "/subscriptions/1f4c6c88-6d7a-/resourceGroups/f4645429-cac6-4e8/providers/Microsoft.Web/sites/345e4/virtualNetworkConnections/b71a6628/gateways/85141d67-f1";
23640
Requests[4614].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
23641
Requests[4614].
Request
.Path = "/subscriptions/823f79b4-e70d-/resourceGroups/bf83f065-9947-472/providers/Microsoft.Web/sites/acb7b/virtualNetworkConnections/642a333f/gateways/3d7fba09-c4";
23644
Requests[4615].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23645
Requests[4615].
Request
.Path = "/subscriptions/ed870972-db93-/resourceGroups/6539e7e4-c445-4b4/providers/Microsoft.Web/sites/e211bed1/diagnostics/aa0472c0-7975-4c4c/analyses/5d871c08-9ed";
23648
Requests[4616].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23649
Requests[4616].
Request
.Path = "/subscriptions/20e51a72-3b29-/resourceGroups/390e9a83-cced-49b/providers/Microsoft.Web/sites/f37b756a/diagnostics/c4aaf014-4fa1-4970/detectors/1f8ac36e-c7b";
23652
Requests[4617].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23653
Requests[4617].
Request
.Path = "/subscriptions/6e36d8b9-41e7-/resourceGroups/84d0d63d-1985-450/providers/Microsoft.Web/sites/2254cbdd/slots/c2e91/detectors/0dde1c70-f99";
23656
Requests[4618].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23657
Requests[4618].
Request
.Path = "/subscriptions/7aaa83d3-e907-/resourceGroups/de61d3e3-0865-460/providers/Microsoft.Web/sites/c67b5a11/slots/02f73/diagnostics/64cdc8e5-5bca-4a7b";
23660
Requests[4619].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23661
Requests[4619].
Request
.Path = "/subscriptions/2a316c13-2f75-/resourceGroups/901ad935-/providers/Microsoft.DataMigration/services/b6c2b86e-82/projects/26b49766-2e/tasks/39e5b158/cancel";
23664
Requests[4620].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23665
Requests[4620].
Request
.Path = "/subscriptions/5e57a40c-bd9b-/resourceGroups/ed0859a2-a184-4a6/providers/Microsoft.ApiManagement/service/bb214a5e-cc/apis/9a587/diagnostics/043ed1c8-dc7/loggers";
23668
Requests[4621].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23669
Requests[4621].
Request
.Path = "/subscriptions/cc0d592e-da8a-/resourceGroups/0ce03460-8044-4ef/providers/Microsoft.ApiManagement/service/9cdc6ec4-ae/apis/9fb0d/issues/e6abb7b/attachments";
23672
Requests[4622].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23673
Requests[4622].
Request
.Path = "/subscriptions/678a1e0c-ad8e-/resourceGroups/56fa7705-4654-4b4/providers/Microsoft.ApiManagement/service/0558df17-7a/apis/ce611/issues/5e85a77/comments";
23676
Requests[4623].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23677
Requests[4623].
Request
.Path = "/subscriptions/eccc38f2-de22-/resourceGroups/bf1a7e17-97d3-45c/providers/Microsoft.ApiManagement/service/bd721139-56/apis/7ba1c/operations/d814d534-5d/policies";
23680
Requests[4624].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
23681
Requests[4624].
Request
.Path = "/subscriptions/4ea67935-f2df-/resourceGroups/5d960586-1088-423/providers/Microsoft.ApiManagement/service/7b5387a2-88/apis/a9bb2/operations/fe64242b-fc/policy";
23684
Requests[4625].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23685
Requests[4625].
Request
.Path = "/subscriptions/70ac1d0e-d736-/resourceGroups/aa7f14bb-614d-4a4/providers/Microsoft.ApiManagement/service/eb195c97-37/apis/1309a/operations/718d032f-34/policy";
23688
Requests[4626].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
23689
Requests[4626].
Request
.Path = "/subscriptions/26aaed21-205f-/resourceGroups/38a2df36-337e-487/providers/Microsoft.ApiManagement/service/e5d4adab-cf/apis/c7960/operations/4fa149e0-f3/policy";
23692
Requests[4627].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23693
Requests[4627].
Request
.Path = "/subscriptions/c96856e6-5843-/resourceGroups/6f8771fc-556a-465/providers/Microsoft.ApiManagement/service/254a7370-9d/apis/af343/operations/67f710fb-9e/tags";
23696
Requests[4628].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23697
Requests[4628].
Request
.Path = "/subscriptions/b49afa26-1213-/resourceGroups/636f271d-d773-49b/providers/Microsoft.Automation/automationAccounts/a862d37f-07b0-4073-83/modules/711981e7-d/objectDataTypes/c5c50511/fields";
23700
Requests[4629].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23701
Requests[4629].
Request
.Path = "/subscriptions/a3a04081-cff3-/resourceGroups/ab362107-9b20-44a/providers/Microsoft.Automation/automationAccounts/77043c17-27b8-4964-bd/modules/c4eaab46-5/types/635a9ca7/fields";
23704
Requests[4630].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23705
Requests[4630].
Request
.Path = "/subscriptions/884a48eb-4ed5-/resourceGroups/a09994e4-f847-480/providers/Microsoft.Automation/automationAccounts/92e8ac8a-c95b-42e8-8b/nodes/2b4d19/reports/1fe50df2/content";
23708
Requests[4631].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23709
Requests[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";
23712
Requests[4632].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23713
Requests[4632].
Request
.Path = "/subscriptions/784da95c-3596-/resourceGroups/fd6d9dfe-5916-438/providers/Microsoft.Batch/batchAccounts/cc73dcc0-12/applications/175de30a-8f25/versions/c8674c6/activate";
23716
Requests[4633].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23717
Requests[4633].
Request
.Path = "/subscriptions/2b9d0055-af79-/resourceGroups/be52db09-8378-4de/providers/Microsoft.BatchAI/workspaces/643d8985-9881/experiments/1061cf2f-ae20-/jobs/7c9cf45/listOutputFiles";
23720
Requests[4634].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23721
Requests[4634].
Request
.Path = "/subscriptions/0a445623-51c0-/resourceGroups/65c2df20-3fd0-4d7/providers/Microsoft.BatchAI/workspaces/956bcfb1-a170/experiments/59cce4c5-bb7d-/jobs/32225fe/listRemoteLoginInformation";
23724
Requests[4635].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23725
Requests[4635].
Request
.Path = "/subscriptions/262ae6ab-a641-/resourceGroups/545fd887-56ce-4e1/providers/Microsoft.BatchAI/workspaces/f0da82e6-c0cf/experiments/76b98b18-f16f-/jobs/729e4af/terminate";
23728
Requests[4636].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23729
Requests[4636].
Request
.Path = "/subscriptions/a9ff0280-b67f-/resourceGroups/09b0b288-ba02-4fd/providers/Microsoft.Cdn/profiles/ebdbcc77-0a/endpoints/5fa2ee94-1bf/customDomains/36742a7a-834f-45/disableCustomHttps";
23732
Requests[4637].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23733
Requests[4637].
Request
.Path = "/subscriptions/fc12f3e0-ca95-/resourceGroups/499e19a5-c964-46e/providers/Microsoft.Cdn/profiles/2563cce7-28/endpoints/e60722c2-593/customDomains/6fc08f69-c1bc-4c/enableCustomHttps";
23736
Requests[4638].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23737
Requests[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";
23740
Requests[4639].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23741
Requests[4639].
Request
.Path = "/subscriptions/da1f0b6a-0d33-/resourceGroups/ff911d7b-276d-4e2/providers/Microsoft.ContainerRegistry/registries/2fb0e010-875/buildTasks/9bdd70a1-3b2d/steps/440ce127/listBuildArguments";
23744
Requests[4640].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23745
Requests[4640].
Request
.Path = "/subscriptions/9157eee2-c8e2-/resourceGroups/0b88d096-3bad-433/providers/Microsoft.DataFactory/factories/7bbe89be-84/integrationRuntimes/ea860637-732a-4345-b0d/nodes/06a750ff/ipAddress";
23748
Requests[4641].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23749
Requests[4641].
Request
.Path = "/subscriptions/41a69696-1fc2-/resourceGroups/8e610dfa-ffd9-4c5/providers/Microsoft.DataLakeAnalytics/accounts/1fd47faf-ed/storageAccounts/bfd221f9-2ec4-4f44/containers/d4d29c49-42c8/listSasTokens";
23752
Requests[4642].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23753
Requests[4642].
Request
.Path = "/subscriptions/aae4c8d2-4807-/resourceGroups/e380f542-52b4-463/providers/Microsoft.DevTestLab/labs/edde0e1/artifactsources/472d0d3e-7bb9-4ec8/artifacts/6d6c0/generateArmTemplate";
23756
Requests[4643].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23757
Requests[4643].
Request
.Path = "/subscriptions/0016b289-f138-/resourceGroups/62b144c9-49ea-40b/providers/Microsoft.DevTestLab/labs/cb81d45/users/31c3a41d/disks/eb9e8/attach";
23760
Requests[4644].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23761
Requests[4644].
Request
.Path = "/subscriptions/125f8b06-eaa0-/resourceGroups/17da6220-2bb9-4c7/providers/Microsoft.DevTestLab/labs/21e03c7/users/dcb89229/disks/5abf3/detach";
23764
Requests[4645].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23765
Requests[4645].
Request
.Path = "/subscriptions/7621f7c7-350e-/resourceGroups/0ef9b370-4142-4fc/providers/Microsoft.DevTestLab/labs/8acedc4/virtualmachines/906da87f-cba3-49aa/schedules/d3113/execute";
23768
Requests[4646].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23769
Requests[4646].
Request
.Path = "/subscriptions/5b14cf5b-e3e9-/resourceGroups/8afb3ce0-f16b-49d/providers/Microsoft.DocumentDB/databaseAccounts/f2882873-07/databases/305f2a42-70/collections/17e331c1-55ce/metricDefinitions";
23772
Requests[4647].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23773
Requests[4647].
Request
.Path = "/subscriptions/f23e7ead-6eac-/resourceGroups/17a4bdcf-eaaa-450/providers/Microsoft.DocumentDB/databaseAccounts/f9d2656e-7d/databases/d3ae8da4-f8/collections/a875001b-c083/metrics";
23776
Requests[4648].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23777
Requests[4648].
Request
.Path = "/subscriptions/65e1a259-19ed-/resourceGroups/515e01fa-92ef-4a9/providers/Microsoft.DocumentDB/databaseAccounts/7c53955c-6f/databases/bc5cc661-00/collections/07279bcd-2a78/usages";
23780
Requests[4649].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23781
Requests[4649].
Request
.Path = "/subscriptions/7c5edb0f-53f4-/resourceGroups/cf702679-907f-44b/providers/Microsoft.EventHub/namespaces/fffd0290-bc92/disasterRecoveryConfigs/010a8/AuthorizationRules/e2cd77a6-a86a-4ab5-8c/listKeys";
23784
Requests[4650].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23785
Requests[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";
23788
Requests[4651].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23789
Requests[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";
23792
Requests[4652].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23793
Requests[4652].
Request
.Path = "/subscriptions/5def1ca9-9971-/resourceGroups/10ef1a53-8979-4b4/providers/Microsoft.Fabric.Admin/fabricLocations/66dcf053/storageSubSystems/9ce69a39-68c5-47/storagePools/ad2a80b9-05/volumes";
23796
Requests[4653].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23797
Requests[4653].
Request
.Path = "/subscriptions/63bbc153-b24f-/resourceGroups/14db5988-d13c-4eb/providers/Microsoft.Logic/workflows/fa5a2022-7c2/runs/ed19236/actions/75f1caec-8/listExpressionTraces";
23800
Requests[4654].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23801
Requests[4654].
Request
.Path = "/subscriptions/2d178029-846d-/resourceGroups/b7c9baad-5d58-45a/providers/Microsoft.Logic/workflows/ffe9bfaa-7bb/runs/9ad51bd/actions/d8dc37e2-3/repetitions";
23804
Requests[4655].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23805
Requests[4655].
Request
.Path = "/subscriptions/be93f2d2-54d5-/resourceGroups/595f1f7f-297f-400/providers/Microsoft.Logic/workflows/fec89924-c87/runs/13b51e1/actions/2a201158-3/scopeRepetitions";
23808
Requests[4656].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23809
Requests[4656].
Request
.Path = "/subscriptions/5fbe9fd3-ae90-/resourceGroups/bac0d39d-4e54-4a1/providers/Microsoft.Logic/workflows/1a4772f1-7ea/triggers/1cc22dcf-b6/histories/5b88bcac-84/resubmit";
23812
Requests[4657].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23813
Requests[4657].
Request
.Path = "/subscriptions/a53bdebb-dd89-/resourceGroups/5941e4e4-5c7f-46b/providers/Microsoft.Logic/workflows/7c38cf0f-62d/versions/0b4a2ded-/triggers/3e2876a5-ca/listCallbackUrl";
23816
Requests[4658].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23817
Requests[4658].
Request
.Path = "/subscriptions/2ee476fa-07b2-/resourceGroups/9b77e36b-025b-415/providers/Microsoft.Media/mediaServices/8c0bca80-0d/transforms/78d35721-8f7d/jobs/b2fd2a9/cancelJob";
23820
Requests[4659].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23821
Requests[4659].
Request
.Path = "/subscriptions/d0559ffd-fb60-/resourceGroups/3c43f589-fa33-4c7/providers/Microsoft.Migrate/projects/d04dd1a9-5d/groups/aac7f4e5-/assessments/03e5132b-633c-/assessedMachines";
23824
Requests[4660].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23825
Requests[4660].
Request
.Path = "/subscriptions/6fdb25c9-d215-/resourceGroups/e13b4287-d454-4a4/providers/Microsoft.Migrate/projects/9b9e97ea-b5/groups/9caa0903-/assessments/5e8e41c0-9e7d-/downloadUrl";
23828
Requests[4661].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23829
Requests[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";
23832
Requests[4662].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23833
Requests[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";
23836
Requests[4663].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23837
Requests[4663].
Request
.Path = "/Subscriptions/6aba2340-370e-/resourceGroups/540e8d07-6a0f-4b7/providers/Microsoft.RecoveryServices/vaults/14da01ce-903/replicationFabrics/0ee159cc-7/replicationNetworks/39814117-ea/replicationNetworkMappings";
23840
Requests[4664].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23841
Requests[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";
23844
Requests[4665].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23845
Requests[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";
23848
Requests[4666].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23849
Requests[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";
23852
Requests[4667].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23853
Requests[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";
23856
Requests[4668].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23857
Requests[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";
23860
Requests[4669].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23861
Requests[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";
23864
Requests[4670].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23865
Requests[4670].
Request
.Path = "/Subscriptions/d5df6584-3e8d-/resourceGroups/4b53d401-d181-439/providers/Microsoft.RecoveryServices/vaults/3b1c5728-7df/replicationFabrics/48a66a92-9/replicationRecoveryServicesProviders/70ae3a32-684/refreshProvider";
23868
Requests[4671].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23869
Requests[4671].
Request
.Path = "/Subscriptions/cadf7c24-79a0-/resourceGroups/4d06de25-e340-47e/providers/Microsoft.RecoveryServices/vaults/768f1669-d24/replicationFabrics/e7cc6d57-9/replicationRecoveryServicesProviders/9db7ae9f-6be/remove";
23872
Requests[4672].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23873
Requests[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";
23876
Requests[4673].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23877
Requests[4673].
Request
.Path = "/Subscriptions/2070276f-b530-/resourceGroups/aa9d4eae-70a6-473/providers/Microsoft.RecoveryServices/vaults/29bfac61-/backupFabrics/0dcd26df-3/protectionContainers/cf529f27-790c/inquire";
23880
Requests[4674].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23881
Requests[4674].
Request
.Path = "/Subscriptions/11a4b573-3108-/resourceGroups/08333068-d245-468/providers/Microsoft.RecoveryServices/vaults/1839bbfd-/backupFabrics/f5786d7f-7/protectionContainers/52c6c31a-1580/items";
23884
Requests[4675].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23885
Requests[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";
23888
Requests[4676].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23889
Requests[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";
23892
Requests[4677].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23893
Requests[4677].
Request
.Path = "/subscriptions/83febe01-dafa-/resourceGroups/de5a1bb8-c4fb-4b6/providers/Microsoft.Relay/namespaces/2d8f8967-4f53/wcfRelays/6adce0eb-/authorizationRules/72f60aad-5d64-4521-98/listKeys";
23896
Requests[4678].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23897
Requests[4678].
Request
.Path = "/subscriptions/a50358e1-50af-/resourceGroups/211a65af-7149-473/providers/Microsoft.Relay/namespaces/68749888-ca4b/wcfRelays/23195713-/authorizationRules/81428a13-822c-4e55-8e/regenerateKeys";
23900
Requests[4679].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23901
Requests[4679].
Request
.Path = "/subscriptions/f102749f-6832-/resourceGroups/4f63ab82-a61a-4e7/providers/Microsoft.ServiceBus/namespaces/bd72599c-4cbf/disasterRecoveryConfigs/68f2c/AuthorizationRules/11c9058b-aeb9-49e5-82/listKeys";
23904
Requests[4680].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23905
Requests[4680].
Request
.Path = "/subscriptions/839cf181-8d06-/resourceGroups/b160f93f-e36a-400/providers/Microsoft.ServiceBus/namespaces/cdb9fceb-bb98/queues/f34a7b32-/authorizationRules/87a47e56-9718-448c-97/ListKeys";
23908
Requests[4681].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23909
Requests[4681].
Request
.Path = "/subscriptions/0780dc43-ac7f-/resourceGroups/1f8cdb8a-fcab-43b/providers/Microsoft.ServiceBus/namespaces/44521384-1e1f/queues/37b35271-/authorizationRules/16cbdb43-0e84-43e2-84/regenerateKeys";
23912
Requests[4682].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23913
Requests[4682].
Request
.Path = "/subscriptions/e98d13d9-e4da-/resourceGroups/1f7d8474-1eec-499/providers/Microsoft.ServiceBus/namespaces/b82b1d83-1b6a/topics/9da93e08-/authorizationRules/0fc1395b-05f9-447c-b2/ListKeys";
23916
Requests[4683].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23917
Requests[4683].
Request
.Path = "/subscriptions/9efcf109-3e5c-/resourceGroups/14c3fd92-161d-427/providers/Microsoft.ServiceBus/namespaces/e4577389-109c/topics/023f69bd-/authorizationRules/0502565c-2767-4592-82/regenerateKeys";
23920
Requests[4684].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23921
Requests[4684].
Request
.Path = "/subscriptions/3bc075d7-cd8d-/resourceGroups/7049c115-2ec8-4e0/providers/Microsoft.ServiceBus/namespaces/e600c3cd-927d/topics/fc070140-/subscriptions/086d6001-65ed-40/rules";
23924
Requests[4685].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23925
Requests[4685].
Request
.Path = "/subscriptions/aedeb6d2-21c0-/resourceGroups/34953713-7b7f-4ef/providers/Microsoft.Sql/servers/c4df2bd6-0/databases/4a169048-f2c/advisors/1a1b2c1a-ac/recommendedActions";
23928
Requests[4686].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23929
Requests[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";
23932
Requests[4687].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23933
Requests[4687].
Request
.Path = "/subscriptions/19e9ce3c-e17a-/resourceGroups/418c3339-9395-46a/providers/Microsoft.Sql/servers/a0fcc753-b/databases/4873880d-b84/operations/5be1f5f6-7f/cancel";
23936
Requests[4688].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23937
Requests[4688].
Request
.Path = "/subscriptions/36155b64-2246-/resourceGroups/7f86d35b-e628-421/providers/Microsoft.Sql/servers/129c692f-1/databases/7c5ff197-d8c/replicationLinks/af1d4d/failover";
23940
Requests[4689].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23941
Requests[4689].
Request
.Path = "/subscriptions/5152d741-d7d7-/resourceGroups/cae16b1a-ebf3-416/providers/Microsoft.Sql/servers/cdbfdfbd-8/databases/56c862cb-0fc/replicationLinks/960110/forceFailoverAllowDataLoss";
23944
Requests[4690].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23945
Requests[4690].
Request
.Path = "/subscriptions/81f519a6-d79b-/resourceGroups/c17a1d72-71e5-423/providers/Microsoft.Sql/servers/3092aef9-6/databases/2b413165-141/syncGroups/ba4934a6-6465/cancelSync";
23948
Requests[4691].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23949
Requests[4691].
Request
.Path = "/subscriptions/34a145b0-828a-/resourceGroups/e87dfdb9-faac-4f8/providers/Microsoft.Sql/servers/a357d667-9/databases/01af54e7-0d4/syncGroups/22672162-3bf0/hubSchemas";
23952
Requests[4692].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23953
Requests[4692].
Request
.Path = "/subscriptions/bc699320-8c2f-/resourceGroups/cf551b05-e8ca-455/providers/Microsoft.Sql/servers/1858f3da-0/databases/8d7aa38f-7b6/syncGroups/aa2b86d3-b72c/logs";
23956
Requests[4693].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23957
Requests[4693].
Request
.Path = "/subscriptions/87fb2f4d-e98c-/resourceGroups/087d20c9-ec83-441/providers/Microsoft.Sql/servers/1bb5dbc5-6/databases/ed312cce-98d/syncGroups/f6fb9cbf-367c/refreshHubSchema";
23960
Requests[4694].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23961
Requests[4694].
Request
.Path = "/subscriptions/a0a15705-7d50-/resourceGroups/1313bc11-6f88-4bc/providers/Microsoft.Sql/servers/9ed52a25-a/databases/0fb56c7d-94a/syncGroups/3b40c86b-6ed1/syncMembers";
23964
Requests[4695].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23965
Requests[4695].
Request
.Path = "/subscriptions/bf546b78-a622-/resourceGroups/97a94277-9353-48a/providers/Microsoft.Sql/servers/b86952ec-5/databases/8533ff5f-b2d/syncGroups/bd10c679-03db/triggerSync";
23968
Requests[4696].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23969
Requests[4696].
Request
.Path = "/subscriptions/9569b722-d1f5-/resourceGroups/fb14475a-e9b5-4ad/providers/Microsoft.Sql/servers/545b6131-d/databases/51735829-b1a/topQueries/4d60dbb/queryText";
23972
Requests[4697].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23973
Requests[4697].
Request
.Path = "/subscriptions/015736d6-1004-/resourceGroups/36d23458-5aa0-459/providers/Microsoft.Sql/servers/1043a224-e/databases/688ef447-419/topQueries/2fc5629/statistics";
23976
Requests[4698].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23977
Requests[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";
23980
Requests[4699].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23981
Requests[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";
23984
Requests[4700].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23985
Requests[4700].
Request
.Path = "/subscriptions/0d1ff1d2-8dd6-/resourceGroups/3240aed3-63fd-4b2/providers/Microsoft.Sql/servers/6606e035-8/elasticPools/6eaca3f4-4ceb-4/operations/6d221ba7-7d/cancel";
23988
Requests[4701].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23989
Requests[4701].
Request
.Path = "/subscriptions/52206174-1433-/resourceGroups/0610659e-4e26-495/providers/Microsoft.Sql/servers/f1cd5251-6/jobAgents/bf9b650e-cca/jobs/6847231/executions";
23992
Requests[4702].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
23993
Requests[4702].
Request
.Path = "/subscriptions/d9410692-ab84-/resourceGroups/5ca100f4-6a77-48a/providers/Microsoft.Sql/servers/29d26321-1/jobAgents/2fd617f5-495/jobs/67c2a19/start";
23996
Requests[4703].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
23997
Requests[4703].
Request
.Path = "/subscriptions/cfa3a137-b6f3-/resourceGroups/862c4c6d-33ae-49f/providers/Microsoft.Sql/servers/ee23247d-c/jobAgents/feff4dd0-e0b/jobs/bd596a1/steps";
24000
Requests[4704].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24001
Requests[4704].
Request
.Path = "/subscriptions/5f8915c5-d7d6-/resourceGroups/6c4c8822-fa4c-4e2/providers/Microsoft.Sql/servers/12655a71-8/jobAgents/e2affdca-717/jobs/947c517/versions";
24004
Requests[4705].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24005
Requests[4705].
Request
.Path = "/subscriptions/7b3a2d90-0795-/resourceGroups/aa0cb78d-591a-413/providers/Microsoft.StorSimple/managers/f543da65-72/devices/52e059b0-3/backupPolicies/31bc03ee-7196-44/backup";
24008
Requests[4706].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24009
Requests[4706].
Request
.Path = "/subscriptions/01949470-483c-/resourceGroups/0e8bcb27-db14-45f/providers/Microsoft.StorSimple/managers/2b512ffe-1f/devices/51fa0967-a/backupPolicies/6db23787-2e1c-4b/schedules";
24012
Requests[4707].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24013
Requests[4707].
Request
.Path = "/subscriptions/072497e7-029f-/resourceGroups/d6515e9d-90c4-452/providers/Microsoft.StorSimple/managers/dcea5dc5-49/devices/b6ae51da-2/backups/58a77d65-c/restore";
24016
Requests[4708].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24017
Requests[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";
24020
Requests[4709].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24021
Requests[4709].
Request
.Path = "/subscriptions/662696f7-4e36-/resourceGroups/c1216f47-3765-495/providers/Microsoft.StorSimple/managers/a776a335-e1/devices/04c8f5db-8/jobs/93a0114/cancel";
24024
Requests[4710].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24025
Requests[4710].
Request
.Path = "/subscriptions/f3649e35-4dfc-/resourceGroups/2cdd1271-b176-497/providers/Microsoft.StorSimple/managers/721b2c59-91/devices/9dfe2b85-0/volumeContainers/1c83dfc3-2b94-47fb-/metrics";
24028
Requests[4711].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24029
Requests[4711].
Request
.Path = "/subscriptions/6620de1d-85da-/resourceGroups/bd9f7bd3-cfc7-4c2/providers/Microsoft.StorSimple/managers/ffb2c835-6f/devices/5d5961bc-2/volumeContainers/5f1bfdbd-049b-4951-/metricsDefinitions";
24032
Requests[4712].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24033
Requests[4712].
Request
.Path = "/subscriptions/c0e4fdfb-01bf-/resourceGroups/42efb110-8322-433/providers/Microsoft.StorSimple/managers/77be429d-c0/devices/32a3424f-3/volumeContainers/2ebebbfa-8539-4d73-/volumes";
24036
Requests[4713].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24037
Requests[4713].
Request
.Path = "/subscriptions/86b450fd-23cf-/resourcegroups/c4b95d5d-d6c8-43c/providers/Microsoft.Update.Admin/updateLocations/5304ee6c-ba34-/updates/00e5fa06-7/updateRuns/02499b7/rerun";
24040
Requests[4714].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24041
Requests[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";
24044
Requests[4715].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24045
Requests[4715].
Request
.Path = "/subscriptions/abbccf32-0301-/resourceGroups/e55db8cf-51cf-49f/providers/Microsoft.Web/hostingEnvironments/9468c/workerPools/3c660201-dd20-/instances/fdf3659f/metricdefinitions";
24048
Requests[4716].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24049
Requests[4716].
Request
.Path = "/subscriptions/2df5af01-8525-/resourceGroups/c711fd37-cad2-4c5/providers/Microsoft.Web/hostingEnvironments/b1df8/workerPools/461b2366-7fa2-/instances/ddcc8870/metrics";
24052
Requests[4717].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24053
Requests[4717].
Request
.Path = "/subscriptions/e38db067-ea8f-/resourceGroups/5f3cbc7c-5cd1-4b8/providers/Microsoft.Web/serverfarms/c7309/hybridConnectionNamespaces/e202c0e2-3127/relays/82e4534d-/listKeys";
24056
Requests[4718].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24057
Requests[4718].
Request
.Path = "/subscriptions/73e734d2-2eed-/resourceGroups/26d9a2a9-7244-44c/providers/Microsoft.Web/serverfarms/77482/hybridConnectionNamespaces/a4c782de-9565/relays/0ddb6212-/sites";
24060
Requests[4719].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24061
Requests[4719].
Request
.Path = "/subscriptions/cc7a787c-804d-/resourceGroups/686d2d3b-bcb8-42d/providers/Microsoft.Web/sites/648c2/hybridConnectionNamespaces/e629aa62-2af1/relays/f8425431-/listKeys";
24064
Requests[4720].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24065
Requests[4720].
Request
.Path = "/subscriptions/3f4aaa95-0a00-/resourceGroups/292d992e-12f9-4b3/providers/Microsoft.Web/sites/a37a8/instances/576a2278-6/processes/8c34d123-/dump";
24068
Requests[4721].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24069
Requests[4721].
Request
.Path = "/subscriptions/7dbf9bd9-fab7-/resourceGroups/cdf64ec1-dde3-4a0/providers/Microsoft.Web/sites/49903/instances/7909d947-a/processes/7e207f2d-/modules";
24072
Requests[4722].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24073
Requests[4722].
Request
.Path = "/subscriptions/a2c1f3b1-98f1-/resourceGroups/f401e095-5d4a-4f7/providers/Microsoft.Web/sites/f33cf/instances/8bfa4ad5-a/processes/2dbd8d47-/threads";
24076
Requests[4723].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24077
Requests[4723].
Request
.Path = "/subscriptions/e63b8497-fa92-/resourceGroups/08625ecd-9a31-48f/providers/Microsoft.Web/sites/3b93b/slots/3a5f6/backups/c6f8a1ba/list";
24080
Requests[4724].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24081
Requests[4724].
Request
.Path = "/subscriptions/10e44171-3574-/resourceGroups/a49523f9-0d5a-427/providers/Microsoft.Web/sites/ad3fc/slots/28b1d/backups/d097a76b/restore";
24084
Requests[4725].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24085
Requests[4725].
Request
.Path = "/subscriptions/4eeef959-0aa4-/resourceGroups/cc65aaca-08a4-4ae/providers/Microsoft.Web/sites/fa177/slots/ab596/continuouswebjobs/987c1393-c/start";
24088
Requests[4726].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24089
Requests[4726].
Request
.Path = "/subscriptions/9c01ed79-4b96-/resourceGroups/a0166bab-31da-4bb/providers/Microsoft.Web/sites/c4be1/slots/247a9/continuouswebjobs/d9d64be0-d/stop";
24092
Requests[4727].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24093
Requests[4727].
Request
.Path = "/subscriptions/df2d8d91-66b8-/resourceGroups/7bac8d39-7716-469/providers/Microsoft.Web/sites/7e1c0/slots/d471f/deployments/ad62c/log";
24096
Requests[4728].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24097
Requests[4728].
Request
.Path = "/subscriptions/938c682b-ab5c-/resourceGroups/a74630b8-5e8c-412/providers/Microsoft.Web/sites/f4a94/slots/d4326/functions/5a31c99c-386/listsecrets";
24100
Requests[4729].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24101
Requests[4729].
Request
.Path = "/subscriptions/b5d60395-1f9b-/resourceGroups/1723f217-fa12-483/providers/Microsoft.Web/sites/c5c99/slots/748e5/instances/814ddb80-a/deployments";
24104
Requests[4730].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24105
Requests[4730].
Request
.Path = "/subscriptions/b5259ddb-18eb-/resourceGroups/62b0a6e8-2a00-4d0/providers/Microsoft.Web/sites/502bb/slots/5985e/instances/96923854-8/processes";
24108
Requests[4731].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24109
Requests[4731].
Request
.Path = "/subscriptions/7b7cc0e1-282b-/resourceGroups/c303567e-65cb-432/providers/Microsoft.Web/sites/3d550/slots/489e5/processes/67871ad8-/dump";
24112
Requests[4732].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24113
Requests[4732].
Request
.Path = "/subscriptions/1578dbc0-fdd4-/resourceGroups/75f948dd-81a6-4fb/providers/Microsoft.Web/sites/175bf/slots/b0778/processes/8fc3cdf7-/modules";
24116
Requests[4733].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24117
Requests[4733].
Request
.Path = "/subscriptions/d401ff72-7041-/resourceGroups/a14228c0-2e6c-4d2/providers/Microsoft.Web/sites/7ce52/slots/8d8f6/processes/23999d1b-/threads";
24120
Requests[4734].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24121
Requests[4734].
Request
.Path = "/subscriptions/a5265d51-6c8d-/resourceGroups/69b94a40-d07d-465/providers/Microsoft.Web/sites/2cbbb/slots/9a78d/triggeredwebjobs/9862a73b-2/history";
24124
Requests[4735].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24125
Requests[4735].
Request
.Path = "/subscriptions/7a4cc787-eb36-/resourceGroups/159e8375-52d5-482/providers/Microsoft.Web/sites/95ab2/slots/84be4/triggeredwebjobs/9acb76b5-0/run";
24128
Requests[4736].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24129
Requests[4736].
Request
.Path = "/subscriptions/813f6259-46c3-/resourceGroups/7c22e7f5-187c-4df/providers/Microsoft.Web/sites/8c4c6acf/diagnostics/4fe196df-5460-4dbb/analyses/25f2a823-d9d/execute";
24132
Requests[4737].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24133
Requests[4737].
Request
.Path = "/subscriptions/a75688e1-14dd-/resourceGroups/2a0184ae-ca5e-419/providers/Microsoft.Web/sites/9b2179fc/diagnostics/8cb065bd-f234-42d9/detectors/4a65baf6-9e9/execute";
24136
Requests[4738].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24137
Requests[4738].
Request
.Path = "/subscriptions/6dbb2bbe-a30c-/resourceGroups/d352c478-968c-40e/providers/Microsoft.Web/sites/adbcb251/slots/2ccaa/diagnostics/5075d801-30b0-4af5/analyses";
24140
Requests[4739].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24141
Requests[4739].
Request
.Path = "/subscriptions/d363edf9-84a5-/resourceGroups/b950f4b0-3a7d-4bc/providers/Microsoft.Web/sites/7c42d520/slots/f8a74/diagnostics/a07a5ffe-2432-4ae5/detectors";
24144
Requests[4740].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24145
Requests[4740].
Request
.Path = "/subscriptions/9b72213d-36ac-/resourceGroups/c7ab163f-db23-400/providers/Microsoft.DocumentDB/databaseAccounts/ab8566e6-09/databases/c2ffb20e-0d/collections/dec3f44d-822a/partitions/metrics";
24148
Requests[4741].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24149
Requests[4741].
Request
.Path = "/subscriptions/3b0351f3-aaf0-/resourceGroups/aab01426-9090-449/providers/Microsoft.DocumentDB/databaseAccounts/d348dddd-8b/databases/464544c1-9b/collections/7aaa1004-ba61/partitions/usages";
24152
Requests[4742].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24153
Requests[4742].
Request
.Path = "/subscriptions/937c34b3-6b48-/resourceGroups/ad343e0c-8a6e-484/providers/Microsoft.DocumentDB/databaseAccounts/c8e854a7-9a/sourceRegion/693e51cf-639/targetRegion/2f47c2d0-ed4/percentile/metrics";
24156
Requests[4743].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24157
Requests[4743].
Request
.Path = "/subscriptions/59bc0d98-3608-/resourceGroups/4abfb1c5-f1cd-478/providers/Microsoft.Web/sites/f8b1d/slots/66dff/instances/d7d3c1c9-7/extensions/MSDeploy";
24160
Requests[4744].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24161
Requests[4744].
Request
.Path = "/subscriptions/a782917a-8cb2-/resourceGroups/89364626-1fd4-4bd/providers/Microsoft.Web/sites/a938a/slots/8fca2/instances/71cbb791-4/extensions/MSDeploy";
24164
Requests[4745].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24165
Requests[4745].
Request
.Path = "/subscriptions/18621338-a8f2-/resourceGroups/e437fea3-9687-4c4/providers/Microsoft.Web/sites/05d79/slots/b5d2f/instances/0512666b-a/extensions/MSDeploy/log";
24168
Requests[4746].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24169
Requests[4746].
Request
.Path = "/subscriptions/349cc4f8-65db-/resourceGroups/971713cf-c863-44a/providers/Microsoft.ApiManagement/service/fbf1680a-b9/apis/fa151/diagnostics/e43877d6-cf2/loggers/4a3439f7";
24172
Requests[4747].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24173
Requests[4747].
Request
.Path = "/subscriptions/eb53272f-ac6a-/resourceGroups/f8290dc4-819a-448/providers/Microsoft.ApiManagement/service/dbc8cac1-cc/apis/91d27/diagnostics/34790a10-dce/loggers/b91dd92d";
24176
Requests[4748].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24177
Requests[4748].
Request
.Path = "/subscriptions/c1b45f81-eaee-/resourceGroups/64bd37ce-22b5-433/providers/Microsoft.ApiManagement/service/ba64efeb-29/apis/604e4/diagnostics/80d460eb-01a/loggers/3bf428ad";
24180
Requests[4749].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24181
Requests[4749].
Request
.Path = "/subscriptions/e7437b56-9aac-/resourceGroups/8ec3e2b0-5cc1-492/providers/Microsoft.ApiManagement/service/7f9f4427-ef/apis/d24e6/issues/e8e0801/attachments/d876621d-da9";
24184
Requests[4750].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24185
Requests[4750].
Request
.Path = "/subscriptions/72e3928c-00ef-/resourceGroups/1eab03e0-d78d-423/providers/Microsoft.ApiManagement/service/d7639d3e-66/apis/e5a4e/issues/1494765/attachments/673601ad-71b";
24188
Requests[4751].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24189
Requests[4751].
Request
.Path = "/subscriptions/a4d600b5-d027-/resourceGroups/a27f5cfb-f8e1-47a/providers/Microsoft.ApiManagement/service/02139296-37/apis/8a245/issues/ef5d77b/attachments/1b162378-b2c";
24192
Requests[4752].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24193
Requests[4752].
Request
.Path = "/subscriptions/908eb58a-6183-/resourceGroups/cd6d16a9-f7cb-4aa/providers/Microsoft.ApiManagement/service/d704c8dc-7f/apis/74b95/issues/924cc6e/attachments/dd66a33e-a4a";
24196
Requests[4753].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24197
Requests[4753].
Request
.Path = "/subscriptions/62554447-6185-/resourceGroups/d7abf8f2-81bb-429/providers/Microsoft.ApiManagement/service/9970ab4d-8d/apis/77bb6/issues/3dd36f6/comments/40785c63-";
24200
Requests[4754].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24201
Requests[4754].
Request
.Path = "/subscriptions/803be9e1-35e1-/resourceGroups/0591e801-df6d-40f/providers/Microsoft.ApiManagement/service/087675fa-33/apis/815fb/issues/a97b609/comments/3828b636-";
24204
Requests[4755].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24205
Requests[4755].
Request
.Path = "/subscriptions/8fe9ad48-d441-/resourceGroups/11df3a8f-2bfb-450/providers/Microsoft.ApiManagement/service/e50b4f64-59/apis/23f73/issues/d786dcf/comments/caefd52a-";
24208
Requests[4756].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24209
Requests[4756].
Request
.Path = "/subscriptions/91526a03-da36-/resourceGroups/10cdcd17-c920-463/providers/Microsoft.ApiManagement/service/4657e0d1-28/apis/ec72c/issues/1340396/comments/0f440a54-";
24212
Requests[4757].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24213
Requests[4757].
Request
.Path = "/subscriptions/08287950-64d1-/resourceGroups/8df4e939-f4fb-462/providers/Microsoft.ApiManagement/service/57dd4d64-33/apis/59d78/operations/36a278ea-80/policies/e2a68346";
24216
Requests[4758].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24217
Requests[4758].
Request
.Path = "/subscriptions/78d8485e-20ea-/resourceGroups/e75b983c-6d26-407/providers/Microsoft.ApiManagement/service/8c76a1bd-42/apis/feaae/operations/5c5098ff-fb/policies/eca3df56";
24220
Requests[4759].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24221
Requests[4759].
Request
.Path = "/subscriptions/23359b2b-d635-/resourceGroups/edc14e4a-34b4-469/providers/Microsoft.ApiManagement/service/573d1b0e-06/apis/bbeb3/operations/f446cb42-64/policies/797ba76f";
24224
Requests[4760].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24225
Requests[4760].
Request
.Path = "/subscriptions/46806f56-7bae-/resourceGroups/ba7c65ab-340e-47a/providers/Microsoft.ApiManagement/service/8f26d53c-e4/apis/a4f7b/operations/1b30fc01-8f/policies/901c129a";
24228
Requests[4761].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24229
Requests[4761].
Request
.Path = "/subscriptions/21cf600e-7b2e-/resourceGroups/c52f0599-b7c6-4a4/providers/Microsoft.ApiManagement/service/d9562c9f-42/apis/08e9a/operations/f4c419f3-dd/tags/bde47";
24232
Requests[4762].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24233
Requests[4762].
Request
.Path = "/subscriptions/70dd1520-06fc-/resourceGroups/b4f08660-4781-43b/providers/Microsoft.ApiManagement/service/937757ee-44/apis/4b4f1/operations/1e456995-c2/tags/31d8b";
24236
Requests[4763].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24237
Requests[4763].
Request
.Path = "/subscriptions/ff0ed774-547e-/resourceGroups/8424b4e2-8693-4e3/providers/Microsoft.ApiManagement/service/3ae9a88f-c8/apis/e3e79/operations/827c0b9f-17/tags/5e7a8";
24240
Requests[4764].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24241
Requests[4764].
Request
.Path = "/subscriptions/3ab04dd8-983d-/resourceGroups/813707af-c2b2-494/providers/Microsoft.ApiManagement/service/a50343d1-72/apis/d9a02/operations/6c901e09-c7/tags/62c6f";
24244
Requests[4765].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24245
Requests[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";
24248
Requests[4766].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24249
Requests[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-";
24252
Requests[4767].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24253
Requests[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";
24256
Requests[4768].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24257
Requests[4768].
Request
.Path = "/subscriptions/eb2184a2-d88d-/resourceGroups/2207a5da-edc0-434/providers/Microsoft.Logic/workflows/365f0614-aa7/runs/beedc89/actions/66b52a1b-5/repetitions/0d1f91c1-4400-";
24260
Requests[4769].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24261
Requests[4769].
Request
.Path = "/subscriptions/97bf43c4-f607-/resourceGroups/1869fdc8-697a-46c/providers/Microsoft.Logic/workflows/63db5d76-225/runs/4199f86/actions/c841bc87-d/scopeRepetitions/2b9be8c2-a690-";
24264
Requests[4770].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24265
Requests[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-";
24268
Requests[4771].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24269
Requests[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";
24272
Requests[4772].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24273
Requests[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";
24276
Requests[4773].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24277
Requests[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";
24280
Requests[4774].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24281
Requests[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";
24284
Requests[4775].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24285
Requests[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-";
24288
Requests[4776].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24289
Requests[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";
24292
Requests[4777].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24293
Requests[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";
24296
Requests[4778].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24297
Requests[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";
24300
Requests[4779].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24301
Requests[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";
24304
Requests[4780].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24305
Requests[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";
24308
Requests[4781].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24309
Requests[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";
24312
Requests[4782].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24313
Requests[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";
24316
Requests[4783].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24317
Requests[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";
24320
Requests[4784].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24321
Requests[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";
24324
Requests[4785].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24325
Requests[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";
24328
Requests[4786].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24329
Requests[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";
24332
Requests[4787].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24333
Requests[4787].
Request
.Path = "/Subscriptions/71b8736e-c3a3-/resourceGroups/c13f7d77-4980-4e9/providers/Microsoft.RecoveryServices/vaults/3edb4673-/backupFabrics/b4907fbf-0/protectionContainers/0b5d4ea1-84a1/operationResults/dbafe023-6d";
24336
Requests[4788].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24337
Requests[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";
24340
Requests[4789].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24341
Requests[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";
24344
Requests[4790].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24345
Requests[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";
24348
Requests[4791].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24349
Requests[4791].
Request
.Path = "/subscriptions/97db8f5b-48d6-/resourceGroups/ef930052-a068-4de/providers/Microsoft.ServiceBus/namespaces/efeff548-78cc/topics/2680bc0d-/subscriptions/439b98bb-f836-45/rules/73b0a692";
24352
Requests[4792].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24353
Requests[4792].
Request
.Path = "/subscriptions/d8af0f05-b327-/resourceGroups/5ad74fb5-a521-492/providers/Microsoft.ServiceBus/namespaces/d5fe154a-dd2d/topics/3339e92b-/subscriptions/650f6463-61a5-46/rules/ef206d80";
24356
Requests[4793].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24357
Requests[4793].
Request
.Path = "/subscriptions/44b2b4ce-4f3d-/resourceGroups/a49f6dc1-6391-41b/providers/Microsoft.ServiceBus/namespaces/b551e3bf-23bd/topics/54c06f23-/subscriptions/ef154e8f-ec12-42/rules/440897a6";
24360
Requests[4794].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24361
Requests[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";
24364
Requests[4795].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24365
Requests[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";
24368
Requests[4796].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24369
Requests[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-";
24372
Requests[4797].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24373
Requests[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-";
24376
Requests[4798].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24377
Requests[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-";
24380
Requests[4799].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24381
Requests[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-";
24384
Requests[4800].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24385
Requests[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-";
24388
Requests[4801].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24389
Requests[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";
24392
Requests[4802].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24393
Requests[4802].
Request
.Path = "/subscriptions/f53d3a27-1ef3-/resourceGroups/ec0f177d-8830-430/providers/Microsoft.Sql/servers/7d731589-0/jobAgents/058eee1e-469/jobs/b427ec9/executions/fbda9f09-bca9-";
24396
Requests[4803].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24397
Requests[4803].
Request
.Path = "/subscriptions/6ae5ba09-8b24-/resourceGroups/c13e8391-7d17-45e/providers/Microsoft.Sql/servers/66221e4e-f/jobAgents/9710ba81-d1a/jobs/f53584e/executions/dc6b219f-275c-";
24400
Requests[4804].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24401
Requests[4804].
Request
.Path = "/subscriptions/fd7a1b76-12c8-/resourceGroups/b63e7400-5b66-41a/providers/Microsoft.Sql/servers/e7e3b6e7-4/jobAgents/375caab9-a43/jobs/cb65e84/steps/a1ea464f";
24404
Requests[4805].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24405
Requests[4805].
Request
.Path = "/subscriptions/95f68017-e940-/resourceGroups/990063cc-2fe1-4d5/providers/Microsoft.Sql/servers/51eecd7b-4/jobAgents/c9f81f26-5e1/jobs/ecd43c7/steps/aebbf41a";
24408
Requests[4806].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24409
Requests[4806].
Request
.Path = "/subscriptions/98ce4ee9-0526-/resourceGroups/f11ce16d-a6bd-44b/providers/Microsoft.Sql/servers/d0e29a8e-4/jobAgents/e35017d8-397/jobs/999a791/steps/af8560be";
24412
Requests[4807].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24413
Requests[4807].
Request
.Path = "/subscriptions/708aff9f-3700-/resourceGroups/02f45450-06f5-42f/providers/Microsoft.Sql/servers/b407da56-0/jobAgents/391e52d2-a6d/jobs/6bc62c8/versions/37c4fc55-8";
24416
Requests[4808].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24417
Requests[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";
24420
Requests[4809].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24421
Requests[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";
24424
Requests[4810].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24425
Requests[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";
24428
Requests[4811].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24429
Requests[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";
24432
Requests[4812].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24433
Requests[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";
24436
Requests[4813].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24437
Requests[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";
24440
Requests[4814].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24441
Requests[4814].
Request
.Path = "/subscriptions/8a078c61-6c17-/resourceGroups/52afe7b7-2f8d-47b/providers/Microsoft.Web/sites/a43a4/instances/5447bff2-c/processes/4b25f0df-/modules/1f5aa9d6-02";
24444
Requests[4815].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24445
Requests[4815].
Request
.Path = "/subscriptions/abbff461-fca9-/resourceGroups/91407f23-28f1-49d/providers/Microsoft.Web/sites/9bbe3/instances/3be43f67-e/processes/db9c1465-/threads/c13f6c14";
24448
Requests[4816].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24449
Requests[4816].
Request
.Path = "/subscriptions/eafb02ae-1716-/resourceGroups/37625667-e739-496/providers/Microsoft.Web/sites/4eab2/slots/b40d6/hybridConnectionNamespaces/060bccea-6698/relays/aa1d153b-";
24452
Requests[4817].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24453
Requests[4817].
Request
.Path = "/subscriptions/2d71cf6d-2149-/resourceGroups/16dc7dd9-c2c9-476/providers/Microsoft.Web/sites/c8e0b/slots/af50e/hybridConnectionNamespaces/c9e7dbb2-d64a/relays/bb6f5a31-";
24456
Requests[4818].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24457
Requests[4818].
Request
.Path = "/subscriptions/e8c4db44-ea5b-/resourceGroups/8fa6d9b4-5e04-47b/providers/Microsoft.Web/sites/6ef23/slots/5a7bb/hybridConnectionNamespaces/9d62485a-3f97/relays/aca868ed-";
24460
Requests[4819].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24461
Requests[4819].
Request
.Path = "/subscriptions/c40ca2d3-cacc-/resourceGroups/90d30358-c462-475/providers/Microsoft.Web/sites/d4889/slots/85cb6/hybridConnectionNamespaces/0bb279cf-bc5f/relays/e762274d-";
24464
Requests[4820].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24465
Requests[4820].
Request
.Path = "/subscriptions/890be397-d1a7-/resourceGroups/40bae2f8-63ac-4f0/providers/Microsoft.Web/sites/1043f/slots/9f673/instances/22bc6fa7-2/deployments/d4426";
24468
Requests[4821].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24469
Requests[4821].
Request
.Path = "/subscriptions/9f004f96-9f53-/resourceGroups/9a7b3d2d-17ed-45c/providers/Microsoft.Web/sites/d21b5/slots/9a6e6/instances/ae57de8c-4/deployments/3bb75";
24472
Requests[4822].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24473
Requests[4822].
Request
.Path = "/subscriptions/9c7e2ebe-1257-/resourceGroups/45cb9235-4f6b-4ee/providers/Microsoft.Web/sites/652d7/slots/d65e1/instances/a1c7f891-b/deployments/4b8fc";
24476
Requests[4823].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24477
Requests[4823].
Request
.Path = "/subscriptions/1958c56a-26b9-/resourceGroups/cf0b3452-b20e-456/providers/Microsoft.Web/sites/eb90c/slots/54309/instances/80b12fad-3/processes/151c7b95-";
24480
Requests[4824].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24481
Requests[4824].
Request
.Path = "/subscriptions/9e876ab8-dd90-/resourceGroups/073a4a9a-9749-481/providers/Microsoft.Web/sites/b89ea/slots/53832/instances/56907340-b/processes/841708bb-";
24484
Requests[4825].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24485
Requests[4825].
Request
.Path = "/subscriptions/d165113a-bfc6-/resourceGroups/8ef73b11-3521-4db/providers/Microsoft.Web/sites/e00e7/slots/9908d/processes/b895a65e-/modules/edf94b3f-32";
24488
Requests[4826].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24489
Requests[4826].
Request
.Path = "/subscriptions/0947f890-3f06-/resourceGroups/eb06a483-cb6e-496/providers/Microsoft.Web/sites/ebcae/slots/bde95/processes/1cd701d1-/threads/77be9a1d";
24492
Requests[4827].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24493
Requests[4827].
Request
.Path = "/subscriptions/a41079f3-09e7-/resourceGroups/cf18c677-4c7d-4d7/providers/Microsoft.Web/sites/9839d/slots/aa192/triggeredwebjobs/36a82f84-3/history/6af3e";
24496
Requests[4828].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24497
Requests[4828].
Request
.Path = "/subscriptions/2961fefc-8f08-/resourceGroups/6c15d8f0-147f-462/providers/Microsoft.Web/sites/94f45/slots/69d5c/virtualNetworkConnections/3da4e381/gateways/204e5334-4a";
24500
Requests[4829].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24501
Requests[4829].
Request
.Path = "/subscriptions/92cf3f63-a7c1-/resourceGroups/5c39e6ee-fc73-4a7/providers/Microsoft.Web/sites/0d12e/slots/1300c/virtualNetworkConnections/7a3f3fae/gateways/785fd984-59";
24504
Requests[4830].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24505
Requests[4830].
Request
.Path = "/subscriptions/34b95a08-5a3b-/resourceGroups/c9452f2c-9256-4f8/providers/Microsoft.Web/sites/93282/slots/51822/virtualNetworkConnections/11f12acf/gateways/7c44d343-81";
24508
Requests[4831].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24509
Requests[4831].
Request
.Path = "/subscriptions/7ba531ed-0577-/resourceGroups/7e107482-dc1c-4f8/providers/Microsoft.Web/sites/e743ea08/slots/b5c93/diagnostics/6332ba08-eb13-41a1/analyses/2ed07335-6fd";
24512
Requests[4832].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24513
Requests[4832].
Request
.Path = "/subscriptions/5793b54c-a8d1-/resourceGroups/6568837e-daea-48d/providers/Microsoft.Web/sites/cf6e3dc4/slots/053cf/diagnostics/64088a0c-d775-4412/detectors/0a1196b0-68c";
24516
Requests[4833].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24517
Requests[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";
24520
Requests[4834].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24521
Requests[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";
24524
Requests[4835].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24525
Requests[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";
24528
Requests[4836].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24529
Requests[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";
24532
Requests[4837].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24533
Requests[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";
24536
Requests[4838].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24537
Requests[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";
24540
Requests[4839].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24541
Requests[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";
24544
Requests[4840].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24545
Requests[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";
24548
Requests[4841].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24549
Requests[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";
24552
Requests[4842].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24553
Requests[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";
24556
Requests[4843].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24557
Requests[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";
24560
Requests[4844].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24561
Requests[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";
24564
Requests[4845].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24565
Requests[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";
24568
Requests[4846].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24569
Requests[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";
24572
Requests[4847].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24573
Requests[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";
24576
Requests[4848].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24577
Requests[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";
24580
Requests[4849].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24581
Requests[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";
24584
Requests[4850].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24585
Requests[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";
24588
Requests[4851].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24589
Requests[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";
24592
Requests[4852].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24593
Requests[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";
24596
Requests[4853].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24597
Requests[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";
24600
Requests[4854].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24601
Requests[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";
24604
Requests[4855].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24605
Requests[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";
24608
Requests[4856].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24609
Requests[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";
24612
Requests[4857].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24613
Requests[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";
24616
Requests[4858].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24617
Requests[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";
24620
Requests[4859].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24621
Requests[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";
24624
Requests[4860].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24625
Requests[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";
24628
Requests[4861].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24629
Requests[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";
24632
Requests[4862].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24633
Requests[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";
24636
Requests[4863].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24637
Requests[4863].
Request
.Path = "/subscriptions/f864bdcf-c08a-/resourceGroups/118bc2d3-8a91-46f/providers/Microsoft.Web/sites/ba4aa/slots/c8ec1/hybridConnectionNamespaces/ad5c59b0-82b3/relays/691cd166-/listKeys";
24640
Requests[4864].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24641
Requests[4864].
Request
.Path = "/subscriptions/385ca42d-1776-/resourceGroups/2ec6e320-7ace-4eb/providers/Microsoft.Web/sites/de1b9/slots/0add9/instances/3efb17b4-b/processes/2cbbf3ac-/dump";
24644
Requests[4865].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24645
Requests[4865].
Request
.Path = "/subscriptions/12049df9-b7a6-/resourceGroups/43946189-b4a8-491/providers/Microsoft.Web/sites/106d7/slots/cdc1b/instances/e19d537d-4/processes/75b77b12-/modules";
24648
Requests[4866].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24649
Requests[4866].
Request
.Path = "/subscriptions/7c4a0603-26c9-/resourceGroups/d779ffc0-d8ac-4ee/providers/Microsoft.Web/sites/bfada/slots/68aa6/instances/9897619f-5/processes/1491907d-/threads";
24652
Requests[4867].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24653
Requests[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";
24656
Requests[4868].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24657
Requests[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";
24660
Requests[4869].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24661
Requests[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";
24664
Requests[4870].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24665
Requests[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-";
24668
Requests[4871].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24669
Requests[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";
24672
Requests[4872].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24673
Requests[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";
24676
Requests[4873].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24677
Requests[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";
24680
Requests[4874].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24681
Requests[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";
24684
Requests[4875].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24685
Requests[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";
24688
Requests[4876].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24689
Requests[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";
24692
Requests[4877].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24693
Requests[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";
24696
Requests[4878].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24697
Requests[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";
24700
Requests[4879].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24701
Requests[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";
24704
Requests[4880].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24705
Requests[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";
24708
Requests[4881].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24709
Requests[4881].
Request
.Path = "/subscriptions/3cce76a4-2821-/resourceGroups/dd2bf3bb-191b-454/providers/Microsoft.Web/sites/351b6/slots/08e5c/instances/92c1b10a-e/processes/39e953e6-/threads/2c598ac2";
24712
Requests[4882].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24713
Requests[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";
24716
Requests[4883].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24717
Requests[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";
24720
Requests[4884].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24721
Requests[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";
24724
Requests[4885].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24725
Requests[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";
24728
Requests[4886].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24729
Requests[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";
24732
Requests[4887].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24733
Requests[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";
24736
Requests[4888].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24737
Requests[4888].
Request
.Path = "/subscriptions/10516263-3f7e-/resourceGroups/1bf8d1fa-8d07-491/providers/Microsoft.ApiManagement/service/8abe0ca6-f3/quotas/fdc8f7ad-68ea-4/c4f6b972-57e7-";
24740
Requests[4889].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24741
Requests[4889].
Request
.Path = "/subscriptions/139989cd-4c93-/resourceGroups/7329f758-a676-43b/providers/Microsoft.ApiManagement/service/ce71dc48-0b/quotas/09113d7e-b53b-4/b84538da-c0f7-";
24744
Requests[4890].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24745
Requests[4890].
Request
.Path = "/subscriptions/bebbca39-7129-/resourceGroups/ef380694-998a-4f2/providers/Microsoft.Security/locations/6286daec-c5/alerts/9ffca175-/7efdabd8-b923-4889-9f";
24748
Requests[4891].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24749
Requests[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";
24752
Requests[4892].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
24753
Requests[4892].
Request
.Path = "/subscriptions/4f0fda55-2e6d-/resourceGroups/81831a56-1777-474/providers/Microsoft.Security/locations/5c01f027-1a/tasks/f6d95d99/130cf9c8-3fa2-40c2-9";
24756
Requests[4893].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24757
Requests[4893].
Request
.Path = "/subscriptions/781d1560-c2b2-/resourceGroups/efb28a26-02cc-4ab/providers/microsoft.insights/components/b8e7b533-031/e62635a6-";
24760
Requests[4894].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24761
Requests[4894].
Request
.Path = "/subscriptions/6460ce03-3a13-/resourceGroups/56caf886-83db-463/providers/Microsoft.Network/dnsZones/16b2c706/1178a933-3";
24764
Requests[4895].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24765
Requests[4895].
Request
.Path = "/subscriptions/e7295fec-c8d2-/resourceGroups/2a3fbd09-de1c-4f8/providers/microsoft.insights/components/95fcaeb6-dbc/d800ae67-/item";
24768
Requests[4896].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24769
Requests[4896].
Request
.Path = "/subscriptions/98fde1ef-5349-/resourceGroups/7aa9f7db-3064-487/providers/microsoft.insights/components/7a308ab3-f78/08d3cf9d-/item";
24772
Requests[4897].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24773
Requests[4897].
Request
.Path = "/subscriptions/fa32c24a-af64-/resourceGroups/3e1dfba9-695c-434/providers/microsoft.insights/components/f312f7b4-0dc/f2e2defe-/item";
24776
Requests[4898].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24777
Requests[4898].
Request
.Path = "/subscriptions/93df41b3-fc67-/resourceGroups/d520b710-03ae-48a/providers/Microsoft.Network/dnsZones/ce35f393/541714ab-1/fb26f6de-64fc-42bd-83";
24780
Requests[4899].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24781
Requests[4899].
Request
.Path = "/subscriptions/965c9a6b-569a-/resourceGroups/196bb97b-64f0-412/providers/Microsoft.Network/dnsZones/6babb5bd/618803f9-3/5fbccdb7-2dd4-4bdf-84";
24784
Requests[4900].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24785
Requests[4900].
Request
.Path = "/subscriptions/cdbc08bb-e60c-/resourceGroups/a8bd0da5-1e37-4a9/providers/Microsoft.Network/dnsZones/c4dcb792/599675bc-c/501d9ae8-eea3-473c-a0";
24788
Requests[4901].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24789
Requests[4901].
Request
.Path = "/subscriptions/aac7f575-2574-/resourceGroups/360fd650-0c06-4df/providers/Microsoft.Network/dnsZones/80a15c4c/21658587-3/eb04c2c0-42b8-4393-8b";
24792
Requests[4902].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24793
Requests[4902].
Request
.Path = "/subscriptions/2b0b8b47-272a-/resourceGroups/c4cfd748-836f-40a/providers/Microsoft.Network/trafficmanagerprofiles/95da7bfe-8a/e57a6b8c-ebc/5d3607df-b75";
24796
Requests[4903].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24797
Requests[4903].
Request
.Path = "/subscriptions/30aa405c-daed-/resourceGroups/05e61d9d-633f-42e/providers/Microsoft.Network/trafficmanagerprofiles/285791ed-46/d067f0ee-bd8/1408e0ed-fc3";
24800
Requests[4904].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24801
Requests[4904].
Request
.Path = "/subscriptions/3a5e0092-20bc-/resourceGroups/ff3263fc-17c8-4f0/providers/Microsoft.Network/trafficmanagerprofiles/e05c26bf-17/a0ce2c72-951/623e9e51-c90";
24804
Requests[4905].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24805
Requests[4905].
Request
.Path = "/subscriptions/5868afd5-497e-/resourceGroups/d1387aed-7d24-4ef/providers/Microsoft.Network/trafficmanagerprofiles/12a07228-c3/aa803c65-465/f895e1f3-6fc";
24808
Requests[4906].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24809
Requests[4906].
Request
.Path = "/apis/513f5/operations/82d8cbc5-8e/policies/ce1cf724";
24812
Requests[4907].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24813
Requests[4907].
Request
.Path = "/apis/241b2/operations/b8a899d7-cf/policies/b439928c";
24816
Requests[4908].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24817
Requests[4908].
Request
.Path = "/apis/fb89b/operations/477c1598-f6/policies/dbe60b1a";
24820
Requests[4909].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24821
Requests[4909].
Request
.Path = "/apps/8d0ce/versions/d95f8dde-/closedlists/e790e7da-d";
24824
Requests[4910].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24825
Requests[4910].
Request
.Path = "/apps/33ee0/versions/fdf9052c-/closedlists/bdcf2d17-9";
24828
Requests[4911].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24829
Requests[4911].
Request
.Path = "/apps/f71af/versions/72848dbc-/closedlists/d8365b20-d";
24832
Requests[4912].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24833
Requests[4912].
Request
.Path = "/apps/08c50/versions/430dba37-/closedlists/f98200ba-3";
24836
Requests[4913].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24837
Requests[4913].
Request
.Path = "/apps/11190/versions/28869cce-/compositeentities/0a063510-";
24840
Requests[4914].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24841
Requests[4914].
Request
.Path = "/apps/79c0c/versions/6b0c5e98-/compositeentities/06ee5ee4-";
24844
Requests[4915].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24845
Requests[4915].
Request
.Path = "/apps/c9593/versions/0a7d01df-/compositeentities/06efb9fc-";
24848
Requests[4916].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24849
Requests[4916].
Request
.Path = "/apps/bb9c7/versions/4476452c-/customprebuiltdomains/a854413c-0";
24852
Requests[4917].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24853
Requests[4917].
Request
.Path = "/apps/fb8e9/versions/190c27d8-/entities/c6cb4815";
24856
Requests[4918].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24857
Requests[4918].
Request
.Path = "/apps/83c5d/versions/1231a7c7-/entities/5a855ffe";
24860
Requests[4919].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24861
Requests[4919].
Request
.Path = "/apps/e1f0f/versions/9021c575-/entities/f4250272";
24864
Requests[4920].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24865
Requests[4920].
Request
.Path = "/apps/01fcd/versions/4d12d914-/examples/7912fbb1-";
24868
Requests[4921].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24869
Requests[4921].
Request
.Path = "/apps/2f459/versions/5ecb7b06-/hierarchicalentities/a1ec199f-";
24872
Requests[4922].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24873
Requests[4922].
Request
.Path = "/apps/ccb5c/versions/6bdc7397-/hierarchicalentities/8ad2c293-";
24876
Requests[4923].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24877
Requests[4923].
Request
.Path = "/apps/a9c06/versions/97497c94-/hierarchicalentities/57dfd669-";
24880
Requests[4924].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24881
Requests[4924].
Request
.Path = "/apps/1dc7e/versions/1f2523be-/intents/54cb2658";
24884
Requests[4925].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24885
Requests[4925].
Request
.Path = "/apps/56167/versions/20a9a4b4-/intents/ac15f564";
24888
Requests[4926].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24889
Requests[4926].
Request
.Path = "/apps/afb3f/versions/4e632218-/intents/15fb0650";
24892
Requests[4927].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24893
Requests[4927].
Request
.Path = "/apps/7b893/versions/7c7090bf-/patternanyentities/98457a87";
24896
Requests[4928].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24897
Requests[4928].
Request
.Path = "/apps/deb56/versions/f0261165-/patternanyentities/f455956e";
24900
Requests[4929].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24901
Requests[4929].
Request
.Path = "/apps/5886f/versions/44c1838a-/patternanyentities/78469290";
24904
Requests[4930].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24905
Requests[4930].
Request
.Path = "/apps/8a120/versions/cfafadc1-/patternrules/c20cc4bd-";
24908
Requests[4931].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24909
Requests[4931].
Request
.Path = "/apps/62ef2/versions/d006d772-/patternrules/f9d3478b-";
24912
Requests[4932].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24913
Requests[4932].
Request
.Path = "/apps/0aca5/versions/0973ee92-/patterns/14e1d8d3-";
24916
Requests[4933].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24917
Requests[4933].
Request
.Path = "/apps/5f1c7/versions/f81ffbf4-/patterns/f77ececd-";
24920
Requests[4934].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24921
Requests[4934].
Request
.Path = "/apps/881e8/versions/eb3cdb2f-/patterns/6410c0e8-";
24924
Requests[4935].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24925
Requests[4935].
Request
.Path = "/apps/87459/versions/231abce1-/phraselists/f74a2608-b9e";
24928
Requests[4936].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24929
Requests[4936].
Request
.Path = "/apps/e9901/versions/bdfb8075-/phraselists/09d5483f-343";
24932
Requests[4937].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24933
Requests[4937].
Request
.Path = "/apps/ebe37/versions/4966c96b-/phraselists/1ac342f9-617";
24936
Requests[4938].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24937
Requests[4938].
Request
.Path = "/apps/ab712/versions/455e7e97-/prebuilts/b7b8747e-7";
24940
Requests[4939].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24941
Requests[4939].
Request
.Path = "/apps/cbe09/versions/92caa256-/prebuilts/f40b3c83-7";
24944
Requests[4940].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24945
Requests[4940].
Request
.Path = "/apps/45afa/versions/d0f204aa-/regexentities/4f610950-454b";
24948
Requests[4941].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24949
Requests[4941].
Request
.Path = "/apps/799b0/versions/ede12146-/regexentities/50ee8a63-87f9";
24952
Requests[4942].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24953
Requests[4942].
Request
.Path = "/apps/d79e9/versions/c3ee5796-/regexentities/b1455842-1804";
24956
Requests[4943].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24957
Requests[4943].
Request
.Path = "/jobs/2a3fc/tasks/7780a6/files/a9cec738";
24960
Requests[4944].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24961
Requests[4944].
Request
.Path = "/jobs/78da7/tasks/949653/files/8d67c742";
24964
Requests[4945].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24965
Requests[4945].
Request
.Path = "/jobs/204f4/tasks/172563/files/2fee5574";
24968
Requests[4946].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24969
Requests[4946].
Request
.Path = "/persongroups/857e54fc-4350/persons/5b186435/persistedFaces/977982f4-190f-4";
24972
Requests[4947].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24973
Requests[4947].
Request
.Path = "/persongroups/aa14cb16-af27/persons/f7b0f457/persistedFaces/bb539487-2023-4";
24976
Requests[4948].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
24977
Requests[4948].
Request
.Path = "/persongroups/67d72e12-48c3/persons/93bd0ecb/persistedFaces/afe882c4-f74d-4";
24980
Requests[4949].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
24981
Requests[4949].
Request
.Path = "/pools/fc4e31/nodes/c4c148/files/f3928014";
24984
Requests[4950].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24985
Requests[4950].
Request
.Path = "/pools/d687bd/nodes/e2c6e6/files/fc34c099";
24988
Requests[4951].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
24989
Requests[4951].
Request
.Path = "/pools/6f9a58/nodes/5c6fc8/files/6f691424";
24992
Requests[4952].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
24993
Requests[4952].
Request
.Path = "/pools/d0224b/nodes/d031bf/users/f7f0d225";
24996
Requests[4953].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
24997
Requests[4953].
Request
.Path = "/pools/d55a60/nodes/f42add/users/6c156708";
25000
Requests[4954].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25001
Requests[4954].
Request
.Path = "/subscriptions/59118636-503f-/tagNames/4bf538c/tagValues/39540536";
25004
Requests[4955].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25005
Requests[4955].
Request
.Path = "/subscriptions/54d7bf4e-6836-/tagNames/3020c6f/tagValues/cd00b0fb";
25008
Requests[4956].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25009
Requests[4956].
Request
.Path = "/apps/9cfcd/versions/b058858b-/closedlists/6769ebd7-6/sublists";
25012
Requests[4957].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25013
Requests[4957].
Request
.Path = "/apps/ac654/versions/4168564a-/closedlists/08a8d948/roles";
25016
Requests[4958].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25017
Requests[4958].
Request
.Path = "/apps/4770d/versions/f554c2a5-/closedlists/46782ea8/roles";
25020
Requests[4959].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25021
Requests[4959].
Request
.Path = "/apps/e358a/versions/dbe3f466-/compositeentities/f4b37cbe-/children";
25024
Requests[4960].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25025
Requests[4960].
Request
.Path = "/apps/4ff32/versions/a02f5a8c-/compositeentities/49b935f0-/roles";
25028
Requests[4961].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25029
Requests[4961].
Request
.Path = "/apps/6f1c7/versions/88ea8074-/compositeentities/976cfeb6-/roles";
25032
Requests[4962].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25033
Requests[4962].
Request
.Path = "/apps/9f1aa/versions/4edca212-/customprebuiltentities/b9a9e93f/roles";
25036
Requests[4963].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25037
Requests[4963].
Request
.Path = "/apps/27086/versions/1275fbea-/customprebuiltentities/008b3d43/roles";
25040
Requests[4964].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25041
Requests[4964].
Request
.Path = "/apps/2fedd/versions/2973e55e-/entities/71306ee8/roles";
25044
Requests[4965].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25045
Requests[4965].
Request
.Path = "/apps/32345/versions/843aa7ba-/entities/3ca2fbb7/roles";
25048
Requests[4966].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25049
Requests[4966].
Request
.Path = "/apps/109cd/versions/dc33f23d-/entities/eb481b08/suggest";
25052
Requests[4967].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25053
Requests[4967].
Request
.Path = "/apps/44756/versions/6612fa28-/hierarchicalentities/659112ae-/children";
25056
Requests[4968].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25057
Requests[4968].
Request
.Path = "/apps/503a4/versions/3f96ae06-/hierarchicalentities/77d26a1c-/roles";
25060
Requests[4969].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25061
Requests[4969].
Request
.Path = "/apps/4b384/versions/6fc4ea30-/hierarchicalentities/142f7935-/roles";
25064
Requests[4970].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25065
Requests[4970].
Request
.Path = "/apps/d427b/versions/09389cc8-/intents/77698b76/patternrules";
25068
Requests[4971].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25069
Requests[4971].
Request
.Path = "/apps/51949/versions/b42f1245-/intents/68a76c06/suggest";
25072
Requests[4972].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25073
Requests[4972].
Request
.Path = "/apps/cc8a9/versions/371f1203-/models/635ea29/examples";
25076
Requests[4973].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25077
Requests[4973].
Request
.Path = "/apps/1986b/versions/827ede0e-/patternanyentities/32a3e3ff/explicitlist";
25080
Requests[4974].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25081
Requests[4974].
Request
.Path = "/apps/2d14b/versions/facb0c8c-/patternanyentities/3f381cab/explicitlist";
25084
Requests[4975].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25085
Requests[4975].
Request
.Path = "/apps/d8769/versions/e878fb2a-/patternanyentities/2f72569a/roles";
25088
Requests[4976].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25089
Requests[4976].
Request
.Path = "/apps/9716f/versions/56fa8516-/patternanyentities/36176239/roles";
25092
Requests[4977].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25093
Requests[4977].
Request
.Path = "/apps/32dca/versions/1a1c13d9-/prebuilts/90a7c512/roles";
25096
Requests[4978].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25097
Requests[4978].
Request
.Path = "/apps/a7377/versions/31cb93b4-/prebuilts/93f1a619/roles";
25100
Requests[4979].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25101
Requests[4979].
Request
.Path = "/apps/a1a07/versions/a50b7579-/regexentities/9118f3a1/roles";
25104
Requests[4980].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25105
Requests[4980].
Request
.Path = "/apps/4ce26/versions/77350f22-/regexentities/1d3ec769/roles";
25108
Requests[4981].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25109
Requests[4981].
Request
.Path = "/subscriptions/fe9bdacb-e66f-/resourcegroups/8ae62abb-8c61-434/deployments/931fea78-c988-/operations";
25112
Requests[4982].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25113
Requests[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";
25116
Requests[4983].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25117
Requests[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";
25120
Requests[4984].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25121
Requests[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";
25124
Requests[4985].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25125
Requests[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";
25128
Requests[4986].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25129
Requests[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";
25132
Requests[4987].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25133
Requests[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";
25136
Requests[4988].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25137
Requests[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";
25140
Requests[4989].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25141
Requests[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";
25144
Requests[4990].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25145
Requests[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";
25148
Requests[4991].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25149
Requests[4991].
Request
.Path = "/apps/edc59/versions/551a1c27-/closedlists/8c2412a8-2/sublists/83875052-";
25152
Requests[4992].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25153
Requests[4992].
Request
.Path = "/apps/08ffc/versions/c9e12ad1-/closedlists/a95a45ca-3/sublists/068e5721-";
25156
Requests[4993].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25157
Requests[4993].
Request
.Path = "/apps/cc09a/versions/d70e2332-/closedlists/ce5ebbe3/roles/de9e81";
25160
Requests[4994].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25161
Requests[4994].
Request
.Path = "/apps/75a08/versions/78ff5008-/closedlists/d6ddc1b9/roles/e927c4";
25164
Requests[4995].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25165
Requests[4995].
Request
.Path = "/apps/c9296/versions/2dbf6652-/closedlists/67a399ce/roles/806005";
25168
Requests[4996].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25169
Requests[4996].
Request
.Path = "/apps/20482/versions/91038f78-/compositeentities/072206ac-/children/575d7e4d";
25172
Requests[4997].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25173
Requests[4997].
Request
.Path = "/apps/79452/versions/afe535c2-/compositeentities/ea8ea533-/roles/693ea1";
25176
Requests[4998].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25177
Requests[4998].
Request
.Path = "/apps/be496/versions/b9da6808-/compositeentities/36a34b7d-/roles/f52586";
25180
Requests[4999].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25181
Requests[4999].
Request
.Path = "/apps/f00b3/versions/53fd696b-/compositeentities/efb6b767-/roles/3f387b";
25184
Requests[5000].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25185
Requests[5000].
Request
.Path = "/apps/6bd08/versions/d98f0c88-/customprebuiltentities/478cea50/roles/d480dc";
25188
Requests[5001].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25189
Requests[5001].
Request
.Path = "/apps/3a9ae/versions/0f6b151f-/customprebuiltentities/8ba5a3c3/roles/45b9c2";
25192
Requests[5002].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25193
Requests[5002].
Request
.Path = "/apps/f6b28/versions/49b2bab7-/customprebuiltentities/4c0d2e36/roles/0f5d03";
25196
Requests[5003].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25197
Requests[5003].
Request
.Path = "/apps/f4cbe/versions/afe14ea6-/entities/28e6c2de/roles/80ea17";
25200
Requests[5004].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25201
Requests[5004].
Request
.Path = "/apps/1a09d/versions/e29a2af3-/entities/e1ef95cb/roles/0a6ad2";
25204
Requests[5005].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25205
Requests[5005].
Request
.Path = "/apps/3a82b/versions/825992db-/entities/b7865a80/roles/bfb58a";
25208
Requests[5006].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25209
Requests[5006].
Request
.Path = "/apps/46897/versions/532f9544-/hierarchicalentities/c05328c7-/children/9fc4adce";
25212
Requests[5007].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25213
Requests[5007].
Request
.Path = "/apps/51dea/versions/160a594c-/hierarchicalentities/90a57acb-/children/84c0c425";
25216
Requests[5008].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25217
Requests[5008].
Request
.Path = "/apps/a7215/versions/03a0207e-/hierarchicalentities/251ba12d-/children/8608e422";
25220
Requests[5009].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25221
Requests[5009].
Request
.Path = "/apps/baa14/versions/2ec5e49c-/hierarchicalentities/fa5b7395-/roles/884d6d";
25224
Requests[5010].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25225
Requests[5010].
Request
.Path = "/apps/bf0d3/versions/70695e1b-/hierarchicalentities/1d6ada09-/roles/498a98";
25228
Requests[5011].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25229
Requests[5011].
Request
.Path = "/apps/d0b43/versions/230196c4-/hierarchicalentities/c0b9543c-/roles/853491";
25232
Requests[5012].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25233
Requests[5012].
Request
.Path = "/apps/1af84/versions/33e6b9c1-/patternanyentities/28d5a5d6/explicitlist/60557e";
25236
Requests[5013].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25237
Requests[5013].
Request
.Path = "/apps/6bc14/versions/ed5af8f8-/patternanyentities/b1244dcd/explicitlist/1f1f1b";
25240
Requests[5014].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25241
Requests[5014].
Request
.Path = "/apps/b3a3d/versions/3f2f37ab-/patternanyentities/5f6976c0/explicitlist/b53473";
25244
Requests[5015].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25245
Requests[5015].
Request
.Path = "/apps/ec879/versions/7b54beb5-/patternanyentities/b4710f47/roles/0f4614";
25248
Requests[5016].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25249
Requests[5016].
Request
.Path = "/apps/e3169/versions/af95ed6f-/patternanyentities/821e3388/roles/956530";
25252
Requests[5017].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25253
Requests[5017].
Request
.Path = "/apps/d5d21/versions/14145059-/patternanyentities/7a38066f/roles/ca4430";
25256
Requests[5018].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25257
Requests[5018].
Request
.Path = "/apps/83814/versions/bac094a9-/prebuilts/b3f4d3c7/roles/49be97";
25260
Requests[5019].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25261
Requests[5019].
Request
.Path = "/apps/c6959/versions/cb5e283a-/prebuilts/43017212/roles/0a6127";
25264
Requests[5020].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25265
Requests[5020].
Request
.Path = "/apps/f0057/versions/296d2204-/prebuilts/6e326b95/roles/bf9296";
25268
Requests[5021].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25269
Requests[5021].
Request
.Path = "/apps/6bb20/versions/0b280ee7-/regexentities/ef17de58/roles/c874d3";
25272
Requests[5022].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25273
Requests[5022].
Request
.Path = "/apps/021e8/versions/884491da-/regexentities/1497ccb5/roles/95490f";
25276
Requests[5023].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25277
Requests[5023].
Request
.Path = "/apps/56bbd/versions/fac60968-/regexentities/38b5feb8/roles/d206af";
25280
Requests[5024].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25281
Requests[5024].
Request
.Path = "/subscriptions/13b8699a-bcd4-/resourcegroups/39ecad98-cc84-431/deployments/a8fb576e-68e9-/operations/568a987e-52";
25284
Requests[5025].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25285
Requests[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";
25288
Requests[5026].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25289
Requests[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";
25292
Requests[5027].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25293
Requests[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";
25296
Requests[5028].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25297
Requests[5028].
Request
.Path = "/subscriptions/1e3d2345-23ff-/resourceGroups/c34bd6e6-4530-45c/providers/f4778a3a-046c-4a2/ef4a3056-425d-4f/86159148-52a/providers/Microsoft.EventGrid/eventSubscriptions";
25300
Requests[5029].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25301
Requests[5029].
Request
.Path = "/subscriptions/aa61dfbd-2f53-/resourceGroups/f61158ad-c233-4a6/providers/5776c647-43a3-45b/44086290-2050-45/b29c60a9-07a/providers/Microsoft.EventGrid/eventTypes";
25304
Requests[5030].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25305
Requests[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";
25308
Requests[5031].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25309
Requests[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";
25312
Requests[5032].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25313
Requests[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";
25316
Requests[5033].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25317
Requests[5033].
Request
.Path = "/subscriptions/74438ae1-fbdd-/resourcegroups/ab836d16-b3c5-471/providers/0d7c7b8d-db05-45a8-8b71-1/9ed702db-16ad-43c1/f139f812-713/af1f81f1-903";
25320
Requests[5034].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25321
Requests[5034].
Request
.Path = "/subscriptions/43dea823-907e-/resourcegroups/155ad3fc-2e75-4f7/providers/de9a1b74-e4e1-4d71-9c12-7/c6811194-c174-4ffe/a2d577b1-8db/d7ecebb8-760";
25324
Requests[5035].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25325
Requests[5035].
Request
.Path = "/subscriptions/439e900d-4744-/resourcegroups/5e82e31e-ec5d-4ea/providers/529335f9-2845-4bc1-bf2a-6/b06cc901-3097-4c74/e063a8ac-b59/bff8051c-fd2";
25328
Requests[5036].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25329
Requests[5036].
Request
.Path = "/subscriptions/36fc7f98-7327-/resourcegroups/d2ba89fa-e76a-4a9/providers/6bd39142-324a-4cb6-b3ee-c/d43e1ed1-a760-4c67/a6face59-553/d6a1a244-813";
25332
Requests[5037].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
25333
Requests[5037].
Request
.Path = "/subscriptions/069c0934-25b6-/resourcegroups/5dd81c92-f5ee-407/providers/e1d26ff3-179a-4c50-891c-9/582ebc06-162e-46c1/8aa73949-24e/3badcda8-e9e";
25336
Requests[5038].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25337
Requests[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";
25340
Requests[5039].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25341
Requests[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";
25344
Requests[5040].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25345
Requests[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";
25348
Requests[5041].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25349
Requests[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";
25352
Requests[5042].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25353
Requests[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";
25356
Requests[5043].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25357
Requests[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";
25360
Requests[5044].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25361
Requests[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";
25364
Requests[5045].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25365
Requests[5045].
Request
.Path = "/apps/a7ff8/events/bd4e75ce-/f4d58eb";
25368
Requests[5046].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25369
Requests[5046].
Request
.Path = "/certificates/bccd0cd0-3781-47/989d355c-33d4-4c88-";
25372
Requests[5047].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25373
Requests[5047].
Request
.Path = "/certificates/6cfef54f-17ed-4f/cb190d66-974b-4b36-";
25376
Requests[5048].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25377
Requests[5048].
Request
.Path = "/keys/aaa01248/55d587b4-e3";
25380
Requests[5049].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25381
Requests[5049].
Request
.Path = "/keys/6439a236/534e6909-3c";
25384
Requests[5050].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25385
Requests[5050].
Request
.Path = "/quotas/00809cfe-6030-4/9a95d29f-1dac-";
25388
Requests[5051].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25389
Requests[5051].
Request
.Path = "/quotas/624d8259-5166-4/fa9dd3b7-5e5f-";
25392
Requests[5052].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25393
Requests[5052].
Request
.Path = "/secrets/1859a1e2-67/4435e75a-b8fc-";
25396
Requests[5053].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25397
Requests[5053].
Request
.Path = "/secrets/ca624bcd-b6/a23372d7-fa68-";
25400
Requests[5054].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25401
Requests[5054].
Request
.Path = "/keys/6813d254/69f2e5df-b5/decrypt";
25404
Requests[5055].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25405
Requests[5055].
Request
.Path = "/keys/61b89e0f/282e27ea-23/encrypt";
25408
Requests[5056].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25409
Requests[5056].
Request
.Path = "/keys/a349c59c/9f616fd8-82/sign";
25412
Requests[5057].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25413
Requests[5057].
Request
.Path = "/keys/a74e6ac5/b142ac41-7c/unwrapkey";
25416
Requests[5058].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25417
Requests[5058].
Request
.Path = "/keys/905a052f/12a9ab53-45/verify";
25420
Requests[5059].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25421
Requests[5059].
Request
.Path = "/keys/4dc2a804/a934a0ac-05/wrapkey";
25424
Requests[5060].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25425
Requests[5060].
Request
.Path = "/eb9c0";
25428
Requests[5061].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25429
Requests[5061].
Request
.Path = "/a040db6f-8992-42a3-b45a";
25432
Requests[5062].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25433
Requests[5062].
Request
.Path = "/9b53836f-a86e-4445-9d33";
25436
Requests[5063].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25437
Requests[5063].
Request
.Path = "/b5c159a7-25f1-4b1a-8fc9";
25440
Requests[5064].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25441
Requests[5064].
Request
.Path = "/df936d60-9832";
25444
Requests[5065].
Request
.Method = HttpMethods.GetCanonicalizedValue("HEAD");
25445
Requests[5065].
Request
.Path = "/c39de944-4";
25448
Requests[5066].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25449
Requests[5066].
Request
.Path = "/26e97936-/image";
25452
Requests[5067].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25453
Requests[5067].
Request
.Path = "/e448d1db-/url";
25456
Requests[5068].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25457
Requests[5068].
Request
.Path = "/6cca6ee6/applications";
25460
Requests[5069].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25461
Requests[5069].
Request
.Path = "/d613f0b5/applications";
25464
Requests[5070].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25465
Requests[5070].
Request
.Path = "/533dcddd/domains";
25468
Requests[5071].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25469
Requests[5071].
Request
.Path = "/5566b187/getObjectsByObjectIds";
25472
Requests[5072].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25473
Requests[5072].
Request
.Path = "/206424ea/groups";
25476
Requests[5073].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25477
Requests[5073].
Request
.Path = "/55892cc8/groups";
25480
Requests[5074].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25481
Requests[5074].
Request
.Path = "/bae8bf34/isMemberOf";
25484
Requests[5075].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25485
Requests[5075].
Request
.Path = "/a1c1ed4d/me";
25488
Requests[5076].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25489
Requests[5076].
Request
.Path = "/d2c050a6/servicePrincipals";
25492
Requests[5077].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25493
Requests[5077].
Request
.Path = "/faf07559/servicePrincipals";
25496
Requests[5078].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25497
Requests[5078].
Request
.Path = "/758073a8/users";
25500
Requests[5079].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25501
Requests[5079].
Request
.Path = "/d90b419c/users";
25504
Requests[5080].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25505
Requests[5080].
Request
.Path = "/2c7ad1ba-/image/nostore";
25508
Requests[5081].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25509
Requests[5081].
Request
.Path = "/0f8cedac-/url/nostore";
25512
Requests[5082].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25513
Requests[5082].
Request
.Path = "/d3a508a0-c9/providers/microsoft.insights/calculatebaseline";
25516
Requests[5083].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25517
Requests[5083].
Request
.Path = "/b2ef4c78-e8/providers/microsoft.insights/diagnosticSettings";
25520
Requests[5084].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25521
Requests[5084].
Request
.Path = "/8d9e6aa1-dc/providers/microsoft.insights/diagnosticSettingsCategories";
25524
Requests[5085].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25525
Requests[5085].
Request
.Path = "/d28d406c-8c/providers/microsoft.insights/metricDefinitions";
25528
Requests[5086].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25529
Requests[5086].
Request
.Path = "/4f593faf-73/providers/microsoft.insights/metrics";
25532
Requests[5087].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25533
Requests[5087].
Request
.Path = "/52668213-21/providers/Microsoft.ResourceHealth/availabilityStatuses";
25536
Requests[5088].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25537
Requests[5088].
Request
.Path = "/7b91c/providers/Microsoft.Authorization/policyAssignments";
25540
Requests[5089].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25541
Requests[5089].
Request
.Path = "/34ac8/providers/Microsoft.Authorization/roleAssignments";
25544
Requests[5090].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25545
Requests[5090].
Request
.Path = "/09f60/providers/Microsoft.Authorization/roleDefinitions";
25548
Requests[5091].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25549
Requests[5091].
Request
.Path = "/89a71/providers/Microsoft.Consumption/reservationDetails";
25552
Requests[5092].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25553
Requests[5092].
Request
.Path = "/584cd/providers/Microsoft.Consumption/reservationSummaries";
25556
Requests[5093].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25557
Requests[5093].
Request
.Path = "/9d134/providers/Microsoft.Consumption/usageDetails";
25560
Requests[5094].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25561
Requests[5094].
Request
.Path = "/44360/providers/Microsoft.Resources/links";
25564
Requests[5095].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25565
Requests[5095].
Request
.Path = "/058d9/providers/Microsoft.Security/compliances";
25568
Requests[5096].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25569
Requests[5096].
Request
.Path = "/34aa56a1-6d/providers/microsoft.insights/diagnosticSettings/service";
25572
Requests[5097].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25573
Requests[5097].
Request
.Path = "/f63a3420-03/providers/microsoft.insights/diagnosticSettings/service";
25576
Requests[5098].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25577
Requests[5098].
Request
.Path = "/5a213cea-b4/providers/microsoft.insights/diagnosticSettings/service";
25580
Requests[5099].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25581
Requests[5099].
Request
.Path = "/83c8ebd4-5f/providers/Microsoft.ResourceHealth/availabilityStatuses/current";
25584
Requests[5100].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25585
Requests[5100].
Request
.Path = "/48463/providers/Microsoft.PolicyInsights/policyEvents/$metadata";
25588
Requests[5101].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25589
Requests[5101].
Request
.Path = "/0f498/providers/Microsoft.PolicyInsights/policyStates/$metadata";
25592
Requests[5102].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25593
Requests[5102].
Request
.Path = "/f051d5af-96/providers/Microsoft.Advisor/recommendations/f49c417e-2dc8-43";
25596
Requests[5103].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25597
Requests[5103].
Request
.Path = "/21326800-61/providers/microsoft.insights/baseline/750728ba-a";
25600
Requests[5104].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25601
Requests[5104].
Request
.Path = "/9cb3c23f-b5/providers/microsoft.insights/diagnosticSettings/35e09";
25604
Requests[5105].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25605
Requests[5105].
Request
.Path = "/b6d270a7-06/providers/microsoft.insights/diagnosticSettings/35694";
25608
Requests[5106].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25609
Requests[5106].
Request
.Path = "/c8132eff-ed/providers/microsoft.insights/diagnosticSettings/2c90e";
25612
Requests[5107].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25613
Requests[5107].
Request
.Path = "/3ffd64f3-4c/providers/microsoft.insights/diagnosticSettingsCategories/59308";
25616
Requests[5108].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25617
Requests[5108].
Request
.Path = "/a47b3/providers/Microsoft.Authorization/locks/436eb91a";
25620
Requests[5109].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25621
Requests[5109].
Request
.Path = "/dfdea/providers/Microsoft.Authorization/locks/7443d6f4";
25624
Requests[5110].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25625
Requests[5110].
Request
.Path = "/717ce/providers/Microsoft.Authorization/locks/32c03016";
25628
Requests[5111].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25629
Requests[5111].
Request
.Path = "/29986/providers/Microsoft.Authorization/policyAssignments/e5f7dc9b-a02d-47b0-a";
25632
Requests[5112].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25633
Requests[5112].
Request
.Path = "/7a993/providers/Microsoft.Authorization/policyAssignments/0cb7396d-d47f-4b18-8";
25636
Requests[5113].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25637
Requests[5113].
Request
.Path = "/220cc/providers/Microsoft.Authorization/policyAssignments/09dd5597-76f9-40da-8";
25640
Requests[5114].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25641
Requests[5114].
Request
.Path = "/0cb0e/providers/Microsoft.Authorization/roleAssignments/944179c6-5164-404c";
25644
Requests[5115].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25645
Requests[5115].
Request
.Path = "/9f9e8/providers/Microsoft.Authorization/roleAssignments/9ae5aea9-b398-4bf6";
25648
Requests[5116].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25649
Requests[5116].
Request
.Path = "/414f5/providers/Microsoft.Authorization/roleAssignments/59b5cef8-3d43-44ff";
25652
Requests[5117].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25653
Requests[5117].
Request
.Path = "/fd6a3/providers/Microsoft.Authorization/roleDefinitions/1dee4cfb-41aa-48";
25656
Requests[5118].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25657
Requests[5118].
Request
.Path = "/88962/providers/Microsoft.Authorization/roleDefinitions/95550e91-14a6-4a";
25660
Requests[5119].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25661
Requests[5119].
Request
.Path = "/68123/providers/Microsoft.Authorization/roleDefinitions/6d249402-6f53-4c";
25664
Requests[5120].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25665
Requests[5120].
Request
.Path = "/a5f62/providers/Microsoft.EventGrid/eventSubscriptions/594e6f54-6e92-44f2-93";
25668
Requests[5121].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25669
Requests[5121].
Request
.Path = "/f5473/providers/Microsoft.EventGrid/eventSubscriptions/4fa85313-8d9f-467c-b1";
25672
Requests[5122].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25673
Requests[5122].
Request
.Path = "/4c645/providers/Microsoft.EventGrid/eventSubscriptions/4634fbc5-d96b-4ef5-a7";
25676
Requests[5123].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25677
Requests[5123].
Request
.Path = "/84698/providers/Microsoft.EventGrid/eventSubscriptions/eb84cc63-1e01-4817-84";
25680
Requests[5124].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25681
Requests[5124].
Request
.Path = "/94e21/providers/Microsoft.Security/compliances/f7cbc736-c908-";
25684
Requests[5125].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25685
Requests[5125].
Request
.Path = "/1554af9e-5/providers/Microsoft.PolicyInsights/policyEvents/50033f1d-85d8-4297-9/queryResults";
25688
Requests[5126].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25689
Requests[5126].
Request
.Path = "/83810c7b-b/providers/Microsoft.PolicyInsights/policyStates/1fca322a-7854-490d-8/queryResults";
25692
Requests[5127].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25693
Requests[5127].
Request
.Path = "/53aec485-7/providers/Microsoft.PolicyInsights/policyStates/805ced9d-bbbf-46d2-a3d7-44c/summarize";
25696
Requests[5128].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25697
Requests[5128].
Request
.Path = "/48939/providers/Microsoft.EventGrid/eventSubscriptions/ee3d2958-3b99-4bb0-a2/getFullUrl";
25700
Requests[5129].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25701
Requests[5129].
Request
.Path = "/6f497c14-d5/providers/Microsoft.Advisor/recommendations/5e7f13b8-6a2c-44/suppressions/e23e5";
25704
Requests[5130].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
25705
Requests[5130].
Request
.Path = "/7cb414a5-ff/providers/Microsoft.Advisor/recommendations/44db4e18-5fc9-49/suppressions/b0dea";
25708
Requests[5131].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25709
Requests[5131].
Request
.Path = "/d1e793b7-e3/providers/Microsoft.Advisor/recommendations/781d6f78-9eb7-45/suppressions/886d9";
25712
Requests[5132].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25713
Requests[5132].
Request
.Path = "/19d78960/applications/ebf6b10b-e112-480b-";
25716
Requests[5133].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25717
Requests[5133].
Request
.Path = "/bc2205fb/applications/fcb65994-aa4c-41f6-";
25720
Requests[5134].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25721
Requests[5134].
Request
.Path = "/44e7851b/applications/c3b0e039-5bef-4291-";
25724
Requests[5135].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25725
Requests[5135].
Request
.Path = "/0b5ab206/domains/46d06d5b-f";
25728
Requests[5136].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25729
Requests[5136].
Request
.Path = "/c0177e65/groups/c600cde6";
25732
Requests[5137].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25733
Requests[5137].
Request
.Path = "/fe8b0cba/groups/9c9bf526";
25736
Requests[5138].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25737
Requests[5138].
Request
.Path = "/256857f2/servicePrincipals/566cc761";
25740
Requests[5139].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25741
Requests[5139].
Request
.Path = "/861f668b/servicePrincipals/6fb90b06";
25744
Requests[5140].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25745
Requests[5140].
Request
.Path = "/fb1866c5/users/f63284b7-54bc";
25748
Requests[5141].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25749
Requests[5141].
Request
.Path = "/b5ba8659/users/2df785f3-6b69";
25752
Requests[5142].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25753
Requests[5142].
Request
.Path = "/d3d0692e/users/1b2b55f4-2810";
25756
Requests[5143].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25757
Requests[5143].
Request
.Path = "/18a12f9e-/images/d830eae/regionproposals";
25760
Requests[5144].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25761
Requests[5144].
Request
.Path = "/a5f6ef50/applications/ba5c1d90-878c-42e0-/keyCredentials";
25764
Requests[5145].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25765
Requests[5145].
Request
.Path = "/a34c9ef6/applications/09614e73-905f-477d-/keyCredentials";
25768
Requests[5146].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25769
Requests[5146].
Request
.Path = "/ab97efeb/applications/f768000c-c7a0-4fe1-/owners";
25772
Requests[5147].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25773
Requests[5147].
Request
.Path = "/e8c9fff6/applications/8d89ff6e-fed5-499c-/passwordCredentials";
25776
Requests[5148].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25777
Requests[5148].
Request
.Path = "/b1393c92/applications/fc50cf9b-5cca-415b-/passwordCredentials";
25780
Requests[5149].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25781
Requests[5149].
Request
.Path = "/695dfecf/groups/8354343e/getMemberGroups";
25784
Requests[5150].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25785
Requests[5150].
Request
.Path = "/8008a9c8/groups/85722fdf/members";
25788
Requests[5151].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25789
Requests[5151].
Request
.Path = "/8a5b0e45/servicePrincipals/9f620f11/keyCredentials";
25792
Requests[5152].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25793
Requests[5152].
Request
.Path = "/1511f972/servicePrincipals/0c774cb3/keyCredentials";
25796
Requests[5153].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25797
Requests[5153].
Request
.Path = "/5d9f79bd/servicePrincipals/386a4838/owners";
25800
Requests[5154].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
25801
Requests[5154].
Request
.Path = "/351b58e4/servicePrincipals/fa316d04/passwordCredentials";
25804
Requests[5155].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
25805
Requests[5155].
Request
.Path = "/5456a10f/servicePrincipals/171c0d9d/passwordCredentials";
25808
Requests[5156].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25809
Requests[5156].
Request
.Path = "/5ac48b33/users/3fa883ab/getMemberGroups";
25812
Requests[5157].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25813
Requests[5157].
Request
.Path = "/4d828b45/applications/f6b9b435-fce7-4e14-/$links/owners";
25816
Requests[5158].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
25817
Requests[5158].
Request
.Path = "/39b6b141/groups/6cf0f0bc-b1db/$links/members";
25820
Requests[5159].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
25821
Requests[5159].
Request
.Path = "/67fb987d/groups/04d01a8c-6135/$links/members/71b75dbe-0076-";
Matching\MatcherGithubBenchmarkBase.generated.cs (486)
267
Requests[0].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
268
Requests[0].
Request
.Path = "/emojis";
271
Requests[1].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
272
Requests[1].
Request
.Path = "/events";
275
Requests[2].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
276
Requests[2].
Request
.Path = "/feeds";
279
Requests[3].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
280
Requests[3].
Request
.Path = "/gists";
283
Requests[4].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
284
Requests[4].
Request
.Path = "/gists";
287
Requests[5].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
288
Requests[5].
Request
.Path = "/issues";
291
Requests[6].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
292
Requests[6].
Request
.Path = "/markdown";
295
Requests[7].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
296
Requests[7].
Request
.Path = "/meta";
299
Requests[8].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
300
Requests[8].
Request
.Path = "/notifications";
303
Requests[9].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
304
Requests[9].
Request
.Path = "/notifications";
307
Requests[10].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
308
Requests[10].
Request
.Path = "/rate_limit";
311
Requests[11].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
312
Requests[11].
Request
.Path = "/repositories";
315
Requests[12].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
316
Requests[12].
Request
.Path = "/user";
319
Requests[13].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
320
Requests[13].
Request
.Path = "/user";
323
Requests[14].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
324
Requests[14].
Request
.Path = "/users";
327
Requests[15].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
328
Requests[15].
Request
.Path = "/gists/public";
331
Requests[16].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
332
Requests[16].
Request
.Path = "/gists/starred";
335
Requests[17].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
336
Requests[17].
Request
.Path = "/gitignore/templates";
339
Requests[18].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
340
Requests[18].
Request
.Path = "/markdown/raw";
343
Requests[19].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
344
Requests[19].
Request
.Path = "/search/code";
347
Requests[20].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
348
Requests[20].
Request
.Path = "/search/issues";
351
Requests[21].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
352
Requests[21].
Request
.Path = "/search/repositories";
355
Requests[22].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
356
Requests[22].
Request
.Path = "/search/users";
359
Requests[23].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
360
Requests[23].
Request
.Path = "/user/emails";
363
Requests[24].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
364
Requests[24].
Request
.Path = "/user/emails";
367
Requests[25].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
368
Requests[25].
Request
.Path = "/user/emails";
371
Requests[26].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
372
Requests[26].
Request
.Path = "/user/followers";
375
Requests[27].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
376
Requests[27].
Request
.Path = "/user/following";
379
Requests[28].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
380
Requests[28].
Request
.Path = "/user/issues";
383
Requests[29].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
384
Requests[29].
Request
.Path = "/user/keys";
387
Requests[30].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
388
Requests[30].
Request
.Path = "/user/keys";
391
Requests[31].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
392
Requests[31].
Request
.Path = "/user/orgs";
395
Requests[32].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
396
Requests[32].
Request
.Path = "/user/repos";
399
Requests[33].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
400
Requests[33].
Request
.Path = "/user/repos";
403
Requests[34].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
404
Requests[34].
Request
.Path = "/user/starred";
407
Requests[35].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
408
Requests[35].
Request
.Path = "/user/subscriptions";
411
Requests[36].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
412
Requests[36].
Request
.Path = "/user/teams";
415
Requests[37].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
416
Requests[37].
Request
.Path = "/legacy/repos/search/7651dbb";
419
Requests[38].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
420
Requests[38].
Request
.Path = "/legacy/user/email/04193";
423
Requests[39].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
424
Requests[39].
Request
.Path = "/legacy/user/search/83cd044";
427
Requests[40].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
428
Requests[40].
Request
.Path = "/legacy/issues/search/2badf/dc2f3c98-c/2d6bc/61d4c54";
431
Requests[41].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
432
Requests[41].
Request
.Path = "/gitignore/templates/e4789e94";
435
Requests[42].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
436
Requests[42].
Request
.Path = "/notifications/threads/54db8";
439
Requests[43].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
440
Requests[43].
Request
.Path = "/notifications/threads/a9ccb";
443
Requests[44].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
444
Requests[44].
Request
.Path = "/user/following/5a73d521";
447
Requests[45].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
448
Requests[45].
Request
.Path = "/user/following/77cb2864";
451
Requests[46].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
452
Requests[46].
Request
.Path = "/user/following/91b65e36";
455
Requests[47].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
456
Requests[47].
Request
.Path = "/user/keys/27092";
459
Requests[48].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
460
Requests[48].
Request
.Path = "/user/keys/a0882";
463
Requests[49].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
464
Requests[49].
Request
.Path = "/notifications/threads/0b0be/subscription";
467
Requests[50].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
468
Requests[50].
Request
.Path = "/notifications/threads/9b0d8/subscription";
471
Requests[51].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
472
Requests[51].
Request
.Path = "/notifications/threads/8a23f/subscription";
475
Requests[52].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
476
Requests[52].
Request
.Path = "/user/starred/ec9c4/16da5";
479
Requests[53].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
480
Requests[53].
Request
.Path = "/user/starred/59cdd/1bec4";
483
Requests[54].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
484
Requests[54].
Request
.Path = "/user/starred/14da3/8c4b5";
487
Requests[55].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
488
Requests[55].
Request
.Path = "/user/subscriptions/b6bea/ba79d";
491
Requests[56].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
492
Requests[56].
Request
.Path = "/user/subscriptions/83c9a/b83ce";
495
Requests[57].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
496
Requests[57].
Request
.Path = "/user/subscriptions/10903/f415b";
499
Requests[58].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
500
Requests[58].
Request
.Path = "/gists/c78b2";
503
Requests[59].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
504
Requests[59].
Request
.Path = "/gists/7316d";
507
Requests[60].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
508
Requests[60].
Request
.Path = "/gists/dac3c";
511
Requests[61].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
512
Requests[61].
Request
.Path = "/orgs/f93c4";
515
Requests[62].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
516
Requests[62].
Request
.Path = "/orgs/278c1";
519
Requests[63].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
520
Requests[63].
Request
.Path = "/teams/14c0dc";
523
Requests[64].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
524
Requests[64].
Request
.Path = "/teams/71f13b";
527
Requests[65].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
528
Requests[65].
Request
.Path = "/teams/ca53db";
531
Requests[66].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
532
Requests[66].
Request
.Path = "/users/fa9c6dc9";
535
Requests[67].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
536
Requests[67].
Request
.Path = "/gists/2f9f8/comments";
539
Requests[68].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
540
Requests[68].
Request
.Path = "/gists/618f7/comments";
543
Requests[69].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
544
Requests[69].
Request
.Path = "/gists/6313c/forks";
547
Requests[70].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
548
Requests[70].
Request
.Path = "/gists/9034d/star";
551
Requests[71].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
552
Requests[71].
Request
.Path = "/gists/b571d/star";
555
Requests[72].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
556
Requests[72].
Request
.Path = "/gists/83ab8/star";
559
Requests[73].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
560
Requests[73].
Request
.Path = "/orgs/9be14/events";
563
Requests[74].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
564
Requests[74].
Request
.Path = "/orgs/b014e/issues";
567
Requests[75].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
568
Requests[75].
Request
.Path = "/orgs/a4856/members";
571
Requests[76].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
572
Requests[76].
Request
.Path = "/orgs/764a9/public_members";
575
Requests[77].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
576
Requests[77].
Request
.Path = "/orgs/7749d/repos";
579
Requests[78].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
580
Requests[78].
Request
.Path = "/orgs/2289c/repos";
583
Requests[79].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
584
Requests[79].
Request
.Path = "/orgs/42198/teams";
587
Requests[80].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
588
Requests[80].
Request
.Path = "/orgs/5d0bc/teams";
591
Requests[81].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
592
Requests[81].
Request
.Path = "/teams/b8f729/members";
595
Requests[82].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
596
Requests[82].
Request
.Path = "/teams/03b619/repos";
599
Requests[83].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
600
Requests[83].
Request
.Path = "/users/999f39df/events";
603
Requests[84].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
604
Requests[84].
Request
.Path = "/users/bbecc307/followers";
607
Requests[85].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
608
Requests[85].
Request
.Path = "/users/9127792b/gists";
611
Requests[86].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
612
Requests[86].
Request
.Path = "/users/a81cf3db/keys";
615
Requests[87].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
616
Requests[87].
Request
.Path = "/users/575556d6/orgs";
619
Requests[88].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
620
Requests[88].
Request
.Path = "/users/0ef07cfe/received_events";
623
Requests[89].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
624
Requests[89].
Request
.Path = "/users/fa4901d4/repos";
627
Requests[90].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
628
Requests[90].
Request
.Path = "/users/7a88b2ac/starred";
631
Requests[91].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
632
Requests[91].
Request
.Path = "/users/4d8b04d1/subscriptions";
635
Requests[92].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
636
Requests[92].
Request
.Path = "/users/73e28d52/received_events/public";
639
Requests[93].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
640
Requests[93].
Request
.Path = "/users/f98f2363/events/orgs/51c95";
643
Requests[94].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
644
Requests[94].
Request
.Path = "/gists/f8720/comments/b56cd8ff-";
647
Requests[95].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
648
Requests[95].
Request
.Path = "/gists/40327/comments/11594715-";
651
Requests[96].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
652
Requests[96].
Request
.Path = "/gists/fb063/comments/1da04881-";
655
Requests[97].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
656
Requests[97].
Request
.Path = "/orgs/15419/members/9d03051d";
659
Requests[98].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
660
Requests[98].
Request
.Path = "/orgs/3cbe7/members/4045509c";
663
Requests[99].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
664
Requests[99].
Request
.Path = "/orgs/72f1a/public_members/6163704c";
667
Requests[100].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
668
Requests[100].
Request
.Path = "/orgs/bae66/public_members/c1aef66c";
671
Requests[101].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
672
Requests[101].
Request
.Path = "/orgs/d8648/public_members/2319ad3d";
675
Requests[102].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
676
Requests[102].
Request
.Path = "/teams/262658/members/5dac9fc5";
679
Requests[103].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
680
Requests[103].
Request
.Path = "/teams/430633/members/795406c6";
683
Requests[104].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
684
Requests[104].
Request
.Path = "/teams/7e9f66/members/919df774";
687
Requests[105].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
688
Requests[105].
Request
.Path = "/teams/b34a3b/memberships/33fdb8ad";
691
Requests[106].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
692
Requests[106].
Request
.Path = "/teams/a0f9ea/memberships/dcb115d9";
695
Requests[107].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
696
Requests[107].
Request
.Path = "/teams/e43785/memberships/2f601a63";
699
Requests[108].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
700
Requests[108].
Request
.Path = "/users/44263c00/following/a7887e00-7";
703
Requests[109].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
704
Requests[109].
Request
.Path = "/teams/451dd6/repos/7b326/00b51";
707
Requests[110].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
708
Requests[110].
Request
.Path = "/teams/b01088/repos/41fc2/f54bc";
711
Requests[111].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
712
Requests[111].
Request
.Path = "/teams/91eed9/repos/189dd/35f6c";
715
Requests[112].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
716
Requests[112].
Request
.Path = "/repos/c8d69/5a51a";
719
Requests[113].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
720
Requests[113].
Request
.Path = "/repos/a6b70/56c66";
723
Requests[114].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
724
Requests[114].
Request
.Path = "/repos/ba9a3/cad23";
727
Requests[115].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
728
Requests[115].
Request
.Path = "/networks/fcaf8/84422/events";
731
Requests[116].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
732
Requests[116].
Request
.Path = "/repos/673e0/f8701/assignees";
735
Requests[117].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
736
Requests[117].
Request
.Path = "/repos/a0209/62a33/branches";
739
Requests[118].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
740
Requests[118].
Request
.Path = "/repos/9bb2b/64afd/collaborators";
743
Requests[119].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
744
Requests[119].
Request
.Path = "/repos/88841/14fcf/comments";
747
Requests[120].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
748
Requests[120].
Request
.Path = "/repos/c3a42/f3621/commits";
751
Requests[121].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
752
Requests[121].
Request
.Path = "/repos/c97ea/02516/contributors";
755
Requests[122].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
756
Requests[122].
Request
.Path = "/repos/0e145/74ac8/deployments";
759
Requests[123].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
760
Requests[123].
Request
.Path = "/repos/98ad0/1b957/deployments";
763
Requests[124].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
764
Requests[124].
Request
.Path = "/repos/024a2/1eb41/downloads";
767
Requests[125].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
768
Requests[125].
Request
.Path = "/repos/d5cad/f8231/events";
771
Requests[126].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
772
Requests[126].
Request
.Path = "/repos/d371c/72b82/forks";
775
Requests[127].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
776
Requests[127].
Request
.Path = "/repos/f0086/e005d/forks";
779
Requests[128].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
780
Requests[128].
Request
.Path = "/repos/3a68f/edfc1/hooks";
783
Requests[129].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
784
Requests[129].
Request
.Path = "/repos/4f5aa/5f2cd/hooks";
787
Requests[130].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
788
Requests[130].
Request
.Path = "/repos/5a7bb/3f08b/issues";
791
Requests[131].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
792
Requests[131].
Request
.Path = "/repos/38084/699f9/issues";
795
Requests[132].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
796
Requests[132].
Request
.Path = "/repos/764dd/f916c/keys";
799
Requests[133].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
800
Requests[133].
Request
.Path = "/repos/cb0f8/a2bf4/keys";
803
Requests[134].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
804
Requests[134].
Request
.Path = "/repos/669bb/04383/labels";
807
Requests[135].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
808
Requests[135].
Request
.Path = "/repos/8d707/02782/labels";
811
Requests[136].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
812
Requests[136].
Request
.Path = "/repos/b5333/4a0e6/languages";
815
Requests[137].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
816
Requests[137].
Request
.Path = "/repos/c7d7a/1e2d3/merges";
819
Requests[138].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
820
Requests[138].
Request
.Path = "/repos/04ef4/de9d2/milestones";
823
Requests[139].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
824
Requests[139].
Request
.Path = "/repos/a6a19/65d59/milestones";
827
Requests[140].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
828
Requests[140].
Request
.Path = "/repos/3f065/88c9f/notifications";
831
Requests[141].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
832
Requests[141].
Request
.Path = "/repos/1f9f5/58bc1/notifications";
835
Requests[142].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
836
Requests[142].
Request
.Path = "/repos/b5cf9/09870/pulls";
839
Requests[143].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
840
Requests[143].
Request
.Path = "/repos/9d7c9/73349/pulls";
843
Requests[144].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
844
Requests[144].
Request
.Path = "/repos/681e6/51b96/readme";
847
Requests[145].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
848
Requests[145].
Request
.Path = "/repos/995e7/0fc05/releases";
851
Requests[146].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
852
Requests[146].
Request
.Path = "/repos/70706/4db75/releases";
855
Requests[147].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
856
Requests[147].
Request
.Path = "/repos/ed8e4/2ac9a/stargazers";
859
Requests[148].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
860
Requests[148].
Request
.Path = "/repos/2ce98/61a4f/subscribers";
863
Requests[149].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
864
Requests[149].
Request
.Path = "/repos/8e47e/73aea/subscription";
867
Requests[150].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
868
Requests[150].
Request
.Path = "/repos/89a1e/ff66d/subscription";
871
Requests[151].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
872
Requests[151].
Request
.Path = "/repos/4ef88/cea09/subscription";
875
Requests[152].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
876
Requests[152].
Request
.Path = "/repos/15949/8ac47/tags";
879
Requests[153].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
880
Requests[153].
Request
.Path = "/repos/dae74/c0aa0/teams";
883
Requests[154].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
884
Requests[154].
Request
.Path = "/repos/1f052/3f5dd/watchers";
887
Requests[155].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
888
Requests[155].
Request
.Path = "/repos/3813a/cd329/git/blobs";
891
Requests[156].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
892
Requests[156].
Request
.Path = "/repos/3190b/d3733/git/commits";
895
Requests[157].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
896
Requests[157].
Request
.Path = "/repos/b5096/6079c/git/refs";
899
Requests[158].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
900
Requests[158].
Request
.Path = "/repos/1047a/b3551/git/refs";
903
Requests[159].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
904
Requests[159].
Request
.Path = "/repos/5af5c/8e748/git/tags";
907
Requests[160].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
908
Requests[160].
Request
.Path = "/repos/d6e7d/015bf/git/trees";
911
Requests[161].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
912
Requests[161].
Request
.Path = "/repos/e720a/8355c/issues/comments";
915
Requests[162].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
916
Requests[162].
Request
.Path = "/repos/521c1/6efee/issues/events";
919
Requests[163].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
920
Requests[163].
Request
.Path = "/repos/8a335/9b409/pulls/comments";
923
Requests[164].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
924
Requests[164].
Request
.Path = "/repos/e8356/20c39/stats/code_frequency";
927
Requests[165].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
928
Requests[165].
Request
.Path = "/repos/0272d/2c8c3/stats/commit_activity";
931
Requests[166].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
932
Requests[166].
Request
.Path = "/repos/7073c/cb35a/stats/contributors";
935
Requests[167].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
936
Requests[167].
Request
.Path = "/repos/86066/0134f/stats/participation";
939
Requests[168].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
940
Requests[168].
Request
.Path = "/repos/b8add/8d26a/stats/punch_card";
943
Requests[169].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
944
Requests[169].
Request
.Path = "/repos/6ea45/b6794/git/blobs/5c33fac";
947
Requests[170].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
948
Requests[170].
Request
.Path = "/repos/cb558/705ee/git/commits/171b566";
951
Requests[171].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
952
Requests[171].
Request
.Path = "/repos/8345e/91f8c/git/refs/b5e99";
955
Requests[172].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
956
Requests[172].
Request
.Path = "/repos/3192a/5c61a/git/refs/60e61";
959
Requests[173].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
960
Requests[173].
Request
.Path = "/repos/09c5f/76bd4/git/refs/16c1b";
963
Requests[174].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
964
Requests[174].
Request
.Path = "/repos/49157/59ca0/git/tags/183d0ef";
967
Requests[175].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
968
Requests[175].
Request
.Path = "/repos/a20a3/cd8cd/git/trees/1a6c7ca";
971
Requests[176].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
972
Requests[176].
Request
.Path = "/repos/67d82/01158/issues/comments/b7d4fa80-";
975
Requests[177].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
976
Requests[177].
Request
.Path = "/repos/d1159/092ba/issues/comments/4f2d0804-";
979
Requests[178].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
980
Requests[178].
Request
.Path = "/repos/f1531/7ae3a/issues/comments/e3bf963c-";
983
Requests[179].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
984
Requests[179].
Request
.Path = "/repos/57816/f1144/issues/events/081002b";
987
Requests[180].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
988
Requests[180].
Request
.Path = "/repos/56ad9/b972d/pulls/comments/942cbd65-";
991
Requests[181].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
992
Requests[181].
Request
.Path = "/repos/ed712/2c9ee/pulls/comments/a6a82a40-";
995
Requests[182].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
996
Requests[182].
Request
.Path = "/repos/f447b/83a3c/pulls/comments/546f821d-";
999
Requests[183].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1000
Requests[183].
Request
.Path = "/repos/7d270/354b6/releases/assets/28c26";
1003
Requests[184].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1004
Requests[184].
Request
.Path = "/repos/89d11/4446a/releases/assets/85ca4";
1007
Requests[185].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1008
Requests[185].
Request
.Path = "/repos/1007a/dea4d/releases/assets/a791d";
1011
Requests[186].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1012
Requests[186].
Request
.Path = "/repos/19707/4461f/assignees/1b0f6997";
1015
Requests[187].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1016
Requests[187].
Request
.Path = "/repos/b52e7/f3620/branches/53b3b2";
1019
Requests[188].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
1020
Requests[188].
Request
.Path = "/repos/89924/ab7d1/collaborators/d9e5f";
1023
Requests[189].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1024
Requests[189].
Request
.Path = "/repos/75619/6718d/collaborators/b3f56";
1027
Requests[190].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1028
Requests[190].
Request
.Path = "/repos/860b7/f702b/collaborators/b501c";
1031
Requests[191].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1032
Requests[191].
Request
.Path = "/repos/24eb6/d74db/comments/67f29b88-";
1035
Requests[192].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1036
Requests[192].
Request
.Path = "/repos/56f6e/b594f/comments/333ad754-";
1039
Requests[193].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1040
Requests[193].
Request
.Path = "/repos/1936e/266d9/comments/32f61601-";
1043
Requests[194].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1044
Requests[194].
Request
.Path = "/repos/bf0c5/04d97/commits/8f2cd44";
1047
Requests[195].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1048
Requests[195].
Request
.Path = "/repos/50be2/cb7dc/contents/ca557";
1051
Requests[196].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1052
Requests[196].
Request
.Path = "/repos/0d9fe/35d38/contents/6c1b5";
1055
Requests[197].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
1056
Requests[197].
Request
.Path = "/repos/91795/2625e/contents/b9b80";
1059
Requests[198].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1060
Requests[198].
Request
.Path = "/repos/d6d50/39fb7/downloads/214cb182-a";
1063
Requests[199].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1064
Requests[199].
Request
.Path = "/repos/20bbe/b4263/downloads/d65ce00c-d";
1067
Requests[200].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1068
Requests[200].
Request
.Path = "/repos/b838e/a0ce0/hooks/1e7f13";
1071
Requests[201].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1072
Requests[201].
Request
.Path = "/repos/3be3d/23c37/hooks/f9ad9a";
1075
Requests[202].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1076
Requests[202].
Request
.Path = "/repos/2c3a4/bb9af/hooks/84ffe1";
1079
Requests[203].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1080
Requests[203].
Request
.Path = "/repos/cfcc9/2afa8/issues/9ea5f8";
1083
Requests[204].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1084
Requests[204].
Request
.Path = "/repos/9618e/f75de/issues/54bede";
1087
Requests[205].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1088
Requests[205].
Request
.Path = "/repos/581a6/d7149/keys/9f082";
1091
Requests[206].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1092
Requests[206].
Request
.Path = "/repos/c8f51/b1a21/keys/83bf2";
1095
Requests[207].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1096
Requests[207].
Request
.Path = "/repos/8f89a/70673/labels/c8963";
1099
Requests[208].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1100
Requests[208].
Request
.Path = "/repos/7fbdf/8ead3/labels/fa2d6";
1103
Requests[209].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1104
Requests[209].
Request
.Path = "/repos/9fa74/e74bc/labels/772b0";
1107
Requests[210].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1108
Requests[210].
Request
.Path = "/repos/09fd5/3e300/milestones/976fc4";
1111
Requests[211].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1112
Requests[211].
Request
.Path = "/repos/1435a/d9b7e/milestones/9f0a34";
1115
Requests[212].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1116
Requests[212].
Request
.Path = "/repos/3c95f/84454/milestones/549440";
1119
Requests[213].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1120
Requests[213].
Request
.Path = "/repos/eeb3d/51b0c/pulls/ad7440";
1123
Requests[214].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1124
Requests[214].
Request
.Path = "/repos/5f14f/457de/pulls/cd4607";
1127
Requests[215].
Request
.Method = HttpMethods.GetCanonicalizedValue("PATCH");
1128
Requests[215].
Request
.Path = "/repos/11832/78737/releases/959f7";
1131
Requests[216].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1132
Requests[216].
Request
.Path = "/repos/ccb9f/de1bc/releases/ad071";
1135
Requests[217].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1136
Requests[217].
Request
.Path = "/repos/f15aa/e63b6/releases/1369d";
1139
Requests[218].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1140
Requests[218].
Request
.Path = "/repos/7452e/dcd51/statuses/b478e";
1143
Requests[219].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1144
Requests[219].
Request
.Path = "/repos/d30d7/fe97d/statuses/62682";
1147
Requests[220].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1148
Requests[220].
Request
.Path = "/repos/227bd/07245/commits/a6c05/status";
1151
Requests[221].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1152
Requests[221].
Request
.Path = "/repos/b55dd/cf212/commits/ad1d5c8/comments";
1155
Requests[222].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1156
Requests[222].
Request
.Path = "/repos/77112/723f5/commits/14b857c/comments";
1159
Requests[223].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1160
Requests[223].
Request
.Path = "/repos/c22d7/a0574/deployments/61d58/statuses";
1163
Requests[224].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1164
Requests[224].
Request
.Path = "/repos/286ce/dca61/deployments/184d0/statuses";
1167
Requests[225].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1168
Requests[225].
Request
.Path = "/repos/7f5a4/2398d/hooks/266f33/tests";
1171
Requests[226].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1172
Requests[226].
Request
.Path = "/repos/99172/650ce/issues/924319/comments";
1175
Requests[227].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1176
Requests[227].
Request
.Path = "/repos/de2d1/af156/issues/b5697c/comments";
1179
Requests[228].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1180
Requests[228].
Request
.Path = "/repos/d8ae8/f45f3/issues/275689/events";
1183
Requests[229].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1184
Requests[229].
Request
.Path = "/repos/7a71d/c9cbc/issues/ec14d8/labels";
1187
Requests[230].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1188
Requests[230].
Request
.Path = "/repos/01a16/e4c7a/issues/7d2ede/labels";
1191
Requests[231].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
1192
Requests[231].
Request
.Path = "/repos/24669/5fa5c/issues/255b9b/labels";
1195
Requests[232].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1196
Requests[232].
Request
.Path = "/repos/75c85/698e1/issues/9a1cde/labels";
1199
Requests[233].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1200
Requests[233].
Request
.Path = "/repos/9e801/94a85/milestones/5803ca/labels";
1203
Requests[234].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1204
Requests[234].
Request
.Path = "/repos/992d0/3d73f/pulls/6b0862/comments";
1207
Requests[235].
Request
.Method = HttpMethods.GetCanonicalizedValue("POST");
1208
Requests[235].
Request
.Path = "/repos/78a07/d7376/pulls/131151/comments";
1211
Requests[236].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1212
Requests[236].
Request
.Path = "/repos/4dd6e/584c9/pulls/937b3d/commits";
1215
Requests[237].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1216
Requests[237].
Request
.Path = "/repos/d442a/baba7/pulls/15f0a9/files";
1219
Requests[238].
Request
.Method = HttpMethods.GetCanonicalizedValue("PUT");
1220
Requests[238].
Request
.Path = "/repos/7a478/342f4/pulls/784bbf/merge";
1223
Requests[239].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1224
Requests[239].
Request
.Path = "/repos/0b7c9/15aaa/pulls/aed5dd/merge";
1227
Requests[240].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1228
Requests[240].
Request
.Path = "/repos/923b1/a897d/releases/2e13f/assets";
1231
Requests[241].
Request
.Method = HttpMethods.GetCanonicalizedValue("DELETE");
1232
Requests[241].
Request
.Path = "/repos/2ed7f/43848/issues/c67851/labels/498e1";
1235
Requests[242].
Request
.Method = HttpMethods.GetCanonicalizedValue("GET");
1236
Requests[242].
Request
.Path = "/repos/21a74/f36c8/805b0492-b723-/680ad";
Matching\MatcherSingleEntryBenchmark.cs (1)
26
Requests[0].
Request
.Path = "/plaintext";
Matching\TrivialMatcher.cs (2)
27
var path = httpContext.
Request
.Path.Value;
31
httpContext.
Request
.RouteValues = new RouteValueDictionary();
src\Http\Routing\test\UnitTests\Matching\BarebonesMatcher.cs (4)
24
var path = httpContext.
Request
.Path.Value;
30
httpContext.
Request
.RouteValues = new RouteValueDictionary();
115
if (TryMatch(httpContext.
Request
.Path.Value))
118
httpContext.
Request
.RouteValues = new RouteValueDictionary();
src\Http\Routing\test\UnitTests\Matching\RouteMatcher.cs (1)
27
httpContext.
Request
.RouteValues = routeContext.RouteData.Values;
src\Http\Routing\test\UnitTests\Matching\TreeRouterMatcher.cs (1)
28
httpContext.
Request
.RouteValues = routeContext.RouteData.Values;
Microsoft.AspNetCore.Routing.Tests (124)
DefaultLinkGeneratorTest.cs (19)
139
httpContext.
Request
.Scheme = "http";
140
httpContext.
Request
.Host = new HostString("example.com");
272
httpContext.
Request
.Scheme = "http";
273
httpContext.
Request
.Host = new HostString("example.com");
367
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
414
httpContext.
Request
.Scheme = "http";
415
httpContext.
Request
.Host = new HostString("example.com");
416
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
439
httpContext.
Request
.Scheme = "http";
440
httpContext.
Request
.Host = new HostString("example.com");
463
httpContext.
Request
.Scheme = "http";
464
httpContext.
Request
.Host = new HostString("example.com");
487
httpContext.
Request
.PathBase = "/Foo";
510
httpContext.
Request
.Scheme = "http";
511
httpContext.
Request
.Host = new HostString("example.com");
512
httpContext.
Request
.PathBase = "/Foo";
538
httpContext.
Request
.PathBase = "/Foo";
634
httpContext.
Request
.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index" });
673
httpContext.
Request
.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index", });
EndpointRoutingMiddlewareFormOptionsTest.cs (12)
31
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
32
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes("foo=bar"));
44
var _ = httpContext.
Request
.Form; // Trigger the form feature.
63
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
64
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes("foo=bar"));
78
var _ = httpContext.
Request
.Form; // Trigger the form feature.
103
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
104
httpContext.
Request
.Body = new MemoryStream("foo=bar"u8.ToArray());
116
var _ = httpContext.
Request
.Form; // Trigger the form feature.
135
httpContext.
Request
.ContentType = "application/x-www-form-urlencoded";
136
httpContext.
Request
.Body = new MemoryStream(Encoding.UTF8.GetBytes("foo=bar"));
152
var _ = httpContext.
Request
.Form; // Trigger the form feature.
LinkGeneratorEndpointNameExtensionsTest.cs (6)
27
httpContext.
Request
.RouteValues = new RouteValueDictionary(new { p = "5", });
28
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
77
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
128
httpContext.
Request
.Scheme = "http";
129
httpContext.
Request
.Host = new HostString("example.com");
130
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
LinkGeneratorRouteValuesAddressExtensionsTest.cs (9)
33
httpContext.
Request
.RouteValues = new RouteValueDictionary(new { action = "Index", });
34
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
91
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
150
httpContext.
Request
.Scheme = "http";
151
httpContext.
Request
.Host = new HostString("example.com");
152
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
182
httpContext.
Request
.Scheme = "http";
183
httpContext.
Request
.Host = new HostString("example.com");
184
httpContext.
Request
.PathBase = new PathString("/Foo/Bar?encodeme?");
Matching\BarebonesMatcher.cs (4)
24
var path = httpContext.
Request
.Path.Value;
30
httpContext.
Request
.RouteValues = new RouteValueDictionary();
115
if (TryMatch(httpContext.
Request
.Path.Value))
118
httpContext.
Request
.RouteValues = new RouteValueDictionary();
Matching\DfaMatcherTest.cs (30)
73
httpContext.
Request
.Path = "/1";
94
httpContext.
Request
.Path = "/One";
123
httpContext.
Request
.Path = path;
149
httpContext.
Request
.Path = "/";
158
httpContext.
Request
.RouteValues.OrderBy(kvp => kvp.Key),
188
httpContext.
Request
.Path = "/Login/Index";
214
httpContext.
Request
.Path = "/Home/Index/123";
223
httpContext.
Request
.RouteValues.OrderBy(kvp => kvp.Key),
263
httpContext.
Request
.Path = path;
271
Assert.Equal("TestAction", httpContext.
Request
.RouteValues["action"]);
272
Assert.Equal("TestController", httpContext.
Request
.RouteValues["controller"]);
273
Assert.Equal("17", httpContext.
Request
.RouteValues["id"]);
298
httpContext.
Request
.Path = "/Home/Index/123";
306
httpContext.
Request
.Path = "/Login/Index/123";
332
httpContext.
Request
.Path = "/ConventionalTransformerRoute/conventional-transformer/Index";
341
httpContext.
Request
.RouteValues.OrderBy(kvp => kvp.Key),
568
context.
Request
.Path = requestPath;
592
httpContext.
Request
.Path = "/TestController";
601
httpContext.
Request
.RouteValues.OrderBy(kvp => kvp.Key),
630
httpContext.
Request
.Path = "/Teams";
676
httpContext.
Request
.Path = "/Teams";
722
httpContext.
Request
.Path = "/Teams";
769
httpContext.
Request
.Path = "/Teams";
791
httpContext.
Request
.Path = "/";
821
httpContext.
Request
.Path = "/One";
861
httpContext.
Request
.Path = "/One";
903
httpContext.
Request
.Path = "/One";
972
httpContext.
Request
.Path = "/test/17";
1007
httpContext.
Request
.Path = "/test/17";
1056
httpContext.
Request
.Path = "/test/17";
Matching\MatcherAssert.cs (2)
66
var actualValues = httpContext.
Request
.RouteValues;
100
$"but matched with values: {FormatRouteValues(httpContext.
Request
.RouteValues)}.");
Matching\RouteMatcher.cs (1)
27
httpContext.
Request
.RouteValues = routeContext.RouteData.Values;
Matching\TreeRouterMatcher.cs (1)
28
httpContext.
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"; } },
51
context.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"; } },
109
context.HttpContext.
Request
.Path = new PathString("/api/5");
RouteCollectionTest.cs (2)
610
context.SetupGet(c => c.
Request
).Returns(request.Object);
667
context.SetupGet(c => c.
Request
).Returns(request.Object);
RouterMiddlewareTest.cs (3)
41
Assert.Single(context.
Request
.RouteValues);
43
Assert.True(context.
Request
.RouteValues.ContainsKey("id"));
45
Assert.Equal("10", context.
Request
.RouteValues["id"]);
RouteTest.cs (1)
594
context.SetupGet(c => c.
Request
).Returns(request.Object);
TestObjects\TestMatcher.cs (1)
20
c.
Request
.RouteValues = new RouteValueDictionary(new { controller = "Home", action = "Index" });
Tree\TreeRouterTest.cs (1)
1993
context.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)
152
await httpContext.
Request
.Body.CopyToAsync(memoryStream);
Http2Tests.cs (29)
37
Assert.False(httpContext.
Request
.CanHaveBody());
118
Assert.True(HttpMethods.Equals(method, httpContext.
Request
.Method));
119
Assert.False(httpContext.
Request
.CanHaveBody());
120
Assert.Null(httpContext.
Request
.ContentLength);
121
Assert.False(httpContext.
Request
.Headers.ContainsKey(HeaderNames.TransferEncoding));
168
Assert.True(HttpMethods.Equals(method, httpContext.
Request
.Method));
169
Assert.True(httpContext.
Request
.CanHaveBody());
170
Assert.Equal(11, httpContext.
Request
.ContentLength);
171
Assert.False(httpContext.
Request
.Headers.ContainsKey(HeaderNames.TransferEncoding));
172
return httpContext.
Request
.Body.CopyToAsync(httpContext.Response.Body);
232
Assert.True(HttpMethods.Equals(method, httpContext.
Request
.Method));
233
Assert.True(httpContext.
Request
.CanHaveBody());
234
Assert.Null(httpContext.
Request
.ContentLength);
236
Assert.Equal("chunked", httpContext.
Request
.Headers.TransferEncoding);
237
return httpContext.
Request
.Body.CopyToAsync(httpContext.Response.Body);
616
Assert.Equal("HTTP/1.1", httpContext.
Request
.Protocol);
638
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
661
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
703
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
750
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
800
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
852
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
855
var readTask = httpContext.
Request
.Body.ReadAsync(new byte[10], 0, 10);
898
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
902
var read = await httpContext.
Request
.Body.ReadAsync(new byte[10], 0, 10);
905
var readTask = httpContext.
Request
.Body.ReadAsync(new byte[10], 0, 10);
947
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
951
var read = await httpContext.
Request
.Body.ReadAsync(new byte[10], 0, 10);
954
var readTask = httpContext.
Request
.Body.ReadAsync(new byte[10], 0, 10);
Http3Tests.cs (10)
30
Assert.True(httpContext.
Request
.IsHttps);
31
await httpContext.Response.WriteAsync(httpContext.
Request
.Protocol);
56
Assert.True(httpContext.
Request
.IsHttps);
59
await httpContext.Response.WriteAsync(httpContext.
Request
.Protocol);
96
Assert.True(httpContext.
Request
.IsHttps);
99
await httpContext.Response.WriteAsync(httpContext.
Request
.Protocol);
133
Assert.True(httpContext.
Request
.IsHttps);
134
await httpContext.Response.WriteAsync(httpContext.
Request
.Protocol);
162
Assert.True(httpContext.
Request
.IsHttps);
190
Assert.True(httpContext.
Request
.IsHttps);
HttpsTests.cs (1)
57
var input = await new StreamReader(httpContext.
Request
.Body).ReadToEndAsync();
RequestBodyLimitTests.cs (43)
29
Assert.Equal(11, httpContext.
Request
.ContentLength);
31
int read = httpContext.
Request
.Body.Read(input, 0, input.Length);
51
Assert.True(httpContext.
Request
.CanHaveBody());
52
Assert.Equal(11, httpContext.
Request
.ContentLength);
54
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
73
Assert.Equal(11, httpContext.
Request
.ContentLength);
75
int read = httpContext.
Request
.Body.EndRead(httpContext.
Request
.Body.BeginRead(input, 0, input.Length, null, null));
96
Assert.Null(httpContext.
Request
.ContentLength);
98
int read = httpContext.
Request
.Body.Read(input, 0, input.Length);
118
Assert.True(httpContext.
Request
.CanHaveBody());
119
Assert.Null(httpContext.
Request
.ContentLength);
121
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
140
Assert.Null(httpContext.
Request
.ContentLength);
142
int read = httpContext.
Request
.Body.EndRead(httpContext.
Request
.Body.BeginRead(input, 0, input.Length, null, null));
163
Assert.Equal(11, httpContext.
Request
.ContentLength);
165
var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.Read(input, 0, input.Length));
168
ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.Read(input, 0, input.Length));
188
Assert.Equal(11, httpContext.
Request
.ContentLength);
190
var ex = Assert.Throws<BadHttpRequestException>(() => { var t = httpContext.
Request
.Body.ReadAsync(input, 0, input.Length); });
193
ex = Assert.Throws<BadHttpRequestException>(() => { var t = httpContext.
Request
.Body.ReadAsync(input, 0, input.Length); });
213
Assert.Equal(11, httpContext.
Request
.ContentLength);
215
var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.BeginRead(input, 0, input.Length, null, null));
218
ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.BeginRead(input, 0, input.Length, null, null));
239
Assert.Null(httpContext.
Request
.ContentLength);
241
var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.Read(input, 0, input.Length));
244
ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.Read(input, 0, input.Length));
264
Assert.Null(httpContext.
Request
.ContentLength);
266
var ex = await Assert.ThrowsAsync<BadHttpRequestException>(() => httpContext.
Request
.Body.ReadAsync(input, 0, input.Length));
269
ex = await Assert.ThrowsAsync<BadHttpRequestException>(() => httpContext.
Request
.Body.ReadAsync(input, 0, input.Length));
288
Assert.Null(httpContext.
Request
.ContentLength);
290
var body = httpContext.
Request
.Body;
316
Assert.Null(httpContext.
Request
.ContentLength);
318
int read = httpContext.
Request
.Body.Read(input, 0, input.Length);
321
var ex = Assert.Throws<BadHttpRequestException>(() => httpContext.
Request
.Body.Read(input, 0, input.Length));
342
Assert.Null(httpContext.
Request
.ContentLength);
344
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
347
var ex = await Assert.ThrowsAsync<BadHttpRequestException>(() => httpContext.
Request
.Body.ReadAsync(input, 0, input.Length));
368
Assert.Equal(12, httpContext.
Request
.ContentLength);
370
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
392
Assert.Null(httpContext.
Request
.ContentLength);
394
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
RequestBodyTests.cs (49)
29
Assert.True(httpContext.
Request
.CanHaveBody());
32
int read = httpContext.
Request
.Body.Read(input, 0, input.Length);
49
Assert.True(httpContext.
Request
.CanHaveBody());
52
int read = httpContext.
Request
.Body.Read(input, 0, 0);
54
read = httpContext.
Request
.Body.Read(input, 0, input.Length);
71
Assert.True(httpContext.
Request
.CanHaveBody());
73
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
89
Assert.True(httpContext.
Request
.CanHaveBody());
91
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, 0);
93
read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
110
int read = httpContext.
Request
.Body.EndRead(httpContext.
Request
.Body.BeginRead(input, 0, input.Length, null, null));
129
Assert.Throws<ArgumentNullException>("buffer", () => httpContext.
Request
.Body.Read(null, 0, 1));
130
Assert.Throws<ArgumentOutOfRangeException>("offset", () => httpContext.
Request
.Body.Read(input, -1, 1));
131
Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.
Request
.Body.Read(input, input.Length + 1, 1));
132
Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.
Request
.Body.Read(input, 10, -1));
133
Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.
Request
.Body.Read(input, 1, input.Length));
134
Assert.Throws<ArgumentOutOfRangeException>("count", () => httpContext.
Request
.Body.Read(input, 0, input.Length + 1));
152
int read = httpContext.
Request
.Body.Read(input, 0, input.Length);
155
read = httpContext.
Request
.Body.Read(input, 0, input.Length);
173
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
176
read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
192
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
194
read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
214
var newContentLength = httpContext.
Request
.ContentLength + 1000;
215
httpContext.
Request
.ContentLength = newContentLength;
216
Assert.Equal(newContentLength, httpContext.
Request
.ContentLength);
219
foreach (var header in httpContext.
Request
.Headers)
229
int read = await httpContext.
Request
.Body.ReadAsync(input, 0, input.Length);
261
httpContext.
Request
.Headers[HeaderNames.ContentLength] = "123";
262
CheckHeadersCount(HeaderNames.ContentLength, 1, httpContext.
Request
);
263
Assert.Equal(123, httpContext.
Request
.ContentLength);
264
httpContext.
Request
.Headers[HeaderNames.ContentLength] = "456";
265
CheckHeadersCount(HeaderNames.ContentLength, 1, httpContext.
Request
);
266
Assert.Equal(456, httpContext.
Request
.ContentLength);
267
httpContext.
Request
.Headers[HeaderNames.ContentLength] = StringValues.Empty;
268
CheckHeadersCount(HeaderNames.ContentLength, 0, httpContext.
Request
);
269
Assert.Null(httpContext.
Request
.ContentLength);
270
Assert.Equal("", httpContext.
Request
.Headers[HeaderNames.ContentLength].ToString());
271
httpContext.
Request
.ContentLength = 789;
272
CheckHeadersCount(HeaderNames.ContentLength, 1, httpContext.
Request
);
273
Assert.Equal(789, httpContext.
Request
.ContentLength);
276
httpContext.
Request
.Headers["Custom-Header"] = "foo";
277
CheckHeadersCount("Custom-Header", 1, httpContext.
Request
);
278
httpContext.
Request
.Headers["Custom-Header"] = "bar";
279
CheckHeadersCount("Custom-Header", 1, httpContext.
Request
);
280
httpContext.
Request
.Headers["Custom-Header"] = StringValues.Empty;
281
CheckHeadersCount("Custom-Header", 0, httpContext.
Request
);
282
Assert.Equal("", httpContext.
Request
.Headers["Custom-Header"].ToString());
RequestHeaderTests.cs (8)
24
var requestHeaders = httpContext.
Request
.Headers;
43
var requestHeaders = httpContext.
Request
.Headers;
89
var requestHeaders = httpContext.
Request
.Headers;
108
var requestHeaders = httpContext.
Request
.Headers;
131
var requestHeaders = httpContext.
Request
.Headers;
154
var requestHeaders = httpContext.
Request
.Headers;
186
var requestHeaders = httpContext.
Request
.Headers;
213
var requestHeaders = httpContext.
Request
.Headers;
RequestTests.cs (2)
41
Assert.False(httpContext.
Request
.CanHaveBody());
564
await httpContext.
Request
.Body.ReadAsync(new byte[10]).DefaultTimeout();
ResponseCachingTests.cs (1)
431
var status = int.Parse(httpContext.
Request
.Path.Value.Substring(1), CultureInfo.InvariantCulture);
ResponseTests.cs (1)
224
var readTask = httpContext.
Request
.Body.ReadAsync(new byte[10]);
ResponseTrailersTests.cs (2)
27
Assert.Equal("HTTP/1.1", httpContext.
Request
.Protocol);
45
Assert.Equal("HTTP/2", httpContext.
Request
.Protocol);
ServerTests.cs (1)
133
var 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)
83
Request = Context.
Request
;
Microsoft.AspNetCore.Server.IISIntegration (7)
IISMiddleware.cs (7)
103
if (!string.Equals(_pairingToken, httpContext.
Request
.Headers[MSAspNetCoreToken], StringComparison.Ordinal))
111
if (HttpMethods.IsPost(httpContext.
Request
.Method) &&
112
httpContext.
Request
.Path.Equals(ANCMRequestPath) &&
113
string.Equals(ANCMShutdownEventHeaderValue, httpContext.
Request
.Headers[MSAspNetCoreEvent], StringComparison.OrdinalIgnoreCase))
121
if (Debugger.IsAttached && string.Equals("DEBUG", httpContext.
Request
.Method, StringComparison.OrdinalIgnoreCase))
137
var header = httpContext.
Request
.Headers[MSAspNetCoreClientCert];
172
var tokenHeader = context.
Request
.Headers[MSAspNetCoreWinAuthToken];
Microsoft.AspNetCore.Server.IISIntegration.Tests (2)
IISMiddlewareTests.cs (2)
370
requestPathBase = context.
Request
.PathBase.Value;
371
requestPath = 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)
16
var request = httpContext.
Request
;
18
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
29
var request = httpContext.
Request
;
46
var request = httpContext.
Request
;
48
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
63
var request = httpContext.
Request
;
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (2)
InMemoryTransportBenchmark.cs (1)
251
if (httpContext.
Request
.Path.StartsWithSegments(_path, StringComparison.Ordinal))
NamedPipesTransportBenchmark.cs (1)
149
if (httpContext.
Request
.Path.StartsWithSegments(_path, StringComparison.Ordinal))
Microsoft.AspNetCore.Session (1)
SessionMiddleware.cs (1)
64
var cookieValue = context.
Request
.Cookies[_options.Cookie.Name!];
Microsoft.AspNetCore.Session.Tests (12)
SessionTests.cs (12)
176
if (context.
Request
.Path == new PathString("/first"))
225
if (context.
Request
.Path == new PathString("/first"))
231
else if (context.
Request
.Path == new PathString("/second"))
237
else if (context.
Request
.Path == new PathString("/third"))
284
if (context.
Request
.Path == new PathString("/first"))
290
else if (context.
Request
.Path == new PathString("/second"))
296
else if (context.
Request
.Path == new PathString("/third"))
393
if (context.
Request
.Path == new PathString("/first"))
399
else if (context.
Request
.Path == new PathString("/second"))
458
if (context.
Request
.Path == new PathString("/AddDataToSession"))
463
else if (context.
Request
.Path == new PathString("/AccessSessionData"))
468
else if (context.
Request
.Path == new PathString("/DoNotAccessSessionData"))
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (7)
HeaderUserIdProvider.cs (1)
13
return connection.GetHttpContext()?.
Request
?.Headers?[HeaderName];
Hubs.cs (3)
66
var headers = context.
Request
.Headers;
78
return Context.GetHttpContext().
Request
.Cookies[cookieName];
103
return Context.GetHttpContext()?.
Request
?.Protocol ?? "unknown";
Startup.cs (3)
86
if (context.
Request
.Path.Value.EndsWith("/negotiate", StringComparison.Ordinal))
126
url = $"{context.
Request
.Scheme}://{context.
Request
.Host}/authorizedHub",
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
Startup.cs (1)
44
var userNameHeader = connection.GetHttpContext().
Request
.Headers["UserName"];
Microsoft.AspNetCore.SignalR.Tests (3)
HttpHeaderConnectionHandler.cs (1)
23
var headers = connection.Features.Get<IHttpContextFeature>().HttpContext.
Request
.Headers;
HubConnectionHandlerTestUtils\Hubs.cs (1)
1461
string id = Context.GetHttpContext()?.
Request
.Query["client"] ?? string.Empty;
Startup.cs (1)
107
var claims = new[] { new Claim(ClaimTypes.NameIdentifier, httpContext.
Request
.Query["user"]) };
Microsoft.AspNetCore.SpaProxy (1)
SpaProxyMiddleware.cs (1)
46
if (context.
Request
.Path.Equals(new Uri(_options.Value.ServerUrl).LocalPath))
Microsoft.AspNetCore.SpaServices.Extensions (8)
Proxying\ConditionalProxyMiddleware.cs (1)
45
if (context.
Request
.Path.StartsWithSegments(_pathPrefix) || _pathPrefixIsRoot)
Proxying\SpaProxy.cs (6)
73
+ context.
Request
.Path
74
+ context.
Request
.QueryString);
131
var request = context.
Request
;
170
if ((HttpProtocol.IsHttp2(context.
Request
.Protocol) || HttpProtocol.IsHttp3(context.
Request
.Protocol))
220
foreach (var headerEntry in context.
Request
.Headers)
SpaDefaultPageMiddleware.cs (1)
30
context.
Request
.Path = options.DefaultPage;
Microsoft.AspNetCore.StaticAssets (7)
Development\StaticAssetDevelopmentRuntimeHandler.cs (2)
201
Log.StaticAssetNotFoundInManifest(logger, ctx.
Request
.Path);
209
var 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.
40
var rawRangeHeader = context.
Request
.Headers.Range;
StaticAssetsInvoker.cs (2)
141
if (HttpMethods.IsHead(context.
Request
.Method))
270
_request = context.
Request
;
Microsoft.AspNetCore.StaticFiles (18)
DefaultFilesMiddleware.cs (4)
52
&& Helpers.IsGetOrHeadMethod(context.
Request
.Method)
69
if (_options.RedirectToAppendTrailingSlash && !Helpers.PathEndsInSlash(context.
Request
.Path))
75
context.
Request
.Path = new PathString(Helpers.GetPathValueWithSlash(context.
Request
.Path) + defaultFile);
DirectoryBrowserMiddleware.cs (2)
65
&& Helpers.IsGetOrHeadMethod(context.
Request
.Method)
71
if (_options.RedirectToAppendTrailingSlash && !Helpers.PathEndsInSlash(context.
Request
.Path))
Helpers.cs (2)
44
var request = context.
Request
;
51
var path = context.
Request
.Path;
HtmlDirectoryFormatter.cs (3)
42
if (HttpMethods.IsHead(context.
Request
.Method))
48
PathString 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.
40
var rawRangeHeader = context.
Request
.Headers.Range;
StaticFileContext.cs (1)
53
_request = context.
Request
;
StaticFileMiddleware.cs (2)
66
_logger.RequestMethodNotSupported(context.
Request
.Method);
90
return Helpers.IsGetOrHeadMethod(context.
Request
.Method);
StaticFilesEndpointRouteBuilderExtensions.cs (1)
188
context.
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.
40
var rawRangeHeader = context.
Request
.Headers.Range;
Microsoft.AspNetCore.StaticFiles.Tests (5)
DefaultFilesMiddlewareTests.cs (5)
70
app.Run(context => context.Response.WriteAsync(context.
Request
.Path.Value));
95
return context.Response.WriteAsync(context.
Request
.Path.Value);
112
app.Run(context => context.Response.WriteAsync(context.
Request
.Path.Value));
152
app.Run(context => context.Response.WriteAsync(context.
Request
.Path.Value));
218
app.Run(context => context.Response.WriteAsync(context.
Request
.Path.Value));
Microsoft.AspNetCore.TestHost (9)
ClientHandler.cs (1)
112
var req = context.
Request
;
HttpContextBuilder.cs (3)
39
var request = _httpContext.
Request
;
92
if (HttpProtocol.IsHttp2(_httpContext.
Request
.Protocol) ||
93
HttpProtocol.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" />.
214
var 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)
60
var request = context.
Request
;
94
ConfigureRequest?.Invoke(context.
Request
);
Microsoft.AspNetCore.TestHost.Tests (65)
ClientHandlerTests.cs (26)
50
Assert.Equal(HttpProtocol.Http11, context.
Request
.Protocol);
51
Assert.Equal("GET", context.
Request
.Method);
52
Assert.Equal("https", context.
Request
.Scheme);
53
Assert.Equal("/A/Path", context.
Request
.PathBase.Value);
54
Assert.Equal("/and/file.txt", context.
Request
.Path.Value);
55
Assert.Equal("?and=query", context.
Request
.QueryString.Value);
56
Assert.NotNull(context.
Request
.Body);
57
Assert.NotNull(context.
Request
.Headers);
62
Assert.Equal("example.com", context.
Request
.Host.Value);
100
Assert.Equal("", context.
Request
.PathBase.Value);
101
Assert.Equal("/", context.
Request
.Path.Value);
115
var actualResult = context.
Request
.Headers.UserAgent;
132
Assert.True(context.
Request
.CanHaveBody());
133
Assert.Equal(contentBytes.LongLength, context.
Request
.ContentLength);
134
Assert.False(context.
Request
.Headers.ContainsKey(HeaderNames.TransferEncoding));
149
Assert.False(context.
Request
.CanHaveBody());
150
Assert.Null(context.
Request
.ContentLength);
151
Assert.False(context.
Request
.Headers.ContainsKey(HeaderNames.TransferEncoding));
165
Assert.True(context.
Request
.CanHaveBody());
166
Assert.Null(context.
Request
.ContentLength);
167
Assert.Equal("chunked", context.
Request
.Headers.TransferEncoding);
182
Assert.True(context.
Request
.CanHaveBody());
183
Assert.Null(context.
Request
.ContentLength);
184
Assert.Equal("chunked", context.
Request
.Headers.TransferEncoding);
285
context.
Request
.QueryString = new QueryString("?and=something");
353
int read = await context.
Request
.Body.ReadAsync(new byte[100], 0, 100);
HttpContextBuilderTests.cs (18)
25
c.
Request
.Method = HttpMethods.Post;
26
c.
Request
.Path = "/and/file.txt";
27
c.
Request
.QueryString = new QueryString("?and=query");
31
Assert.Equal(HttpProtocol.Http11, context.
Request
.Protocol);
32
Assert.Equal("POST", context.
Request
.Method);
33
Assert.Equal("https", context.
Request
.Scheme);
34
Assert.Equal("example.com", context.
Request
.Host.Value);
35
Assert.Equal("/A/Path", context.
Request
.PathBase.Value);
36
Assert.Equal("/and/file.txt", context.
Request
.Path.Value);
37
Assert.Equal("?and=query", context.
Request
.QueryString.Value);
38
Assert.Null(context.
Request
.CanHaveBody());
39
Assert.NotNull(context.
Request
.Body);
40
Assert.NotNull(context.
Request
.Headers);
56
c.
Request
.Headers.UserAgent = userAgent;
59
var actualResult = context.
Request
.Headers.UserAgent;
70
c.
Request
.Path = "/";
73
Assert.Equal("", context.
Request
.PathBase.Value);
74
Assert.Equal("/", context.
Request
.Path.Value);
TestClientTests.cs (14)
47
Assert.Equal("", ctx.
Request
.PathBase.Value);
48
Assert.Equal("/", ctx.
Request
.Path.Value);
69
Assert.Equal("", ctx.
Request
.PathBase.Value);
70
Assert.Equal("/", ctx.
Request
.Path.Value);
90
var content = await new StreamReader(ctx.
Request
.Body).ReadToEndAsync();
110
await ctx.Response.WriteAsync(await new StreamReader(ctx.
Request
.Body).ReadToEndAsync() + " POST Response");
184
var requestString = await new StreamReader(ctx.
Request
.Body).ReadToEndAsync();
280
var serverLength = await ctx.
Request
.Body.ReadAsync(serverBuffer);
288
await ctx.
Request
.Body.ReadAsync(serverBuffer);
412
var pendingReadTask = ctx.
Request
.Body.ReadAsync(new byte[1024], 0, 1024);
582
Assert.False(ctx.
Request
.Headers.ContainsKey(HeaderNames.SecWebSocketProtocol));
946
protocol = ctx.
Request
.Protocol;
972
protocol = ctx.
Request
.Protocol;
999
protocol = ctx.
Request
.Protocol;
TestServerTests.cs (2)
214
using (var sr = new StreamReader(context.
Request
.Body))
784
ctx.Response.WriteAsync(ctx.
Request
.Headers.Host);
WebSocketClientTests.cs (5)
27
if (ctx.
Request
.Path.StartsWithSegments("/connect"))
29
capturedScheme = ctx.
Request
.Scheme;
30
capturedHost = ctx.
Request
.Host.Value;
31
capturedPath = ctx.
Request
.Path;
65
if (ctx.
Request
.Path.StartsWithSegments("/connect"))
Microsoft.AspNetCore.Tests (4)
WebApplicationTests.cs (3)
1447
Assert.Equal("https", context.
Request
.Scheme);
1584
if (context.
Request
.Path == "/old")
1586
context.
Request
.Path = "/new";
WebHostTests.cs (1)
74
Assert.Equal("https", context.
Request
.Scheme);
Microsoft.AspNetCore.WebSockets (8)
WebSocketMiddleware.cs (8)
68
var 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);
165
HandshakeHelpers.GenerateResponseHeaders(!_isH2WebSocket, _context.
Request
.Headers, subProtocol, _context.Response.Headers);
170
var ext = _context.
Request
.Headers.SecWebSocketExtensions;
174
foreach (var extension in _context.
Request
.Headers.GetCommaSeparatedValues(HeaderNames.SecWebSocketExtensions))
Microsoft.AspNetCore.WebSockets.Tests (9)
Http2WebSocketTests.cs (3)
39
httpContext.
Request
.Method = HttpMethods.Connect;
45
httpContext.
Request
.Headers.SecWebSocketVersion = Constants.Headers.SupportedVersion;
46
httpContext.
Request
.Headers.SecWebSocketProtocol = "p1, p2";
WebSocketMiddlewareTests.cs (6)
40
Assert.Equal("alpha, bravo, charlie", context.
Request
.Headers["Sec-WebSocket-Protocol"]);
728
Assert.Same(HeaderNames.Upgrade, context.
Request
.Headers.Connection.ToString());
729
Assert.Same(Constants.Headers.UpgradeWebSocket, context.
Request
.Headers.Upgrade.ToString());
730
Assert.Same(Constants.Headers.SupportedVersion, context.
Request
.Headers.SecWebSocketVersion.ToString());
748
Assert.Equal("Upgrade, keep-alive", context.
Request
.Headers.Connection.ToString());
749
Assert.Equal("websocket, example", context.
Request
.Headers.Upgrade.ToString());
MiddlewareAnalysisSample (2)
Startup.cs (2)
60
if (context.
Request
.Path == "/")
103
Console.WriteLine($"MiddlewareStarting: {name}; {httpContext.
Request
.Path}");
MinimalFormSample (1)
Program.cs (1)
56
var form = await context.
Request
.ReadFormAsync();
Mvc.RoutingWebSite (19)
Controllers\ContactController.cs (2)
20
return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.
Request
.Scheme));
25
return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.
Request
.Scheme));
Controllers\LG1Controller.cs (11)
19
return _linkGenerator.GetPathByAction(HttpContext, values: QueryToRouteValues(HttpContext.
Request
.Query));
27
values: QueryToRouteValues(HttpContext.
Request
.Query));
36
values: QueryToRouteValues(HttpContext.
Request
.Query));
41
var values = QueryToRouteValues(HttpContext.
Request
.Query);
56
values: QueryToRouteValues(HttpContext.
Request
.Query));
64
values: QueryToRouteValues(HttpContext.
Request
.Query));
69
var values = QueryToRouteValues(HttpContext.
Request
.Query);
84
values: QueryToRouteValues(HttpContext.
Request
.Query),
93
values: QueryToRouteValues(HttpContext.
Request
.Query));
103
values: QueryToRouteValues(HttpContext.
Request
.Query),
109
var values = QueryToRouteValues(HttpContext.
Request
.Query);
Controllers\LinkParserController.cs (1)
20
var parsed = _linkParser.ParsePathByEndpointName("default", HttpContext.
Request
.Path);
Controllers\LoginController.cs (2)
20
return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.
Request
.Scheme));
25
return _generator.Generate(Url.RouteUrl("ActionAsMethod", null, Url.ActionContext.HttpContext.
Request
.Scheme));
QueryStringConstraint.cs (1)
10
return httpContext.
Request
.Query["allowed"].ToString() == "true";
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27
var query = _actionContext.HttpContext.
Request
.Query;
43
actualUrl = _actionContext.HttpContext.
Request
.Path.Value,
NativeIISSample (6)
Startup.cs (6)
40
await context.Response.WriteAsync("Scheme: " + context.
Request
.Scheme + Environment.NewLine);
41
await context.Response.WriteAsync("Host: " + context.
Request
.Headers["Host"] + Environment.NewLine);
42
await context.Response.WriteAsync("PathBase: " + context.
Request
.PathBase.Value + Environment.NewLine);
43
await context.Response.WriteAsync("Path: " + context.
Request
.Path.Value + Environment.NewLine);
44
await context.Response.WriteAsync("Query: " + context.
Request
.QueryString.Value + Environment.NewLine);
65
foreach (var header in context.
Request
.Headers)
NegotiateAuthSample (1)
Startup.cs (1)
58
await context.Response.WriteAsync($"Authenticated? {user.IsAuthenticated}, Name: {user.Name}, Protocol: {context.
Request
.Protocol}");
OpenIdConnectSample (10)
Startup.cs (10)
34
var userAgent = httpContext.
Request
.Headers["User-Agent"].ToString();
151
if (context.
Request
.Path.Equals("/signedout"))
161
if (context.
Request
.Path.Equals("/signout"))
172
if (context.
Request
.Path.Equals("/signout-remote"))
183
if (context.
Request
.Path.Equals("/access-denied-from-remote"))
193
if (context.
Request
.Path.Equals("/Account/AccessDenied"))
198
await res.WriteAsync($"<h1>Access Denied for user {HtmlEncode(context.User.Identity.Name)} to resource '{HtmlEncode(context.
Request
.Query["ReturnUrl"])}'</h1>");
229
if (context.
Request
.Path.Equals("/restricted") && !user.Identities.Any(identity => identity.HasClaim("special", "true")))
235
if (context.
Request
.Path.Equals("/refresh"))
293
if (context.
Request
.Path.Equals("/login-challenge"))
OutputCachingSample (2)
Startup.cs (2)
12
options.AddBasePolicy(builder => builder.With(c => c.HttpContext.
Request
.Path.StartsWithSegments("/js")).Expire(TimeSpan.FromDays(1)));
13
options.AddBasePolicy(builder => builder.With(c => c.HttpContext.
Request
.Path.StartsWithSegments("/js")).NoCache());
PathSchemeSelection (1)
Startup.cs (1)
33
return ctx.
Request
.Path.StartsWithSegments("/api") ? "Api" : null;
QueueSharing (1)
Program.cs (1)
67
await context.Response.WriteAsync("Hello world from " + context.
Request
.Host + " at " + DateTime.Now);
RazorPagesWebSite (2)
Pages\ShortCircuitPageAtAuthFilter.cshtml.cs (1)
21
return httpContext.
Request
.Query.TryGetValue("target", out var expectedTargetName)
Pages\ShortCircuitPageAtPageFilter.cshtml.cs (1)
21
return httpContext.
Request
.Query.TryGetValue("target", out var expectedTargetName)
RequestDecompressionSample (1)
Startup.cs (1)
23
using var reader = new StreamReader(context.
Request
.Body);
RewriteSample (2)
Startup.cs (2)
36
return context.Response.WriteAsync($"Rewritten Url: {context.
Request
.Path + context.
Request
.QueryString}");
RoutingSandbox (1)
UseRouterStartup.cs (1)
24
var request = httpContext.
Request
;
RoutingWebSite (2)
UseEndpointRoutingStartup.cs (1)
161
endpoints.MapGet("api/get/{id}", (context) => context.Response.WriteAsync($"{name} - API Get {context.
Request
.RouteValues["id"]}"));
UseRouterStartup.cs (1)
24
var request = httpContext.
Request
;
SelfHostServer (1)
Startup.cs (1)
31
await context.Response.WriteAsync("Hello world from " + context.
Request
.Host + " at " + DateTime.Now);
ServerComparison.TestSites (5)
StartupNtlmAuthentication.cs (3)
50
if (context.
Request
.Path.Equals("/Anonymous"))
55
if (context.
Request
.Path.Equals("/Restricted"))
67
if (context.
Request
.Path.Equals("/Forbidden"))
StartupResponseCompression.cs (2)
48
if (context.
Request
.Path.Value == "/")
54
body = "Not Implemented: " + context.
Request
.Path;
SignalR.Client.FunctionalTestApp (17)
Startup.cs (13)
76
var request = context.HttpContext.
Request
;
122
var originHeader = context.
Request
.Headers.Origin;
129
var requestMethod = context.
Request
.Headers.AccessControlRequestMethod;
135
var requestHeaders = context.
Request
.Headers.AccessControlRequestHeaders;
142
if (HttpMethods.IsOptions(context.
Request
.Method))
154
if (context.
Request
.Path.StartsWithSegments("/echoredirect"))
156
var url = context.
Request
.Path.ToString();
158
url += context.
Request
.QueryString.ToString();
168
if (context.
Request
.Path.StartsWithSegments("/redirect"))
170
var newUrl = context.
Request
.Query["baseUrl"] + "/testHub?numRedirects=" + Interlocked.Increment(ref _numRedirects);
179
if (context.
Request
.Path.Value.Contains("/negotiate"))
183
if (context.
Request
.IsHttps)
205
if (context.
Request
.Path.StartsWithSegments("/bad-negotiate"))
TestHub.cs (4)
42
return int.Parse(Context.GetHttpContext().
Request
.Query["numRedirects"], CultureInfo.InvariantCulture);
134
return Context.GetHttpContext().
Request
.Headers["Content-Type"];
139
return Context.GetHttpContext().
Request
.Headers[headerName];
144
var cookies = Context.GetHttpContext().
Request
.Cookies;
SignalRSamples (6)
Hubs\Chat.cs (2)
12
var name = Context.GetHttpContext().
Request
.Query["name"];
18
var name = Context.GetHttpContext().
Request
.Query["name"];
Hubs\DynamicChat.cs (2)
12
var name = Context.GetHttpContext().
Request
.Query["name"];
18
var name = Context.GetHttpContext().
Request
.Query["name"];
Hubs\HubTChat.cs (2)
12
var name = Context.GetHttpContext().
Request
.Query["name"];
18
var name = Context.GetHttpContext().
Request
.Query["name"];
SocialSample (2)
Startup.cs (2)
250
var authType = context.
Request
.Query["authscheme"];
416
await response.WriteAsync("An remote failure has occurred: " + context.
Request
.Query["FailureMessage"] + "<br>");
SocialWeather (1)
PersistentConnectionLifeTimeManager.cs (1)
23
var format = connection.GetHttpContext().
Request
.Query["formatType"].ToString();
Sockets.BindTests (1)
src\Servers\Kestrel\test\BindTests\AddressRegistrationTests.cs (1)
1189
return context.Response.WriteAsync(context.
Request
.GetDisplayUrl());
Sockets.FunctionalTests (19)
src\Servers\Kestrel\shared\test\TestApp.cs (6)
16
var request = httpContext.
Request
;
18
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
29
var request = httpContext.
Request
;
46
var request = httpContext.
Request
;
48
var buffer = new byte[httpContext.
Request
.ContentLength ?? 0];
63
var request = httpContext.
Request
;
src\Servers\Kestrel\test\FunctionalTests\Http2\HandshakeTests.cs (2)
76
return context.Response.WriteAsync("hello world " + context.
Request
.Protocol);
104
return context.Response.WriteAsync("hello world " + context.
Request
.Protocol);
src\Servers\Kestrel\test\FunctionalTests\Http2\ShutdownTests.cs (3)
73
return context.Response.WriteAsync("hello world " + context.
Request
.Protocol);
130
await context.Response.WriteAsync("hello world " + context.
Request
.Protocol);
181
await context.Response.WriteAsync("hello world " + context.
Request
.Protocol);
src\Servers\Kestrel\test\FunctionalTests\MaxRequestBufferSizeTests.cs (2)
349
bytesRead += await context.
Request
.Body.ReadAsync(buffer, bytesRead, buffer.Length - bytesRead);
355
if (await context.
Request
.Body.ReadAsync(new byte[1], 0, 1) != 0)
src\Servers\Kestrel\test\FunctionalTests\RequestTests.cs (4)
92
while ((received = await context.
Request
.Body.ReadAsync(receivedBytes, 0, receivedBytes.Length)) > 0)
552
await context.
Request
.Body.ReadAsync(new byte[1], 0, 1);
860
var request = httpContext.
Request
;
1059
await context.
Request
.Body.CopyToAsync(Stream.Null);
src\Servers\Kestrel\test\FunctionalTests\ResponseTests.cs (2)
213
var request = httpContext.
Request
;
786
await context.
Request
.Body.CopyToAsync(context.Response.Body);
StaticFilesAuth (2)
Startup.cs (2)
123
var fileSystemPath = GetFileSystemPath(files, context.
Request
.Path);
135
context.
Request
.Path);
StatusCodePagesSample (6)
Startup.cs (6)
35
var requestedStatusCode = context.
Request
.Query["statuscode"];
42
var disableStatusCodePages = context.
Request
.Query["disableStatusCodePages"];
67
builder.AppendLine("An error occurred, Status Code: " + HtmlEncoder.Default.Encode(context.
Request
.Path.ToString().Substring(1)) + "<br>");
68
var referrer = context.
Request
.Headers["referer"];
85
HtmlEncoder.Default.Encode(context.
Request
.PathBase.ToString()) + "/missingpage/\">" +
86
HtmlEncoder.Default.Encode(context.
Request
.PathBase.ToString()) + "/missingpage/</a><br>");
VersioningWebSite (3)
src\Mvc\test\WebSites\Common\TestResponseGenerator.cs (2)
27
var query = _actionContext.HttpContext.
Request
.Query;
43
actualUrl = _actionContext.HttpContext.
Request
.Path.Value,
VersionRangeValidator.cs (1)
28
return ProcessRequest(context.RouteContext.HttpContext.
Request
);
Wasm.Performance.Driver (1)
BenchmarkResultsStartup.cs (1)
22
var result = await JsonSerializer.DeserializeAsync<BenchmarkResult>(context.
Request
.Body, new JsonSerializerOptions
WebPubSubWeb (4)
Program.cs (4)
55
if (context.
Request
.Method == "OPTIONS")
61
if (context.
Request
.Method != "POST" || !context.
Request
.Headers.TryGetValue("ce-type", out var eventType))
67
var userId = context.
Request
.Headers["ce-userId"];
WebTransportInteractiveSampleApp (1)
Program.cs (1)
47
if (context.
Request
.Path.Value?.Equals("/certificate.js") ?? false)
WsFedSample (6)
Startup.cs (6)
46
if (context.
Request
.Path.Equals("/signedout"))
56
if (context.
Request
.Path.Equals("/signout"))
67
if (context.
Request
.Path.Equals("/signout-remote"))
78
if (context.
Request
.Path.Equals("/Account/AccessDenied"))
82
await context.Response.WriteAsync($"<h1>Access Denied for user {HtmlEncode(context.User.Identity.Name)} to resource '{HtmlEncode(context.
Request
.Query["ReturnUrl"])}'</h1>");
110
if (context.
Request
.Path.Equals("/restricted") && !user.Identities.Any(identity => identity.HasClaim("special", "true")))